-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-mp-layout2.html
2260 lines (2229 loc) · 140 KB
/
index-mp-layout2.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 dir="ltr" lang="en">
<!-- Mirrored from kodesolution.com/html/2017/kidspro-html-b5/index-mp-layout2.html by HTTrack Website Copier/3.x [XR&CO'2017], Mon, 22 May 2023 09:39:05 GMT -->
<head>
<!-- Meta Tags -->
<meta name="viewport" content="width=device-width,initial-scale=1.0"/>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<meta name="description" content="KidsPro - Kids Education & Kindergarten School HTML5 Template" />
<meta name="keywords" content="kindergarten,children,kidsschool,school,baby,childschool,academy,course,education," />
<meta name="author" content="ThemeMascot" />
<!-- Page Title -->
<title>KidsPro - Kids Education & Kindergarten School HTML5 Template</title>
<!-- Favicon and Touch Icons -->
<link href="images/favicon.png" rel="shortcut icon" type="image/png">
<link href="images/apple-touch-icon.png" rel="apple-touch-icon">
<link href="images/apple-touch-icon-72x72.png" rel="apple-touch-icon" sizes="72x72">
<link href="images/apple-touch-icon-114x114.png" rel="apple-touch-icon" sizes="114x114">
<link href="images/apple-touch-icon-144x144.png" rel="apple-touch-icon" sizes="144x144">
<!-- Stylesheet -->
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="css/animate.min.css" rel="stylesheet" type="text/css">
<link href="css/javascript-plugins-bundle.css" rel="stylesheet"/>
<!-- CSS | menuzord megamenu skins -->
<link href="js/menuzord/css/menuzord.css" rel="stylesheet"/>
<!-- CSS | Main style file -->
<link href="css/style-main.css" rel="stylesheet" type="text/css">
<link id="menuzord-menu-skins" href="css/menuzord-skins/menuzord-rounded-boxed.css" rel="stylesheet"/>
<!-- CSS | Responsive media queries -->
<link href="css/responsive.css" rel="stylesheet" type="text/css">
<!-- CSS | Style css. This is the file where you can place your own custom css code. Just uncomment it and use it. -->
<!-- CSS | Theme Color -->
<link href="css/colors/theme-skin-color-set1.css" rel="stylesheet" type="text/css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lobster+Two&family=Lora:ital,wght@0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<!-- external javascripts -->
<script src="js/jquery.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/javascript-plugins-bundle.js"></script>
<script src="js/menuzord/js/menuzord.js"></script>
<!-- REVOLUTION STYLE SHEETS -->
<link rel="stylesheet" type="text/css" href="js/revolution-slider/css/rs6.css">
<link rel="stylesheet" type="text/css" href="js/revolution-slider/extra-rev-slider1.css">
<!-- REVOLUTION LAYERS STYLES -->
<!-- REVOLUTION JS FILES -->
<script src="js/revolution-slider/js/revolution.tools.min.js"></script>
<script src="js/revolution-slider/js/rs6.min.js"></script>
<script src="js/revolution-slider/extra-rev-slider1.js"></script>
<!-- <link href="css/style.css" rel="stylesheet" type="text/css"> -->
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body class="tm-container-1230px has-side-panel side-panel-right">
<div class="side-panel-body-overlay"></div>
<div id="side-panel-container" class="dark" data-tm-bg-img="images/side-push-bg.jpg">
<div class="side-panel-wrap">
<div id="side-panel-trigger-close" class="side-panel-trigger"><a href="#"><i class="fa fa-times side-panel-trigger-icon"></i></a></div>
<img class="logo mb-50" src="images/logo-wide.png" alt="Logo">
<p>Lorem ipsum is simply free text dolor sit am adipi we help you ensure everyone is in the right jobs sicing elit, sed do consulting firms Et leggings across the nation tempor.</p>
<div class="widget">
<h4 class="widget-title widget-title-line-bottom line-bottom-theme-colored1">Latest News</h4>
<div class="latest-posts">
<article class="post clearfix pb-0 mb-10">
<a class="post-thumb" href="news-details.html"><img src="images/blog/s1.jpg" alt="images"></a>
<div class="post-right">
<h5 class="post-title mt--0"><a href="news-details.html">Sustainable Construction</a></h5>
<p>Lorem ipsum dolor...</p>
</div>
</article>
<article class="post clearfix pb-0 mb-10">
<a class="post-thumb" href="news-details.html"><img src="images/blog/s2.jpg" alt="images"></a>
<div class="post-right">
<h5 class="post-title mt--0"><a href="news-details.html">Industrial Coatings</a></h5>
<p>Lorem ipsum dolor...</p>
</div>
</article>
<article class="post clearfix pb-0 mb-10">
<a class="post-thumb" href="news-details.html"><img src="images/blog/s3.jpg" alt="images"></a>
<div class="post-right">
<h5 class="post-title mt--0"><a href="news-details.html">Storefront Installations</a></h5>
<p>Lorem ipsum dolor...</p>
</div>
</article>
</div>
</div>
<div class="widget">
<h5 class="widget-title widget-title-line-bottom line-bottom-theme-colored1">Contact Info</h5>
<div class="tm-widget-contact-info contact-info-style1 contact-icon-theme-colored1">
<ul>
<li class="contact-name">
<div class="icon"><i class="flaticon-contact-037-address"></i></div>
<div class="text">John Doe</div>
</li>
<li class="contact-phone">
<div class="icon"><i class="flaticon-contact-042-phone-1"></i></div>
<div class="text"><a href="tel:+510-455-6735">+510-455-6735</a></div>
</li>
<li class="contact-email">
<div class="icon"><i class="flaticon-contact-043-email-1"></i></div>
<div class="text"><a href="mailto:info@yourdomain.com">info@yourdomain.com</a></div>
</li>
<li class="contact-address">
<div class="icon"><i class="flaticon-contact-047-location"></i></div>
<div class="text">3982 Browning Lane Carolyns Circle, California</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="wrapper" class="clearfix">
<!-- Header -->
<header id="header" class="header header-layout-type-header-3rows header-nav-left">
<div class="header-top">
<div class="container">
<div class="row">
<div class="col-xl-auto header-top-left align-self-center text-center text-xl-start">
<ul class="element contact-info">
<li class="contact-phone"><i class="fa fa-phone font-icon sm-display-block"></i> Tel: +440-98-5298</li>
<li class="contact-email"><i class="fa fa-envelope font-icon sm-display-block"></i> info@example.com</li>
<li class="contact-address"><i class="fa fa-map font-icon sm-display-block"></i> 121 King Street, Melbourne</li>
</ul>
</div>
<div class="col-xl-auto ms-xl-auto header-top-right align-self-center text-center text-xl-end">
<div class="element pt-0 pb-0">
<ul class="styled-icons icon-dark icon-theme-colored1 icon-circled clearfix">
<li><a class="social-link" href="#" ><i class="fab fa-facebook"></i></a></li>
<li><a class="social-link" href="#" ><i class="fab fa-twitter"></i></a></li>
<li><a class="social-link" href="#" ><i class="fab fa-youtube"></i></a></li>
</ul>
</div>
<div class="element pt-0 pt-lg-10 pb-0">
<a href="ajax-load/form-appointment.html" class="btn btn-theme-colored2 btn-sm ajaxload-popup">Make an Appointment</a>
</div>
</div>
</div>
</div>
</div>
<div class="header-middle">
<div class="container">
<div class="row">
<div class="col-xl-auto align-self-center header-mid-left text-center text-xl-start">
<a class="menuzord-brand site-brand" href="index-mp-layout1.html">
<img class="logo-default logo-1x" src="images/logo-wide.png" alt="Logo">
<img class="logo-default logo-2x retina" src="images/logo-wide%402x.png" alt="Logo">
</a>
</div>
<div class="col-xl-auto align-self-center ms-xl-auto header-mid-right text-center text-xl-end">
<div class="header-mid-column3-container">
<div class="row justify-content-sm-center">
<div class="col-sm-auto element text-center text-md-start">
<div class="contact-info-box big-icon">
<div class="left-thumb"> <a href="tel:(123)456-78-90"> <i class="flaticon-contact-044-call-1 font-icon sm-display-block"></i> </a></div>
<div class="media-body">
<h5 class="title">Call us at</h5>
<div class="subtitle"><a href="tel:(123)456-78-90">(123)456-78-90</a></div>
</div>
</div>
</div>
<div class="col-sm-auto element text-center text-md-start">
<div class="contact-info-box big-icon">
<div class="left-thumb"> <a href="mailto:info@example.com"> <i class="flaticon-contact-043-email-1 font-icon sm-display-block"></i> </a></div>
<div class="media-body">
<h5 class="title">Email us</h5>
<div class="subtitle"><a href="mailto:info@example.com">info@example.com</a></div>
</div>
</div>
</div>
<div class="col-sm-auto element text-center text-md-start">
<div class="contact-info-box big-icon">
<div class="left-thumb"> <a href="#"> <i class="flaticon-contact-025-world font-icon sm-display-block"></i> </a></div>
<div class="media-body">
<h5 class="title">Envato HQ</h5>
<div class="subtitle">121 King Street, Melbourne</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="header-nav tm-enable-navbar-hide-on-scroll">
<div class="header-nav-wrapper navbar-scrolltofixed">
<div class="menuzord-container header-nav-container">
<div class="container position-relative">
<div class="row header-nav-col-row">
<div class="col-sm-auto align-self-center">
<nav id="top-primary-nav" class="menuzord theme-color2" data-effect="fade" data-animation="none" data-align="right">
<ul id="main-nav" class="menuzord-menu">
<li class="active menu-item">
<a href="#">Home</a>
<div class="megamenu megamenu-fullwidth megamenu-position-left">
<div class="megamenu-row">
<div class="col3">
<ul class="list-unstyled list-dashed">
<li class="menu-item">
<a class="tm-submenu-title" href="#"><span>All Main Layouts</span></a>
<ul class="list-unstyled">
<li><a href="index-mp-layout1.html">index Multipage Layout1</a></li>
<li><a href="index-mp-layout2.html">index Multipage Layout2</a></li>
<li><a href="index-mp-layout3.html">index Multipage Layout3</a></li>
<li><a href="index-mp-layout4.html">index Multipage Layout4</a></li>
</ul>
</li>
</ul>
</div>
<div class="col3">
<ul class="list-unstyled list-dashed">
<li class="menu-item">
<a class="tm-submenu-title" href="#"><span>Single Layouts</span> <span class="badge bg-danger">New</span></a>
<ul class="list-unstyled">
<li><a href="index-sp-layout1.html">index Single Layout1</a></li>
<li><a href="index-sp-layout2.html">index Single Layout2</a></li>
<li><a href="index-sp-layout3.html">index Single Layout3</a></li>
</ul>
</li>
<li class="menu-item">
<a class="tm-submenu-title" href="#"><span>Boxed Layouts</span> <span class="badge bg-danger">New</span></a>
<ul class="list-unstyled">
<li><a href="index-boxed-mp-layout1.html">Boxed Multipage</a></li>
<li><a href="index-boxed-mp-layout2.html">Boxed Multipage2</a></li>
<li><a href="index-boxed-mp-layout3.html">Boxed Multipage3</a></li>
<li><a href="index-boxed-sp-layout1.html">Boxed Single</a></li>
<li><a href="index-boxed-sp-layout2.html">Boxed Single2</a></li>
<li><a href="index-boxed-sp-layout3.html">Boxed Single3</a></li>
</ul>
</li>
</ul>
</div>
<div class="col3">
<ul class="list-unstyled list-dashed">
<li class="menu-item">
<a class="tm-submenu-title" href="#"><span>Dark Layouts</span> <span class="badge bg-danger">New</span></a>
<ul class="list-unstyled">
<li><a href="index-dark-mp-layout1.html">Dark Layout1</a></li>
<li><a href="index-dark-mp-layout2.html">Dark Layout2</a></li>
<li><a href="index-dark-mp-layout3.html">Dark Layout3</a></li>
</ul>
</li>
<li class="menu-item">
<a class="tm-submenu-title" href="#"><span>Vertical Nav</span> <span class="badge bg-danger">New</span></a>
<ul class="list-unstyled">
<li><a href="index-vertical-nav-mp-layout1.html">Vertical Nav Layout1</a></li>
<li><a href="index-vertical-nav-sp-layout1.html">Vertical Nav Layout1</a></li>
</ul>
</li>
</ul>
</div>
<div class="col3">
<ul class="list-unstyled list-dashed">
<li class="menu-item">
<a class="tm-submenu-title" href="#"><span>RTL Layouts</span> <span class="badge bg-danger">New</span></a>
<ul class="list-unstyled">
<li><a href="index-rtl-layout1.html">RTL Layout1</a></li>
<li><a href="index-rtl-layout2.html">RTL Layout2</a></li>
<li><a href="index-rtl-layout3.html">RTL Layout3</a></li>
</ul>
</li>
<li class="menu-item">
<a class="tm-submenu-title" href="#"><span>Menu Full Page</span> <span class="badge bg-danger">New</span></a>
<ul class="list-unstyled">
<li><a href="index-menu-full-page-mp.html">Menu Full Page Multi</a></li>
<li><a href="index-menu-full-page-sp.html">Menu Full Page Single</a></li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</li>
<li class="menu-item">
<a href="#">Hot</a>
<div class="megamenu megamenu-fullwidth megamenu-position-left">
<div class="megamenu-row">
<div class="col3">
<ul class="list-unstyled list-dashed">
<li class="menu-item">
<ul class="list-unstyled">
<li class=""><a class=" tm-submenu-title" href="#"><span>Split Slider</span> <span class="badge bg-danger">New</span></a></li>
<li><a href="index-hot-slider-split-home-layout1.html">Slider Split Home Layout1</a></li>
<li><a href="index-hot-slider-split-home-layout2.html">Slider Split Home Layout2</a></li>
<li class=""><a class=" tm-submenu-title" href="#"><span>Fullpage Slider</span> <span class="badge bg-danger">New</span></a></li>
<li><a href="index-hot-slider-fullpage-home.html">Slider Fullpage Home Layout</a></li>
<li class=""><a class=" tm-submenu-title" href="#"><span>PagePiling Slider</span> <span class="badge bg-danger">New</span></a></li>
<li><a href="index-hot-slider-pagepiling-home.html">Slider PagePiling Home Layout</a></li>
<li class=""><a class=" tm-submenu-title" href="#"><span>Magazine Layouts</span> <span class="badge bg-danger">New</span></a></li>
<li><a href="index-hot-magazine-home.html">Magazine Home Layout</a></li>
<li class=""><a class=" tm-submenu-title" href="#"><span>Personal Home</span> <span class="badge bg-danger">New</span></a></li>
<li><a href="index-hot-personal-home-layout1.html">Personal Home Layout1</a></li>
<li><a href="index-hot-personal-home-layout2.html">Personal Home Layout2</a></li>
<li><a href="index-hot-personal-home-layout3.html">Personal Home Layout3</a></li>
<li><a href="index-hot-personal-home-layout4.html">Personal Home Layout4</a></li>
</ul>
</li>
</ul>
</div>
<div class="col3">
<ul class="list-unstyled list-dashed">
<li class="menu-item">
<a class="tm-submenu-title" href="#"><span>Parallax Home</span> <span class="badge bg-danger">New</span></a>
<ul class="list-unstyled">
<li><a href="index-hot-parallax-home-layout1.html">Parallax Home Layout1</a></li>
<li><a href="index-hot-parallax-home-layout2.html">Parallax Home Layout2</a></li>
<li class=""><a class=" tm-submenu-title" href="#"><span>Portfolio Layouts</span> <span class="badge bg-danger">New</span></a></li>
<li><a href="index-hot-portfolio-presentation-layout1.html">Portfolio Presentation Layout1</a></li>
<li><a href="index-hot-portfolio-presentation-layout2.html">Portfolio Presentation Layout2</a></li>
<li><a href="index-hot-portfolio-presentation-layout3.html">Portfolio Presentation Layout3</a></li>
<li><a href="index-hot-portfolio-presentation-layout4.html">Portfolio Presentation Layout4</a></li>
<li><a href="index-hot-portfolio-presentation-layout5.html">Portfolio Presentation Layout5</a></li>
<li><a href="index-hot-portfolio-presentation-layout6.html">Portfolio Presentation Layout6</a></li>
<li><a href="index-hot-portfolio-presentation-layout7.html">Portfolio Presentation Layout7</a></li>
<li><a href="index-hot-portfolio-presentation-layout8.html">Portfolio Presentation Layout8</a></li>
<li><a href="index-hot-portfolio-presentation-layout9.html">Portfolio Presentation Layout9</a></li>
<li><a href="index-hot-portfolio-presentation-layout10.html">Portfolio Presentation Layout10</a></li>
</ul>
</li>
</ul>
</div>
<div class="col3">
<ul class="list-unstyled list-dashed">
<li class="menu-item">
<a class="tm-submenu-title" href="#"><span>Home Variations</span> <span class="badge bg-danger">New</span></a>
<ul class="list-unstyled">
<li><a href="index-home-variation-bg-static.html">Home Bg Static Layout</a></li>
<li><a href="index-home-variation-bg-image-parallax.html">Home Image Parallax Layout</a></li>
<li><a href="index-home-variation-owl-animated-slider.html">Home Owl Animated Slider</a></li>
<li><a href="index-home-variation-owl-animated-slider-fullscreen.html">Home Owl Animated Slider Fullscreel</a></li>
<li><a href="index-home-variation-html5-video.html">Home HTML5 Video Layout</a></li>
<li><a href="index-home-variation-maximageslider-style1.html">Home Maximage Slider Layout</a></li>
<li><a href="index-home-variation-youtube-video-bg.html">Home Youtube Video Bg Layout</a></li>
<li><a href="index-home-variation-owl-carousel.html">Home Owl Carousel Layout</a></li>
<li><a href="index-home-variation-owl-carousel-fullscreen.html">Home Owl Carousel Fullscreen</a></li>
<li><a href="index-home-variation-owl-carousel-text-rotator.html">Home Owl Carousel Text Rotator</a></li>
<li><a href="index-home-variation-typed-text.html">Home Typed Slider Layout</a></li>
</ul>
</li>
</ul>
</div>
<div class="col3">
<ul class="list-unstyled list-dashed">
<li class="menu-item">
<a class="tm-submenu-title" href="#"><span>Home Variations</span> <span class="badge bg-danger">New</span></a>
<ul class="list-unstyled">
<li><a href="index-home-variation-appointment-form-style1.html">Home Appointment Layout1</a></li>
<li><a href="index-home-variation-appointment-form-style2.html">Home Appointment Layout2</a></li>
<li><a href="index-home-variation-appointment-form-style3.html">Home Appointment Layout3</a></li>
<li><a href="index-home-variation-appointment-form-style4.html">Home Appointment Layout4</a></li>
<li><a href="index-home-variation-appointment-form-style5.html">Home Appointment Layout5</a></li>
<li><a href="index-home-variation-appointment-form-style6.html">Home Appointment Layout6</a></li>
<li><a href="index-home-variation-appointment-form-style7.html">Home Appointment Layout7</a></li>
<li><a href="index-home-variation-swiper-slider1.html">Home Swiper Slider Layout1</a></li>
<li><a href="index-home-variation-swiper-slider2.html">Home Swiper Slider Layout2</a></li>
<li><a href="index-home-variation-swiper-slider3.html">Home Swiper Slider Layout3</a></li>
<li><a href="index-home-variation-swiper-slider4.html">Home Swiper Slider Layout4</a></li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</li>
<li class="menu-item"><a href="#">Features</a>
<ul class="dropdown">
<li><a href="page-preloader.html">Preloaders</a></li>
<li><a href="#">Header</a>
<ul class="dropdown">
<li><a href="#">Header 2 Rows</a>
<ul class="dropdown">
<li><a href="page-header-style-2rows.html">Header 2 Rows Style1</a></li>
<li><a href="page-header-style-2rows-style2.html">Header 2 Rows Style2</a></li>
<li><a href="page-header-style-2rows-style3.html">Header 2 Rows Style3</a></li>
</ul>
</li>
<li><a href="page-header-style-3rows.html">Header 3 Rows</a></li>
<li><a href="#">Floating <span class="badge bg-danger">Header</span></a>
<ul class="dropdown">
<li><a href="page-header-style-floating-2rows-style1.html">Floating Style1</a></li>
<li><a href="page-header-style-floating-2rows-style2.html">Floating Style2</a></li>
<li><a href="page-header-style-floating-2rows-style3.html">Floating Style3</a></li>
<li><a href="page-header-style-floating-2rows-style4.html">Floating Style4</a></li>
<li><a href="page-header-style-floating-2rows-style5.html">Floating Style5</a></li>
<li><a href="page-header-style-floating-2rows-style6.html">Floating Style6</a></li>
<li><a href="page-header-style-floating-2rows-style7.html">Floating Style7</a></li>
<li><a href="page-header-style-floating-2rows-style8.html">Floating Style8</a></li>
<li><a href="page-header-style-floating-2rows-style9.html">Floating Style9</a></li>
</ul>
</li>
<li><a href="#">BG White <span class="badge bg-danger">Header </span></a>
<ul class="dropdown">
<li><a href="page-header-style-floating-2rows-white-style1.html">BG White Style1</a></li>
<li><a href="page-header-style-floating-2rows-white-style2.html">BG White Style2</a></li>
<li><a href="page-header-style-floating-2rows-white-style3.html">BG White Style3</a></li>
<li><a href="page-header-style-floating-2rows-white-style4.html">BG White Style4</a></li>
<li><a href="page-header-style-floating-2rows-white-style5.html">BG White Style5</a></li>
</ul>
</li>
<li><a href="#">Transparent <span class="badge bg-danger">Header </span></a>
<ul class="dropdown">
<li><a href="page-header-style-floating-1row-transparent-bg-dark.html">Transparent Style1</a></li>
<li><a href="page-header-style-floating-1row-transparent-bg-white.html">Transparent Style2</a></li>
</ul>
</li>
<li><a href="#">Modern <span class="badge bg-danger">Header </span></a>
<ul class="dropdown">
<li><a href="page-header-style-modern-style1.html">Modern Style1</a></li>
<li><a href="page-header-style-modern-style2.html">Modern Style2</a></li>
<li><a href="page-header-style-modern-style3.html">Modern Style3</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">Form</a>
<ul class="dropdown">
<li><a href="page-form-request-a-quote.html">Request a Quote Form</a></li>
<li><a href="#">Contact</a>
<ul class="dropdown">
<li><a href="page-contact1.html">Contact Style1</a></li>
<li><a href="page-contact1-recaptcha.html">Contact Style1 Recaptcha</a></li>
<li><a href="page-contact2.html">Contact Style2</a></li>
<li><a href="page-contact2-recaptcha.html">Contact Style2 Recaptcha</a></li>
<li><a href="page-contact3.html">Contact Style3</a></li>
<li><a href="page-contact3-recaptcha.html">Contact Style3 Recaptcha</a></li>
<li><a href="page-contact4.html">Contact Style4</a></li>
<li><a href="page-contact4-recaptcha.html">Contact Style4 Recaptcha</a></li>
<li><a href="page-contact5.html">Contact Style5</a></li>
<li><a href="page-contact5-recaptcha.html">Contact Style5 Recaptcha</a></li>
<li><a href="page-contact6.html">Contact Style6</a></li>
<li><a href="page-contact6-recaptcha.html">Contact Style6 Recaptcha</a></li>
<li><a href="page-contact7.html">Contact Style7</a></li>
<li><a href="page-contact7-recaptcha.html">Contact Style7 Recaptcha</a></li>
</ul>
</li>
<li><a href="#">Login/Register Form</a>
<ul class="dropdown">
<li><a href="#">Login/Register</a>
<ul class="dropdown">
<li><a href="page-form-login-register-style1.html">Login/Register style 1</a></li>
<li><a href="page-form-login-register-style2.html">Login/Register style 2</a></li>
</ul>
</li>
<li><a href="#">Login</a>
<ul class="dropdown">
<li><a href="page-form-login-style1.html">Login style 1</a></li>
<li><a href="page-form-login-style2.html">Login style 2</a></li>
<li><a href="page-form-login-style3.html">Login style 3</a></li>
</ul>
</li>
<li><a href="#">Register</a>
<ul class="dropdown">
<li><a href="page-form-register-style1.html">Register style 1</a></li>
<li><a href="page-form-register-style2.html">Register style 2</a></li>
<li><a href="page-form-register-style3.html">Register style 3</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="page-form-subscribe.html"> Subscribe Form</a></li>
<li><a href="#">Appointment Form</a>
<ul class="dropdown">
<li><a href="page-form-appointment-style1.html">Appointment style 1</a></li>
<li><a href="page-form-appointment-style2.html">Appointment style 2</a></li>
<li><a href="page-form-appointment-style3.html">Appointment style 3</a></li>
</ul>
</li>
<li><a href="#">Job Apply Form</a>
<ul class="dropdown">
<li><a href="page-form-job-apply-style1.html">Job Apply style 1</a></li>
<li><a href="page-form-job-apply-style2.html">Job Apply style 2</a></li>
<li><a href="page-form-job-apply-style3.html">Job Apply style 3</a></li>
</ul>
</li>
<li><a href="#">Quick Contact Form</a>
<ul class="dropdown">
<li><a href="page-form-quick-contact-style1.html">Quick Contact style 1</a></li>
<li><a href="page-form-quick-contact-style2.html">Quick Contact style 2</a></li>
<li><a href="page-form-quick-contact-style3.html">Quick Contact style 3</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">Page Title <span class="badge bg-danger">New</span></a>
<ul class="dropdown">
<li><a href="page-title-text-left.html">Text Left</a></li>
<li><a href="page-title-text-center.html">Text Center</a></li>
<li><a href="page-title-text-right.html">Text Right</a></li>
<li><a href="page-title-mini-version.html">Mini Version</a></li>
<li><a href="page-title-big-version.html">Big Version</a></li>
<li><a href="page-title-extra-big-version.html">Extra Big Version</a></li>
<li><a href="page-title-bg-white.html">Bg White</a></li>
<li><a href="page-title-bg-image.html">Bg Image</a></li>
<li><a href="page-title-bg-image-parallax.html">Bg Image Parallax</a></li>
<li><a href="page-title-bg-video-html5.html">Bg Video HTML5 HTML5</a></li>
<li><a href="page-title-bg-video-youtube.html">Bg Video Youtube</a></li>
<li><a href="page-title-full-transparent.html">Full Transparent</a></li>
<li><a href="page-title-overlay-white.html">Overlay White</a></li>
<li><a href="page-title-overlay-dark.html">Overlay Dark</a></li>
</ul>
</li>
<li><a href="#">Side Push Panel</a>
<ul class="dropdown">
<li><a href="page-side-push-panel-left-overlay.html">Left Overlay</a></li>
<li><a href="page-side-push-panel-left-push.html">Left Push</a></li>
<li><a href="page-side-push-panel-right-overlay.html">Right Overlay</a></li>
<li><a href="page-side-push-panel-right-push.html">Right Push</a></li>
</ul>
</li>
<li><a href="#">Paypal Form <span class="badge bg-danger">New</span></a>
<ul class="dropdown">
<li><a href="#">Donation Onetime</a>
<ul class="dropdown">
<li><a href="page-form-paypal-donate-onetime-style1.html">Style1</a></li>
<li><a href="page-form-paypal-donate-onetime-style2.html">Style2</a></li>
<li><a href="page-form-paypal-donate-onetime-style3.html">Style3</a></li>
<li><a href="page-form-paypal-donate-onetime-style4.html">Style4</a></li>
<li><a href="page-form-paypal-donate-onetime-style5.html">Style5</a></li>
<li><a href="page-form-paypal-donate-onetime-style6.html">Style6</a></li>
<li><a href="page-form-paypal-donate-onetime-style7.html">Style7</a></li>
</ul>
</li>
<li><a href="#">Donation Recurring</a>
<ul class="dropdown">
<li><a href="page-form-paypal-donate-recurring-style1.html">Style1</a></li>
<li><a href="page-form-paypal-donate-recurring-style2.html"> Style2</a></li>
<li><a href="page-form-paypal-donate-recurring-style3.html">Style3</a></li>
<li><a href="page-form-paypal-donate-recurring-style4.html">Style4</a></li>
<li><a href="page-form-paypal-donate-recurring-style5.html">Style5</a></li>
</ul>
</li>
<li><a href="#">Both Onetime/Recurring</a>
<ul class="dropdown">
<li><a href="page-form-paypal-donate-both-onetime-recurring-style1.html">Style1</a></li>
<li><a href="page-form-paypal-donate-both-onetime-recurring-style2.html">Style2</a></li>
<li><a href="page-form-paypal-donate-both-onetime-recurring-style3.html">Style3</a></li>
<li><a href="page-form-paypal-donate-both-onetime-recurring-style4.html">Style4</a></li>
</ul>
</li>
<li><a href="#">Order Payment</a>
<ul class="dropdown">
<li><a href="page-form-paypal-order-style1.html">Style1</a></li>
<li><a href="page-form-paypal-order-style2.html">Style2</a></li>
</ul>
</li>
<li><a href="page-form-paypal-cart-style1.html">Cart Payment</a></li>
</ul>
</li>
<li><a href="#">Footer</a>
<ul class="dropdown">
<li><a href="#">Footer Dark</a>
<ul class="dropdown">
<li><a href="page-footer-dark-style1.html#footer">Footer Dark One</a></li>
<li><a href="page-footer-dark-style2.html#footer">Footer Dark Two</a></li>
<li><a href="page-footer-dark-style3.html#footer">Footer Dark Three</a></li>
<li><a href="page-footer-dark-style4.html#footer">Footer Dark Four</a></li>
<li><a href="page-footer-dark-style5.html#footer">Footer Dark Five</a></li>
<li><a href="page-footer-dark-style6.html#footer">Footer Dark Six</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li class="menu-item"><a href="#">Pages</a>
<ul class="dropdown">
<li><a href="#">About</a>
<ul class="dropdown">
<li><a href="page-about.html">About Us</a></li>
<li><a href="page-about2.html">About Us2</a></li>
</ul>
</li>
<li><a href="#">Team</a>
<ul class="dropdown">
<li><a href="page-team-grid.html">Team Grid</a></li>
<li><a href="page-team-carousel.html">Team Carousel</a></li>
<li><a href="page-team-details.html">Team Details</a></li>
</ul>
</li>
<li><a href="#">Courses</a>
<ul class="dropdown">
<li><a href="page-courses.html">Course Style1</a></li>
<li><a href="page-courses2.html">Course Style2</a></li>
<li><a href="page-courses-details.html">Course Details</a></li>
</ul>
</li>
<li><a href="#">Portfolio</a>
<ul class="dropdown">
<li><a href="portfolio-grid-4col.html">Portfolio Grid</a></li>
<li><a href="portfolio-tiles-4col.html">Portfolio Tiles</a></li>
<li><a href="portfolio-details-image.html">Portfolio Details - Image</a></li>
<li><a href="portfolio-details-image-gallery.html">Portfolio Details - Image Gallery</a></li>
<li><a href="portfolio-details-video-gallery.html">Portfolio Details - Video Gallery</a></li>
</ul>
</li>
<li><a href="#">Appointment</a>
<ul class="dropdown">
<li><a href="page-form-appointment-style1.html">Appointment Style1</a></li>
<li><a href="page-form-appointment-style2.html">Appointment Style2</a></li>
<li><a href="page-form-appointment-style3.html">Appointment Style3</a></li>
</ul>
</li>
<li><a href="#">FAQ</a>
<ul class="dropdown">
<li><a href="page-faq-style1.html">FAQ Style1</a></li>
<li><a href="page-faq-style2.html">FAQ Style2</a></li>
<li><a href="page-faq-style3.html">FAQ Style3</a></li>
<li><a href="page-faq-style4.html">FAQ Style4</a></li>
</ul>
</li>
<li><a href="#">Calender</a>
<ul class="dropdown">
<li><a href="page-calender1.html">Calender Style1</a></li>
<li><a href="page-calender2.html">Calender Style2</a></li>
</ul>
</li>
<li><a href="#">Gallery <span class="badge bg-danger">New</span></a>
<ul class="dropdown">
<li><a href="page-gallery.html">Gallery</a></li>
<li><a href="page-gallery-3col.html">3 Columns</a></li>
<li><a href="page-gallery-3col-masonry.html">3 Columns Masonry</a></li>
<li><a href="page-gallery-3col-masonry-tiles.html">3 Columns Masonry Tiles</a></li>
<li><a href="page-gallery-4col.html">4 Columns</a></li>
<li><a href="page-gallery-4col-masonry.html">4 Columns Masonry</a></li>
<li><a href="page-gallery-4col-masonry-tiles.html">4 Columns Masonry Tiles</a></li>
<li><a href="page-gallery-variations-grid.html">Variations Grid</a></li>
<li><a href="page-gallery-variations-masonry.html">Variations Grid Masonry</a></li>
<li><a href="page-gallery-variations-masonry-tiles.html">Variations Grid Masonry Tiles</a></li>
</ul>
</li>
<li><a href="#">Job <span class="badge bg-danger">New</span></a>
<ul class="dropdown">
<li><a href="page-job-list.html">Job List</a></li>
<li><a href="page-job-details-style1.html">Job Details Style1</a></li>
<li><a href="page-job-details-style2.html">Job Details Style2</a></li>
</ul>
</li>
<li><a href="#">Events</a>
<ul class="dropdown">
<li><a href="#">Events Calendar</a>
<ul class="dropdown">
<li><a href="page-events-calendar-style1-daygrid-views.html">Calendar Style1</a></li>
<li><a href="page-events-calendar-style2-google-calendar.html">Calendar Style2</a></li>
<li><a href="page-events-calendar-style3-list-views.html">Calendar Style3</a></li>
<li><a href="page-events-calendar-style4-natural-height.html">Calendar Style4</a></li>
</ul>
</li>
<li><a href="#">Events Grid</a>
<ul class="dropdown">
<li><a href="page-events-grid-2column.html">Grid 2column</a></li>
<li><a href="page-events-grid-3column.html">Grid 3column</a></li>
<li><a href="page-events-grid-4column.html">Grid 4column</a></li>
<li><a href="page-events-grid-left-sidebar.html">Grid Left Sidebar</a></li>
<li><a href="page-events-grid-right-sidebar.html">Grid Right Sidebar</a></li>
</ul>
</li>
<li><a href="#">Events List</a>
<ul class="dropdown">
<li><a href="page-events-list-vertical-slide.html">List Vertical Slide</a></li>
<li><a href="page-events-list-left-sidebar.html">List Left Sidebar</a></li>
<li><a href="page-events-list-right-sidebar.html">List Right Sidebar</a></li>
<li><a href="page-events-list-no-sidebar.html">List No Sidebar</a></li>
</ul>
</li>
<li><a href="#">Events Details</a>
<ul class="dropdown">
<li><a href="page-events-details-style1.html">Details Style1</a></li>
<li><a href="page-events-details-style2.html">Details Style2</a></li>
<li><a href="page-events-details-style3.html">Details Style3</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">Page 404</a>
<ul class="dropdown">
<li><a href="page-404-style1.html">Style1</a></li>
<li><a href="page-404-style2.html">Style2</a></li>
<li><a href="page-404-style3.html">Style3</a></li>
</ul>
</li>
<li><a href="#">Under Construction</a>
<ul class="dropdown">
<li><a href="page-under-construction-style1.html">Style1</a></li>
<li><a href="page-under-construction-style2.html">Style2</a></li>
<li><a href="page-under-construction-style3.html">Style3</a></li>
</ul>
</li>
<li><a href="#">Coming Soon</a>
<ul class="dropdown">
<li><a href="page-coming-soon-style1.html">Style1</a></li>
<li><a href="page-coming-soon-style2.html">Style2</a></li>
<li><a href="page-coming-soon-style3.html">Style3</a></li>
<li><a href="page-coming-soon-style4.html">Style4</a></li>
</ul>
</li>
</ul>
</li>
<li class="menu-item"><a href="javascript:void(0)">News</a>
<ul class="dropdown">
<li><a href="#">News Classic</a>
<ul class="dropdown">
<li><a href="news-classic-both-sidebar.html">Both Sidebar</a></li>
<li><a href="news-classic-left-thumbs.html">Left Thumb</a></li>
</ul>
</li>
<li><a href="#">News Grid</a>
<ul class="dropdown">
<li><a href="news-grid-2-column.html">Grid 2 Columns</a></li>
<li><a href="news-grid-3-column.html">Grid 3 Columns</a></li>
<li><a href="news-grid-4-column.html">Grid 4 Columns</a></li>
</ul>
</li>
<li><a href="#">News Isotope</a>
<ul class="dropdown">
<li><a href="news-isotope-2-column.html">Isotope 2 Columns</a></li>
<li><a href="news-isotope-3-column.html">Isotope 3 Columns</a></li>
<li><a href="news-isotope-4-column.html">Isotope 4 Columns</a></li>
</ul>
</li>
<li><a href="#">News Masonry</a>
<ul class="dropdown">
<li><a href="news-masonry-2-column.html">Masonry 2 Columns</a></li>
<li><a href="news-masonry-3-column.html">Masonry 3 Columns</a></li>
<li><a href="news-masonry-4-column.html">Masonry 4 Columns</a></li>
</ul>
</li>
<li><a href="#">News Single</a>
<ul class="dropdown">
<li><a href="news-single-left-sidebar.html">Left Sidebar</a></li>
<li><a href="news-single-right-sidebar.html">Right Sidebar</a></li>
<li><a href="news-single-both-sidebar.html">Both Sidebar</a></li>
<li><a href="news-single-no-sidebar.html">No Sidebar</a></li>
<li><a href="news-single-disqus-comments.html">Disqus Comment</a></li>
<li><a href="news-single-facebook-comments.html">Facebook Comment</a></li>
</ul>
</li>
<li><a href="news-timeline.html">News Vertical Timeline</a></li>
</ul>
</li>
<li class="menu-item">
<a href="javascript:void(0)">Shop</a>
<div class="megamenu megamenu-fullwidth megamenu-position-left">
<div class="megamenu-row">
<div class="col4">
<div class="widget">
<h4 class="widget-title">Latest Products</h4>
<ul class="product_list_widget">
<li class="mb-20">
<div class="product-left">
<a class="p-0" href="shop-product-details.html">
<img width="120" height="120" src="images/shop/product.jpg" class="thumbnail" alt="images">
</a>
</div>
<div class="product-right">
<a class="product-title p-0" href="shop-product-details.html">Beanie with Logo</a>
<span class="amount"><span class="currencySymbol">£</span>11.05</span></div>
</li>
<li class="mb-20">
<div class="product-left">
<a class="p-0" href="shop-product-details.html">
<img width="120" height="120" src="images/shop/product2.jpg" class="thumbnail" alt="images">
</a>
</div>
<div class="product-right">
<a class="product-title p-0" href="shop-product-details.html">WordPress Pennant</a>
<del>
<span class="amount"><span class="currencySymbol">£</span>20.00</span>
</del>
<ins>
<span class="amount"><span class="currencySymbol">£</span>18.00</span>
</ins>
</div>
</li>
<li class="mb-20">
<div class="product-left">
<a class="p-0" href="shop-product-details.html">
<img width="120" height="120" src="images/shop/product.jpg" class="thumbnail" alt="images">
</a>
</div>
<div class="product-right">
<a class="product-title p-0" href="shop-product-details.html">Hoodie with Zipper</a>
<span class="amount"><span class="currencySymbol">£</span>11.05</span></div>
</li>
</ul>
</div>
</div>
<div class="col5">
<h4 class="mt-10 text-gray">Up to 21% off on all products!</h4>
<img class="img-fullwidth" src="images/shop/portfolio-big1.jpg" alt="images">
</div>
<div class="col3">
<ul class="list-unstyled list-dashed">
<li>
<a class="tm-submenu-title" href="#"><span>Shop Ready!</span></a>
</li>
<li><a href="shop-home-layout1.html">Shop Home Layout1 </a></li>
<li><a href="shop-home-layout2.html">Shop Home Layout2 </a></li>
<li><a href="shop-home-layout3.html">Shop Home Layout3 </a></li>
<li><a href="shop-products.html">Products</a></li>
<li><a href="shop-products-sidebar.html">Products With Sidebar</a></li>
<li><a href="shop-product-details.html">Product Details</a></li>
<li><a href="shop-cart.html">Cart</a></li>
<li><a href="shop-checkout.html">Checkout</a></li>
</ul>
</div>
</div>
</div>
</li>
<li class="menu-item">
<a href="#">Shortcodes</a>
<div class="megamenu megamenu-fullwidth megamenu-position-left">
<div class="megamenu-row">
<div class="col3">
<ul class="list-unstyled list-dashed">
<li class="menu-item">
<a class="tm-submenu-title" href="#"><span>Built-in Shortcodes (16)</span> <span class="badge bg-danger">New</span></a>
<ul class="list-unstyled">
<li><a href="shortcode-accordion.html"><i class="fa fa-list-ul"></i> Accordion</a></li>
<li><a href="shortcode-alerts.html"><i class="fa fa-exclamation-circle"></i> Alerts</a></li>
<li><a href="shortcode-animations.html"><i class="fa fa-magic"></i> Animations</a></li>
<li><a href="shortcode-background-video-html5.html"><i class="fas fa-video"></i> Background Video - HTML5</a></li>
<li><a href="shortcode-background-video-youtube.html"><i class="fab fa-youtube"></i> Background Video - Youtube</a></li>
<li><a href="shortcode-before-after-slider.html"><i class="fa fa-window-restore"></i> Before After Slider</a></li>
<li><a href="shortcode-blockquotes.html"><i class="fa fa-quote-right"></i> Blockquotes</a></li>
<li><a href="shortcode-box-gradient-effect.html"><i class="fas fa-fill-drip"></i> Box Gradient</a></li>
<li><a href="shortcode-button-groups-and-dropdowns.html"><i class="fa fa-link"></i> Buttons groups & Dropdowns</a></li>
<li><a href="shortcode-buttons.html"><i class="fa fa-link"></i> Buttons</a></li>
<li><a href="shortcode-call-to-actions.html"><i class="fa fa-plus-square"></i> Call To Actions</a></li>
<li><a href="shortcode-charts.html"><i class="fas fa-chart-pie"></i> Charts</a></li>
<li><a href="shortcode-clients.html"><i class="fas fa-briefcase"></i> Clients Logo</a></li>
<li><a href="shortcode-timer-final-countdown.html"><i class="fas fa-stopwatch-20"></i> Countdown - Final</a></li>
<li><a href="shortcode-timer-flipclock.html"><i class="fab fa-creative-commons-zero"></i> Countdown - Flipclock</a></li>
<li><a href="shortcode-timer-slick-circular.html"><i class="fas fa-stopwatch-20"></i> Countdown- Slick Circular</a></li>
</ul>
</li>
</ul>
</div>
<div class="col3">
<ul class="list-unstyled list-dashed">
<li class="menu-item">
<a class="tm-submenu-title" href="#"><span>Built-in Shortcodes (16)</span> <span class="badge bg-danger">New</span></a>
<ul class="list-unstyled">
<li><a href="shortcode-custom-columns-holder.html"><i class="fas fa-columns"></i> Custom Columns Holder</a></li>
<li><a href="shortcode-datetime-datepair.html"><i class="far fa-calendar-plus"></i> Datepair</a></li>
<li><a href="shortcode-datetime-datepicker.html"><i class="far fa-calendar-check"></i> Datepicker</a></li>
<li><a href="shortcode-datetime-timepicker.html"><i class="far fa-clock"></i> Date Timepicker</a></li>
<li><a href="shortcode-divider.html"><i class="fas fa-sort-amount-up"></i> Divider</a></li>
<li><a href="shortcode-dropcaps.html"><i class="fas fa-closed-captioning"></i> Dropcaps</a></li>
<li><a href="shortcode-flickr-feed.html"><i class="fas fa-rss"></i> Flickr Feed</a></li>
<li><a href="shortcode-flipbox.html"><i class="fab fa-flipboard"></i> Flipbox</a></li>
<li><a href="shortcode-forms.html"><i class="fab fa-wpforms"></i> Forms</a></li>
<li><a href="shortcode-funfacts.html"><i class="fas fa-fire-alt"></i> Funfacts</a></li>
<li><a href="shortcode-hotspot.html"><i class="fas fa-wifi"></i> Hotspot</a></li>
<li><a href="shortcode-iconbox.html"><i class="fas fa-atom"></i> Icon Box</a></li>
<li><a href="shortcode-image-box.html"><i class="far fa-images"></i> Image Box</a></li>
<li><a href="shortcode-instagram-feed.html"><i class="fab fa-instagram"></i> Instagram Feed</a></li>
<li><a href="shortcode-labels-badges.html"><i class="fas fa-certificate"></i> Labels Badges</a></li>
<li><a href="shortcode-listgroup-panels.html"><i class="fas fa-tags"></i> Listgroup Panels</a></li>
</ul>
</li>
</ul>
</div>
<div class="col3">
<ul class="list-unstyled list-dashed">
<li class="menu-item">
<a class="tm-submenu-title" href="#"><span>Built-in Shortcodes (16)</span> <span class="badge bg-danger">New</span></a>
<ul class="list-unstyled">
<li><a href="shortcode-lists.html"><i class="fas fa-list"></i> List</a></li>
<li><a href="shortcode-maps.html"><i class="fas fa-map-marked"></i> Map</a></li>
<li><a href="shortcode-media-embed.html"><i class="fas fa-code"></i> Media Embed</a></li>
<li><a href="shortcode-modal-bootstrap.html"><i class="fas fa-bullhorn"></i> Modal - Bootstrap</a></li>
<li><a href="shortcode-modal-lightbox.html"><i class="fas fa-lightbulb"></i> Modal Lightbox</a></li>
<li><a href="shortcode-navigation.html"><i class="fas fa-tasks"></i> Navigation</a></li>
<li><a href="shortcode-odometer.html"><i class="fas fa-tachometer-alt"></i> Odometer</a></li>
<li><a href="shortcode-owl-carousel.html"><i class="fas fa-images"></i> Owl Carousel</a></li>
<li><a href="shortcode-pagination.html"><i class="fas fa-ellipsis-h"></i> Pagination</a></li>
<li><a href="shortcode-piechart.html"><i class="fas fa-chart-pie"></i> Piechart</a></li>
<li><a href="shortcode-pricing-table.html"><i class="fas fa-microchip"></i> Pricing Table</a></li>
<li><a href="shortcode-progressbar.html"><i class="fas fa-sliders-h"></i> Progressbar</a></li>
<li><a href="shortcode-responsive.html"><i class="fas fa-tablet-alt"></i> Responsive</a></li>
<li><a href="shortcode-separator.html"><i class="fas fa-object-ungroup"></i> Separator</a></li>
<li><a href="shortcode-sitemap.html"><i class="fas fa-sitemap"></i> Sitemap</a></li>
<li><a href="shortcode-slick-slider.html"><i class="fas fa-images"></i> Slick Slider</a></li>
</ul>
</li>
</ul>
</div>
<div class="col3">
<ul class="list-unstyled list-dashed">
<li class="menu-item">
<a class="tm-submenu-title" href="#"><span>Built-in Shortcodes (16)</span> <span class="badge bg-danger">New</span></a>
<ul class="list-unstyled">
<li><a href="shortcode-sliders.html"><i class="fas fa-images"></i> Sliders</a></li>
<li><a href="shortcode-smoothscrolling.html"><i class="fa fa-binoculars"></i> Smoothscrolling</a></li>
<li><a href="shortcode-styled-icons.html"><i class="fab fa-facebook-square"></i> Styled Icons</a></li>
<li><a href="shortcode-subscribe.html"><i class="fa fa-user-plus"></i> Subscribe</a></li>
<li><a href="shortcode-tables.html"><i class="fas fa-icons"></i> Tables</a></li>
<li><a href="shortcode-tabs.html"><i class="fa fa-indent"></i> Tabs</a></li>
<li><a href="shortcode-testimonials.html"><i class="fas fa-user-shield"></i> Testimonials</a></li>
<li><a href="shortcode-textblock.html"><i class="fa fa-bold"></i> Textblock</a></li>
<li><a href="shortcode-thumbnails-carousels.html"><i class="fab fa-buffer"></i> Thumbnails Carousels</a></li>
<li><a href="shortcode-title.html"><i class="fas fa-heading"></i> Title</a></li>
<li><a href="shortcode-vertical-timeline.html"><i class="fas fa-grip-vertical"></i> Timeline - Vertical</a></li>
<li><a href="shortcode-twitter.html"><i class="fab fa-twitter-square"></i> Twitter</a></li>
<li><a href="shortcode-typography.html"><i class="fas fa-font"></i> Typography</a></li>
<li><a href="shortcode-video-play-btn.html"><i class="fas fa-play-circle"></i> Video Play Btn</a></li>
<li><a href="shortcode-widgets.html"><i class="fa fa-gift"></i> Widgets</a></li>
<li><a href="shortcode-working-process.html"><i class="fas fa-network-wired"></i> Working Process</a></li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</li>
</ul>
</nav>
</div>
<div class="col-sm-auto ms-auto align-self-center">
<ul class="list-inline nav-side-icon-list">
<li class="hidden-mobile-mode"><a href="#" id="top-nav-search-btn"><i class="search-icon fa fa-search"></i></a></li>
<li class="hidden-mobile-mode">
<div class="top-nav-mini-cart-icon-container">
<div class="top-nav-mini-cart-icon-contents">
<a class="mini-cart-icon" href="shop-cart.html" title="View your shopping cart">
<img src="images/shopping-cart.png" width="25" alt="cart"><span class="items-count">1</span> <span class="cart-quick-info">1 item - <span class="amount"><span class="currencySymbol">£</span>18.00</span></span>
</a>
<div class="dropdown-content">
<ul class="cart_list product_list_widget">
<li class="mini_cart_item">
<a href="#" class="remove remove_from_cart_button" aria-label="Remove this item" data-product_id="18832" data-cart_item_key="#" data-product_sku="woo-beanie">×</a>
<a href="#"> <img class="attachment-thumbnail" src="images/shop/product.jpg" width="300" height="300" alt="images"/>Beanie</a>
<span class="quantity">1 × <span class="amount">
<span class="currencySymbol">£</span>18.00</span></span>
</li>
</ul>
<p class="total"> <strong>Subtotal:</strong> <span class="woocommerce-Price-amount amount"><span class="currencySymbol">£</span>18.00</span> </p>
<div class="buttons cart-action-buttons">
<div class="row">
<div class="col-6 pe-0"><a href="shop-cart.html" class="btn btn-theme-colored2 btn-block btn-sm wc-forward">View Cart</a></div>
<div class="col-6 ps-1"><a href="shop-checkout.html" class="btn btn-theme-colored1 btn-block btn-sm checkout wc-forward">Checkout</a></div>
</div>
</div>
</div>
</div>
</div>
</li>
<li class="hidden-mobile-mode">
<div id="side-panel-trigger" class="side-panel-trigger">
<a href="#">
<div class="hamburger-box">
<div class="hamburger-inner"></div>
</div>
</a>
</div>
</li>
</ul>
<div id="top-nav-search-form" class="clearfix">
<form action="#" method="GET">
<input type="text" name="s" value="" placeholder="Type and Press Enter..." autocomplete="off" />
</form>
<a href="#" id="close-search-btn"><i class="fa fa-times"></i></a>
</div>
</div>
</div>
<div class="row d-block d-xl-none">
<div class="col-12">
<nav id="top-primary-nav-clone" class="menuzord d-block d-xl-none default menuzord-color-default menuzord-border-boxed menuzord-responsive" data-effect="slide" data-animation="none" data-align="right">
<ul id="main-nav-clone" class="menuzord-menu menuzord-right menuzord-indented scrollable">
</ul>
</nav>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- Start main-content -->
<div class="main-content-area">