-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.php
1240 lines (1223 loc) · 91.7 KB
/
test.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
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 class="no-js" lang="en">
<head>
<title>Moon Beyond Creative</title>
<meta name="description" content="H-Code - A premium portfolio template from ThemeZaa">
<meta name="keywords" content="">
<meta charset="utf-8">
<meta name="author" content="ThemeZaa">
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1" />
<!-- favicon -->
<link rel="shortcut icon" href="images/favicon.png">
<link rel="apple-touch-icon" href="images/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
<!-- animation -->
<link rel="stylesheet" href="css/animate.css" />
<!-- bootstrap -->
<link rel="stylesheet" href="css/bootstrap.css" />
<!-- et line icon -->
<link rel="stylesheet" href="css/et-line-icons.css" />
<!-- font-awesome icon -->
<link rel="stylesheet" href="css/font-awesome.min.css" />
<!-- revolution slider -->
<link rel="stylesheet" href="css/extralayers.css" />
<link rel="stylesheet" href="css/settings.css" />
<!-- magnific popup -->
<link rel="stylesheet" href="css/magnific-popup.css" />
<!-- owl carousel -->
<link rel="stylesheet" href="css/owl.carousel.css" />
<link rel="stylesheet" href="css/owl.transitions.css" />
<link rel="stylesheet" href="css/full-slider.css" />
<!-- text animation -->
<link rel="stylesheet" href="css/text-effect.css" />
<!-- common -->
<link rel="stylesheet" href="css/style.css" />
<!-- responsive -->
<link rel="stylesheet" href="css/responsive.css" />
<!--[if IE]>
<link rel="stylesheet" href="css/style-ie.css" />
<![endif]-->
<!--[if IE]>
<script src="js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<!-- navigation panel -->
<nav class="navbar navbar-default navbar-fixed-top nav-transparent overlay-nav sticky-nav nav-white nav-border-bottom" role="navigation">
<div class="container">
<div class="row">
<!-- logo -->
<div class="col-md-2 pull-left"><a class="logo-light" href="index.html"><img alt="" src="images/logo-white.pn" class="logo" /></a><a class="logo-dark" href="index.html"><img alt="" src="images/logo-light.pn" class="logo" /></a></div>
<!-- end logo -->
<!-- search and cart -->
<div class="col-md-2 no-padding-left search-cart-header pull-right">
<div id="top-search">
<!-- nav search -->
<a href="#search-header" class="header-search-form"><i class="fa fa-search search-button"></i></a>
<!-- end nav search -->
</div>
<!-- search input-->
<form id="search-header" method="post" action="#" name="search-header" class="mfp-hide search-form-result">
<div class="search-form position-relative">
<button type="submit" class="fa fa-search close-search search-button"></button>
<input type="text" name="search" class="search-input" placeholder="Enter your keywords..." autocomplete="off">
</div>
</form>
<!-- end search input -->
<div class="top-cart">
<!-- nav shopping bag -->
<a href="#" class="shopping-cart">
<i class="fa fa-shopping-cart"></i>
<div class="subtitle">(1) Items</div>
</a>
<!-- end nav shopping bag -->
<!-- shopping bag content -->
<div class="cart-content">
<ul class="cart-list">
<li>
<a title="Remove item" class="remove" href="#">×</a>
<a href="#">
<img width="90" height="90" alt="" src="http://placehold.it/90x90">Leather Craft
</a>
<span class="quantity">1 × <span class="amount">$160</span></span>
<a href="#">Edit</a>
</li>
</ul>
<p class="total">Subtotal: <span class="amount">$160</span></p>
<p class="buttons">
<a href="shop-cart.html" class="btn btn-very-small-white no-margin-bottom margin-seven pull-left no-margin-lr">View Cart</a>
<a href="shop-checkout.html" class="btn btn-very-small-white no-margin-bottom margin-seven no-margin-right pull-right">Checkout</a>
</p>
</div>
<!-- end shopping bag content -->
</div>
</div>
<!-- end search and cart -->
<!-- toggle navigation -->
<div class="navbar-header col-sm-8 col-xs-2 pull-right">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button>
</div>
<!-- toggle navigation end -->
<!-- main menu -->
<div class="col-md-8 no-padding-right accordion-menu text-right">
<div class="navbar-collapse collapse">
<ul id="accordion" class="nav navbar-nav navbar-right panel-group">
<!-- menu item -->
<li class="dropdown panel">
<a href="#collapse1" class="dropdown-toggle collapsed" data-toggle="collapse" data-parent="#accordion" data-hover="dropdown">Home <i class="fa fa-angle-down"></i></a>
<!-- sub menu -->
<ul id="collapse1" class="dropdown-menu mega-menu panel-collapse collapse mega-menu-full">
<!-- sub menu column -->
<li class="mega-menu-column col-sm-3">
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Pre Made Homepage</li>
<li><a href="index.html">Home main</a></li>
<li><a href="home-fashion.html">Home fashion</a></li>
<li><a href="home-architecture.html">Home architecture</a></li>
<li><a href="home-spa.html">Home spa</a></li>
<li><a href="home-agency.html">Home agency</a></li>
<li><a href="home-restaurant.html">Home restaurant</a></li>
<li><a href="home-travel-agency.html">Home travel agency</a></li>
<li><a href="home-corporate.html">Home corporate</a></li>
<li><a href="home-photography.html">Home photography</a></li>
<li><a href="home-shop.html">Home shop</a></li>
<li><a href="home-blog.html">Home blog</a></li>
<li><a href="home-blog-grid.html">Home blog grid</a></li>
</ul>
<!-- end sub menu item -->
</li>
<!-- sub menu column end -->
<!-- sub menu column -->
<li class="mega-menu-column col-sm-3">
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Other</li>
<li><a href="home-masonry-portfolio.html">Home - masonry portfolio</a></li>
<li><a href="home-background-slider.html">Home - background slider</a></li>
<li><a href="home-full-screen-video.html">Home - full screen video</a></li>
<li><a href="home-half-screen-video.html">Home - half screen video</a></li>
<li><a href="home-text-rotator.html">Home - text rotator</a></li>
<li><a href="home-countdown-timer.html">Home - coming soon</a></li>
<li><a href="home-countdown-timer-video.html">Home - coming soon (video)</a></li>
<li><a href="home-full-width-image.html">Home - full width image</a></li>
<li><a href="home-gradient-with-image.html">Home - gradient with image</a></li>
</ul>
<!-- end sub menu item -->
</li>
<!-- end sub menu column -->
<!-- sub menu column -->
<li class="mega-menu-column col-sm-3">
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Parallax Image / Typography</li>
<li><a href="home-parallax1.html">Parallax Image - option 1 </a></li>
<li><a href="home-parallax2.html">Parallax Image - option 2</a></li>
<li><a href="home-parallax3.html">Parallax Image - option 3 </a></li>
<li><a href="home-parallax4.html">Parallax Image - option 4</a></li>
<li><a href="home-parallax5.html">Parallax Image - option 5</a></li>
<li><a href="home-parallax.html">Full parallax home page</a></li>
</ul>
<!-- end sub menu item -->
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Carousel slider</li>
<li><a href="home-slider-bootstrap.html">Bootstrap slider - full screen</a></li>
<li><a href="home-slider-revolution1.html">Revolution slider - full screen</a></li>
<li><a href="home-slider-revolution2.html">Revolution slider - half screen</a></li>
<li><a href="home-slider-owl1.html">owl slider - full screen</a></li>
<li><a href="home-slider-owl2.html">owl slider - half screen</a></li>
</ul>
<!-- end sub menu item -->
</li>
<!-- end sub menu column -->
<!-- sub menu column -->
<li class="mega-menu-column col-sm-3">
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Creative Intro Pages</li>
<li><a href="intro-fashion.html">Fashion Intro</a></li>
<li><a href="intro-restaurant.html">Restaurant Intro</a></li>
<li><a href="intro-travel.html">Travel Intro</a></li>
<li><a href="intro-travel2.html">Travel Intro - V2</a></li>
<li><a href="intro-agency.html">Agency Intro</a></li>
<li><a href="intro-agency2.html">Agency Intro - V2</a></li>
<li><a href="intro-product.html">Product Intro</a></li>
</ul>
<!-- end sub menu item -->
</li>
<!-- end sub menu column -->
</ul>
<!-- end sub menu -->
</li>
<!-- end menu item -->
<!-- menu item -->
<li class="dropdown panel">
<a href="#collapse2" class="dropdown-toggle collapsed" data-toggle="collapse" data-parent="#accordion" data-hover="dropdown">One Page <i class="fa fa-angle-down"></i></a>
<!-- sub menu -->
<ul id="collapse2" class="dropdown-menu mega-menu panel-collapse collapse mega-menu-full">
<li class="mega-menu-column col-sm-3">
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Pre Made Homepage</li>
<li><a href="onepage-bootstrap-slider.html">Home main</a></li>
<li><a href="onepage-fashion.html">Home fashion</a></li>
<li><a href="onepage-architecture.html">Home architecture</a></li>
<li><a href="onepage-spa.html">Home spa</a></li>
<li><a href="onepage-agency.html">Home agency</a></li>
<li><a href="onepage-restaurant.html">Home restaurant</a></li>
<li><a href="onepage-travel-agency.html">Home travel agency</a></li>
<li><a href="onepage-corporate.html">Home corporate</a></li>
<li><a href="onepage-personal.html">Home personal</a></li>
<li><a href="onepage-wedding.html">Home wedding</a></li>
<li><a href="onepage-landing.html">Landing page</a></li>
</ul>
<!-- end sub menu item -->
</li>
<li class="mega-menu-column col-sm-3">
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Parallax Image / Typography</li>
<li><a href="onepage-parallax1.html">Parallax Image - option 1 </a></li>
<li><a href="onepage-parallax2.html">Parallax Image - option 2</a></li>
<li><a href="onepage-parallax3.html">Parallax Image - option 3 </a></li>
<li><a href="onepage-parallax4.html">Parallax Image - option 4</a></li>
<li><a href="onepage-parallax5.html">Parallax Image - option 5</a></li>
</ul>
<!-- end sub menu item -->
</li>
<li class="mega-menu-column col-sm-3">
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Other</li>
<li><a href="onepage-masonry-portfolio.html">Home - masonry portfolio</a></li>
<li><a href="onepage-background-slider.html">Home - background slider</a></li>
<li><a href="onepage-full-screen-video.html">Home - full screen video</a></li>
<li><a href="onepage-text-rotator.html">Home - text rotator</a></li>
<li><a href="onepage-full-width-image.html">Home - full width image</a></li>
</ul>
<!-- end sub menu item -->
</li>
<li class="mega-menu-column col-sm-3">
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Carousel slider</li>
<li><a href="onepage-bootstrap-slider.html">Bootstrap slider - full screen</a></li>
<li><a href="onepage-slider-revolution1.html">Revolution slider - full screen</a></li>
<li><a href="onepage-slider-revolution2.html">Revolution slider - half screen</a></li>
<li><a href="onepage-slider-owl1.html">owl slider - full screen</a></li>
<li><a href="onepage-slider-owl2.html">owl slider - half screen</a></li>
</ul>
<!-- end sub menu item -->
</li>
</ul>
<!-- end sub menu -->
</li>
<!-- end menu item -->
<!-- menu item -->
<li class="dropdown panel">
<a href="#collapse5" class="dropdown-toggle collapsed" data-toggle="collapse" data-parent="#accordion" data-hover="dropdown">Portfolio <i class="fa fa-angle-down"></i></a>
<!-- sub menu -->
<ul id="collapse5" class="dropdown-menu mega-menu panel-collapse collapse mega-menu-full">
<li class="mega-menu-column col-sm-3">
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Grid</li>
<li><a href="portfolio-grid-2columns.html">2 Columns</a></li>
<li><a href="portfolio-grid-3columns.html">3 Columns</a></li>
<li><a href="portfolio-grid-4columns.html">4 Columns</a></li>
<li><a href="portfolio-grid-5columns.html">5 Columns</a></li>
</ul>
<!-- end sub menu item -->
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Grid - Gutter</li>
<li><a href="portfolio-grid-gutter-2columns.html">2 Columns</a></li>
<li><a href="portfolio-grid-gutter-3columns.html">3 Columns</a></li>
<li><a href="portfolio-grid-gutter-4columns.html">4 Columns</a></li>
<li><a href="portfolio-grid-gutter-5columns.html">5 Columns</a></li>
</ul>
<!-- end sub menu item -->
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Grid with Title</li>
<li><a href="portfolio-grid-with-title-2columns.html">2 Columns</a></li>
<li><a href="portfolio-grid-with-title-3columns.html">3 Columns</a></li>
<li><a href="portfolio-grid-with-title-4columns.html">4 Columns</a></li>
<li><a href="portfolio-grid-with-title-5columns.html">5 Columns</a></li>
</ul>
<!-- end sub menu item -->
</li>
<li class="mega-menu-column col-sm-3">
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Wide</li>
<li><a href="portfolio-wide-2columns.html">2 Columns</a></li>
<li><a href="portfolio-wide-3columns.html">3 Columns</a></li>
<li><a href="portfolio-wide-4columns.html">4 Columns</a></li>
<li><a href="portfolio-wide-5columns.html">5 Columns</a></li>
</ul>
<!-- end sub menu item -->
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Wide - Gutter</li>
<li><a href="portfolio-wide-gutter-2columns.html">2 Columns</a></li>
<li><a href="portfolio-wide-gutter-3columns.html">3 Columns</a></li>
<li><a href="portfolio-wide-gutter-4columns.html">4 Columns</a></li>
<li><a href="portfolio-wide-gutter-5columns.html">5 Columns</a></li>
</ul>
<!-- end sub menu item -->
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Wide with Title</li>
<li><a href="portfolio-wide-with-title-2columns.html">2 Columns</a></li>
<li><a href="portfolio-wide-with-title-gutter-3columns.html">3 Columns</a></li>
<li><a href="portfolio-wide-with-title-gutter-4columns.html">4 Columns</a></li>
<li><a href="portfolio-wide-with-title-gutter-5columns.html">5 Columns</a></li>
</ul>
<!-- sub menu item -->
</li>
<li class="mega-menu-column col-sm-3">
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Masonry</li>
<li><a href="portfolio-masonry-2columns.html">2 Columns</a></li>
<li><a href="portfolio-masonry-3columns.html">3 Columns</a></li>
<li><a href="portfolio-masonry-4columns.html">4 Columns</a></li>
<li><a href="portfolio-masonry-5columns.html">5 Columns</a></li>
</ul>
<!-- end sub menu item -->
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Other</li>
<li><a href="portfolio-parallax.html">Parallax</a></li>
<li><a href="portfolio-short-description.html">With Short Description</a></li>
<li><a href="portfolio-lightbox.html">Portfolio lightbox</a></li>
</ul>
<!-- end sub menu item -->
</li>
<li class="mega-menu-column col-sm-3">
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Single Project Page</li>
<li><a href="single-project-page1.html">Single Project Page 1</a></li>
<li><a href="single-project-page2.html">Single Project Page 2</a></li>
<li><a href="single-project-page3.html">Single Project Page 3</a></li>
<li><a href="single-project-page4.html">Single Project Page 4</a></li>
<li><a href="single-project-page5.html">Single Project Page 5</a></li>
</ul>
<!-- end sub menu item -->
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Ajax - Project Page</li>
<li><a href="onepage-single-project-page1.html" class="simple-ajax-popup-align-top">Single Project Page 1</a></li>
<li><a href="onepage-single-project-page2.html" class="simple-ajax-popup-align-top">Single Project Page 2</a></li>
<li><a href="onepage-single-project-page3.html" class="simple-ajax-popup-align-top">Single Project Page 3</a></li>
<li><a href="onepage-single-project-page4.html" class="simple-ajax-popup-align-top">Single Project Page 4</a></li>
<li><a href="onepage-single-project-page5.html" class="simple-ajax-popup-align-top">Single Project Page 5</a></li>
</ul>
<!-- end sub menu item -->
</li>
</ul>
<!-- end sub menu -->
</li>
<!-- end menu item -->
<!-- menu item -->
<li class="dropdown panel">
<a href="#collapse4" class="dropdown-toggle collapsed" data-toggle="collapse" data-parent="#accordion" data-hover="dropdown">Pages <i class="fa fa-angle-down"></i></a>
<!-- sub menu -->
<ul id="collapse4" class="dropdown-menu mega-menu panel-collapse collapse mega-menu-full">
<!-- sub menu column -->
<li class="mega-menu-column col-sm-3">
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Introduction</li>
<li><a href="about-us.html">About Us</a></li>
<li><a href="team-members.html">Team Members</a></li>
<li><a href="testimonials.html">Testimonials</a></li>
<li><a href="our-clients.html">Our Clients</a></li>
<li><a href="careers.html">Careers</a></li>
<li><a href="contact-us.html">Contact Us</a></li>
<li><a href="sitemap.html">Sitemap</a></li>
</ul>
<!-- end sub menu item -->
</li>
<!-- end sub menu column -->
<!-- sub menu column -->
<li class="mega-menu-column col-sm-3">
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Utility</li>
<li><a href="services.html">Services</a></li>
<li><a href="faq.html">FAQ'S</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="register.html">Register</a></li>
<li><a href="404.html">Not Found (404)</a></li>
<li><a href="maintenance.html">Maintenance Page</a></li>
<li><a href="home-countdown-timer.html">Under Construction</a></li>
</ul>
<!-- end sub menu item -->
</li>
<!-- end sub menu column -->
<!-- sub menu column -->
<li class="mega-menu-column col-sm-3">
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Page Layout</li>
<li><a href="page-full-width.html">Full Width</a></li>
<li><a href="page-full-width-wide.html">Full Width - Wide</a></li>
<li><a href="page-left-sidebar.html">Left Sidebar</a></li>
<li><a href="page-right-sidebar.html">Right Sidebar</a></li>
<li><a href="page-both-sidebar.html">Both Sidebar</a></li>
</ul>
<!-- end sub menu item -->
</li>
<!-- end sub menu column -->
<!-- sub menu column -->
<li class="mega-menu-column col-sm-3">
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Gallery</li>
<li><a href="gallery-1columns.html">1 Columns</a></li>
<li><a href="gallery-2columns.html">2 Columns</a></li>
<li><a href="gallery-3columns.html">3 Columns</a></li>
<li><a href="gallery-4columns.html">4 Columns</a></li>
<li><a href="gallery-6columns.html">6 Columns</a></li>
</ul>
<!-- end sub menu item -->
</li>
<!-- end sub menu column -->
</ul>
<!-- end sub menu -->
</li>
<!-- end menu item -->
<!-- menu item -->
<li class="dropdown panel">
<a href="#collapse3" class="dropdown-toggle collapsed" data-toggle="collapse" data-parent="#accordion" data-hover="dropdown">Elements<i class="fa fa-angle-down"></i></a>
<!-- sub menu -->
<ul id="collapse3" class="dropdown-menu mega-menu panel-collapse collapse mega-menu-full">
<li class="mega-menu-column col-sm-3">
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Slider</li>
<li><a href="slider-bootstrap.html">Bootstrap</a></li>
<li><a href="slider-revolution.html">Revolution</a></li>
<li><a href="slider-owl.html">Owl</a></li>
</ul>
<!-- end sub menu item -->
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Header</li>
<li><a href="header-light.html">Light Version</a></li>
<li><a href="header-dark.html">Dark Version</a></li>
<li><a href="header-transparent-dark.html">Transparent Version - Dark</a></li>
<li><a href="header-transparent-light.html">Transparent Version - Light</a></li>
<li><a href="header-static-sticky.html">Static Sticky</a></li>
</ul>
<!-- end sub menu item -->
</li>
<li class="mega-menu-column col-sm-3">
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Page Titles</li>
<li><a href="page-title-white.html">Title white</a></li>
<li><a href="page-title-gray.html">Title gray</a></li>
<li><a href="page-title-dark-gray.html">Title dark gray</a></li>
<li><a href="page-title-black.html">Title black</a></li>
<li><a href="page-title-with-image.html">Title with image</a></li>
<li><a href="page-title-large.html">Title large</a></li>
<li><a href="page-title-small-white.html">Title small white</a></li>
<li><a href="page-title-small-gray.html">Title small gray</a></li>
<li><a href="page-title-small-dark-gary.html">Title small dark gary</a></li>
<li><a href="page-title-small-black.html">Title small black</a></li>
<li><a href="page-title-center-align.html">Title center align</a></li>
</ul>
<!-- end sub menu item -->
</li>
<li class="mega-menu-column col-sm-3">
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Other</li>
<li><a href="accordions.html"><i class="fa fa-plus-square"></i>Accordions</a></li>
<li><a href="progress-bar.html"><i class="fa fa-tasks"></i>Progress Bar</a></li>
<li><a href="buttons.html"><i class="fa fa-link"></i>Buttons</a></li>
<li><a href="features-box.html"><i class="fa fa-th-large"></i>Features Box</a></li>
<li><a href="form.html"><i class="fa fa-align-justify"></i>Form</a></li>
<li><a href="grid.html"><i class="fa fa-th"></i>Grid</a></li>
<li><a href="icons-et-line.html"><i class="fa fa-star-o"></i>Icons Et-line</a></li>
<li><a href="icons-font-awesome.html"><i class="fa fa-star"></i>Icons Font Awesome</a></li>
<li><a href="alert-massage.html"><i class="fa fa-comment"></i>Alert massage</a></li>
<li><a href="tabs.html"><i class="fa fa-outdent"></i>Tabs</a></li>
<li><a href="typography.html"><i class="fa fa-font"></i>Typography</a></li>
<li><a href="video-sound.html"><i class="fa fa-video-camera"></i>Video / Sound</a></li>
<li><a href="counter-and-skills.html"><i class="fa fa-circle-o-notch"></i>Counter and Skills</a></li>
</ul>
<!-- end sub menu item -->
</li>
<li class="mega-menu-column col-sm-3">
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Image Gallery</li>
<li><a href="single-image-lightbox.html">Single Image Lightbox</a></li>
<li><a href="lightbox-gallery.html">Lightbox Gallery</a></li>
<li><a href="zoom-gallery.html">Zoom gallery</a></li>
<li><a href="popup-with-form.html">Popup with Form</a></li>
<li><a href="modal-popup.html">Modal Popup</a></li>
<li><a href="open-youtube-video.html">Open YouTube Video</a></li>
<li><a href="open-vimeo-video.html">Open Vimeo Video</a></li>
<li><a href="open-google-map.html">Open Google Map</a></li>
</ul>
<!-- end sub menu item -->
</li>
</ul>
<!-- end sub menu -->
</li>
<!-- end menu item -->
<!-- menu item -->
<li class="dropdown panel">
<a href="#collapse6" class="dropdown-toggle collapsed" data-toggle="collapse" data-parent="#accordion" data-hover="dropdown">Blog <i class="fa fa-angle-down"></i></a>
<!-- sub menu -->
<ul id="collapse6" class="dropdown-menu panel-collapse collapse mega-menu-full" role="menu">
<li class="mega-menu-column col-sm-3">
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Grid</li>
<li><a href="blog-grid-2columns.html">2 Columns</a></li>
<li><a href="blog-grid-3columns.html">3 Columns</a></li>
<li><a href="blog-grid-4columns.html">4 Columns</a></li>
<li><a href="blog-grid-full-width.html">Full width</a></li>
</ul>
<!-- end sub menu item -->
</li>
<li class="mega-menu-column col-sm-3">
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Masonry</li>
<li><a href="blog-masonry-2columns.html">2 Columns</a></li>
<li><a href="blog-masonry-3columns.html">3 Columns</a></li>
<li><a href="blog-masonry-4columns.html">4 Columns</a></li>
<li><a href="blog-masonry-full-width.html">Full width</a></li>
</ul>
<!-- end sub menu item -->
</li>
<li class="mega-menu-column col-sm-3">
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Default</li>
<li><a href="blog-right-sidebar.html">Right sidebar</a></li>
<li><a href="blog-left-sidebar.html">Left sidebar</a></li>
<li><a href="blog-full-width.html">Full width</a></li>
</ul>
<!-- end sub menu item -->
</li>
<li class="mega-menu-column col-sm-3">
<!-- sub menu item -->
<ul>
<li class="dropdown-header">Single</li>
<li><a href="blog-single-right-sidebar.html">Right sidebar</a></li>
<li><a href="blog-single-left-sidebar.html">Left sidebar</a></li>
<li><a href="blog-single-full-width.html">Full width</a></li>
<li><a href="blog-single-full-width-with-image-slider.html">Full width with image slider</a></li>
<li><a href="blog-single-full-width-with-lightbox-gallery.html">Full width with lightbox gallery</a></li>
</ul>
<!-- end sub menu item -->
</li>
</ul>
<!-- end sub menu -->
</li>
<!-- end menu item -->
<!-- menu item -->
<li class="dropdown panel simple-dropdown">
<a href="#collapse7" class="dropdown-toggle collapsed" data-toggle="collapse" data-parent="#accordion" data-hover="dropdown">Shop <i class="fa fa-angle-down"></i></a>
<!-- sub menu single -->
<!-- sub menu item -->
<ul id="collapse7" class="dropdown-menu panel-collapse collapse" role="menu">
<li class="dropdown-header">For Shopping Cart</li>
<li><a href="home-shop.html">Shop homepage</a></li>
<li><a href="shop-with-sidebar.html">Shop with sidebar - grid</a></li><li><a href="shop-with-sidebar-list.html">Shop with sidebar - list</a></li>
<li><a href="shop-full-width.html">Shop full width</a></li>
<li><a href="shop-single-product.html">Single product</a></li>
<li><a href="shop-cart.html">Cart</a></li>
<li><a href="shop-checkout.html">Checkout</a></li>
</ul>
<!-- end sub menu item -->
<!-- end sub menu single -->
</li>
<!-- end menu item -->
</ul>
</div>
</div>
<!-- end main menu -->
</div>
</div>
</nav>
<!-- end navigation panel -->
<!-- slider -->
<section id="slider" class="no-padding">
<div id="owl-demo" class="owl-carousel owl-theme light-pagination square-pagination dark-pagination-without-next-prev-arrow main-slider">
<!-- slider item -->
<div class="item owl-bg-img" style="background-image:url('http://moonbeyond.com/images/mainsliderimage1.jpg');">
<div class="container full-screen position-relative">
<div class="slider-typography text-center">
<div class="slider-text-middle-main">
<div class="slider-text-middle slider-text-middle6 padding-left-right-px wow fadeInUp">
<span class="slider-title-big6 white-text text-uppercase font-weight-700 letter-spacing-3">be-yond </span>
<span class="white-text text-small text-uppercase letter-spacing-10 margin-three no-margin-bottom display-block xs-letter-spacing-6">we craft experiences that help brands</span>
</div>
</div>
</div>
</div>
</div>
<!-- end slider item -->
<!-- slider item -->
<div class="item owl-bg-img" style="background-image:url('images/mainsliderimage2-a.jpg');">
<div class="container full-screen position-relative">
<div class="slider-typography text-center">
<div class="slider-text-middle-main">
<div class="slider-text-middle slider-text-middle6 padding-left-right-px wow fadeInUp">
<span class="slider-title-big6 white-text text-uppercase font-weight-700 letter-spacing-3">Leadership</span>
<span class="white-text text-small text-uppercase letter-spacing-10 margin-three no-margin-bottom display-block">we work hard - we play hard</span>
</div>
</div>
</div>
</div>
</div>
<!-- end slider item -->
<!-- slider item -->
<div class="item owl-bg-img" style="background-image:url('images/mainsliderimage2-a.jpg');">
<div class="container full-screen position-relative">
<div class="slider-typography text-center">
<div class="slider-text-middle-main">
<div class="slider-text-middle slider-text-middle6 padding-left-right-px wow fadeInUp">
<span class="slider-title-big6 white-text text-uppercase font-weight-700 letter-spacing-3">Expertise</span>
<span class="white-text text-small text-uppercase letter-spacing-10 margin-three no-margin-bottom display-block">We craft unique digital experiences</span>
</div>
</div>
</div>
</div>
</div>
<!-- end slider item -->
</div>
</section>
<!-- end slider -->
<!-- about section -->
<section class="no-padding-bottom wow fadeIn">
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-10 text-center center-col">
<img src="images/moon_beyond_logo-Final.png" alt="Moon Beyond Logo">
</div>
</div>
</div>
</section>
<!-- end about section -->
<!-- counter section -->
<section id="counter" class="fix-background" style="background-image:url('images/smalldescription-bg1.jpg');">
<div class="container position-relative">
<div class="row">
<p >PAGE FILLER TEXT HERE <p>
</div>
</div>
</section>
<!-- end counter section -->
<!-- portfolio section -->
<section id="portfolio" class="grid-wrap work-4col margin-top-section no-margin-top no-padding-bottom wow fadeIn">
<div class="container-fluid">
<div class="row no-padding">
<!-- section title -->
<div class="col-md-12 text-center">
<h3 class="section-title no-padding-bottom">Latest Work</h3>
</div>
<!-- end section title -->
<div class="col-md-3 col-sm-10 margin-three center-col text-center">
<h4 class="gray-text">We are technology leaders and have crafted intuitive and lasting online and mobile experiences for hundreds of associations and non-profits.</h4>
</div>
<div class="col-md-12 text-center">
<div class="text-center">
<!-- filter navigation -->
<ul class="portfolio-filter nav nav-tabs">
<li class="nav active"><a href="#" data-filter="*">All</a></li>
<li class="nav"><a href="#" data-filter=".magento">Magento</a></li>
<li class="nav"><a href="#" data-filter=".jquery">Jquery</a></li>
<li class="nav"><a href="#" data-filter=".wordpress">Wordpress</a></li>
<li class="nav"><a href="#" data-filter=".html">HTML</a></li>
</ul>
<!-- end filter navigation -->
</div>
</div>
<div class="grid-gallery overflow-hidden">
<div class="tab-content">
<ul class="masonry-items grid">
<!-- portfolio item -->
<li class="html jquery wordpress">
<figure>
<div class="gallery-img"><a href="single-project-page1.html"><img src="http://placehold.it/800x600" alt=""></a></div>
<figcaption>
<h3><a href="single-project-page1.html">Herbal Beauty Salon</a></h3>
<p>Branding & Identity</p>
</figcaption>
</figure>
</li>
<!-- end portfolio item -->
<!-- portfolio item -->
<li class="html magento wordpress">
<figure>
<div class="gallery-img"><a href="single-project-page2.html"><img src="http://placehold.it/800x1200" alt=""></a></div>
<figcaption>
<h3><a href="single-project-page2.html">Tailoring Interior </a></h3>
<p>Branding & Identity</p>
</figcaption>
</figure>
</li>
<!-- end portfolio item -->
<!-- portfolio item -->
<li class="jquery magento wordpress">
<figure>
<div class="gallery-img"><a href="single-project-page3.html"><img src="http://placehold.it/800x600" alt=""></a></div>
<figcaption>
<h3><a href="single-project-page3.html">Pixflow Studio</a></h3>
<p>Web & Branding</p>
</figcaption>
</figure>
</li>
<!-- end portfolio item -->
<!-- portfolio item -->
<li class="wordpress magento jquery">
<figure>
<div class="gallery-img"><a href="single-project-page4.html"><img src="http://placehold.it/800x1200" alt=""></a></div>
<figcaption>
<h3><a href="single-project-page4.html">Kaya Skin Care</a></h3>
<p>UI Design & Identity</p>
</figcaption>
</figure>
</li>
<!-- end portfolio item -->
<!-- portfolio item -->
<li class="html jquery">
<figure>
<div class="gallery-img"><a href="single-project-page5.html"><img src="http://placehold.it/800x600" alt=""></a></div>
<figcaption>
<h3><a href="single-project-page5.html">Third Eye Glasses</a></h3>
<p>Logo & Brochure</p>
</figcaption>
</figure>
</li>
<!-- end portfolio item -->
<!-- portfolio item -->
<li class="html magento">
<figure>
<div class="gallery-img"><a href="single-project-page1.html"><img src="http://placehold.it/800x600" alt=""></a></div>
<figcaption>
<h3><a href="standard-with-slider.html">Rubber Studio</a></h3>
<p>Branding & Identity</p>
</figcaption>
</figure>
</li>
<!-- end portfolio item -->
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- end portfolio section -->
<!-- work process section -->
<section id="work-process" class="work-process wow fadeIn">
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-6 col-xs-12 text-center work-process-sub position-relative overflow-hidden sm-margin-bottom-eight wow fadeIn">
<div class="work-process-text">
<span class="work-process-number font-weight-100 display-block">01</span>
<span class="text-uppercase letter-spacing-2 font-weight-600 black-text">Strategy</span>
<div class="separator-line-thick bg-mid-gray margin-three"></div>
</div>
<div class="work-process-details position-absolute display-block">
<i class="icon-chat medium-icon fast-yellow-text display-block"></i>
<span class="text-small text-uppercase">Lorem Ipsum is simply dummy text<br> of the printing and typesetting.</span>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 text-center work-process-sub position-relative overflow-hidden sm-margin-bottom-eight wow fadeIn">
<div class="work-process-text">
<span class="work-process-number font-weight-100 display-block">02</span>
<span class="text-uppercase letter-spacing-2 font-weight-600 black-text">Planning</span>
<div class="separator-line-thick bg-mid-gray margin-three"></div>
</div>
<div class="work-process-details position-absolute display-block">
<i class="icon-toolbox medium-icon fast-yellow-text display-block"></i>
<span class="text-small text-uppercase">Lorem Ipsum is simply dummy text<br> of the printing and typesetting.</span>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 text-center work-process-sub position-relative overflow-hidden wow fadeIn">
<div class="work-process-text">
<span class="work-process-number font-weight-100 display-block">03</span>
<span class="text-uppercase letter-spacing-2 font-weight-600 black-text">Development</span>
<div class="separator-line-thick bg-mid-gray margin-three"></div>
</div>
<div class="work-process-details position-absolute display-block">
<i class="icon-desktop medium-icon fast-yellow-text display-block"></i>
<span class="text-small text-uppercase">Lorem Ipsum is simply dummy text<br> of the printing and typesetting.</span>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 text-center work-process-sub position-relative overflow-hidden wow fadeIn">
<div class="work-process-text">
<span class="work-process-number font-weight-100 display-block">04</span>
<span class="text-uppercase letter-spacing-2 font-weight-600 black-text">Launch</span>
<div class="separator-line-thick bg-mid-gray margin-three"></div>
</div>
<div class="work-process-details position-absolute display-block">
<i class="icon-hotairballoon medium-icon fast-yellow-text display-block"></i>
<span class="text-small text-uppercase">Lorem Ipsum is simply dummy text<br> of the printing and typesetting.</span>
</div>
</div>
</div>
</div>
</section>
<!-- end work process section -->
<!-- highlight section -->
<section class="bg-fast-yellow no-padding wow fadeInUp">
<div class="container">
<div class="row padding-five sm-text-center">
<div class="col-md-1">
<i class="medium-icon black-text no-margin icon-toolbox"></i>
</div>
<div class="col-md-6 no-padding">
<span class="text-med text-uppercase letter-spacing-2 margin-two black-text font-weight-600 xs-margin-top-six xs-margin-bottom-six display-block">Want to see more amazing works?</span>
</div>
<div class="col-md-5 no-padding">
<a class="highlight-button-dark btn btn-medium button xs-margin-bottom-five xs-no-margin-right" href="portfolio-wide-with-title-gutter-4columns.html">View Portfolio</a>
<a class="highlight-button btn btn-medium button xs-margin-bottom-five xs-no-margin-right" href="#">Subscribe Us</a>
</div>
</div>
</div>
</section>
<!-- end highlight section -->
<!-- services section -->
<section class="corporate-standards no-padding-bottom wow fadeIn">
<div class="container">
<div class="row">
<!-- tab content section -->
<div class="tab-content">
<!-- tab content -->
<div id="tab6_sec2" class="text-center center-col tab-pane fade in">
<div class="tab-pane fade in">
<div class="col-lg-6 col-md-6 no-padding corporate-standards-img cover-background position-relative" style="background-image:url('http://placehold.it/1200x756');">
<div class="opacity-medium bg-dark-gray"></div>
<p class="title-small text-uppercase corporate-standards-title white-text letter-spacing-7"><span class="title-extra-large no-letter-spacing yellow-text">02</span><br>Design</p>
</div>
<div class="col-lg-6 col-md-6 corporate-standards-text sm-margin-lr-four sm-margin-top-four xs-padding-tb-ten">
<div class="img-border-small-fix border-gray"></div>
<i class="icon-tools large-icon yellow-text"></i>
<h1 class="margin-ten no-margin-bottom">We specialise in creating success brands.</h1>
<p class="text-med margin-ten width-80 center-col">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
<a class="text-small highlight-link text-uppercase bg-black white-text" href="services.html">Read More <i class="fa fa-long-arrow-right extra-small-icon white-text"></i></a>
</div>
</div>
</div>
<!-- end tab content -->
<!-- tab content -->
<div id="tab6_sec3" class="text-center center-col tab-pane fade in">
<div class="tab-pane fade in">
<div class="col-lg-6 col-md-6 no-padding corporate-standards-img cover-background position-relative" style="background-image:url('http://placehold.it/1200x756');">
<div class="opacity-medium bg-dark-gray"></div>
<p class="title-small text-uppercase corporate-standards-title white-text letter-spacing-7"><span class="title-extra-large no-letter-spacing yellow-text">03</span><br>Development</p>
</div>
<div class="col-lg-6 col-md-6 corporate-standards-text sm-margin-lr-four sm-margin-top-four xs-padding-tb-ten">
<div class="img-border-small-fix border-gray"></div>
<i class="icon-mobile large-icon yellow-text"></i>
<h1 class="margin-ten no-margin-bottom">Intelligence is nothing without ambition.</h1>
<p class="text-med margin-ten width-80 center-col">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
<a class="text-small highlight-link text-uppercase bg-black white-text" href="services.html">Read More <i class="fa fa-long-arrow-right extra-small-icon white-text"></i></a>
</div>
</div>
</div>
<!-- end tab content -->
<!-- tab content -->
<div id="tab6_sec4" class="text-center center-col tab-pane fade in">
<div class="tab-pane fade in">
<div class="col-lg-6 col-md-6 no-padding corporate-standards-img cover-background position-relative" style="background-image:url('http://placehold.it/1200x756');">
<div class="opacity-medium bg-dark-gray"></div>
<p class="title-small text-uppercase corporate-standards-title white-text letter-spacing-7"><span class="title-extra-large no-letter-spacing yellow-text">04</span><br>Photography</p>
</div>
<div class="col-lg-6 col-md-6 corporate-standards-text sm-margin-lr-four sm-margin-top-four xs-padding-tb-ten">
<div class="img-border-small-fix border-gray"></div>
<i class="icon-camera large-icon yellow-text"></i>
<h1 class="margin-ten no-margin-bottom">We specialise in creating success brands.</h1>
<p class="text-med margin-ten width-80 center-col">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
<a class="text-small highlight-link text-uppercase bg-black white-text" href="services.html">Read More <i class="fa fa-long-arrow-right extra-small-icon white-text"></i></a>
</div>
</div>
</div>
<!-- end tab content -->
</div>
<!-- end tab content section -->
</div>
<!-- end tab -->
</div>
</div>
</section>
<!-- end services section -->
<!-- case study section -->
<section class="no-padding case-study bg-gray wow fadeIn">
<div class="container-fluid">
<div class="row">
<div id="owl-demo-small" class="owl-carousel owl-theme dark-pagination dark-pagination-without-next-prev-arrow">
<!-- case study item -->
<div class="item">
<div class="col-lg-6 col-md-6 case-study-img cover-background" style="background-image:url('images/featured-projects-slider_1a.jpg');"></div>
<div class="col-lg-6 col-md-6 case-study-details">
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-12">
<span class="about-number black-text font-weight-400 letter-spacing-2 xs-no-border xs-no-padding-left xs-display-none">01</span>
</div>
<div class="col-lg-8 col-md-9 col-sm-9 col-xs-12 about-text position-relative xs-text-center">
<p class="title-small text-uppercase letter-spacing-3 black-text font-weight-600 no-margin-bottom">LOTUS HERRINGt</p>
<span class="case-study-work letter-spacing-3">Brand Strategy | Graphic Design</span>
<p class="width-90 xs-width-100">LOTUS HERRING IS A DESIGNER FASHION BRAND CONSISTING OF MALE AND FEMALE AND WHAT NOT...</p>
<a href="single-project-page1.html" class="highlight-button-black-border btn btn-small no-margin-bottom sm-no-margin">View Case Study</a>
</div>
</div>
</div>
<!-- end case study item -->
<!-- case study item -->
<div class="item">
<div class="col-lg-6 col-md-6 case-study-img cover-background" style="background-image:url('images/featured-projects-slider_2a.jpg');"></div>
<div class="col-lg-6 col-md-6 case-study-details">
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-12">
<span class="about-number black-text font-weight-400 letter-spacing-2 xs-no-border xs-no-padding-left xs-display-none">02</span>
</div>
<div class="col-lg-8 col-md-9 col-sm-9 col-xs-12 about-text position-relative xs-text-center">
<p class="title-small text-uppercase letter-spacing-3 black-text font-weight-600 no-margin-bottom">INNOFIT CONSULTING GROUP INC.</p>
<span class="case-study-work letter-spacing-3">Web Design | Brand Strategy</span>
<p class="width-90 xs-width-100">Lorem Ipsum is simply dummy text of the printing & typesetting industry. Lorem Ipsum has been the industry's standard dummy. Lorem Ipsum is simply dummy text of the printing & typesetting industry.</p>
<a href="single-project-page1.html" class="highlight-button-black-border btn btn-small no-margin-bottom sm-no-margin">View Case Study</a>
</div>
</div>
</div>
<!-- end case study item -->
<!-- case study item -->
<div class="item">
<div class="col-lg-6 col-md-6 case-study-img cover-background" style="background-image:url('images/featured-projects-slider_3a.jpg');"></div>
<div class="col-lg-6 col-md-6 case-study-details">
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-12">
<span class="about-number black-text font-weight-400 letter-spacing-2 xs-no-border xs-no-padding-left xs-display-none">03</span>
</div>
<div class="col-lg-8 col-md-9 col-sm-9 col-xs-12 about-text position-relative xs-text-center">
<p class="title-small text-uppercase letter-spacing-3 black-text font-weight-600 no-margin-bottom">CUMBERLAND STUDIOS</p>
<span class="case-study-work letter-spacing-3">Brand Strategy | Graphic Design</span>
<p class="width-90 xs-width-100">Lorem Ipsum is simply dummy text of the printing & typesetting industry. Lorem Ipsum has been the industry's standard dummy. Lorem Ipsum is simply dummy text of the printing & typesetting industry.</p>
<a href="single-project-page1.html" class="highlight-button-black-border btn btn-small no-margin-bottom sm-no-margin">View Case Study</a>
</div>
</div>
</div>
<!-- end case study item -->
</div>
</div>
</div>
</section>
<!-- case study section -->
<!-- blog section -->
<section id="blog" class="wow fadeIn">
<div class="container">
<div class="row">
<!-- section title -->
<div class="col-md-12 text-center">
<h3 class="section-title">Latest Blogs</h3>
</div>
<!-- end section title -->
</div>
<div class="row">
<!-- blog item -->
<div class="col-md-4 col-sm-4 wow fadeInUp" data-wow-duration="300ms">
<div class="blog-post">
<div class="blog-post-images"><a href="blog-single-full-width-with-image-slider.html"><img src="http://placehold.it/800x500" alt=""></a></div>
<div class="post-details">
<a href="blog-single-full-width-with-image-slider.html" class="post-title">Standard post with picture</a>
<span class="post-author sm-margin-bottom-three sm-margin-top-three">Posted by <a href="blog-single-full-width-with-image-slider.html">Michael Freemon</a> | 10 January 2015</span>
<p class="width-90">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text.</p>
</div>
</div>
</div>
<!-- end blog item -->
<!-- blog item -->
<div class="col-md-4 col-sm-4 wow fadeInUp" data-wow-duration="600ms">
<div class="blog-post">