-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
about1.html
1027 lines (967 loc) · 74.6 KB
/
about1.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, shrink-to-fit=no">
<meta name="description" content="Fables">
<meta name="author" content="Enterprise Development">
<link rel="shortcut icon" href="assets/custom/images/shortcut.png">
<title>About 1</title>
<!-- animate.css-->
<link href="assets/vendor/animate.css-master/animate.min.css" rel="stylesheet">
<!-- Load Screen -->
<link href="assets/vendor/loadscreen/css/spinkit.css" rel="stylesheet">
<!-- GOOGLE FONT -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i" rel="stylesheet">
<!-- Font Awesome 5 -->
<link href="assets/vendor/fontawesome/css/fontawesome-all.min.css" rel="stylesheet">
<!-- Fables Icons -->
<link href="assets/custom/css/fables-icons.css" rel="stylesheet">
<!-- Bootstrap CSS -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap-4-navbar.css" rel="stylesheet">
<!-- portfolio filter gallery -->
<link href="assets/vendor/portfolio-filter-gallery/portfolio-filter-gallery.css" rel="stylesheet">
<!-- FANCY BOX -->
<link href="assets/vendor/fancybox-master/jquery.fancybox.min.css" rel="stylesheet">
<!-- RANGE SLIDER -->
<link href="assets/vendor/range-slider/range-slider.css" rel="stylesheet">
<!-- OWL CAROUSEL -->
<link href="assets/vendor/owlcarousel/owl.carousel.min.css" rel="stylesheet">
<link href="assets/vendor/owlcarousel/owl.theme.default.min.css" rel="stylesheet">
<!-- FABLES CUSTOM CSS FILE -->
<link href="assets/custom/css/custom.css" rel="stylesheet">
<!-- FABLES CUSTOM CSS RESPONSIVE FILE -->
<link href="assets/custom/css/custom-responsive.css" rel="stylesheet">
</head>
<body>
<div class="search-section">
<a class="close-search" href="#"></a>
<div class="d-flex justify-content-center align-items-center h-100">
<form method="post" action="#" class="w-50">
<div class="row">
<div class="col-10">
<input type="search" value="" class="form-control palce bg-transparent border-0 search-input" placeholder="Search Here ..." />
</div>
<div class="col-2 mt-3">
<button type="submit" class="btn bg-transparent text-white"> <i class="fas fa-search"></i> </button>
</div>
</div>
</form>
</div>
</div>
<!-- Loading Screen -->
<div id="ju-loading-screen">
<div class="sk-double-bounce">
<div class="sk-child sk-double-bounce1"></div>
<div class="sk-child sk-double-bounce2"></div>
</div>
</div>
<!-- Start Top Header -->
<div class="fables-forth-background-color fables-top-header-signin">
<div class="container">
<div class="row" id="top-row">
<div class="col-12 col-sm-2 col-lg-5">
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle border-0 bg-transparent font-13 lang-dropdown-btn pl-0" type="button" id="dropdownLangButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
language
</button>
<div class="dropdown-menu p-0 fables-forth-background-color rounded-0 m-0 border-0 lang-dropdown" aria-labelledby="dropdownLangButton">
<a class="dropdown-item white-color font-13 fables-second-hover-color" href="#">
<img src="assets/custom/images/england.png" alt="england flag" class="mr-1"> English</a>
<a class="dropdown-item white-color font-13 fables-second-hover-color" href="#">
<img src="assets/custom/images/France.png" alt="england flag" class="mr-1"> French</a>
</div>
</div>
</div>
<div class="col-12 col-sm-5 col-lg-4 text-right">
<p class="fables-third-text-color font-13"><span class="fables-iconphone"></span> Phone : (888) 6000 6000 - (888) 6000 6000</p>
</div>
<div class="col-12 col-sm-5 col-lg-3 text-right">
<p class="fables-third-text-color font-13"><span class="fables-iconemail"></span> Email: [email protected]</p>
</div>
</div>
</div>
</div>
<!-- /End Top Header -->
<!-- Start Fables Navigation -->
<div class="fables-navigation fables-main-background-color py-3 py-lg-0">
<div class="container">
<div class="row">
<div class="col-12 col-md-10 col-lg-9 pr-md-0">
<nav class="navbar navbar-expand-md btco-hover-menu py-lg-2">
<a class="navbar-brand pl-0" href="index.html"><img src="assets/custom/images/fables-logo.png" alt="Fables Template" class="fables-logo"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#fablesNavDropdown" aria-controls="fablesNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="fables-iconmenu-icon text-white font-16"></span>
</button>
<div class="collapse navbar-collapse" id="fablesNavDropdown">
<ul class="navbar-nav mx-auto fables-nav">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="sub-nav1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Home
</a>
<ul class="dropdown-menu" aria-labelledby="sub-nav1">
<li><a class="dropdown-item" href="home1.html">Home 1</a></li>
<li><a class="dropdown-item" href="home2.html">Home 2</a></li>
<li><a class="dropdown-item" href="home3.html">Home 3</a></li>
<li><a class="dropdown-item" href="home4.html">Home 4</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="sub-nav2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Features
</a>
<ul class="dropdown-menu" aria-labelledby="sub-nav2">
<li><a class="dropdown-item dropdown-toggle" href="#">Headers</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item dropdown-toggle" href="#">Header 1</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="header1-transparent.html">Header 1 Transparent</a></li>
<li><a class="dropdown-item" href="header1-light.html">Header 1 Light</a></li>
<li><a class="dropdown-item" href="header1-dark.html">Header 1 Dark</a></li><li><a class="dropdown-item" href="header-megamenu.html">Header Mega menu</a></li>
</ul>
</li>
<li><a class="dropdown-item dropdown-toggle" href="#">Header 2</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="header2-transparent.html">Header 2 Transparent</a></li>
<li><a class="dropdown-item" href="header2-light.html">Header 2 Light</a></li>
<li><a class="dropdown-item" href="header2-dark.html">Header 2 Dark</a></li>
</ul>
</li>
<li><a class="dropdown-item dropdown-toggle" href="#">Header 3</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="header3-transparent.html">Header 3 Transparent</a></li>
<li><a class="dropdown-item" href="header3-light.html">Header 3 Light</a></li>
<li><a class="dropdown-item" href="header3-dark.html">Header 3 Dark</a></li>
</ul>
</li>
<li><a class="dropdown-item dropdown-toggle" href="#">Header 4</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="header4-transparent.html">Header 4 Transparent</a></li>
<li><a class="dropdown-item" href="header4-light.html">Header 4 Light</a></li>
<li><a class="dropdown-item" href="header4-dark.html">Header 4 Dark</a></li>
</ul>
</li>
<li><a class="dropdown-item dropdown-toggle" href="#">Header 5</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="header5-transparent.html">Header 5 Transparent</a></li>
<li><a class="dropdown-item" href="header5-light.html">Header 5 Light</a></li>
<li><a class="dropdown-item" href="header5-dark.html">Header 5 Dark</a></li>
</ul>
</li>
</ul>
</li>
<li><a class="dropdown-item dropdown-toggle" href="#">Footers</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item dropdown-toggle" href="#">Footer 1</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="footer1-bg-img.html">Footer 1 Transparent</a></li>
<li><a class="dropdown-item" href="Footer1-light.html">Footer 1 Light</a></li>
<li><a class="dropdown-item" href="Footer1-dark.html">Footer 1 Dark</a></li>
</ul>
</li>
<li><a class="dropdown-item dropdown-toggle" href="#">Footer 2</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="footer2-bg-img.html">Footer 2 Transparent</a></li>
<li><a class="dropdown-item" href="footer2-light.html">Footer 2 Light</a></li>
<li><a class="dropdown-item" href="footer2-dark.html">Footer 2 Dark</a></li>
</ul>
</li>
<li><a class="dropdown-item dropdown-toggle" href="#">Footer 3</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="footer3-bg-img.html">Footer 3 Transparent</a></li>
<li><a class="dropdown-item" href="footer3-light.html">Footer 3 Light</a></li>
<li><a class="dropdown-item" href="footer3-dark.html">Footer 3 Dark</a></li>
</ul>
</li>
<li><a class="dropdown-item dropdown-toggle" href="#">Footer 4</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="footer4-bg-img.html">Footer 4 Transparent</a></li>
<li><a class="dropdown-item" href="footer4-light.html">Footer 4 Light</a></li>
<li><a class="dropdown-item" href="footer4-dark.html">Footer 4 Dark</a></li>
</ul>
</li>
</ul>
</li>
<li><a class="dropdown-item" href="team.html">Team Members</a></li>
<li><a class="dropdown-item" href="pricing-table.html">Pricing Table</a></li>
<li><a class="dropdown-item" href="testimonials.html">testimonials</a></li>
<li><a class="dropdown-item" href="blog.html">Blog</a></li>
<li><a class="dropdown-item" href="counters.html">Counters</a></li>
<li><a class="dropdown-item" href="image-hover-effects.html">Image Hover Effects</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="sub-nav3" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
About
</a>
<ul class="dropdown-menu" aria-labelledby="sub-nav3">
<li><a class="dropdown-item" href="about1.html">About 1</a></li>
<li><a class="dropdown-item" href="about2.html">About 2</a></li>
<li><a class="dropdown-item" href="about3.html">About 3</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="sub-nav4" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Store
</a>
<ul class="dropdown-menu" aria-labelledby="sub-nav4">
<li><a class="dropdown-item" href="store_grid_list.html">Product Category </a></li>
<li><a class="dropdown-item" href="store_single.html">Product Single</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="sub-nav5" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Blog
</a>
<ul class="dropdown-menu" aria-labelledby="sub-nav5">
<li><a class="dropdown-item" href="blog-cat1.html">Blog Cat 1</a></li>
<li><a class="dropdown-item" href="blog-cat2.html">Blog Cat 2</a></li>
<li><a class="dropdown-item" href="blog-cat3.html">Blog Cat 3</a></li>
<li><a class="dropdown-item" href="blog-cat-masonry.html">Blog Cat Masonry</a></li>
<li><a class="dropdown-item" href="blog-details1.html">Blog Details 1</a></li>
<li><a class="dropdown-item" href="blog-details2.html">Blog Details 2</a></li>
<li><a class="dropdown-item" href="blog-details3.html">Blog Details 3</a></li>
<li><a class="dropdown-item" href="blog-single-img.html">Blog Single image</a></li>
<li><a class="dropdown-item" href="blog-single-slider.html">Blog Single Slider</a></li>
<li><a class="dropdown-item" href="blog-single-video.html">Blog Single Video</a></li>
<li><a class="dropdown-item" href="blog-timeLine.html">Blog Timeline</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="sub-nav6" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Pages
</a>
<ul class="dropdown-menu" aria-labelledby="sub-nav6">
<li><a class="dropdown-item" href="404.html">404</a></li>
<li><a class="dropdown-item" href="comming-soon.html">Comming Soon</a></li>
<li><a class="dropdown-item" href="gallery.html">Gallery</a></li>
<li><a class="dropdown-item" href="gallery-filter.html">Gallery Filter</a></li>
<li><a class="dropdown-item" href="gallery-filter-masonry.html">Gallery Filter Masonry</a></li>
<li><a class="dropdown-item" href="gallery-history.html">Gallery History</a></li>
<li><a class="dropdown-item" href="gallery-history2.html">Gallery History 2</a></li>
<li><a class="dropdown-item" href="gallery-single.html">Gallery Single</a></li>
<li><a class="dropdown-item" href="gallery-timeline.html">Gallery Timeline </a></li>
<li><a class="dropdown-item" href="gallery-timeline2.html">Gallery Timeline 2</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="sub-nav7" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Contact Us
</a>
<ul class="dropdown-menu" aria-labelledby="sub-nav7">
<li><a class="dropdown-item" href="contactus1.html">Contact Us 1</a></li>
<li><a class="dropdown-item" href="contactus2.html">Contact Us 2</a></li>
<li><a class="dropdown-item" href="contactus3.html">Contact Us 3</a></li>
</ul>
</li>
</ul>
</div>
</nav>
</div>
<div class="col-12 col-md-2 col-lg-3 pr-md-0 icons-header-mobile">
<div class="fables-header-icons">
<div class="dropdown">
<a href="#_" class="fables-third-text-color dropdown-toggle right px-3 px-md-2 px-lg-4 fables-second-hover-color top-header-link max-line-height position-relative" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span class="fables-iconcart-icon font-20"></span>
<span class="fables-cart-number fables-second-background-color text-center">3</span>
</a>
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<div class="p-3 cart-block">
<p class="fables-second-text-color semi-font mb-4 font-17">(2) Items in my cart</p>
<div class="row mx-0 mb-3">
<div class="col-4 p-0">
<a href="#"><img src="assets/custom/images/sml1.jpg" alt="" class="w-100"></a>
</div>
<div class="col-8">
<h2><a href="#" class="fables-main-text-color font-13 d-block fables-main-hover-color">LUIS LEATHER DRIVING</a></h2>
<p class="fables-second-text-color font-weight-bold">$ 100.00</p>
<p class="fables-forth-text-color">QTY : 1</p>
</div>
</div>
<div class="row mx-0 mb-3">
<div class="col-4 p-0">
<a href="#"><img src="assets/custom/images/sml1.jpg" alt="" class="w-100"></a>
</div>
<div class="col-8">
<h2><a href="#" class="fables-main-text-color font-13 d-block fables-main-hover-color">LUIS LEATHER DRIVING</a></h2>
<p class="fables-second-text-color font-weight-bold">$ 100.00</p>
<p class="fables-forth-text-color">QTY : 1</p>
</div>
</div>
<span class="font-16 semi-font fables-main-text-color">TOTAL</span>
<span class="font-14 semi-font fables-second-text-color float-right">$200.00</span>
<hr>
<div class="text-center">
<a href="#" class="fables-second-background-color fables-btn-rounded text-center white-color py-2 px-3 font-14 bg-hover-transparent border fables-second-border-color fables-second-hover-color">View my cart</a>
<a href="#" class="fables-second-text-color border fables-second-border-color fables-btn-rounded text-center white-color p-2 px-4 font-14 fables-second-hover-background-color">Checkout</a>
</div>
</div>
</div>
</div>
<a href="#" class="open-search fables-third-text-color right top-header-link px-3 px-md-2 px-lg-4 fables-second-hover-color border-0 max-line-height">
<span class="fables-iconsearch-icon"></span>
</a>
<a href="signin.html" class="fables-third-text-color fables-second-hover-color font-13 top-header-link px-3 px-md-2 px-lg-4 max-line-height"><span class="fables-iconuser"></span></a>
</div>
</div>
</div>
</div>
</div>
<!-- /End Fables Navigation -->
<!-- Start Header -->
<div class="fables-header fables-after-overlay bg-rules">
<div class="container">
<h2 class="fables-page-title fables-second-border-color wow fadeInLeft" data-wow-duration="1.5s">About 1</h2>
</div>
</div>
<!-- /End Header -->
<!-- Start Breadcrumbs -->
<div class="fables-light-gary-background">
<div class="container">
<nav aria-label="breadcrumb">
<ol class="fables-breadcrumb breadcrumb px-0 py-3">
<li class="breadcrumb-item"><a href="#" class="fables-second-text-color">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">About 1</li>
</ol>
</nav>
</div>
</div>
<!-- /End Breadcrumbs -->
<!-- Start page content -->
<div class="container">
<div class="my-4 my-md-5 overflow-hidden">
<div class="text-center mb-5 wow fadeInDown" data-wow-delay="1s">
<h3 class="fables-about-top-head fables-forth-text-color font-15 semi-font d-inline-block bg-white position-relative">
<span class="mx-4">Services</span>
</h3>
<h2 class="fables-second-text-color mt-3 font-30 font-weight-bold text-center">Provide you the great Services</h2>
</div>
<div class="row">
<div class="col-12 col-md-4 mb-4 mb-md-0 wow fadeInDown" data-wow-delay=".3s">
<div class="fables-about-icon-style">
<span class="fables-iconmobileApp-icon fables-second-text-color fa-3x"></span>
<h2 class="fables-second-text-color fables-about-icon-head mt-3 mb-2 font-18 semi-font">Mobile Apps </h2>
<span class="fables-title-border fables-second-background-color"></span>
<div class="fables-forth-text-color mt-3 font-14">
We understand the importance of approaching each work integrally and believe in the power of simple and easy communication.
</div>
</div>
</div>
<div class="col-12 col-md-4 mb-4 mb-md-0 wow fadeInDown" data-wow-delay=".6s">
<div class="fables-about-icon-style">
<span class="fables-icondevelopment-icon fables-second-text-color fa-3x"></span>
<h2 class="fables-second-text-color fables-about-icon-head mt-3 mb-2 font-18 semi-font">Development</h2>
<span class="fables-title-border fables-second-background-color"></span>
<div class="fables-forth-text-color mt-3 font-14">
We understand the importance of approaching each work integrally and believe in the power of simple and easy communication.
</div>
</div>
</div>
<div class="col-12 col-md-4 mb-4 mb-md-0 wow fadeInDown" data-wow-delay=".9s">
<div class="fables-about-icon-style">
<span class="fables-iconwebDesign-icon fables-second-text-color fa-3x"></span>
<h2 class="fables-second-text-color fables-about-icon-head mt-3 mb-2 font-18 semi-font">Web Design </h2>
<span class="fables-title-border fables-second-background-color"></span>
<div class="fables-forth-text-color mt-3 font-14">
We understand the importance of approaching each work integrally and believe in the power of simple and easy communication.
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row overflow-hidden">
<div class="col-12 col-sm-6 p-sm-0 mb-3 mb-md-0 image-container translate-effect-right wow fadeInLeft" data-wow-durationn="2.5s">
<img src="assets/custom/images/hp_innovacion2.jpg" alt="Fables Template" class="img-fluid">
</div>
<div class="col-12 col-sm-6 p-sm-0 image-container translate-effect-right wow fadeInRight" data-wow-durationn="2.5s">
<img src="assets/custom/images/IMG_8573-1078.jpg" alt="Fables Template" class="img-fluid">
</div>
</div>
</div>
<div class="fables-counter-no-background my-4 my-md-5 overflow-hidden">
<div class="container">
<div class="fables-about-head-style">
<div class="row wow fadeInDown" data-wow-delay=".5s">
<div class="col-12 text-center">
<h3 class="fables-about-top-head fables-forth-text-color font-15 semi-font d-inline-block bg-white position-relative">
<span class="mx-4">About us</span>
</h3>
<h2 class="fables-second-text-color mt-3 font-30 font-weight-bold text-center">Our business experties Provide you the great value</h2>
</div>
<div class="col-12 col-md-10 offset-md-1 mt-3 mb-5">
<p class="fables-forth-text-color text-center">
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many.
</p>
</div>
</div>
</div>
<div class="row wow fadeIn" data-wow-delay=".8s">
<div class="col-6 col-md-3">
<div class="fables-counter">
<h2 class="fables-counter-value font-40 font-weight-bold mb-3 fables-forth-text-color" data-count="307">0</h2>
<h3 class="font-14 semi-font fables-forth-text-color">SATISFIED CLIENTS</h3>
</div>
</div>
<div class="col-6 col-md-3">
<div class="fables-counter">
<h2 class="fables-counter-value font-40 font-weight-bold mb-3 fables-forth-text-color" data-count="95">0</h2>
<h3 class="font-14 semi-font fables-forth-text-color">COMPANY MEMBERS</h3>
</div>
</div>
<div class="col-6 col-md-3">
<div class="fables-counter">
<h2 class="fables-counter-value font-40 font-weight-bold mb-3 fables-forth-text-color" data-count="55">0</h2>
<h3 class="font-14 semi-font fables-forth-text-color">AWWARDS WIN</h3>
</div>
</div>
<div class="col-6 col-md-3">
<div class="fables-counter">
<h2 class="fables-counter-value font-40 font-weight-bold mb-3 fables-forth-text-color" data-count="16">0</h2>
<h3 class="font-14 semi-font fables-forth-text-color">YEARS EXPIRIENCE</h3>
</div>
</div>
</div>
</div>
</div>
<div class="fables-history-section mb-4 mb-md-5">
<div class="container">
<div class="fables-about-head-style">
<div class="row wow fadeInDown" data-wow-delay=".5s">
<div class="col-12 text-center">
<h3 class="fables-about-top-head fables-forth-text-color font-15 semi-font d-inline-block bg-white position-relative">
<span class="mx-4">About us</span>
</h3>
<h2 class="fables-second-text-color mt-3 font-30 font-weight-bold text-center">Company History</h2>
<div class="col-12 col-md-10 offset-md-1">
<p class="fables-forth-text-color mt-3 mb-4 mb-md-5">
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many.
</p>
</div>
</div>
</div>
</div>
<div class="fables-history-carousel">
<div id="sync2" class="owl-carousel owl-theme">
<div class="item">
<h1>2010</h1>
</div>
<div class="item">
<h1>2012</h1>
</div>
<div class="item">
<h1>2014</h1>
</div>
<div class="item">
<h1>2016</h1>
</div>
<div class="item">
<h1>2018</h1>
</div>
<div class="item">
<h1>2020</h1>
</div>
</div>
<div id="sync1" class="owl-carousel owl-theme">
<div class="item">
<div class="row">
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/img2.jpg" alt="Fables Template">
<div class="card-body">
<h5 class="card-title fables-second-text-color">2010</h5>
<p class="card-text fables-forth-text-color d-sm-none d-md-block font-15">It is a long established fact that a reader will be distracted by the readable content of a page when </p>
</div>
</div>
</div>
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/history-img.jpg" alt="Fables Template">
<div class="card-body">
<h5 class="card-title fables-second-text-color">2010</h5>
<p class="card-text fables-forth-text-color d-sm-none d-md-block font-15">It is a long established fact that a reader will be distracted by the readable content of a page when </p>
</div>
</div>
</div>
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/img3.jpg" alt="Fables Template">
<div class="card-body">
<h5 class="card-title fables-second-text-color">2010</h5>
<p class="card-text fables-forth-text-color d-sm-none d-md-block font-15">It is a long established fact that a reader will be distracted by the readable content of a page when </p>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="row">
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/history-img.jpg" alt="Fables Template">
<div class="card-body">
<h5 class="card-title fables-second-text-color">2012</h5>
<p class="card-text fables-forth-text-color d-sm-none d-md-block font-15">It is a long established fact that a reader will be distracted by the readable content of a page when </p>
</div>
</div>
</div>
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/img3.jpg" alt="Fables Template">
<div class="card-body">
<h5 class="card-title fables-second-text-color">2012</h5>
<p class="card-text fables-forth-text-color d-sm-none d-md-block font-15">It is a long established fact that a reader will be distracted by the readable content of a page when </p>
</div>
</div>
</div>
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/img3.jpg" alt="Fables Template">
<div class="card-body">
<h5 class="card-title fables-second-text-color">2012</h5>
<p class="card-text fables-forth-text-color d-sm-none d-md-block font-15">It is a long established fact that a reader will be distracted by the readable content of a page when </p>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="row">
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/history-img.jpg" alt="Fables Template">
<div class="card-body">
<h5 class="card-title fables-second-text-color">2012</h5>
<p class="card-text fables-forth-text-color d-sm-none d-md-block font-15">It is a long established fact that a reader will be distracted by the readable content of a page when </p>
</div>
</div>
</div>
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/img3.jpg" alt="Fables Template">
<div class="card-body">
<h5 class="card-title fables-second-text-color">2012</h5>
<p class="card-text fables-forth-text-color d-sm-none d-md-block font-15">It is a long established fact that a reader will be distracted by the readable content of a page when </p>
</div>
</div>
</div>
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/img3.jpg" alt="Fables Template">
<div class="card-body">
<h5 class="card-title fables-second-text-color">2012</h5>
<p class="card-text fables-forth-text-color d-sm-none d-md-block font-15">It is a long established fact that a reader will be distracted by the readable content of a page when </p>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="row">
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/history-img.jpg" alt="Fables Template">
<div class="card-body">
<h5 class="card-title fables-second-text-color">2012</h5>
<p class="card-text fables-forth-text-color d-sm-none d-md-block font-15">It is a long established fact that a reader will be distracted by the readable content of a page when </p>
</div>
</div>
</div>
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/img3.jpg" alt="Fables Template">
<div class="card-body">
<h5 class="card-title fables-second-text-color">2012</h5>
<p class="card-text fables-forth-text-color d-sm-none d-md-block font-15">It is a long established fact that a reader will be distracted by the readable content of a page when </p>
</div>
</div>
</div>
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/img3.jpg" alt="Fables Template">
<div class="card-body">
<h5 class="card-title fables-second-text-color">2012</h5>
<p class="card-text fables-forth-text-color d-sm-none d-md-block font-15">It is a long established fact that a reader will be distracted by the readable content of a page when </p>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="row">
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/history-img.jpg" alt="Fables Template">
<div class="card-body">
<h5 class="card-title fables-second-text-color">2012</h5>
<p class="card-text fables-forth-text-color d-sm-none d-md-block font-15">It is a long established fact that a reader will be distracted by the readable content of a page when </p>
</div>
</div>
</div>
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/img3.jpg" alt="Fables Template">
<div class="card-body">
<h5 class="card-title fables-second-text-color">2012</h5>
<p class="card-text fables-forth-text-color d-sm-none d-md-block font-15">It is a long established fact that a reader will be distracted by the readable content of a page when </p>
</div>
</div>
</div>
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/img3.jpg" alt="Fables Template">
<div class="card-body">
<h5 class="card-title fables-second-text-color">2012</h5>
<p class="card-text fables-forth-text-color d-sm-none d-md-block font-15">It is a long established fact that a reader will be distracted by the readable content of a page when </p>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="row">
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/history-img.jpg" alt="Fables Template">
<div class="card-body">
<h5 class="card-title fables-second-text-color">2012</h5>
<p class="card-text fables-forth-text-color d-sm-none d-md-block font-15">It is a long established fact that a reader will be distracted by the readable content of a page when </p>
</div>
</div>
</div>
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/img3.jpg" alt="Fables Template">
<div class="card-body">
<h5 class="card-title fables-second-text-color">2012</h5>
<p class="card-text fables-forth-text-color d-sm-none d-md-block font-15">It is a long established fact that a reader will be distracted by the readable content of a page when </p>
</div>
</div>
</div>
<div class="col-12 col-sm-4 mb-4 mb-md-0">
<div class="card">
<img class="card-img-top rounded-0 w-100" src="assets/custom/images/img3.jpg" alt="Fables Template">
<div class="card-body">
<h5 class="card-title fables-second-text-color">2012</h5>
<p class="card-text fables-forth-text-color d-sm-none d-md-block font-15">It is a long established fact that a reader will be distracted by the readable content of a page when </p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bg-rules mb-4 mb-lg-0 py-3 py-lg-0" style="background-image: url(assets/custom/images/mission-img.jpg)">
<div class="container-fluid">
<div class="row overflow-hidden">
<div class="col-12 col-lg-6 offset-lg-6 p-lg-0">
<div class="fables-vision-overlay fables-after-overlay bg-rules">
<h2 class="fables-second-text-color my-0 font-30 font-weight-bold position-relative z-index wow fadeInRight" data-wow-duration="2s">We love what we do <br> & we do it with passion!</h2>
<p class="fables-fifth-text-color position-relative z-index mt-4 mb-4 mb-md-5 wow fadeInRight" data-wow-duration="2s">
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed.<br> <br>
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text. and a search for 'lorem ipsum' will uncover.
</p>
<a href="" class="btn fables-second-border-color white-color fables-btn-rouned fables-hover-btn-color font-19 px-5 py-2 position-relative z-index wow fadeInRight" data-wow-duration="2s"><span>Contact Us</span></a>
</div>
</div>
</div>
</div>
</div>
<div class="bg-rules mb-4 py-3 py-lg-0" style="background-image: url(assets/custom/images/vision-img.jpg)">
<div class="container-fluid">
<div class="row overflow-hidden">
<div class="col-12 col-lg-6 p-lg-0">
<div class="fables-vision-overlay fables-after-overlay fables-light-overlay bg-rules">
<h2 class="fables-second-text-color my-0 font-30 font-weight-bold position-relative z-index wow fadeInLeft" data-wow-duration="2s">We gain the trust and loyalty of <br> our Clients</h2>
<p class="fables-forth-text-color position-relative z-index mt-4 mb-4 mb-md-5 wow fadeInLeft" data-wow-duration="2s">
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed.<br> <br>
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text. and a search for 'lorem ipsum' will uncover.
</p>
<a href="" class="btn fables-second-border-color fables-second-text-color fables-btn-rouned fables-hover-btn-color font-19 px-5 py-2 position-relative z-index wow fadeInLeft" data-wow-duration="2s"><span>Contact Us</span></a>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row mt-4 mt-md-5">
<div class="col-12 text-center wow fadeInDown">
<h3 class="fables-about-top-head fables-forth-text-color font-15 semi-font d-inline-block bg-white position-relative">
<span class="mx-4">Testimonials</span>
</h3>
<h2 class="fables-second-text-color mt-3 font-30 font-weight-bold text-center">what people say</h2>
</div>
<div class="col-12 col-md-8 offset-md-2 col-lg-6 offset-lg-3 wow fadeInDown">
<p class="mt-4 mt-md-3 mb-4 mb-md-5 fables-forth-text-color text-center">
We’ve been lucky enough to work with so many industrial Clients .
Check out what they’re saying.
</p>
</div>
</div>
<div class="row">
<div class="col-12 col-sm-6 wow fadeInDown" data-wow-delay=".3s">
<div class="fables-testimonial-block border fables-third-text-color py-4 px-6 mb-4 rounded position-relative">
<div class="row">
<div class="col-12 col-sm-3 text-center image-container shine-effect">
<img src="assets/custom/images/testimonial-img.png" alt="Fables Template" class="fables-testimonial-block-img rounded-circle">
</div>
<div class="col-12 col-sm-8">
<div class="fables-testimonial-block-info">
<h3 class="fables-forth-text-color mt-4 mb-2 font-15 semi-font">Billy Richards</h3>
<h3 class="fables-fifth-text-color font-italic font-14 mt-2">Chief Manager, Simba Co</h3>
</div>
</div>
</div>
<div class="fables-forth-text-color font-italic font-14 semi-font mt-3">
No matter what issue or questions pops up, you are always there to
assist me. Thank you so much for your excellent assistance and great
customer support through years.
</div>
</div>
</div>
<div class="col-12 col-sm-6 wow fadeInDown" data-wow-delay=".6s">
<div class="fables-testimonial-block border fables-third-text-color py-4 px-6 mb-4 rounded position-relative">
<div class="row">
<div class="col-12 col-sm-3 text-center image-container shine-effect">
<img src="assets/custom/images/testimonial-img.png" alt="Fables Template" class="fables-testimonial-block-img rounded-circle">
</div>
<div class="col-12 col-sm-8">
<div class="fables-testimonial-block-info">
<h3 class="fables-forth-text-color mt-4 mb-2 font-15 semi-font">Billy Richards</h3>
<h3 class="fables-fifth-text-color font-italic font-14 mt-2">Chief Manager, Simba Co</h3>
</div>
</div>
</div>
<div class="fables-forth-text-color font-italic font-14 semi-font mt-3">
No matter what issue or questions pops up, you are always there to
assist me. Thank you so much for your excellent assistance and great
customer support through years.
</div>
</div>
</div>
<div class="col-12 col-sm-6 wow fadeInDown" data-wow-delay=".9s">
<div class="fables-testimonial-block border fables-third-text-color py-4 px-6 mb-4 rounded position-relative">
<div class="row">
<div class="col-12 col-sm-3 text-center image-container shine-effect">
<img src="assets/custom/images/testimonial-img.png" alt="Fables Template" class="fables-testimonial-block-img rounded-circle">
</div>
<div class="col-12 col-sm-8">
<div class="fables-testimonial-block-info">
<h3 class="fables-forth-text-color mt-4 mb-2 font-15 semi-font">Billy Richards</h3>
<h3 class="fables-fifth-text-color font-italic font-14 mt-2">Chief Manager, Simba Co</h3>
</div>
</div>
</div>
<div class="fables-forth-text-color font-italic font-14 semi-font mt-3">
No matter what issue or questions pops up, you are always there to
assist me. Thank you so much for your excellent assistance and great
customer support through years.
</div>
</div>
</div>
<div class="col-12 col-sm-6 wow fadeInDown" data-wow-delay="1.2s">
<div class="fables-testimonial-block border fables-third-text-color py-4 px-6 mb-4 rounded position-relative">
<div class="row">
<div class="col-12 col-sm-3 text-center image-container shine-effect">
<img src="assets/custom/images/testimonial-img.png" alt="Fables Template" class="fables-testimonial-block-img rounded-circle">
</div>
<div class="col-12 col-sm-8">
<div class="fables-testimonial-block-info">
<h3 class="fables-forth-text-color mt-4 mb-2 font-15 semi-font">Billy Richards</h3>
<h3 class="fables-fifth-text-color font-italic font-14 mt-2">Chief Manager, Simba Co</h3>
</div>
</div>
</div>
<div class="fables-forth-text-color font-italic font-14 semi-font mt-3">
No matter what issue or questions pops up, you are always there to
assist me. Thank you so much for your excellent assistance and great
customer support through years.
</div>
</div>
</div>
</div>
<div class="fables-team">
<div class="row wow fadeInDown">
<div class="col-12 text-center mt- mt-md-5">
<h3 class="fables-about-top-head fables-forth-text-color font-15 semi-font d-inline-block bg-white position-relative">
<span class="mx-4">Team</span>
</h3>
<h2 class="fables-second-text-color mt-3 font-30 font-weight-bold text-center">Meet The Team</h2>
</div>
<div class="col-12 col-md-8 offset-md-2">
<p class="mt-4 mt-md-3 mb-4 mb-md-5 fables-forth-text-color text-center">
We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives
</p>
</div>
</div>
<div class="row">
<div class="col-6 col-md-3 mb-4 mb-lg-0 wow fadeInDown" data-wow-delay=".3s">
<div class="card fables-team-block fables-team-data-hover fables-second-border-color">
<img class="img-fluid" src="assets/custom/images/team1-1.jpg" alt="Card image cap">
<div class="card-body">
<h5><a href="#" class="team-name white-color white-color-hover">JOHN MARTIN</a></h5>
<p class="fables-team-pos mt-2 mb-3 italic">Programmer</p>
<ul class="nav fables-team-social-links">
<li><a href="#" target="_blank"><span class="fables-iconlinkedin-icon fables-second-text-color fables-fifth-border-color fables-team-social-icon"></span></a></li>
<li><a href="#" target="_blank"><span class="fables-icontwitter-icon fables-second-text-color fables-fifth-border-color fables-team-social-icon"></span></a></li>
<li><a href="#" target="_blank"><span class="fables-iconinstagram-icon fables-second-text-color fables-fifth-border-color fables-team-social-icon"></span></a></li>
</ul>
</div>
</div>
</div>
<div class="col-6 col-md-3 mb-4 mb-lg-0 wow fadeInDown" data-wow-delay=".3s">
<div class="card fables-team-block fables-team-data-hover fables-second-border-color">
<img class="img-fluid" src="assets/custom/images/team1-2.jpg" alt="Card image cap">
<div class="card-body">
<h5><a href="#" class="team-name white-color white-color-hover">JOHN MARTIN</a></h5>
<p class="fables-team-pos mt-2 mb-3 italic">Programmer</p>
<ul class="nav fables-team-social-links">
<li><a href="#" target="_blank"><span class="fables-iconlinkedin-icon fables-second-text-color fables-fifth-border-color fables-team-social-icon"></span></a></li>
<li><a href="#" target="_blank"><span class="fables-icontwitter-icon fables-second-text-color fables-fifth-border-color fables-team-social-icon"></span></a></li>
<li><a href="#" target="_blank"><span class="fables-iconinstagram-icon fables-second-text-color fables-fifth-border-color fables-team-social-icon"></span></a></li>
</ul>
</div>
</div>
</div>
<div class="col-6 col-md-3 mb-4 mb-lg-0 wow fadeInDown" data-wow-delay=".3s">
<div class="card fables-team-block fables-team-data-hover fables-second-border-color">
<img class="img-fluid" src="assets/custom/images/team1-3.jpg" alt="Card image cap">
<div class="card-body">
<h5><a href="#" class="team-name white-color white-color-hover">JOHN MARTIN</a></h5>
<p class="fables-team-pos mt-2 mb-3 italic">Programmer</p>
<ul class="nav fables-team-social-links">
<li><a href="#" target="_blank"><span class="fables-iconlinkedin-icon fables-second-text-color fables-fifth-border-color fables-team-social-icon"></span></a></li>
<li><a href="#" target="_blank"><span class="fables-icontwitter-icon fables-second-text-color fables-fifth-border-color fables-team-social-icon"></span></a></li>
<li><a href="#" target="_blank"><span class="fables-iconinstagram-icon fables-second-text-color fables-fifth-border-color fables-team-social-icon"></span></a></li>
</ul>
</div>
</div>
</div>
<div class="col-6 col-md-3 mb-4 mb-lg-0 wow fadeInDown" data-wow-delay=".3s">
<div class="card fables-team-block fables-team-data-hover fables-second-border-color">
<img class="img-fluid" src="assets/custom/images/team1-4.jpg" alt="Card image cap">
<div class="card-body">
<h5><a href="#" class="team-name white-color white-color-hover">JOHN MARTIN</a></h5>
<p class="fables-team-pos mt-2 mb-3 italic">Programmer</p>
<ul class="nav fables-team-social-links">
<li><a href="#" target="_blank"><span class="fables-iconlinkedin-icon fables-second-text-color fables-fifth-border-color fables-team-social-icon"></span></a></li>
<li><a href="#" target="_blank"><span class="fables-icontwitter-icon fables-second-text-color fables-fifth-border-color fables-team-social-icon"></span></a></li>
<li><a href="#" target="_blank"><span class="fables-iconinstagram-icon fables-second-text-color fables-fifth-border-color fables-team-social-icon"></span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="owl-carousel owl-theme fables-carousel-border mt-0 mb-4 my-md-5 carousel-items-6 dots-0">
<div>
<img src="assets/custom/images/partner1.jpg" alt="Fables Template" class="fables-partner-carousel-img fables-third-border-color">
</div>
<div>
<img src="assets/custom/images/partner1.jpg" alt="Fables Template" class="fables-partner-carousel-img fables-third-border-color">
</div>
<div>
<img src="assets/custom/images/partner1.jpg" alt="Fables Template" class="fables-partner-carousel-img fables-third-border-color">
</div>
<div>
<img src="assets/custom/images/partner1.jpg" alt="Fables Template" class="fables-partner-carousel-img fables-third-border-color">
</div>
<div>
<img src="assets/custom/images/partner1.jpg" alt="Fables Template" class="fables-partner-carousel-img fables-third-border-color">
</div>
<div>
<img src="assets/custom/images/partner1.jpg" alt="Fables Template" class="fables-partner-carousel-img fables-third-border-color">
</div>
<div>
<img src="assets/custom/images/partner1.jpg" alt="Fables Template" class="fables-partner-carousel-img fables-third-border-color">
</div>
<div>
<img src="assets/custom/images/partner1.jpg" alt="Fables Template" class="fables-partner-carousel-img fables-third-border-color">
</div>
<div>
<img src="assets/custom/images/partner1.jpg" alt="Fables Template" class="fables-partner-carousel-img fables-third-border-color">
</div>
</div>
</div>
<!-- /End page content -->
<!-- Start Footer 2 Background Image -->
<div class="fables-footer-image fables-after-overlay white-color py-4 py-lg-5 bg-rules">
<div class="container">
<div class="row">
<div class="col-12 col-md-8 offset-md-2 col-lg-6 offset-lg-3 mt-2 mb-5 text-center ">
<h2 class="font-30 semi-font mb-5">Newsletter</h2>
<form class="form-inline position-relative">
<div class="form-group fables-subscribe-formgroup">
<input type="email" class="form-control fables-subscribe-input fables-btn-rouned" placeholder="Your Email">
</div>
<button type="submit" class="btn fables-second-background-color fables-btn-rouned fables-subscribe-btn">Subscribe</button>
</form>
</div>
<div class="col-12 col-lg-4 mb-4 mb-lg-0">
<a href="#" class="fables-second-border-color border-bottom pb-3 d-block mb-3 mt-minus-13"><img src="assets/custom/images/fables-logo.png" alt="fables template"></a>
<p class="font-15 fables-third-text-color">
t is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.
<br><br>
t is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.
</p>
</div>
<div class="col-12 col-sm-6 col-lg-4">
<h2 class="font-20 semi-font fables-second-border-color border-bottom pb-3">Contact us</h2>
<div class="my-3">
<h4 class="font-16 semi-font"><span class="fables-iconmap-icon fables-second-text-color pr-2 font-20 mt-1 d-inline-block"></span> Address Information</h4>
<p class="font-14 fables-fifth-text-color mt-2 ml-4">level13, 2Elizabeth St, Melbourne, Victor 2000</p>
</div>
<div class="my-3">
<h4 class="font-16 semi-font"><span class="fables-iconphone fables-second-text-color pr-2 font-20 mt-1 d-inline-block"></span> Call Now </h4>
<p class="font-14 fables-fifth-text-color mt-2 ml-4">+333 111 111 000</p>
</div>
<div class="my-3">
<h4 class="font-16 semi-font"><span class="fables-iconemail fables-second-text-color pr-2 font-20 mt-1 d-inline-block"></span> Mail </h4>
<p class="font-14 fables-fifth-text-color mt-2 ml-4">[email protected]</p>
</div>
</div>
<div class="col-12 col-sm-6 col-lg-4">
<h2 class="font-20 semi-font fables-second-border-color border-bottom pb-3 mb-3">EXPLORE OUR SITE</h2>
<ul class="nav fables-footer-links">
<li><a href="about1.html">About Us</a></li>
<li><a href="contactus1.html">Contact Us</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="testimonials.html">Testimonials</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="copyright fables-main-background-color mt-0 border-0 white-color">
<ul class="nav fables-footer-social-links just-center fables-light-footer-links">
<li><a href="#" target="_blank"><i class="fab fa-google-plus-square"></i></a></li>
<li><a href="#" target="_blank"><i class="fab fa-facebook"></i></a></li>
<li><a href="#" target="_blank"><i class="fab fa-instagram"></i></a></li>
<li><a href="#" target="_blank"><i class="fab fa-pinterest-square"></i></a></li>