-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
blog-cat3.html
975 lines (898 loc) · 68.6 KB
/
blog-cat3.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
<!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>Fables Blog Cat 3</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">
<!-- FANCY BOX -->
<link href="assets/vendor/fancybox-master/jquery.fancybox.min.css" rel="stylesheet">
<!-- OffCanvasMenu -->
<link href="assets/vendor/OffCanvasMenuEffects/css/menu_sideslide.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" 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">
<div class="container">
<h2 class="fables-page-title fables-second-border-color">Blog Cat 3</h2>
</div>
</div>
<!-- /End Header -->
<!-- Start Breadcrumbs -->
<div class="fables-light-background-color">
<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">Blog Cat 3</li>
</ol>
</nav>
</div>
</div>
<!-- /End Breadcrumbs -->
<!-- Start page content -->
<div class="container">
<div class="row mt-4 mt-lg-5">
<div class="col-12 col-sm-6 col-md-4 mb-4 mb-lg-5">
<div class="image-container zoomOut-effect">
<a href="#"><img src="assets/custom/images/business-support.jpg" alt="image alt text" class="w-100"></a>
</div>
<h2 class="font-18 semi-font mt-3 mb-2"><a href="#" class="fables-main-text-color fables-second-hover-color">Getting to Another Level of Design</a></h2>
<div class="fables-forth-text-color font-14 mb-2">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="fables-main-text-color fables-second-hover-color">2</a>
</div>
<p class="fables-forth-text-color font-14 mb-3">
When you need your company to have a new website or if you venture on updating your old webpage with a new look and functionality the choices are versatile Assuming that you will go the easy way .
</p>
<a href="" class="btn fables-main-text-color fables-second-hover-color font-14 p-0 underline">Read More</a>
</div>
<div class="col-12 col-sm-6 col-md-4 mb-4 mb-lg-5">
<div class="owl-carousel owl-theme default-carousel absolute-dots nav-0">
<div class="image-container zoomOut-effect">
<a href="#">
<img src="assets/custom/images/cat-larg1.jpg" alt="" class="w-100">
</a>
</div>
<div class="image-container zoomOut-effect">
<a href="#">
<img src="assets/custom/images/cat-larg2.jpg" alt="" class="w-100">
</a>
</div>
<div class="image-container zoomOut-effect">
<a href="#">
<img src="assets/custom/images/cat-larg3.jpg" alt="" class="w-100">
</a>
</div>
</div>
<h2 class="font-18 semi-font mt-3 mb-2"><a href="#" class="fables-main-text-color fables-second-hover-color">Getting to Another Level of Design</a></h2>
<div class="fables-forth-text-color font-14 mb-2">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="fables-main-text-color fables-second-hover-color">2</a>
</div>
<p class="fables-forth-text-color font-14 mb-3">
When you need your company to have a new website or if you venture on updating your old webpage with a new look and functionality the choices are versatile Assuming that you will go the easy way .
</p>
<a href="" class="btn fables-main-text-color fables-second-hover-color font-14 p-0 underline">Read More</a>
</div>
<div class="col-12 col-sm-6 col-md-4 mb-4 mb-lg-5">
<div class="image-container zoomOut-effect">
<a href="#"><img src="assets/custom/images/cat-larg3.jpg" alt="" class="w-100"></a>
</div>
<h2 class="font-18 semi-font mt-3 mb-2"><a href="#" class="fables-main-text-color fables-second-hover-color">Getting to Another Level of Design</a></h2>
<div class="fables-forth-text-color font-14 mb-2">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="fables-main-text-color fables-second-hover-color">2</a>
</div>
<p class="fables-forth-text-color font-14 mb-3">
When you need your company to have a new website or if you venture on updating your old webpage with a new look and functionality the choices are versatile Assuming that you will go the easy way .
</p>
<a href="" class="btn fables-main-text-color fables-second-hover-color font-14 p-0 underline">Read More</a>
</div>
<div class="col-12 col-sm-6 col-md-4 mb-4 mb-lg-5">
<div class="image-container zoomOut-effect">
<a href="#"><img src="assets/custom/images/cat-larg4.jpg" alt="" class="w-100"></a>
</div>
<h2 class="font-18 semi-font mt-3 mb-2"><a href="#" class="fables-main-text-color fables-second-hover-color">Getting to Another Level of Design</a></h2>
<div class="fables-forth-text-color font-14 mb-2">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="fables-main-text-color fables-second-hover-color">2</a>
</div>
<p class="fables-forth-text-color font-14 mb-3">
When you need your company to have a new website or if you venture on updating your old webpage with a new look and functionality the choices are versatile Assuming that you will go the easy way .
</p>
<a href="" class="btn fables-main-text-color fables-second-hover-color font-14 p-0 underline">Read More</a>
</div>
<div class="col-12 col-sm-6 col-md-8 mb-4 mb-lg-5">
<div class="owl-carousel owl-theme default-carousel absolute-dots nav-0">
<div class="image-container zoomOut-effect">
<a href="#"><img src="assets/custom/images/blog-xl-img1.jpg" alt="" class="w-100"></a>
</div>
<div class="image-container zoomOut-effect">
<a href="#"><img src="assets/custom/images/blog-xl-img1.jpg" alt="" class="w-100"></a>
</div>
</div>
<h2 class="font-18 semi-font mt-3 mb-2"><a href="#" class="fables-main-text-color fables-second-hover-color">Getting to Another Level of Design</a></h2>
<div class="fables-forth-text-color font-14 mb-2">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="fables-main-text-color fables-second-hover-color">2</a>
</div>
<p class="fables-forth-text-color font-14 mb-3">
When you need your company to have a new website or if you venture on updating your old webpage with a new look and functionality the choices are versatile Assuming that you will go the easy way .
versatile Assuming that you will go the easy way . versatile Assuming that you will go the easy way
versatile Assuming that you will go the easy way.
</p>
<a href="" class="btn fables-main-text-color fables-second-hover-color font-14 p-0 underline">Read More</a>
</div>
<div class="col-12 col-sm-6 col-md-4 mb-4 mb-lg-5">
<div class="position-relative image-container zoomOut-effect">
<img src="assets/custom/images/cat-larg1.jpg" alt="" class="w-100">
<div class="demo-gallery-poster fables-main-gradient">
<a data-fancybox href="https://www.youtube.com/watch?v=meBbDqAXago">
<img src="assets/custom/images/play-button.png" alt="play button" class="w-100">
</a>
</div>
</div>
<h2 class="font-18 semi-font mt-3 mb-2"><a href="#" class="fables-main-text-color fables-second-hover-color">Getting to Another Level of Design</a></h2>
<div class="fables-forth-text-color font-14 mb-2">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="fables-main-text-color fables-second-hover-color">2</a>
</div>
<p class="fables-forth-text-color font-14 mb-3">
When you need your company to have a new website or if you venture on updating your old webpage with a new look and functionality the choices are versatile Assuming that you will go the easy way .
</p>
<a href="" class="btn fables-main-text-color fables-second-hover-color font-14 p-0 underline">Read More</a>
</div>
<div class="col-12 col-sm-6 col-md-4 mb-4 mb-lg-5">
<div class="image-container zoomOut-effect">
<a href="#"><img src="assets/custom/images/lamp.jpg" alt="" class="w-100"></a>
</div>
<h2 class="font-18 semi-font mt-3 mb-2"><a href="#" class="fables-main-text-color fables-second-hover-color">Getting to Another Level of Design</a></h2>
<div class="fables-forth-text-color font-14 mb-2">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="fables-main-text-color fables-second-hover-color">2</a>
</div>
<p class="fables-forth-text-color font-14 mb-3">
When you need your company to have a new website or if you venture on updating your old webpage with a new look and functionality the choices are versatile Assuming that you will go the easy way .
</p>
<a href="" class="btn fables-main-text-color fables-second-hover-color font-14 p-0 underline">Read More</a>
</div>
<div class="col-12 col-sm-6 col-md-4 mb-4 mb-lg-5">
<div class="position-relative image-container zoomOut-effect">
<img src="assets/custom/images/cat-larg1.jpg" alt="" class="w-100">
<div class="demo-gallery-poster fables-main-gradient">
<a data-fancybox href="https://www.youtube.com/watch?v=meBbDqAXago">
<img src="assets/custom/images/play-button.png" alt="play button" class="w-100">
</a>
</div>
</div>
<h2 class="font-18 semi-font mt-3 mb-2"><a href="#" class="fables-main-text-color fables-second-hover-color">Getting to Another Level of Design</a></h2>
<div class="fables-forth-text-color font-14 mb-2">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="fables-main-text-color fables-second-hover-color">2</a>
</div>
<p class="fables-forth-text-color font-14 mb-3">
When you need your company to have a new website or if you venture on updating your old webpage with a new look and functionality the choices are versatile Assuming that you will go the easy way .
</p>
<a href="" class="btn fables-main-text-color fables-second-hover-color font-14 p-0 underline">Read More</a>
</div>
</div>
<div class="fables-latest-news">
<h2 class="fables-forth-text-color fables-light-background-color mb-3 mb-lg-5 p-3 font-18 semi-font">Latest News</h2>
<div class="row">
<div class="col-12 col-sm-6 col-lg-4">
<div class="latest-news-img-block" style="background-image:url(assets/custom/images/post-1.jpg);background-size: cover">
<p class="latest-news-text fables-testimonial-detail fables-main-color-transparent italic text-white font-14 text-center p-6">
When you need your company to
have a new website or if you venture on updating your
old webpage with a new look and functionality
</p>
</div>
<div class="latest-news-img-block mt-5 mb-4 mb-md-0 bg-r" style="background-image: url(assets/custom/images/post-2.jpg);background-size: cover">
<p class="latest-news-text fables-second-color-transparent fables-text-overlay text-white font-14 italic">
When you need your company to
have a new website or if you venture on updating your
old webpage with a new look and functionality
</p>
</div>
</div>
<div class="col-12 col-sm-6 col-lg-4">
<div class="image-container zoomOut-effect">
<a href="#"><img src="assets/custom/images/mobile-apps.jpg" alt="" class="w-100"></a>
</div>
<h2 class="font-18 semi-font mt-3 mb-2"><a href="#" class="fables-main-text-color fables-second-hover-color">Getting to Another Level of Design</a></h2>
<div class="fables-forth-text-color font-14 mb-2">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-2 mr-sm-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="fables-main-text-color fables-second-hover-color">2</a>
</div>
<p class="fables-forth-text-color font-14 mb-3">
When you need your company to have a new website or if you venture on updating your old webpage with a new look and functionality the choices are versatile Assuming that you When you need your company to have a new website or if you venture on updating your old webpage.
with a new look and functionality the choices are
</p>
<a href="" class="btn fables-main-text-color fables-second-hover-color font-14 p-0 underline">Read More <i class="fas fa-chevron-right"></i></a>
</div>
<div class="col-12 col-lg-4 mt-4 mt-lg-0">
<div class="mb-4">
<div class="row">
<div class="col-4">
<a href="#"><img src="assets/custom/images/blog-cat1.jpg" alt="" class="w-100"></a>
</div>
<div class="col-8 pl-0">
<a href="#" class="fables-main-text-color semi-font fables-second-hover-color">LUIS LEATHER DRIVING MOCCASINS FROM ... </a>
<div class="fables-forth-text-color font-14 mb-2">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-2 mr-sm-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="fables-main-text-color fables-second-hover-color">2</a>
</div>
</div>
</div>
</div>
<div class="mb-4">
<div class="row">
<div class="col-4">
<a href="#"><img src="assets/custom/images/blog-cat2.jpg" alt="" class="w-100"></a>
</div>
<div class="col-8 pl-0">
<a href="#" class="fables-main-text-color semi-font fables-second-hover-color">LUIS LEATHER DRIVING MOCCASINS FROM ... </a>
<div class="fables-forth-text-color font-14 mb-2">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-2 mr-sm-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="fables-main-text-color fables-second-hover-color">2</a>
</div>
</div>
</div>
</div>
<div class="mb-4">
<div class="row">
<div class="col-4">
<a href="#"><img src="assets/custom/images/blog-cat3.jpg" alt="" class="w-100"></a>
</div>
<div class="col-8 pl-0">
<a href="#" class="fables-main-text-color semi-font fables-second-hover-color">LUIS LEATHER DRIVING MOCCASINS FROM ... </a>
<div class="fables-forth-text-color font-14 mb-2">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-2 mr-sm-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="fables-main-text-color fables-second-hover-color">2</a>
</div>
</div>
</div>
</div>
<div class="mb-4">
<div class="row">
<div class="col-4">
<a href="#"><img src="assets/custom/images/blog-cat4.jpg" alt="" class="w-100"></a>
</div>
<div class="col-8 pl-0">
<a href="#" class="fables-main-text-color semi-font fables-second-hover-color">LUIS LEATHER DRIVING MOCCASINS FROM ... </a>
<div class="fables-forth-text-color font-14 mb-2">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-2 mr-sm-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="fables-main-text-color fables-second-hover-color">2</a>
</div>
</div>
</div>
</div>
<div class="mb-4">
<div class="row">
<div class="col-4">
<a href="#"><img src="assets/custom/images/blog-cat5.jpg" alt="" class="w-100"></a>
</div>
<div class="col-8 pl-0">
<a href="#" class="fables-main-text-color semi-font fables-second-hover-color">LUIS LEATHER DRIVING MOCCASINS FROM ... </a>
<div class="fables-forth-text-color font-14 mb-2">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="fables-main-text-color fables-second-hover-color">2</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="fables-blog-teaser">
<h2 class="fables-forth-text-color fables-light-background-color mb-4 mb-lg-5 p-3 font-18 semi-font">Blog teaser</h2>
<div class="row">
<div class="col-12 col-lg-8 mb-4">
<div class="position-relative image-container zoomOut-effect">
<a href="#"><img src="assets/custom/images/blog-teaser-img1.jpg" alt="" class="w-100"></a>
<div class="fables-blog-overlay text-white pl-md-5 pb-5 pl-3">
<div class="text-white font-14">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="text-white fables-second-hover-color position-relative z-index">2</a>
</div>
<h2 class="position-relative z-index"><a href="#" class="font-18 semi-font pb-3 text-white border-bottom">Getting to Another Level of Design</a></h2>
</div>
</div>
</div>
<div class="col-12 col-lg-4">
<div class="position-relative mb-4 image-container zoomOut-effect">
<a href="#"><img src="assets/custom/images/blog-teaser-img1.jpg" alt="" class="w-100"></a>
<div class="fables-blog-overlay text-white pl-md-5 pb-5 pl-3">
<div class="text-white font-14">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="text-white fables-second-hover-color position-relative z-index">2</a>
</div>
<h2 class="position-relative z-index"><a href="#" class="font-18 semi-font pb-3 text-white border-bottom">Getting to Another Level of Design</a></h2>
</div>
</div>
<div class="position-relative mb-4 image-container zoomOut-effect">
<a href="#"><img src="assets/custom/images/blog-teaser-img1.jpg" alt="" class="w-100"></a>
<div class="fables-blog-overlay text-white pl-md-5 pb-5 pl-3">
<div class="text-white font-14">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="text-white fables-second-hover-color position-relative z-index">2</a>
</div>
<h2 class="position-relative z-index"><a href="#" class="font-18 semi-font pb-3 text-white border-bottom">Getting to Another Level of Design</a></h2>
</div>
</div>
</div>
<div class="col-12 col-lg-4 mb-4 mb-lg-0">
<div class="position-relative image-container zoomOut-effect">
<a href="#"><img src="assets/custom/images/blog-teaser-img2.jpg" alt="" class="w-100"></a>
<div class="fables-blog-overlay text-white pl-4 pb-5">
<div class="text-white font-14">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="text-white fables-second-hover-color position-relative z-index">2</a>
</div>
<h2 class="position-relative z-index"><a href="#" class="font-18 semi-font pb-3 text-white border-bottom">Getting to Another Level of Design</a></h2>
</div>
</div>
</div>
<div class="col-12 col-lg-4 mb-4 mb-lg-0">
<div class="position-relative image-container zoomOut-effect">
<img src="assets/custom/images/Article-Writing.jpg" alt="" class="w-100">
<div class="demo-gallery-poster fables-main-gradient">
<a data-fancybox href="https://www.youtube.com/watch?v=meBbDqAXago">
<img src="assets/custom/images/play-button.png" alt="play button" class="w-100">
</a>
</div>
</div>
</div>
<div class="col-12 col-lg-4 mb-4 mb-lg-0">
<div class="owl-carousel owl-theme default-carousel absolute-dots nav-0">
<div>
<div class="image-container zoomOut-effect">
<a href="#"><img src="assets/custom/images/Article-Writing2.jpg" alt="" class="w-100"></a>
</div>
<div class="fables-blog-overlay text-white pl-4 pb-5">
<h2 class="position-relative z-index mb-2"><a href="#" class="font-18 semi-font text-white">Getting to Another Level of Design</a></h2>
<div class="text-white font-14 z-index position-relative">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="text-white fables-second-hover-color position-relative z-index">2</a>
</div>
</div>
</div>
<div>
<div class="image-container zoomOut-effect">
<a href="#"><img src="assets/custom/images/Article-Writing.jpg" alt="" class="w-100"></a>
</div>
<div class="fables-blog-overlay text-white pl-4 pb-5">
<h2 class="position-relative z-index mb-2"><a href="#" class="font-18 semi-font text-white">Getting to Another Level of Design</a></h2>
<div class="text-white font-14 z-index position-relative">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="text-white fables-second-hover-color position-relative z-index">2</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="fables-blog-slider mt-lg-5">
<h2 class="fables-forth-text-color fables-light-background-color mb-4 mb-lg-5 p-3 font-18 semi-font">Blog Slider</h2>
<div class="owl-carousel owl-theme fables-main-dots carousel-items-4 mb-4 mb-lg-">
<div>
<div class="image-container zoomOut-effect">
<a href="#"><img src="assets/custom/images/blog-cat1.jpg" alt="" class="w-100"></a>
</div>
<div class="fables-forth-text-color font-14 my-2">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="fables-forth-text-color fables-second-hover-color position-relative z-index">2</a>
</div>
<h2 class="font-18 semi-font"><a href="#" class="fables-main-text-color fables-second-hover-color">Getting to Another Level of Design</a></h2>
<a href="" class="btn fables-second-text-color fables-main-hover-color font-14 p-0 my-3">Read More <i class="fas fa-chevron-right"></i></a>
</div>
<div>
<div class="image-container zoomOut-effect">
<a href="#"><img src="assets/custom/images/blog-cat2.jpg" alt="" class="w-100"></a>
</div>
<div class="fables-forth-text-color font-14 my-2">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="fables-forth-text-color fables-second-hover-color position-relative z-index">2</a>
</div>
<h2 class="font-18 semi-font"><a href="#" class="fables-main-text-color fables-second-hover-color">Getting to Another Level of Design</a></h2>
<a href="" class="btn fables-second-text-color fables-main-hover-color font-14 p-0 my-3">Read More <i class="fas fa-chevron-right"></i></a>
</div>
<div>
<div class="image-container zoomOut-effect">
<a href="#"><img src="assets/custom/images/blog-cat3.jpg" alt="" class="w-100"></a>
</div>
<div class="fables-forth-text-color font-14 my-2">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="fables-forth-text-color fables-second-hover-color position-relative z-index">2</a>
</div>
<h2 class="font-18 semi-font"><a href="#" class="fables-main-text-color fables-second-hover-color">Getting to Another Level of Design</a></h2>
<a href="" class="btn fables-second-text-color fables-main-hover-color font-14 p-0 my-3">Read More <i class="fas fa-chevron-right"></i></a>
</div>
<div>
<div class="image-container zoomOut-effect">
<a href="#"><img src="assets/custom/images/blog-cat4.jpg" alt="" class="w-100"></a>
</div>
<div class="fables-forth-text-color font-14 my-2">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="fables-forth-text-color fables-second-hover-color position-relative z-index">2</a>
</div>
<h2 class="font-18 semi-font"><a href="#" class="fables-main-text-color fables-second-hover-color">Getting to Another Level of Design</a></h2>
<a href="" class="btn fables-second-text-color fables-main-hover-color font-14 p-0 my-3">Read More <i class="fas fa-chevron-right"></i></a>
</div>
<div>
<div class="image-container zoomOut-effect">
<a href="#"><img src="assets/custom/images/blog-cat1.jpg" alt="" class="w-100"></a>
</div>
<div class="fables-forth-text-color font-14 my-2">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="fables-forth-text-color fables-second-hover-color position-relative z-index">2</a>
</div>
<h2 class="font-18 semi-font"><a href="#" class="fables-main-text-color fables-second-hover-color">Getting to Another Level of Design</a></h2>
<a href="" class="btn fables-second-text-color fables-main-hover-color font-14 p-0 my-3">Read More <i class="fas fa-chevron-right"></i></a>
</div>
<div>
<div class="image-container zoomOut-effect">
<a href="#"><img src="assets/custom/images/blog-cat2.jpg" alt="" class="w-100"></a>
</div>
<div class="fables-forth-text-color font-14 my-2">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="fables-forth-text-color fables-second-hover-color position-relative z-index">2</a>
</div>
<h2 class="font-18 semi-font"><a href="#" class="fables-main-text-color fables-second-hover-color">Getting to Another Level of Design</a></h2>
<a href="" class="btn fables-second-text-color fables-main-hover-color font-14 p-0 my-3">Read More <i class="fas fa-chevron-right"></i></a>
</div>
<div>
<div class="image-container zoomOut-effect">
<a href="#"><img src="assets/custom/images/blog-cat3.jpg" alt="" class="w-100"></a>
</div>
<div class="fables-forth-text-color font-14 my-2">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="fables-forth-text-color fables-second-hover-color position-relative z-index">2</a>
</div>
<h2 class="font-18 semi-font"><a href="#" class="fables-main-text-color fables-second-hover-color">Getting to Another Level of Design</a></h2>
<a href="" class="btn fables-second-text-color fables-main-hover-color font-14 p-0 my-3">Read More <i class="fas fa-chevron-right"></i></a>
</div>
<div>
<div class="image-container zoomOut-effect">
<a href="#"><img src="assets/custom/images/blog-cat4.jpg" alt="" class="w-100"></a>
</div>
<div class="fables-forth-text-color font-14 my-2">
<span class="fables-icondata fables-second-text-color mr-1"></span>
<span class="mr-3"> 09 November, 2018 </span>
<span class="fables-iconcomment fables-second-text-color mr-1"></span>
<a href="" class="fables-forth-text-color fables-second-hover-color position-relative z-index">2</a>
</div>
<h2 class="font-18 semi-font"><a href="#" class="fables-main-text-color fables-second-hover-color">Getting to Another Level of Design</a></h2>
<a href="" class="btn fables-second-text-color fables-main-hover-color font-14 p-0 my-3">Read More <i class="fas fa-chevron-right"></i></a>
</div>
</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>
<li><a href="#" target="_blank"><i class="fab fa-twitter-square"></i></a></li>
<li><a href="#" target="_blank"><i class="fab fa-linkedin"></i></a></li>
</ul>
<p class="mb-0">Copyright © Fables 2018. All rights reserved.</p>
</div>
<!-- /End Footer 2 Background Image -->
<script src="assets/vendor/jquery/jquery-3.3.1.min.js"></script>
<script src="assets/vendor/jquery-circle-progress/circle-progress.min.js"></script>
<script src="assets/vendor/popper/popper.min.js"></script>
<script src="assets/vendor/loadscreen/js/ju-loading-screen.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.min.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap-4-navbar.js"></script>
<script src="assets/vendor/fancybox-master/jquery.fancybox.min.js"></script>
<script src="assets/vendor/WOW-master/dist/wow.min.js"></script>
<script src="assets/vendor/owlcarousel/owl.carousel.min.js"></script>
<script src="assets/vendor/timeline/jquery.timelify.js"></script>
<script src="assets/custom/js/custom.js"></script>
</body>
</html>