-
Notifications
You must be signed in to change notification settings - Fork 0
/
text-box.html
982 lines (978 loc) · 83.3 KB
/
text-box.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
<!doctype html>
<html class="no-js" lang="en">
<head>
<!-- title -->
<title>POFO – Creative Agency, Corporate and Portfolio Multi-purpose Template</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1" />
<meta name="author" content="ThemeZaa">
<!-- description -->
<meta name="description" content="POFO is a highly creative, modern, visually stunning and Bootstrap responsive multipurpose agency and portfolio HTML5 template with 25 ready home page demos.">
<!-- keywords -->
<meta name="keywords" content="creative, modern, clean, bootstrap responsive, html5, css3, portfolio, blog, agency, templates, multipurpose, one page, corporate, start-up, studio, branding, designer, freelancer, carousel, parallax, photography, personal, masonry, grid, coming soon, faq">
<!-- 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.min.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" />
<!-- themify icon -->
<link rel="stylesheet" href="css/themify-icons.css">
<!-- swiper carousel -->
<link rel="stylesheet" href="css/swiper.min.css">
<!-- justified gallery -->
<link rel="stylesheet" href="css/justified-gallery.min.css">
<!-- magnific popup -->
<link rel="stylesheet" href="css/magnific-popup.css" />
<!-- revolution slider -->
<link rel="stylesheet" type="text/css" href="revolution/css/settings.css" media="screen" />
<link rel="stylesheet" type="text/css" href="revolution/css/layers.css">
<link rel="stylesheet" type="text/css" href="revolution/css/navigation.css">
<!-- bootsnav -->
<link rel="stylesheet" href="css/bootsnav.css">
<!-- style -->
<link rel="stylesheet" href="css/style.css" />
<!-- responsive css -->
<link rel="stylesheet" href="css/responsive.css" />
<!--[if IE]>
<script src="js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<!-- start header -->
<header>
<!-- start navigation -->
<nav class="navbar navbar-default bootsnav bg-transparent navbar-top nav-box-width header-light">
<div class="container-fluid nav-header-container">
<div class="row">
<!-- start logo -->
<div class="col-md-2 col-xs-5">
<a href="index.html" title="Pofo" class="logo"><img src="images/logo.png" data-rjs="images/[email protected]" class="logo-dark default" alt="Pofo"><img src="images/logo-white.png" data-rjs="images/[email protected]" alt="Pofo" class="logo-light"></a>
</div>
<!-- end logo -->
<div class="col-md-7 col-xs-2 width-auto pull-right accordion-menu xs-no-padding-right">
<button type="button" class="navbar-toggle collapsed pull-right" data-toggle="collapse" data-target="#navbar-collapse-toggle-1">
<span class="sr-only">toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="navbar-collapse collapse pull-right" id="navbar-collapse-toggle-1">
<ul id="accordion" class="nav navbar-nav navbar-left no-margin alt-font text-normal" data-in="fadeIn" data-out="fadeOut">
<!-- start menu item -->
<li class="dropdown megamenu-fw">
<a href="javascript:void(0);">Home</a><i class="fas fa-angle-down dropdown-toggle" data-toggle="dropdown" aria-hidden="true"></i>
<!-- start sub menu -->
<div class="menu-back-div dropdown-menu megamenu-content mega-menu collapse mega-menu-full">
<ul class="equalize sm-equalize-auto">
<!-- start sub menu column -->
<li class="mega-menu-column col-lg-3 col-md-3 col-sm-12 col-xs-12">
<!-- start sub menu item -->
<ul>
<li class="dropdown-header">Classic Homepages</li>
<li><a href="home-classic-corporate.html">Classic corporate</a></li>
<li><a href="home-classic-digital-agency.html">Classic digital agency</a></li>
<li><a href="home-classic-innovation-agency.html">Classic innovation agency</a></li>
<li><a href="home-classic-web-agency.html">Classic web agency</a></li>
<li><a href="home-classic-one-page.html">Classic one page</a></li>
<li><a href="home-classic-start-up.html">Classic start-up</a></li>
<li><a href="home-classic-interactive-agency.html">Classic interactive agency</a></li>
</ul>
<!-- end sub menu item -->
</li>
<!-- end sub menu column -->
<!-- start sub menu column -->
<li class="mega-menu-column col-lg-3 col-md-3 col-sm-12 col-xs-12">
<!-- start sub menu item -->
<ul>
<li class="dropdown-header">Creative Homepages</li>
<li><a href="home-creative-studio.html">Creative studio</a></li>
<li><a href="home-creative-business.html">Creative business</a></li>
<li><a href="home-creative-simple-portfolio.html">Creative simple portfolio</a></li>
<li><a href="home-creative-branding-agency.html">Creative branding agency</a></li>
<li><a href="home-creative-small-business.html">Creative small business</a></li>
<li><a href="home-creative-designer.html">Creative designer</a></li>
<li><a href="home-creative-agency.html">Creative agency</a></li>
</ul>
<!-- end sub menu item -->
</li>
<!-- end sub menu column -->
<!-- start sub menu column -->
<li class="mega-menu-column col-lg-3 col-md-3 col-sm-12 col-xs-12">
<!-- start sub menu item -->
<ul>
<li class="dropdown-header">Portfolio Homepages</li>
<li><a href="home-portfolio-minimal.html">Portfolio minimal</a></li>
<li><a href="home-portfolio-multiple-carousel.html">Portfolio multiple carousel</a></li>
<li><a href="home-portfolio-centered-slides.html">Portfolio centered slides</a></li>
<li><a href="home-portfolio-personal.html">Portfolio personal</a></li>
<li><a href="home-portfolio-metro.html">Portfolio metro</a></li>
<li><a href="home-portfolio-full-screen-vertical.html">Portfolio full screen – vertical</a></li>
<li><a href="home-portfolio-photographer.html">Portfolio photographer</a></li>
<li><a href="home-portfolio-parallax.html">Portfolio parallax</a></li>
</ul>
<!-- end sub menu item -->
</li>
<!-- end sub menu column -->
<!-- start sub menu column -->
<li class="mega-menu-column col-lg-3 col-md-3 col-sm-12 col-xs-12">
<!-- start sub menu item -->
<ul>
<li class="dropdown-header">Blog Homepages</li>
<li><a href="home-blog-grid.html">Blog grid</a></li>
<li><a href="home-blog-masonry.html">Blog masonry</a></li>
<li><a href="home-blog-clean.html">Blog clean</a></li>
<li><a href="home-blog-personal.html">Blog personal</a></li>
</ul>
<!-- end sub menu item -->
</li>
<!-- end sub menu column -->
</ul>
<!-- end sub menu -->
</div>
</li>
<!-- end menu item -->
<li class="dropdown simple-dropdown"><a href="javascript:void(0);">Pages</a><i class="fas fa-angle-down dropdown-toggle" data-toggle="dropdown" aria-hidden="true"></i>
<!-- start sub menu -->
<ul class="dropdown-menu" role="menu">
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="javascript:void(0);">About <i class="fas fa-angle-right"></i></a>
<ul class="dropdown-menu">
<li><a href="about-us-simple.html">About us simple</a></li>
<li><a href="about-us-classic.html">About us classic</a></li>
<li><a href="about-us-modern.html">About us modern</a></li>
<li><a href="about-me.html">About me</a></li>
</ul>
</li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="javascript:void(0);">Services <i class="fas fa-angle-right"></i></a>
<ul class="dropdown-menu">
<li><a href="services-simple.html">Services simple</a></li>
<li><a href="services-classic.html">Services classic</a></li>
<li><a href="services-modern.html">Services modern</a></li>
</ul>
</li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="javascript:void(0);">Contact <i class="fas fa-angle-right"></i></a>
<ul class="dropdown-menu">
<li><a href="contact-us-simple.html">Contact simple</a></li>
<li><a href="contact-us-classic.html">Contact classic</a></li>
<li><a href="contact-us-classic-02.html">Contact classic – style 02</a></li>
<li><a href="contact-us-modern.html">Contact modern</a></li>
</ul>
</li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="javascript:void(0);">Team <i class="fas fa-angle-right"></i></a>
<ul class="dropdown-menu">
<li><a href="team-simple.html">Team simple</a></li>
<li><a href="team-classic.html">Team classic</a></li>
</ul>
</li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="javascript:void(0);">Additional Pages <i class="fas fa-angle-right"></i></a>
<ul class="dropdown-menu">
<li><a href="our-clients.html">Our clients</a></li>
<li><a href="404.html">Error 404</a></li>
<li><a href="coming-soon.html">Coming soon</a></li>
<li><a href="coming-soon-02.html">Coming soon – style 02</a></li>
<li><a href="faq.html">Faq</a></li>
<li><a href="maintenance.html">Maintenance</a></li>
<li><a href="search-result.html">Search result</a></li>
<li><a href="pricing.html">Pricing</a></li>
</ul>
</li>
</ul>
</li>
<li class="dropdown megamenu-fw">
<a href="javascript:void(0);">Portfolio</a><i class="fas fa-angle-down dropdown-toggle" data-toggle="dropdown" aria-hidden="true"></i>
<!-- start sub menu -->
<div class="menu-back-div dropdown-menu megamenu-content mega-menu collapse mega-menu-full">
<ul class="equalize sm-equalize-auto">
<!-- start sub menu column -->
<li class="mega-menu-column col-lg-3 col-md-3 col-sm-12 col-xs-12">
<!-- start sub menu item -->
<ul>
<li class="dropdown-header">Grid - Full width Layouts</li>
<li><a href="portfolio-full-width-grid-overlay.html">Portfolio grid overlay</a></li>
<li><a href="portfolio-full-width-grid-with-icon.html">Portfolio grid with icon</a></li>
<li><a href="portfolio-full-width-grid-transform.html">Portfolio grid transform</a></li>
<li><a href="portfolio-full-width-grid-zooming.html">Portfolio grid zooming</a></li>
</ul>
<ul>
<li class="dropdown-header">Masonry - Full width Layouts</li>
<li><a href="portfolio-full-width-masonry-overlay.html">Portfolio masonry overlay</a></li>
<li><a href="portfolio-full-width-masonry-with-icon.html">Portfolio masonry with icon</a></li>
</ul>
<ul>
<li class="dropdown-header">Metro - Full width Layouts</li>
<li><a href="portfolio-full-width-metro-overlay.html">Portfolio metro overlay</a></li>
<li><a href="portfolio-full-width-metro-with-icon.html">Portfolio metro with icon</a></li>
<li><a href="portfolio-full-width-metro-transform.html">Portfolio metro transform</a></li>
<li><a href="portfolio-full-width-metro-zooming.html">Portfolio metro zooming</a></li>
</ul>
<ul>
<li class="dropdown-header">Other - Full width Layouts</li>
<li><a href="portfolio-full-width-image-gallery.html">Portfolio image gallery</a></li>
<li><a href="portfolio-full-width-justified-gallery.html">Portfolio justified</a></li>
<li><a href="portfolio-full-width-carousel.html">Portfolio carousel</a></li>
<li><a href="portfolio-full-width-parallax.html">Portfolio parallax</a></li>
</ul>
<!-- end sub menu item -->
</li>
<!-- end sub menu column -->
<!-- start sub menu column -->
<li class="mega-menu-column col-lg-3 col-md-3 col-sm-12 col-xs-12">
<!-- start sub menu item -->
<ul>
<li class="dropdown-header">Grid - Boxed Layouts</li>
<li><a href="portfolio-boxed-grid-overlay.html">Portfolio grid overlay</a></li>
<li><a href="portfolio-boxed-grid-with-icon.html">Portfolio grid with icon</a></li>
<li><a href="portfolio-boxed-grid-transform.html">Portfolio grid transform</a></li>
<li><a href="portfolio-boxed-grid-zooming.html">Portfolio grid zooming</a></li>
</ul>
<ul>
<li class="dropdown-header">Masonry - Boxed Layouts</li>
<li><a href="portfolio-boxed-masonry-overlay.html">Portfolio masonry overlay</a></li>
<li><a href="portfolio-boxed-masonry-with-icon.html">Portfolio masonry with icon</a></li>
</ul>
<ul>
<li class="dropdown-header">Metro - Boxed Layouts</li>
<li><a href="portfolio-boxed-metro-overlay.html">Portfolio metro overlay</a></li>
<li><a href="portfolio-boxed-metro-with-icon.html">Portfolio metro with icon</a></li>
<li><a href="portfolio-boxed-metro-transform.html">Portfolio metro transform</a></li>
<li><a href="portfolio-boxed-metro-zooming.html">Portfolio metro zooming</a></li>
</ul>
<ul>
<li class="dropdown-header">Other - Boxed Layouts</li>
<li><a href="portfolio-boxed-image-gallery.html">Portfolio image gallery</a></li>
<li><a href="portfolio-boxed-justified-gallery.html">Portfolio justified</a></li>
<li><a href="portfolio-boxed-carousel.html">Portfolio carousel</a></li>
<li><a href="portfolio-boxed-parallax.html">Portfolio parallax</a></li>
</ul>
<!-- end sub menu item -->
</li>
<!-- end sub menu column -->
<!-- start sub menu column -->
<li class="mega-menu-column col-lg-3 col-md-3 col-sm-12 col-xs-12">
<!-- start sub menu item -->
<ul>
<li class="dropdown-header">Single Project Page</li>
<li><a href="single-project-page-01.html">Single project page 01</a></li>
<li><a href="single-project-page-02.html">Single project page 02</a></li>
<li><a href="single-project-page-03.html">Single project page 03</a></li>
<li><a href="single-project-page-04.html">Single project page 04</a></li>
<li><a href="single-project-page-05.html">Single project page 05</a></li>
<li><a href="single-project-page-06.html">Single project page 06</a></li>
<li><a href="single-project-page-07.html">Single project page 07</a></li>
<li><a href="single-project-page-08.html">Single project page 08</a></li>
</ul>
<!-- end sub menu item -->
<ul>
<li class="dropdown-header">Portfolio Columns</li>
<li><a href="portfolio-two-columns.html">Portfolio 2 columns</a></li>
<li><a href="portfolio-three-columns.html">Portfolio 3 columns</a></li>
<li><a href="portfolio-four-columns.html">Portfolio 4 columns</a></li>
<li><a href="portfolio-five-columns.html">Portfolio 5 columns</a></li>
</ul>
</li>
<!-- end sub menu column -->
<!-- start sub menu column -->
<li class="mega-menu-column col-lg-3 col-md-3 col-sm-12 col-xs-12">
<!-- start sub menu item -->
<ul>
<li>
<a href="home-creative-studio.html" class="menu-banner-image"><img src="images/menu-banner-01.png" alt="portfolio"/></a>
</li>
<li>
<a href="home-creative-business.html" class="menu-banner-image"><img src="images/menu-banner-02.png" alt="portfolio"/></a>
</li>
</ul>
<!-- end sub menu item -->
</li>
<!-- end sub menu column -->
</ul>
<!-- end sub menu -->
</div>
</li>
<li class="dropdown simple-dropdown"><a href="javascript:void(0);" title="Blog">Blog</a><i class="fas fa-angle-down dropdown-toggle" data-toggle="dropdown" aria-hidden="true"></i>
<!-- start sub menu -->
<ul class="dropdown-menu" role="menu">
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="javascript:void(0);">Blog Standard <i class="fas fa-angle-right"></i></a>
<ul class="dropdown-menu">
<li><a href="blog-standard-full-width.html">Blog standard – full width</a></li>
<li><a href="blog-standard-with-left-sidebar.html">Blog standard with left sidebar</a></li>
<li><a href="blog-standard-with-right-sidebar.html">Blog standard with right sidebar</a></li>
</ul>
</li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="javascript:void(0);">Blog Classic <i class="fas fa-angle-right"></i></a>
<ul class="dropdown-menu">
<li><a href="blog-classic.html">Blog classic</a></li>
<li><a href="blog-classic-full-width.html">Blog classic – full width</a></li>
</ul></li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="javascript:void(0);">Blog List <i class="fas fa-angle-right"></i></a>
<ul class="dropdown-menu">
<li><a href="blog-list.html">Blog list</a></li>
<li><a href="blog-list-full-width.html">Blog list – full width</a></li>
</ul></li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="javascript:void(0);">Blog Grid <i class="fas fa-angle-right"></i></a>
<ul class="dropdown-menu">
<li><a href="blog-grid.html">Blog grid</a></li>
<li><a href="blog-grid-full-width.html">Blog grid – full width</a></li>
</ul>
</li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="javascript:void(0);">Blog Masonry <i class="fas fa-angle-right"></i></a>
<ul class="dropdown-menu">
<li><a href="blog-masonry.html">Blog masonry</a></li>
<li><a href="blog-masonry-full-width.html">Blog masonry – full width</a></li>
</ul>
</li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="javascript:void(0);">Blog Simple <i class="fas fa-angle-right"></i></a>
<ul class="dropdown-menu">
<li><a href="blog-simple.html">Blog simple</a></li>
<li><a href="blog-simple-full-width.html">Blog simple – full width</a></li>
</ul>
</li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="javascript:void(0);">Blog Clean <i class="fas fa-angle-right"></i></a>
<ul class="dropdown-menu">
<li><a href="blog-clean.html">Blog clean</a></li>
<li><a href="blog-clean-full-width.html">Blog clean – full width</a></li>
</ul>
</li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="javascript:void(0);">Blog Images <i class="fas fa-angle-right"></i></a>
<ul class="dropdown-menu">
<li><a href="blog-images.html">Blog images</a></li>
<li><a href="blog-images-full-width.html">Blog images – full width</a></li>
</ul>
</li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="javascript:void(0);">Blog Only Text <i class="fas fa-angle-right"></i></a>
<ul class="dropdown-menu">
<li><a href="blog-only-text.html">Blog only text</a></li>
<li><a href="blog-only-text-full-width.html">Blog only text – full width</a></li>
</ul>
</li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="javascript:void(0);">Post Layout <i class="fas fa-angle-right"></i></a>
<ul class="dropdown-menu">
<li><a href="blog-post-layout-01.html">Blog post layout 01</a></li>
<li><a href="blog-post-layout-02.html">Blog post layout 02</a></li>
<li><a href="blog-post-layout-03.html">Blog post layout 03</a></li>
<li><a href="blog-post-layout-04.html">Blog post layout 04</a></li>
<li><a href="blog-post-layout-05.html">Blog post layout 05</a></li>
</ul>
</li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="javascript:void(0);">Post Types <i class="fas fa-angle-right"></i></a>
<ul class="dropdown-menu">
<li><a href="blog-standard-post.html">Standard post</a></li>
<li><a href="blog-gallery-post.html">Gallery post</a></li>
<li><a href="blog-slider-post.html">Slider post</a></li>
<li><a href="blog-html5-video-post.html">HTML5 video post</a></li>
<li><a href="blog-youtube-video-post.html">Youtube video post</a></li>
<li><a href="blog-vimeo-video-post.html">Vimeo video post</a></li>
<li><a href="blog-audio-post.html">Audio post</a></li>
<li><a href="blog-blockquote-post.html">Blockquote post</a></li>
<li><a href="blog-full-width-post.html">Full width post</a></li>
</ul>
</li>
</ul>
<!-- end sub menu -->
</li>
<li class="dropdown megamenu-fw">
<a href="javascript:void(0);">Elements</a><i class="fas fa-angle-down dropdown-toggle" data-toggle="dropdown" aria-hidden="true"></i>
<!-- start sub menu -->
<div class="menu-back-div dropdown-menu megamenu-content mega-menu collapse mega-menu-full icon-list-menu">
<ul class="equalize sm-equalize-auto">
<!-- start sub menu column -->
<li class="mega-menu-column col-lg-3 col-md-3 col-sm-12 col-xs-12">
<!-- start sub menu item -->
<ul>
<li class="dropdown-header">General elements</li>
<li><a href="accordions.html"><i class="ti-layout-accordion-separated"></i> Accordions</a></li>
<li><a href="buttons.html"><i class="ti-mouse"></i> Buttons</a></li>
<li><a href="team.html"><i class="ti-user"></i> Team</a></li>
<li><a href="team-carousel.html"><i class="ti-layout-slider-alt"></i> Team carousel</a></li>
<li><a href="clients.html"><i class="ti-id-badge"></i> Clients</a></li>
<li><a href="client-carousel.html"><i class="ti-layout-slider"></i> Client carousel</a></li>
<li><a href="subscribe.html"><i class="ti-bookmark"></i> Subscribe</a></li>
<li><a href="call-to-action.html"><i class="ti-headphone-alt"></i> Call to action</a></li>
<li><a href="tab.html"><i class="ti-layout-tab"></i> Tab</a></li>
<li><a href="google-map.html"><i class="ti-location-pin"></i> Google map</a></li>
<li><a href="text-slider.html"><i class="ti-layout-media-overlay"></i> Text slider</a></li>
<li><a href="contact-form.html"><i class="ti-clipboard"></i> Contact form</a></li>
<li><a href="image-gallery.html"><i class="ti-gallery"></i> Image gallery</a></li>
</ul>
<!-- end sub menu item -->
</li>
<!-- end sub menu column -->
<!-- start sub menu column -->
<li class="mega-menu-column col-lg-3 col-md-3 col-sm-12 col-xs-12">
<!-- start sub menu item -->
<ul>
<li class="dropdown-header">Infographics / icons</li>
<li><a href="process-bar.html"><i class="icon-hourglass"></i> Process bar</a></li>
<li><a href="icon-with-text.html"><i class="ti-layout-media-left"></i> Icon with text</a></li>
<li><a href="overline-icon-box.html"><i class="ti-layout-placeholder"></i> Overline icon box</a></li>
<li><a href="custom-icon-with-text.html"><i class="ti-layout-cta-btn-left"></i> Custom icon with text</a></li>
<li><a href="counters.html"><i class="ti-timer"></i> Counters</a></li>
<li><a href="countdown.html"><i class="ti-alarm-clock"></i> Countdown</a></li>
<li><a href="pie-charts.html"><i class="ti-pie-chart"></i> Pie charts</a></li>
<li><a href="text-box.html"><i class="ti-layout-cta-left"></i> Text box</a></li>
<li><a href="fancy-text-box.html"><i class="ti-layout-cta-center"></i> Fancy text box</a></li>
</ul>
<!-- end sub menu item -->
</li>
<!-- end sub menu column -->
<!-- start sub menu column -->
<li class="mega-menu-column col-lg-3 col-md-3 col-sm-12 col-xs-12">
<!-- start sub menu item -->
<ul>
<li class="dropdown-header">Interactive Elements</li>
<li><a href="testimonials.html"><i class="ti-thought"></i> Testimonials</a></li>
<li><a href="testimonials-carousel.html"><i class="ti-comments"></i> Testimonials carousel</a></li>
<li><a href="video.html"><i class="ti-video-camera"></i> Video</a></li>
<li><a href="interactive-banners.html"><i class="ti-image"></i> Interactive banners</a></li>
<li><a href="services.html"><i class="ti-headphone-alt"></i> Services</a></li>
<li><a href="portfolio-slider.html"><i class="ti-layout-slider-alt"></i> Portfolio slider</a></li>
<li><a href="info-banner.html"><i class="ti-layout-slider"></i> Info banner</a></li>
<li><a href="rotate-box.html"><i class="ti-layout-width-full"></i> Rotate box</a></li>
<li><a href="process-step.html"><i class="ti-stats-up"></i> Process step</a></li>
<li><a href="blog-posts.html"><i class="ti-comment-alt"></i> Blog posts</a></li>
<li><a href="instagram.html"><i class="ti-instagram"></i> Instagram</a></li>
<li><a href="parallax-scrolling.html"><i class="ti-exchange-vertical"></i> Parallax scrolling</a></li>
</ul>
<!-- end sub menu item -->
</li>
<!-- end sub menu column -->
<!-- start sub menu column -->
<li class="mega-menu-column col-lg-3 col-md-3 col-sm-12 col-xs-12">
<!-- start sub menu item -->
<ul>
<li class="dropdown-header">Text & containers</li>
<li><a href="heading.html"><i class="ti-text"></i> Heading</a></li>
<li><a href="dropcaps.html"><i class="ti-layout-accordion-list"></i> Dropcaps</a></li>
<li><a href="columns.html"><i class="ti-layout-column3-alt"></i> Columns</a></li>
<li><a href="blockquote.html"><i class="ti-quote-left"></i> Blockquote</a></li>
<li><a href="highlights.html"><i class="ti-underline"></i> Highlights</a></li>
<li><a href="message-box.html"><i class="ti-layout-media-right-alt"></i> Message box</a></li>
<li><a href="social-icons.html"><i class="ti-signal"></i> Social icons</a></li>
<li><a href="lists.html"><i class="ti-list"></i> Lists</a></li>
<li><a href="seperators.html"><i class="ti-layout-line-solid"></i> Separators</a></li>
<li><a href="pricing-table.html"><i class="ti-layout-grid2-thumb"></i> Pricing table</a></li>
</ul>
<!-- end sub menu item -->
</li>
<!-- end sub menu column -->
</ul>
<!-- end sub menu -->
</div>
</li>
<li class="dropdown megamenu-fw">
<a href="javascript:void(0);">Features</a><i class="fas fa-angle-down dropdown-toggle" data-toggle="dropdown" aria-hidden="true"></i>
<!-- start sub menu -->
<div class="menu-back-div dropdown-menu megamenu-content mega-menu collapse mega-menu-full">
<ul class="equalize sm-equalize-auto">
<!-- start sub menu column -->
<li class="mega-menu-column col-lg-3 col-md-3 col-sm-12 col-xs-12">
<!-- start sub menu item -->
<ul>
<li class="dropdown-header">Header Styles</li>
<li><a href="transparent-header.html">Transparent header</a></li>
<li><a href="white-header.html">White header</a></li>
<li><a href="dark-header.html">Dark header</a></li>
<li><a href="header-with-top-bar.html">Header with top bar</a></li>
<li><a href="header-with-sticky-top-bar.html">Header with sticky top bar</a></li>
<li><a href="header-with-push.html">Header with push</a></li>
<li><a href="center-navigation.html">Center navigation</a></li>
<li><a href="center-logo.html">Center logo</a></li>
<li><a href="top-logo.html">Top logo</a></li>
<li><a href="one-page-navigation.html">One page navigation</a></li>
<li><a href="hamburger-menu.html">Hamburger menu</a></li>
<li><a href="hamburger-menu-modern.html">Hamburger menu modern</a></li>
<li><a href="hamburger-menu-half.html">Hamburger menu half</a></li>
<li><a href="left-menu-classic.html">Left menu classic</a></li>
<li><a href="left-menu-modern.html">Left menu modern</a></li>
</ul>
<!-- end sub menu item -->
</li>
<!-- end sub menu column -->
<!-- start sub menu column -->
<li class="mega-menu-column col-lg-3 col-md-3 col-sm-12 col-xs-12">
<!-- start sub menu item -->
<ul>
<li class="dropdown-header">Footer</li>
<li><a href="footer-standard.html">Footer standard</a></li>
<li><a href="footer-standard-dark.html">Footer standard dark</a></li>
<li><a href="footer-classic.html">Footer classic</a></li>
<li><a href="footer-classic-dark.html">Footer classic dark</a></li>
<li><a href="footer-clean.html">Footer clean</a></li>
<li><a href="footer-clean-dark.html">Footer clean dark</a></li>
<li><a href="footer-modern.html">Footer modern</a></li>
<li><a href="footer-modern-dark.html">Footer modern dark</a></li>
<li><a href="footer-center-logo.html">Footer center logo </a></li>
<li><a href="footer-center-logo-dark.html">Footer center logo dark</a></li>
<li><a href="footer-strip.html">Footer strip</a></li>
<li><a href="footer-strip-dark.html">Footer strip dark</a></li>
<li><a href="footer-center-logo-02.html">Footer center logo 02</a></li>
<li><a href="footer-center-logo-02-dark.html">Footer center logo 02 dark</a></li>
</ul>
<!-- end sub menu item -->
</li>
<!-- end sub menu column -->
<!-- start sub menu column -->
<li class="mega-menu-column col-lg-3 col-md-3 col-sm-12 col-xs-12">
<!-- start sub menu item -->
<ul>
<li class="dropdown-header">Page Title</li>
<li><a href="page-title-left-alignment.html">Left alignment</a></li>
<li><a href="page-title-right-alignment.html">Right alignment</a></li>
<li><a href="page-title-center-alignment.html">Center alignment</a></li>
<li><a href="page-title-dark-style.html">Dark style</a></li>
<li><a href="page-title-big-typography.html">Big typography</a></li>
<li><a href="page-title-parallax-image-background.html">Parallax image background</a></li>
<li><a href="page-title-background-breadcrumbs.html">Image after breadcrumbs</a></li>
<li><a href="page-title-gallery-background.html">Gallery background</a></li>
<li><a href="page-title-background-video.html">Background video</a></li>
<li><a href="page-title-mini-version.html">Mini version</a></li>
</ul>
<!-- end sub menu item -->
</li>
<!-- end sub menu column -->
<!-- start sub menu column -->
<li class="mega-menu-column col-lg-3 col-md-3 col-sm-12 col-xs-12">
<!-- start sub menu item -->
<ul>
<li class="dropdown-header">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>
<!-- end sub menu column -->
</ul>
<!-- end sub menu -->
</div>
</li>
</ul>
</div>
</div>
<div class="col-md-2 col-xs-5 width-auto">
<div class="header-searchbar">
<a href="#search-header" class="header-search-form text-white"><i class="fas fa-search search-button"></i></a>
<!-- search input-->
<form id="search-header" method="post" action="search-result.html" name="search-header" class="mfp-hide search-form-result">
<div class="search-form position-relative">
<button type="submit" class="fas fa-search close-search search-button"></button>
<input type="text" name="search" class="search-input" placeholder="Enter your keywords..." autocomplete="off">
</div>
</form>
</div>
<div class="header-social-icon xs-display-none">
<a href="https://www.facebook.com/" title="Facebook" target="_blank"><i class="fab fa-facebook-f" aria-hidden="true"></i></a>
<a href="https://twitter.com/" title="Twitter" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://dribbble.com/" title="Dribbble" target="_blank"><i class="fab fa-dribbble"></i></a>
</div>
</div>
</div>
</div>
</nav>
<!-- end navigation -->
</header>
<!-- end header -->
<!-- start page title section -->
<section class="wow fadeIn bg-extra-dark-gray padding-35px-tb page-title-small top-space">
<div class="container">
<div class="row equalize">
<div class="col-lg-8 col-md-6 col-sm-6 col-xs-12 display-table">
<div class="display-table-cell vertical-align-middle text-left xs-text-center">
<!-- start page title -->
<h1 class="alt-font text-white font-weight-600 no-margin-bottom text-uppercase">Text Box</h1>
<!-- end page title -->
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 col-xs-12 display-table text-right xs-text-left xs-margin-10px-top">
<div class="display-table-cell vertical-align-middle breadcrumb text-small alt-font">
<!-- breadcrumb -->
<ul class="xs-text-center">
<li><a href="#" class="text-dark-gray">Elements</a></li>
<li><a href="#" class="text-dark-gray">Infographics / icons</a></li>
<li class="text-dark-gray">Text box</li>
</ul>
<!-- end breadcrumb -->
</div>
</div>
</div>
</div>
</section>
<!-- end page title section -->
<!-- start text box style 01 section -->
<section class="no-padding-bottom wow fadeIn">
<div class="container-fluid">
<div class="row">
<div class="col-md-7 col-sm-12 col-xs-12 center-col text-center margin-100px-bottom xs-margin-40px-bottom">
<div class="position-relative overflow-hidden width-100">
<span class="text-small text-outside-line-full alt-font font-weight-600 text-uppercase">Text Box Style 01</span>
</div>
</div>
</div>
<div class="feature-box feature-box-7 equalize xs-equalize-auto">
<!-- start feature item -->
<div class="col-lg-3 col-md-6 col-sm-6 col-xs-12 no-padding xs-margin-five-bottom wow fadeInLeft last-paragraph-no-margin">
<div class="box">
<div class="content">
<figure>
<i class="icon-hotairballoon icon-extra-medium text-medium-gray margin-15px-bottom"></i>
<span class="alt-font text-extra-dark-gray display-block margin-10px-bottom">Creative Elements</span>
<div class="details">
<p class="width-65 center-col">Lorem Ipsum is simply dummy text of the printing typesetting industry.</p>
</div>
</figure>
</div>
</div>
</div>
<!-- end feature item -->
<!-- start feature item -->
<div class="col-lg-3 col-md-6 col-sm-6 col-xs-12 no-padding xs-margin-five-bottom wow fadeInLeft last-paragraph-no-margin" data-wow-delay="0.2s">
<div class="box">
<div class="content">
<figure>
<i class="icon-pricetags icon-extra-medium text-medium-gray margin-15px-bottom"></i>
<span class="alt-font text-extra-dark-gray display-block margin-10px-bottom">Unique Shortcodes</span>
<div class="details">
<p class="width-65 center-col">Lorem Ipsum is simply dummy text of the printing typesetting industry.</p>
</div>
</figure>
</div>
</div>
</div>
<!-- end feature item -->
<!-- start feature item -->
<div class="col-lg-3 col-md-6 col-sm-6 col-xs-12 no-padding xs-margin-five-bottom wow fadeInLeft last-paragraph-no-margin" data-wow-delay="0.4s">
<div class="box md-no-border-left md-no-border-top">
<div class="content">
<figure>
<i class="icon-chat icon-extra-medium text-medium-gray margin-15px-bottom"></i>
<span class="alt-font text-extra-dark-gray display-block margin-10px-bottom">Friendly Support</span>
<div class="details">
<p class="width-65 center-col">Lorem Ipsum is simply dummy text of the printing typesetting industry.</p>
</div>
</figure>
</div>
</div>
</div>
<!-- end feature item -->
<!-- start feature item -->
<div class="col-lg-3 col-md-6 col-sm-6 col-xs-12 no-padding wow fadeInLeft last-paragraph-no-margin" data-wow-delay="0.6s">
<div class="box md-no-border-top">
<div class="content">
<figure>
<i class="icon-layers icon-extra-medium text-medium-gray margin-15px-bottom"></i>
<span class="alt-font text-extra-dark-gray display-block margin-10px-bottom">Unlimited Layouts</span>
<div class="details">
<p class="width-65 center-col">Lorem Ipsum is simply dummy text of the printing typesetting industry.</p>
</div>
</figure>
</div>
</div>
</div>
<!-- end feature item -->
</div>
</div>
</section>
<!-- end text box style 01 section -->
<!-- start text box style 02 section -->
<section class="big-section bg-light-gray no-padding-bottom wow fadeIn">
<div class="container-fluid">
<div class="row">
<div class="col-md-7 col-sm-12 col-xs-12 center-col text-center margin-100px-bottom xs-margin-40px-bottom">
<div class="position-relative overflow-hidden width-100">
<span class="text-small text-outside-line-full alt-font font-weight-600 text-uppercase">Text Box Style 02</span>
</div>
</div>
</div>
<div class="row">
<!-- start feature item -->
<div class="col-md-4 col-sm-12 col-xs-12 no-padding info-banner-box-2 wow fadeInUp">
<div class="content-box bg-medium-light-gray display-table width-100 padding-50px-lr md-padding-20px-lr sm-padding-50px-lr xs-padding-15px-lr">
<div class="display-table-cell vertical-align-middle">
<div class="col-lg-2 col-md-3 col-sm-12 sm-margin-10px-bottom"><i class="icon-tools icon-extra-medium text-medium-gray"></i></div>
<div class="col-lg-10 col-md-9 col-sm-12">
<div class="alt-font text-medium font-weight-600 margin-5px-bottom text-extra-dark-gray">Powerful Options</div>
<p class="no-margin">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum standard dummy text.</p>
</div>
</div>
</div>
<div class="hover-box bg-deep-pink text-white bg-medium-light-gray display-table width-100 padding-50px-lr md-padding-20px-lr sm-padding-50px-lr xs-padding-15px-lr">
<div class="display-table-cell vertical-align-middle">
<div class="col-lg-2 col-md-3 col-sm-12 sm-margin-10px-bottom"><i class="icon-tools icon-extra-medium text-white"></i></div>
<div class="col-lg-10 col-md-9 col-sm-12">
<div class="alt-font text-medium font-weight-600 margin-5px-bottom">Powerful Options</div>
<p class="no-margin">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum standard dummy text.</p>
</div>
</div>
</div>
</div>
<!-- end feature item -->
<!-- start feature item -->
<div class="col-md-4 col-sm-12 col-xs-12 info-banner-box-2 no-padding wow fadeInUp" data-wow-delay="0.2s">
<div class="content-box bg-extra-light-gray display-table width-100 padding-50px-lr md-padding-20px-lr sm-padding-50px-lr xs-padding-15px-lr">
<div class="display-table-cell vertical-align-middle">
<div class="col-lg-2 col-md-3 col-sm-12 sm-margin-10px-bottom"><i class="icon-heart icon-extra-medium text-medium-gray"></i></div>
<div class="col-lg-10 col-md-9 col-sm-12">
<div class="alt-font text-medium font-weight-600 margin-5px-bottom text-extra-dark-gray">Made with Love</div>
<p class="no-margin">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum standard dummy text.</p>
</div>
</div>
</div>
<div class="hover-box bg-deep-pink text-white display-table width-100 padding-50px-lr md-padding-20px-lr sm-padding-50px-lr xs-padding-15px-lr">
<div class="display-table-cell vertical-align-middle">
<div class="col-lg-2 col-md-3 col-sm-12 sm-margin-10px-bottom"><i class="icon-heart icon-extra-medium text-white"></i></div>
<div class="col-lg-10 col-md-9 col-sm-12">
<div class="alt-font text-medium font-weight-600 margin-5px-bottom">Made with Love</div>
<p class="no-margin">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum standard dummy text.</p>
</div>
</div>
</div>
</div>
<!-- end feature item -->
<!-- start feature item -->
<div class="col-md-4 col-sm-12 col-xs-12 info-banner-box-2 no-padding wow fadeInUp" data-wow-delay="0.4s">
<div class="content-box bg-medium-light-gray display-table width-100 padding-50px-lr md-padding-20px-lr sm-padding-50px-lr xs-padding-15px-lr">
<div class="display-table-cell vertical-align-middle">
<div class="col-lg-2 col-md-2 col-sm-12 sm-margin-10px-bottom"><i class="icon-layers icon-extra-medium text-medium-gray"></i></div>
<div class="col-lg-10 col-md-9 col-sm-12">
<div class="alt-font text-medium font-weight-600 margin-5px-bottom text-extra-dark-gray">Visual Page Builder</div>
<p class="no-margin">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum standard dummy text.</p>
</div>
</div>
</div>
<div class="hover-box bg-deep-pink text-white display-table width-100 padding-50px-lr md-padding-20px-lr sm-padding-50px-lr xs-padding-15px-lr">
<div class="display-table-cell vertical-align-middle">
<div class="col-lg-2 col-md-3 col-sm-12 sm-margin-10px-bottom"><i class="icon-layers icon-extra-medium text-white"></i></div>
<div class="col-lg-10 col-md-9 col-sm-12">
<div class="alt-font text-medium font-weight-600 margin-5px-bottom">Visual Page Builder</div>
<p class="no-margin">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum standard dummy text.</p>
</div>
</div>
</div>
</div>
<!-- end feature item -->
</div>
</div>
</section>
<!-- end text box style 02 section -->
<!-- start text box style 03 section -->
<section class="bg-black padding-30px-bottom wow fadeIn">
<div class="container-fluid">
<div class="row">
<div class="col-md-7 col-sm-12 col-xs-12 center-col text-center margin-100px-bottom xs-margin-40px-bottom">
<div class="position-relative overflow-hidden width-100">
<span class="text-small text-outside-line-full alt-font font-weight-600 text-uppercase">Text Box Style 03</span>
</div>
</div>
</div>
<div class="feature-box feature-box-17 equalize xs-equalize-auto">
<!-- start feature item -->
<div class="col-md-3 col-sm-6 col-xs-12 sm-margin-30px-bottom xs-margin-20px-bottom wow fadeInLeft last-paragraph-no-margin">
<div class="box bg-extra-dark-gray text-extra-dark-gray text-white-hover">
<div class="content">
<figure>
<i class="ti-crown icon-extra-medium text-deep-pink margin-20px-bottom"></i>
<span class="text-large alt-font display-block margin-10px-bottom text-white">Creative Elements</span>
<div class="details">
<p class="width-65 sm-width-90 center-col text-white">Lorem Ipsum is simply dummy text of the printing typesetting industry.</p>
</div>
</figure>
</div>
</div>
</div>
<!-- end feature item -->
<!-- start feature item -->
<div class="col-md-3 col-sm-6 col-xs-12 sm-margin-30px-bottom xs-margin-20px-bottom wow fadeInLeft last-paragraph-no-margin">
<div class="box bg-extra-dark-gray text-extra-dark-gray text-white-hover">
<div class="content">
<figure>
<i class="ti-cup icon-extra-medium text-deep-pink margin-20px-bottom"></i>
<span class="text-large alt-font display-block margin-10px-bottom text-white">Unique Shortcodes</span>
<div class="details">
<p class="width-65 sm-width-90 center-col text-white">Lorem Ipsum is simply dummy text of the printing typesetting industry.</p>
</div>
</figure>
</div>
</div>
</div>
<!-- end feature item -->
<!-- start feature item -->
<div class="col-md-3 col-sm-6 col-xs-12 xs-margin-20px-bottom wow fadeInLeft last-paragraph-no-margin">
<div class="box bg-extra-dark-gray text-extra-dark-gray text-white-hover">
<div class="content">
<figure>
<i class="ti-gift icon-extra-medium text-deep-pink margin-20px-bottom"></i>
<span class="text-large alt-font display-block margin-10px-bottom text-white">Friendly Support</span>
<div class="details">
<p class="width-65 sm-width-90 center-col text-white">Lorem Ipsum is simply dummy text of the printing typesetting industry.</p>
</div>
</figure>
</div>
</div>
</div>
<!-- end feature item -->
<!-- start feature item -->
<div class="col-md-3 col-sm-6 col-xs-12 xs-margin-20px-bottom wow fadeInLeft last-paragraph-no-margin">
<div class="box bg-extra-dark-gray text-extra-dark-gray text-white-hover">
<div class="content">
<figure>
<i class="ti-bar-chart icon-extra-medium text-deep-pink margin-20px-bottom"></i>
<span class="text-large alt-font display-block margin-10px-bottom text-white">Unlimited Layouts</span>
<div class="details">
<p class="width-65 sm-width-90 center-col text-white">Lorem Ipsum is simply dummy text of the printing typesetting industry.</p>
</div>
</figure>
</div>
</div>
</div>
<!-- end feature item -->
</div>
</div>
</section>
<!-- end text box style 03 section -->
<!-- start footer -->
<footer class="footer-standard-dark bg-extra-dark-gray">
<div class="footer-widget-area padding-five-tb xs-padding-30px-tb">
<div class="container">
<div class="row equalize xs-equalize-auto">
<div class="col-md-3 col-sm-6 col-xs-12 widget border-right border-color-medium-dark-gray sm-no-border-right sm-margin-30px-bottom xs-text-center">
<!-- start logo -->
<a href="index.html" class="margin-20px-bottom display-inline-block"><img class="footer-logo" src="images/logo-white.png" data-rjs="images/[email protected]" alt="Pofo"></a>
<!-- end logo -->
<p class="text-small width-95 xs-width-100">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
<!-- start social media -->
<div class="social-icon-style-8 display-inline-block vertical-align-middle">
<ul class="small-icon no-margin-bottom">
<li><a class="facebook text-white" href="https://www.facebook.com/" target="_blank"><i class="fab fa-facebook-f" aria-hidden="true"></i></a></li>
<li><a class="twitter text-white" href="https://twitter.com/" target="_blank"><i class="fab fa-twitter"></i></a></li>
<li><a class="google text-white" href="https://plus.google.com" target="_blank"><i class="fab fa-google-plus-g"></i></a></li>
<li><a class="instagram text-white" href="https://instagram.com/" target="_blank"><i class="fab fa-instagram no-margin-right" aria-hidden="true"></i></a></li>
</ul>
</div>
<!-- end social media -->
</div>
<!-- start additional links -->
<div class="col-md-3 col-sm-6 col-xs-12 widget border-right border-color-medium-dark-gray padding-45px-left sm-padding-15px-left sm-no-border-right sm-margin-30px-bottom xs-text-center">
<div class="widget-title alt-font text-small text-medium-gray text-uppercase margin-10px-bottom font-weight-600">Additional Links</div>
<ul class="list-unstyled">
<li><a class="text-small" href="index.html">Home Classic Corporate</a></li>
<li><a class="text-small" href="home-creative-business.html">Home Creative Business</a></li>
<li><a class="text-small" href="home-creative-designer.html">Home Creative Designer</a></li>
<li><a class="text-small" href="home-portfolio-minimal.html">Home Portfolio Minimal</a></li>
<li><a class="text-small" href="home-portfolio-parallax.html">Home Portfolio parallax</a></li>
<li><a class="text-small" href="home-portfolio-personal.html">Home Portfolio Personal</a></li>
</ul>
</div>
<!-- end additional links -->
<!-- start contact information -->
<div class="col-md-3 col-sm-6 col-xs-12 widget border-right border-color-medium-dark-gray padding-45px-left sm-padding-15px-left sm-clear-both sm-no-border-right xs-margin-30px-bottom xs-text-center">
<div class="widget-title alt-font text-small text-medium-gray text-uppercase margin-10px-bottom font-weight-600">Contact Info</div>
<p class="text-small display-block margin-15px-bottom width-80 xs-center-col">POFO Design Agency<br> 301 The Greenhouse, Custard Factory, London, E2 8DY.</p>
<div class="text-small">Email: <a href="mailto:[email protected]">[email protected]</a></div>
<div class="text-small">Phone: +44 (0) 123 456 7890</div>
<a href="contact-us-modern.html" class="text-small text-uppercase text-decoration-underline">View Direction</a>
</div>
<!-- end contact information -->
<!-- start instagram -->
<div class="col-md-3 col-sm-6 col-xs-12 widget padding-45px-left sm-padding-15px-left xs-text-center">
<div class="widget-title alt-font text-small text-medium-gray text-uppercase margin-20px-bottom font-weight-600">Instagram portfolio</div>
<div class="instagram-follow-api">
<ul id="instaFeed-footer"></ul>
</div>
</div>
<!-- end instagram -->
</div>
</div>
</div>
<div class="bg-dark-footer padding-50px-tb text-center xs-padding-30px-tb">
<div class="container">
<div class="row">
<!-- start copyright -->
<div class="col-md-6 col-sm-6 col-xs-12 text-left text-small xs-text-center">© 2017 POFO is Proudly Powered by <a href="http://www.themezaa.com" target="_blank" class="text-dark-gray">ThemeZaa</a></div>
<div class="col-md-6 col-sm-6 col-xs-12 text-right text-small xs-text-center">
<a href="javascript:void(0);" class="text-dark-gray">Term and Condition</a> | <a href="javascript:void(0);" class="text-dark-gray">Privacy Policy</a>
</div>
<!-- end copyright -->
</div>
</div>
</div>
</footer>
<!-- end footer -->
<!-- start scroll to top -->
<a class="scroll-top-arrow" href="javascript:void(0);"><i class="ti-arrow-up"></i></a>
<!-- end scroll to top -->
<!-- javascript libraries -->
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/modernizr.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="js/skrollr.min.js"></script>
<script type="text/javascript" src="js/smooth-scroll.js"></script>
<script type="text/javascript" src="js/jquery.appear.js"></script>
<!-- menu navigation -->
<script type="text/javascript" src="js/bootsnav.js"></script>
<script type="text/javascript" src="js/jquery.nav.js"></script>
<!-- animation -->
<script type="text/javascript" src="js/wow.min.js"></script>
<!-- page scroll -->
<script type="text/javascript" src="js/page-scroll.js"></script>
<!-- swiper carousel -->
<script type="text/javascript" src="js/swiper.min.js"></script>
<!-- counter -->
<script type="text/javascript" src="js/jquery.count-to.js"></script>
<!-- parallax -->
<script type="text/javascript" src="js/jquery.stellar.js"></script>
<!-- magnific popup -->
<script type="text/javascript" src="js/jquery.magnific-popup.min.js"></script>
<!-- portfolio with shorting tab -->
<script type="text/javascript" src="js/isotope.pkgd.min.js"></script>
<!-- images loaded -->
<script type="text/javascript" src="js/imagesloaded.pkgd.min.js"></script>
<!-- pull menu -->
<script type="text/javascript" src="js/classie.js"></script>
<script type="text/javascript" src="js/hamburger-menu.js"></script>
<!-- counter -->
<script type="text/javascript" src="js/counter.js"></script>
<!-- fit video -->
<script type="text/javascript" src="js/jquery.fitvids.js"></script>
<!-- equalize -->
<script type="text/javascript" src="js/equalize.min.js"></script>
<!-- skill bars -->
<script type="text/javascript" src="js/skill.bars.jquery.js"></script>
<!-- justified gallery -->
<script type="text/javascript" src="js/justified-gallery.min.js"></script>
<!--pie chart-->
<script type="text/javascript" src="js/jquery.easypiechart.min.js"></script>
<!-- instagram -->
<script type="text/javascript" src="js/instafeed.min.js"></script>
<!-- retina -->
<script type="text/javascript" src="js/retina.min.js"></script>
<!-- revolution -->
<script type="text/javascript" src="revolution/js/jquery.themepunch.tools.min.js"></script>
<script type="text/javascript" src="revolution/js/jquery.themepunch.revolution.min.js"></script>
<!-- revolution slider extensions (load below extensions JS files only on local file systems to make the slider work! The following part can be removed on server for on demand loading) -->
<!--<script type="text/javascript" src="revolution/js/extensions/revolution.extension.actions.min.js"></script>
<script type="text/javascript" src="revolution/js/extensions/revolution.extension.carousel.min.js"></script>
<script type="text/javascript" src="revolution/js/extensions/revolution.extension.kenburn.min.js"></script>
<script type="text/javascript" src="revolution/js/extensions/revolution.extension.layeranimation.min.js"></script>
<script type="text/javascript" src="revolution/js/extensions/revolution.extension.migration.min.js"></script>
<script type="text/javascript" src="revolution/js/extensions/revolution.extension.navigation.min.js"></script>
<script type="text/javascript" src="revolution/js/extensions/revolution.extension.parallax.min.js"></script>
<script type="text/javascript" src="revolution/js/extensions/revolution.extension.slideanims.min.js"></script>
<script type="text/javascript" src="revolution/js/extensions/revolution.extension.video.min.js"></script>-->
<!-- setting -->
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>