-
Notifications
You must be signed in to change notification settings - Fork 0
/
home-business.html
1233 lines (1233 loc) · 106 KB
/
home-business.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html class="no-js" lang="en">
<head>
<title>Litho – The Multipurpose HTML5 Template</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="author" content="ThemeZaa">
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1" />
<meta name="description" content="Litho is a clean and modern design, BootStrap 4 responsive, business and portfolio multipurpose HTML5 template with 36+ ready homepage demos.">
<!-- favicon icon -->
<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">
<!-- style sheets and font icons -->
<link rel="stylesheet" type="text/css" href="css/font-icons.min.css">
<link rel="stylesheet" type="text/css" href="css/theme-vendors.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/responsive.css" />
</head>
<body data-mobile-nav-style="classic">
<!-- start header -->
<header class="header-with-topbar">
<div class="top-bar bg-light-gray border-bottom border-color-black-transparent d-none d-md-inline-block padding-35px-lr md-no-padding-lr">
<div class="container-fluid nav-header-container">
<div class="d-flex flex-wrap align-items-center">
<div class="col-12 text-center text-sm-left col-sm-auto mr-auto pl-lg-0">
<ul class="social-icon padding-5px-tb">
<li><a class="text-neon-blue-hover" href="http://www.facebook.com" target="_blank"><i class="fab fa-facebook-f"></i></a></li>
<li><a class="text-neon-blue-hover" href="http://www.dribbble.com" target="_blank"><i class="fab fa-dribbble"></i></a></li>
<li><a class="text-neon-blue-hover" href="http://www.twitter.com" target="_blank"><i class="fab fa-twitter"></i></a></li>
<li><a class="text-neon-blue-hover" href="http://www.instagram.com" target="_blank"><i class="fab fa-instagram"></i></a></li>
</ul>
</div>
<div class="col-auto d-none d-sm-block text-right px-lg-0 font-size-0">
<div class="top-bar-contact">
<span class="top-bar-contact-list">
<i class="feather icon-feather-phone-call icon-extra-small text-extra-dark-gray"></i>
0222 8899900
</span>
<span class="top-bar-contact-list d-none d-md-inline-block no-border-right pr-0">
<i class="feather icon-feather-map-pin icon-extra-small text-extra-dark-gray"></i>
401 Broadway, 24th Floor, San Francisco
</span>
</div>
</div>
</div>
</div>
</div>
<nav class="navbar navbar-expand-lg top-space navbar-light bg-white header-light fixed-top navbar-boxed header-reverse-scroll">
<div class="container-fluid nav-header-container">
<div class="col-6 col-lg-2 mr-auto pl-lg-0">
<a class="navbar-brand" href="index.html">
<img src="images/logo-gradient-sky-blue-pink.png" data-at2x="images/[email protected]" class="default-logo" alt="">
<img src="images/logo-black.png" data-at2x="images/[email protected]" class="alt-logo" alt="">
<img src="images/logo-gradient-sky-blue-pink.png" data-at2x="images/[email protected]" class="mobile-logo" alt="">
</a>
</div>
<div class="col-auto menu-order px-lg-0">
<button class="navbar-toggler float-right" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-label="Toggle navigation">
<span class="navbar-toggler-line"></span>
<span class="navbar-toggler-line"></span>
<span class="navbar-toggler-line"></span>
<span class="navbar-toggler-line"></span>
</button>
<div class=" collapse navbar-collapse justify-content-center" id="navbarNav">
<ul class="navbar-nav alt-font">
<li class="nav-item dropdown megamenu">
<a href="home-business.html#" class="nav-link">Home</a>
<i class="fa fa-angle-down dropdown-toggle" data-toggle="dropdown" aria-hidden="true"></i>
<div class="menu-back-div dropdown-menu megamenu-content" role="menu">
<div class="d-lg-flex justify-content-center">
<ul class="d-lg-inline-block">
<li class="dropdown-header">Corporate</li>
<li><a href="home-startup.html">Startup</a></li>
<li><a href="home-business.html">Business</a></li>
<li><a href="home-corporate.html">Corporate</a></li>
<li><a href="home-finance.html">Finance</a></li>
<li><a href="home-application.html">Application</a></li>
<li><a href="home-consulting.html">Consulting</a></li>
<li><a href="home-digital-agency.html">Digital agency</a></li>
<li><a href="home-seo-agency.html">SEO agency</a></li>
<li><a href="home-events-conference.html">Events & conference</a></li>
<li><a href="home-marketing-agency.html">Marketing agency</a></li>
</ul>
<ul class="d-lg-inline-block">
<li class="dropdown-header">Specialized</li>
<li><a href="home-restaurant.html">Restaurant</a></li>
<li><a href="home-architecture.html">Architecture</a></li>
<li><a href="home-hotel-resort.html">Hotel & resort</a></li>
<li><a href="home-travel-agency.html">Travel agency</a></li>
<li><a href="home-yoga-meditation.html">Yoga & meditation</a></li>
<li><a href="home-gym-fitness.html">Gym & fitness</a></li>
<li><a href="home-spa-salon.html">Spa salon</a></li>
<li><a href="home-cafe.html">Cafe</a></li>
<li><a href="home-decor.html">Home decor</a></li>
<li><a href="home-interior-design.html">Interior design</a></li>
</ul>
<ul class="d-lg-inline-block">
<li class="dropdown-header">Portfolio</li>
<li><a href="home-design-agency.html">Design agency</a></li>
<li><a href="home-web-agency.html">Web agency</a></li>
<li><a href="home-creative-agency.html">Creative agency</a></li>
<li><a href="home-freelancer.html">Freelancer</a></li>
<li><a href="home-branding-agency.html">Branding agency</a></li>
<li><a href="home-photography.html">Photography</a></li>
<li><a href="home-personal-portfolio.html">Personal portfolio</a></li>
<li><a href="home-vertical-portfolio.html">Vertical portfolio</a></li>
<li><a href="home-interactive-portfolio.html">Interactive portfolio</a></li>
<li><a href="home-split-portfolio.html">Split portfolio</a></li>
<li><a href="home-creative-portfolio.html">Creative portfolio</a></li>
</ul>
<ul class="d-lg-inline-block">
<li class="dropdown-header">Other</li>
<li><a href="home-furniture-shop.html">Furniture shop</a></li>
<li><a href="home-fashion-shop.html">Fashion shop</a></li>
<li><a href="home-magazine.html">Magazine</a></li>
<li><a href="home-lifestyle-blog.html">Lifestyle blog</a></li>
<li><a href="home-classic-blog.html">Classic blog</a></li>
<li><a href="home-blog-metro.html">Blog metro</a></li>
</ul>
</div>
</div>
</li>
<li class="nav-item dropdown simple-dropdown">
<a href="home-business.html#" class="nav-link">Pages</a>
<i class="fa fa-angle-down dropdown-toggle" data-toggle="dropdown" aria-hidden="true"></i>
<ul class="dropdown-menu" role="menu">
<li class="dropdown">
<a data-toggle="dropdown" href="javascript:void(0);">About<i class="fas fa-angle-right dropdown-toggle"></i></a>
<ul class="dropdown-menu">
<li><a href="about-me.html">About me</a></li>
<li><a href="about-us.html">About us</a></li>
<li><a href="our-story.html">Our story</a></li>
<li><a href="who-we-are.html">Who we are</a></li>
</ul>
</li>
<li class="dropdown">
<a data-toggle="dropdown" href="javascript:void(0);">Services<i class="fas fa-angle-right dropdown-toggle"></i></a>
<ul class="dropdown-menu">
<li><a href="our-services.html">Our services</a></li>
<li><a href="what-we-offers.html">What we offer</a></li>
<li><a href="our-process.html">Our process</a></li>
</ul>
</li>
<li class="dropdown">
<a data-toggle="dropdown" href="javascript:void(0);">Contact<i class="fas fa-angle-right dropdown-toggle"></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-modern.html">Contact modern</a></li>
</ul>
</li>
<li class="dropdown">
<a data-toggle="dropdown" href="javascript:void(0);">Additional pages<i class="fas fa-angle-right dropdown-toggle"></i></a>
<ul class="dropdown-menu">
<li><a href="our-team.html">Our team</a></li>
<li><a href="latest-news.html">Latest news</a></li>
<li><a href="pricing-packages.html">Pricing packages</a></li>
<li><a href="404.html">Error 404</a></li>
<li><a href="maintenance.html">Maintenance</a></li>
<li><a href="coming-soon.html">Coming soon</a></li>
<li><a href="coming-soon-v2.html">Coming soon - V2</a></li>
<li><a href="faq.html">FAQ's</a></li>
<li><a href="search-result.html">Search result</a></li>
</ul>
</li>
</ul>
</li>
<li class="nav-item dropdown simple-dropdown">
<a href="home-business.html#" class="nav-link">Portfolio</a>
<i class="fa fa-angle-down dropdown-toggle" data-toggle="dropdown" aria-hidden="true"></i>
<ul class="dropdown-menu" role="menu">
<li class="dropdown">
<a data-toggle="dropdown" href="javascript:void(0);">Portfolio classic<i class="fas fa-angle-right dropdown-toggle"></i></a>
<ul class="dropdown-menu">
<li><a href="portfolio-classic-two-column.html">Classic 2 column</a></li>
<li><a href="portfolio-classic-three-column.html">Classic 3 column</a></li>
<li><a href="portfolio-classic-four-column.html">Classic 4 column</a></li>
<li><a href="portfolio-classic-masonry.html">Classic masonry</a></li>
<li><a href="portfolio-classic-metro.html">Classic metro</a></li>
</ul>
</li>
<li class="dropdown">
<a data-toggle="dropdown" href="javascript:void(0);">Portfolio boxed<i class="fas fa-angle-right dropdown-toggle"></i></a>
<ul class="dropdown-menu">
<li><a href="portfolio-boxed-two-column.html">Boxed 2 column</a></li>
<li><a href="portfolio-boxed-three-column.html">Boxed 3 column</a></li>
<li><a href="portfolio-boxed-four-column.html">Boxed 4 column</a></li>
<li><a href="portfolio-boxed-masonry.html">Boxed masonry</a></li>
<li><a href="portfolio-boxed-metro.html">Boxed metro</a></li>
</ul>
</li>
<li class="dropdown">
<a data-toggle="dropdown" href="javascript:void(0);">Portfolio colorful<i class="fas fa-angle-right dropdown-toggle"></i></a>
<ul class="dropdown-menu">
<li><a href="portfolio-colorful-two-column.html">Colorful 2 column</a></li>
<li><a href="portfolio-colorful-three-column.html">Colorful 3 column</a></li>
<li><a href="portfolio-colorful-four-column.html">Colorful 4 column</a></li>
<li><a href="portfolio-colorful-masonry.html">Colorful masonry</a></li>
<li><a href="portfolio-colorful-metro.html">Colorful metro</a></li>
</ul>
</li>
<li class="dropdown">
<a data-toggle="dropdown" href="javascript:void(0);">Portfolio bordered<i class="fas fa-angle-right dropdown-toggle"></i></a>
<ul class="dropdown-menu">
<li><a href="portfolio-bordered-two-column.html">Bordered 2 column</a></li>
<li><a href="portfolio-bordered-three-column.html">Bordered 3 column</a></li>
<li><a href="portfolio-bordered-four-column.html">Bordered 4 column</a></li>
<li><a href="portfolio-bordered-masonry.html">Bordered masonry</a></li>
<li><a href="portfolio-bordered-metro.html">Bordered metro</a></li>
</ul>
</li>
<li class="dropdown">
<a data-toggle="dropdown" href="javascript:void(0);">Portfolio overlay<i class="fas fa-angle-right dropdown-toggle"></i></a>
<ul class="dropdown-menu">
<li><a href="portfolio-overlay-two-column.html">Overlay 2 column</a></li>
<li><a href="portfolio-overlay-three-column.html">Overlay 3 column</a></li>
<li><a href="portfolio-overlay-four-column.html">Overlay 4 column</a></li>
<li><a href="portfolio-overlay-masonry.html">Overlay masonry</a></li>
<li><a href="portfolio-overlay-metro.html">Overlay metro</a></li>
</ul>
</li>
<li class="dropdown">
<a data-toggle="dropdown" href="javascript:void(0);">Portfolio switch image<i class="fas fa-angle-right dropdown-toggle"></i></a>
<ul class="dropdown-menu">
<li><a href="portfolio-switch-image-two-column.html">Switch image 2 column</a></li>
<li><a href="portfolio-switch-image-three-column.html">Switch image 3 column</a></li>
<li><a href="portfolio-switch-image-four-column.html">Switch image 4 column</a></li>
<li><a href="portfolio-switch-image-masonry.html">Switch image masonry</a></li>
<li><a href="portfolio-switch-image-metro.html">Switch image metro</a></li>
</ul>
</li>
<li class="dropdown">
<a data-toggle="dropdown" href="javascript:void(0);">Portfolio other<i class="fas fa-angle-right dropdown-toggle"></i></a>
<ul class="dropdown-menu">
<li><a href="portfolio-scattered.html">Portfolio scattered</a></li>
<li><a href="portfolio-justified-gallery.html">Justified gallery</a></li>
<li><a href="portfolio-slider.html">Portfolio slider</a></li>
</ul>
</li>
<li class="dropdown">
<a data-toggle="dropdown" href="javascript:void(0);">Single project page<i class="fas fa-angle-right dropdown-toggle"></i></a>
<ul class="dropdown-menu">
<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>
</ul>
</li>
</ul>
</li>
<li class="nav-item dropdown megamenu">
<a href="javascript:void(0);" class="nav-link">Elements</a>
<i class="fa fa-angle-down dropdown-toggle" data-toggle="dropdown" aria-hidden="true"></i>
<div class="menu-back-div dropdown-menu megamenu-content" role="menu">
<div class="d-lg-flex justify-content-center">
<ul class="d-lg-inline-block">
<li class="dropdown-header">General</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-crown"></i>Subscribe</a></li>
<li><a href="call-to-action.html"><i class="ti-eye"></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="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>
<ul class="d-lg-inline-block">
<li class="dropdown-header">Content & infographics</li>
<li><a href="progress-bar.html"><i class="icon-hourglass"></i>Progress 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-write"></i>Over line icon box</a></li>
<li><a href="custom-icon-with-text.html"><i class="ti-vector"></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="fancy-text-box.html"><i class="ti-layout-cta-center"></i>Fancy text box</a></li>
<li><a href="text-box.html"><i class="ti-layout-cta-left"></i>Text box</a></li>
<li><a href="fancy-text.html"><i class="ti-text"></i>Fancy text</a></li>
</ul>
<ul class="d-lg-inline-block">
<li class="dropdown-header">Interactive</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-bookmark-alt"></i>Services</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-package"></i>Rotate box</a></li>
<li><a href="process-step.html"><i class="ti-layers"></i>Process step</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>
<li><a href="text-slider.html"><i class="ti-layout-media-overlay"></i>Text slider</a></li>
</ul>
<ul class="d-lg-inline-block">
<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-smallcap"></i>Drop caps</a></li>
<li><a href="columns.html"><i class="ti-layout"></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-user"></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-column2"></i>Pricing table</a></li>
</ul>
</div>
</div>
</li>
<li class="nav-item dropdown simple-dropdown">
<a href="home-business.html#" class="nav-link">Features</a>
<i class="fa fa-angle-down dropdown-toggle" data-toggle="dropdown" aria-hidden="true"></i>
<ul class="dropdown-menu" role="menu">
<li class="dropdown">
<a data-toggle="dropdown" href="javascript:void(0);">Header and menu<i class="fas fa-angle-right dropdown-toggle"></i></a>
<ul class="dropdown-menu">
<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-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 class="dropdown">
<a data-toggle="dropdown" href="javascript:void(0);">Hamburger menu<i class="fas fa-angle-right dropdown-toggle"></i></a>
<ul class="dropdown-menu">
<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>
</ul>
</li>
<li class="dropdown">
<a data-toggle="dropdown" href="javascript:void(0);">Left menu<i class="fas fa-angle-right dropdown-toggle"></i></a>
<ul class="dropdown-menu">
<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>
</li>
<li class="dropdown">
<a data-toggle="dropdown" href="javascript:void(0);">Header type<i class="fas fa-angle-right dropdown-toggle"></i></a>
<ul class="dropdown-menu">
<li><a href="header-always-fixed.html">Always fixed</a></li>
<li><a href="header-disable-fixed.html">Disable fixed</a></li>
<li><a href="header-reverse-scroll.html">Reverse scroll</a></li>
<li><a href="header-responsive-sticky.html">Responsive sticky</a></li>
</ul>
</li>
<li class="dropdown">
<a data-toggle="dropdown" href="javascript:void(0);">Mobile menu<i class="fas fa-angle-right dropdown-toggle"></i></a>
<ul class="dropdown-menu">
<li><a href="mobile-menu-classic.html">Classic</a></li>
<li><a href="mobile-menu-modern.html">Modern</a></li>
<li><a href="mobile-menu-full-screen.html">Full screen</a></li>
</ul>
</li>
</ul>
</li>
<li class="dropdown">
<a data-toggle="dropdown" href="javascript:void(0);">Footer<i class="fas fa-angle-right dropdown-toggle"></i></a>
<ul class="dropdown-menu">
<li><a href="footer-style-01.html">Footer style 01</a></li>
<li><a href="footer-style-02.html">Footer style 02</a></li>
<li><a href="footer-style-03.html">Footer style 03</a></li>
<li><a href="footer-style-04.html">Footer style 04</a></li>
<li><a href="footer-style-05.html">Footer style 05</a></li>
<li><a href="footer-style-06.html">Footer style 06</a></li>
<li><a href="footer-style-07.html">Footer style 07</a></li>
<li><a href="footer-style-08.html">Footer style 08</a></li>
<li><a href="footer-style-09.html">Footer style 09</a></li>
<li><a href="footer-style-10.html">Footer style 10</a></li>
<li><a href="footer-style-11.html">Footer style 11</a></li>
<li><a href="footer-style-12.html">Footer style 12</a></li>
</ul>
</li>
<li class="dropdown">
<a data-toggle="dropdown" href="javascript:void(0);">Page title<i class="fas fa-angle-right dropdown-toggle"></i></a>
<ul class="dropdown-menu">
<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-colorful-style.html">Colorful style</a></li>
<li><a href="page-title-big-typography.html">Big typography</a></li>
<li><a href="page-title-parallax-background.html">Parallax background</a></li>
<li><a href="page-title-separate-breadcrumbs.html">Separate 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>
</li>
<li class="dropdown">
<a data-toggle="dropdown" href="javascript:void(0);">Modal popup<i class="fas fa-angle-right dropdown-toggle"></i></a>
<ul class="dropdown-menu">
<li><a href="modal-simple.html">Simple modal</a></li>
<li><a href="modal-subscription.html">Subscription</a></li>
<li><a href="modal-contact-form.html">Contact form</a></li>
<li><a href="modal-youtube-video.html">Youtube video</a></li>
<li><a href="modal-vimeo-video.html">Vimeo video</a></li>
<li><a href="modal-google-map.html">Google map</a></li>
</ul>
</li>
<li class="dropdown">
<a data-toggle="dropdown" href="javascript:void(0);">Icon packs<i class="fas fa-angle-right dropdown-toggle"></i></a>
<ul class="dropdown-menu">
<li><a href="icon-packs-icons-mind-line.html">Icons mind line</a></li>
<li><a href="icon-packs-icons-mind-solid.html">Icons mind solid</a></li>
<li><a href="icon-packs-feather.html">Feather</a></li>
<li><a href="icon-packs-font-awesome.html">Font awesome</a></li>
<li><a href="icon-packs-et-line.html">ET line</a></li>
<li><a href="icon-packs-themify.html">Themify</a></li>
<li><a href="icon-packs-simple-line.html">Simple line</a></li>
</ul>
</li>
<li class="dropdown">
<a href="animations.html">Animations</a>
</li>
</ul>
</li>
<li class="nav-item dropdown simple-dropdown">
<a href="home-business.html#" class="nav-link">Blog</a>
<i class="fa fa-angle-down dropdown-toggle" data-toggle="dropdown" aria-hidden="true"></i>
<ul class="dropdown-menu" role="menu">
<li class="dropdown"><a href="blog-grid.html">Blog grid</a></li>
<li class="dropdown"><a href="blog-masonry.html">Blog masonry</a></li>
<li class="dropdown"><a href="blog-classic.html">Blog classic</a></li>
<li class="dropdown"><a href="blog-simple.html">Blog simple</a></li>
<li class="dropdown"><a href="blog-side-image.html">Blog side image</a></li>
<li class="dropdown"><a href="blog-metro.html">Blog metro</a></li>
<li class="dropdown"><a href="blog-overlay-image.html">Blog overlay image</a></li>
<li class="dropdown"><a href="blog-modern.html">Blog modern</a></li>
<li class="dropdown"><a href="blog-clean.html">Blog clean</a></li>
<li class="dropdown"><a href="blog-widget.html">Blog widget</a></li>
<li class="dropdown"><a href="blog-standard.html">Blog standard</a></li>
<li class="dropdown">
<a data-toggle="dropdown" href="javascript:void(0);">Post layout<i class="fas fa-angle-right dropdown-toggle"></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 data-toggle="dropdown" href="javascript:void(0);">Post types<i class="fas fa-angle-right dropdown-toggle"></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>
</li>
<li class="nav-item dropdown megamenu">
<a href="javascript:void(0);" class="nav-link">Shop</a>
<i class="fa fa-angle-down dropdown-toggle" data-toggle="dropdown" aria-hidden="true"></i>
<div class="menu-back-div dropdown-menu megamenu-content" role="menu">
<div class="d-lg-flex justify-content-center">
<ul class="d-lg-inline-block md-margin-15px-bottom">
<li class="dropdown-header">Shop layout</li>
<li><a href="shop-wide.html">Shop wide</a></li>
<li><a href="shop-left-sidebar.html">Left sidebar</a></li>
<li><a href="shop-right-sidebar.html">Right sidebar</a></li>
<li><a href="shop-only-categories.html">Only categories</a></li>
<li><a href="single-product.html">Single product</a></li>
<li class="dropdown-header">Utility pages</li>
<li><a href="shopping-cart.html">Shopping cart</a></li>
<li><a href="checkout.html">Checkout</a></li>
<li><a href="login-register.html">Login / Register</a></li>
</ul>
<ul class="d-lg-inline-block d-none small-gap">
<li>
<a href="index.html" class="menu-banner-image"><img src="images/menu-banner-01.jpg" alt=""/></a>
</li>
</ul>
<ul class="d-lg-inline-block d-none no-padding-right">
<li>
<a href="index.html" class="menu-banner-image"><img src="images/menu-banner-02.jpg" alt=""/></a>
</li>
</ul>
</div>
</div>
</li>
</ul>
</div>
</div>
<div class="col-auto text-right pr-0 font-size-0">
<div class="header-search-icon search-form-wrapper">
<a href="javascript:void(0)" class="search-form-icon header-search-form"><i class="feather icon-feather-search"></i></a>
<!-- start search input -->
<div class="form-wrapper">
<button title="Close" type="button" class="search-close alt-font">×</button>
<form id="search-form" role="search" method="get" class="search-form text-left" action="search-result.html">
<div class="search-form-box">
<span class="search-label alt-font text-small text-uppercase text-medium-gray">What are you looking for?</span>
<input class="search-input alt-font" id="search-form-input5e219ef164995" placeholder="Enter your keywords..." name="s" value="" type="text" autocomplete="off">
<button type="submit" class="search-button">
<i class="feather icon-feather-search" aria-hidden="true"></i>
</button>
</div>
</form>
</div>
<!-- end search input -->
</div>
<div class="header-language dropdown d-lg-inline-block">
<a href="javascript:void(0);"><i class="feather icon-feather-globe"></i></a>
<ul class="dropdown-menu alt-font">
<li><a href="javascript:void(0);" title="English"><span class="icon-country"><img src="images/country-flag-16X16/usa.png" alt=""></span>English</a></li>
<li><a href="javascript:void(0);" title="England"><span class="icon-country"><img src="images/country-flag-16X16/england.png" alt=""></span>England</a></li>
<li><a href="javascript:void(0);" title="France"><span class="icon-country"><img src="images/country-flag-16X16/france.png" alt=""></span>France</a></li>
<li><a href="javascript:void(0);" title="Russian"><span class="icon-country"><img src="images/country-flag-16X16/russian.png" alt=""></span>Russian</a></li>
<li><a href="javascript:void(0);" title="Spain"><span class="icon-country"><img src="images/country-flag-16X16/spain.png" alt=""></span>Spain</a></li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<!-- end header -->
<!-- start section -->
<section class="p-0">
<div class="swiper-container white-move mobileoff-fullscreen-top-space md-h-600px sm-h-500px" data-slider-options='{ "slidesPerView": 1, "loop": true, "pagination": { "el": ".swiper-pagination", "clickable": true }, "navigation": { "nextEl": ".swiper-button-next-nav", "prevEl": ".swiper-button-previous-nav" }, "autoplay": { "delay": 4500, "disableOnInteraction": false }, "keyboard": { "enabled": true, "onlyInViewport": true }, "effect": "slide" }'>
<div class="swiper-wrapper">
<!-- start slider item -->
<div class="swiper-slide cover-background" style="background-image:url('images/home-business-slider-img01.jpg');">
<div class="overlay-bg bg-gradient-dark-slate-blue"></div>
<div class="container h-100">
<div class="row h-100">
<div class="col-12 col-xl-6 col-lg-7 col-sm-8 h-100 d-flex justify-content-center flex-column">
<p class="alt-font text-extra-medium text-white opacity-7 font-weight-300 margin-40px-bottom xs-margin-20px-bottom">Delivering beautiful digital products</p>
<h2 class="alt-font text-shadow-double-large font-weight-600 text-white margin-55px-bottom w-90 md-w-100 md-no-text-shadow xs-margin-35px-bottom">Provide solutions to small agency</h2>
<div class="d-inline-block">
<a href="https://1.envato.market/AL7Oj" target="_blank" class="btn btn-fancy btn-medium btn-gradient-sky-blue-pink margin-30px-right xs-margin-15px-bottom">Purchase now</a>
<a href="our-process.html" class="btn btn-link btn-large text-white top-minus-5px font-weight-400">How we work</a>
</div>
</div>
</div>
</div>
</div>
<!-- end slider item -->
<!-- start slider item -->
<div class="swiper-slide cover-background" style="background-image:url('images/home-business-slider-img02.jpg');">
<div class="overlay-bg bg-gradient-dark-slate-blue"></div>
<div class="container h-100">
<div class="row h-100">
<div class="col-12 col-xl-6 col-lg-7 col-sm-8 h-100 d-flex justify-content-center flex-column">
<p class="alt-font text-extra-medium text-white opacity-7 font-weight-300 margin-40px-bottom xs-margin-20px-bottom">Delivering beautiful digital products</p>
<h2 class="alt-font text-shadow-double-large font-weight-600 text-white margin-55px-bottom w-90 md-w-100 md-no-text-shadow xs-margin-35px-bottom">Start your online business today</h2>
<div class="d-inline-block">
<a href="https://1.envato.market/AL7Oj" target="_blank" class="btn btn-fancy btn-medium btn-gradient-sky-blue-pink margin-30px-right xs-margin-15px-bottom">Purchase now</a>
<a href="our-process.html" class="btn btn-link btn-large text-white top-minus-5px font-weight-400">How we work</a>
</div>
</div>
</div>
</div>
</div>
<!-- end slider item -->
<!-- start slider item -->
<div class="swiper-slide cover-background" style="background-image:url('images/home-business-slider-img03.jpg');">
<div class="overlay-bg bg-gradient-dark-slate-blue"></div>
<div class="container h-100">
<div class="row h-100">
<div class="col-12 col-xl-6 col-lg-7 col-sm-8 h-100 d-flex justify-content-center flex-column">
<p class="alt-font text-extra-medium text-white opacity-7 font-weight-300 margin-40px-bottom xs-margin-20px-bottom">Delivering beautiful digital products</p>
<h2 class="alt-font text-shadow-double-large font-weight-600 text-white margin-55px-bottom w-90 md-w-100 md-no-text-shadow xs-margin-35px-bottom">The best way to promote business</h2>
<div class="d-inline-block">
<a href="https://1.envato.market/AL7Oj" target="_blank" class="btn btn-fancy btn-medium btn-gradient-sky-blue-pink margin-30px-right xs-margin-15px-bottom">Purchase now</a>
<a href="our-process.html" class="btn btn-link btn-large text-white top-minus-5px font-weight-400">How we work</a>
</div>
</div>
</div>
</div>
</div>
<!-- end slider item -->
</div>
<!-- start slider pagination -->
<div class="swiper-pagination swiper-light-pagination"></div>
<!-- end slider pagination -->
<!-- start slider navigation -->
<!-- <div class="swiper-button-next-nav swiper-button-next rounded-circle slider-navigation-style-07"><i class="feather icon-feather-arrow-right"></i></div>
<div class="swiper-button-previous-nav swiper-button-prev rounded-circle slider-navigation-style-07"><i class="feather icon-feather-arrow-left"></i></div> -->
<!-- end slider navigation -->
</div>
</section>
<!-- end section -->
<!-- start section -->
<section class="big-section wow animate__fadeIn">
<div class="container">
<div class="row justify-content-center wow animate__fadeIn">
<div class="col-12 col-xl-3 col-lg-4 col-sm-7 d-flex flex-column text-center text-lg-left md-margin-6-rem-bottom">
<div class="margin-20px-bottom sm-margin-10px-bottom">
<span class="alt-font text-medium text-gradient-sky-blue-pink text-uppercase font-weight-500">About company</span>
</div>
<h5 class="alt-font text-extra-dark-gray font-weight-600 margin-20px-bottom md-margin-30px-bottom xs-w-90 mx-auto mx-sm-0">We combine design, thinking and technical</h5>
<div class="mt-auto mx-auto mx-lg-0">
<a href="index.html" class="btn btn-fancy btn-small btn-transparent-light-gray">Discover litho</a>
</div>
</div>
<div class="col-12 col-xl-7 offset-xl-2 col-lg-8 last-paragraph-no-margin wow animate__fadeIn" data-wow-duration="0.3">
<div class="row row-cols-1 row-cols-lg-2 row-cols-sm-2">
<!-- start feature box item -->
<div class="col margin-60px-bottom sm-margin-30px-bottom xs-margin-40px-bottom wow animate__fadeIn">
<div class="feature-box feature-box-left-icon">
<div class="feature-box-icon">
<i class="line-icon-Money-Bag icon-medium text-extra-light-gray margin-35px-bottom md-margin-15px-bottom sm-margin-10px-bottom"></i>
</div>
<div class="feature-box-content last-paragraph-no-margin">
<span class="alt-font font-weight-500 margin-10px-bottom d-block text-extra-dark-gray">Effective strategy</span>
<p>Lorem ipsum dolor sit amet consectetur adipiscing elit do eiusmod tempor.</p>
</div>
</div>
</div>
<!-- end feature box item -->
<!-- start feature box item -->
<div class="col margin-60px-bottom sm-margin-30px-bottom xs-margin-40px-bottom wow animate__fadeIn" data-wow-delay="0.2s">
<div class="feature-box feature-box-left-icon">
<div class="feature-box-icon">
<i class="line-icon-Gear-2 icon-medium text-extra-light-gray margin-35px-bottom md-margin-15px-bottom sm-margin-10px-bottom"></i>
</div>
<div class="feature-box-content last-paragraph-no-margin">
<span class="alt-font font-weight-500 margin-10px-bottom d-block text-extra-dark-gray">Powerfull customize</span>
<p>Lorem ipsum dolor sit amet consectetur adipiscing elit do eiusmod tempor.</p>
</div>
</div>
</div>
<!-- end feature box item -->
<!-- start feature box item -->
<div class="col xs-margin-40px-bottom wow animate__fadeIn" data-wow-delay="0.4s">
<div class="feature-box feature-box-left-icon">
<div class="feature-box-icon">
<i class="line-icon-Talk-Man icon-medium text-extra-light-gray margin-35px-bottom md-margin-15px-bottom sm-margin-10px-bottom"></i>
</div>
<div class="feature-box-content last-paragraph-no-margin">
<span class="alt-font font-weight-500 margin-10px-bottom d-block text-extra-dark-gray">Customer satisfaction</span>
<p>Lorem ipsum dolor sit amet consectetur adipiscing elit do eiusmod tempor.</p>
</div>
</div>
</div>
<!-- end feature box item -->
<!-- start feature box item -->
<div class="col wow animate__fadeIn" data-wow-delay="0.6s">
<div class="feature-box feature-box-left-icon">
<div class="feature-box-icon">
<i class="line-icon-Cursor-Click2 icon-medium text-extra-light-gray margin-35px-bottom md-margin-15px-bottom sm-margin-10px-bottom"></i>
</div>
<div class="feature-box-content last-paragraph-no-margin">
<span class="alt-font font-weight-500 margin-10px-bottom d-block text-extra-dark-gray">No coding required</span>
<p>Lorem ipsum dolor sit amet consectetur adipiscing elit do eiusmod tempor.</p>
</div>
</div>
</div>
<!-- end feature box item -->
</div>
</div>
</div>
</div>
</section>
<!-- end section -->
<!-- start section -->
<section class="bg-light-blue">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-xl-5 col-lg-6 col-md-8 col-sm-7 text-center margin-5-rem-bottom md-margin-4-rem-bottom wow animate__fadeIn">
<span class="d-inline-block alt-font text-medium text-gradient-sky-blue-pink text-uppercase font-weight-500 margin-20px-bottom sm-margin-15px-bottom">Why choose us</span>
<h5 class="alt-font text-extra-dark-gray font-weight-600 letter-spacing-minus-1px d-inline-block d-sm-block xs-w-95">Beautifully handcrafted templates for your website</h5>
</div>
</div>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="col-12 wow animate__fadeIn">
<div class="outside-box-right">
<!-- start slider -->
<div class="swiper-container white-move" data-slider-options='{"loop": true, "slidesPerView": 1, "spaceBetween": 30, "autoplay": { "delay": 3500, "disableOnInteraction": false }, "keyboard": { "enabled": true, "onlyInViewport": true }, "breakpoints": { "1200": { "slidesPerView": 4 }, "992": { "slidesPerView": 3 }, "768": { "slidesPerView": 2 } } }'>
<div class="swiper-wrapper">
<!-- start interactive banner item -->
<div class="swiper-slide interactive-banners-style-07">
<div class="interactive-banners-box bg-dark-slate-blue">
<div class="interactive-banners-box-image">
<img src="images/home-business-services-img01.jpg" alt=""/>
<div class="overlay-bg bg-gradient-dark-slate-blue-transparent"></div>
</div>
<div class="fancy-text-content padding-55px-lr md-padding-55px-lr xs-padding-30px-lr">
<span class="text-very-small letter-spacing-1px line-height-16px alt-font border-radius-2px text-white text-uppercase padding-5px-tb padding-15px-lr bg-neon-blue margin-20px-bottom d-inline-block">Flexible</span>
<div class="alt-font text-extra-large text-white margin-10px-bottom w-80 xl-w-90 lg-w-80 md-w-90 sm-w-60 xs-w-100">Bundle of layout type different layout</div>
<a href="about-us.html" class="btn btn-fancy btn-very-small btn-white margin-15px-top btn-round-edge-small">Learn more</a>
</div>
</div>
</div>
<!-- end interactive banner item -->
<!-- start interactive banner item -->
<div class="swiper-slide interactive-banners-style-07">
<div class="interactive-banners-box bg-dark-slate-blue">
<div class="interactive-banners-box-image">
<img src="images/home-business-services-img02.jpg" alt=""/>
<div class="overlay-bg bg-gradient-dark-slate-blue-transparent"></div>
</div>
<div class="fancy-text-content padding-55px-lr md-padding-55px-lr xs-padding-30px-lr">
<span class="text-very-small letter-spacing-1px line-height-16px alt-font border-radius-2px text-white text-uppercase padding-5px-tb padding-15px-lr bg-neon-blue margin-20px-bottom d-inline-block">Unique</span>
<div class="alt-font text-extra-large text-white margin-10px-bottom w-80 xl-w-90 lg-w-80 md-w-90 sm-w-60 xs-w-100">We are delivering beautiful products</div>
<a href="about-us.html" class="btn btn-fancy btn-very-small btn-white margin-15px-top btn-round-edge-small">Learn more</a>
</div>
</div>
</div>
<!-- end interactive banner item -->
<!-- start interactive banner item -->
<div class="swiper-slide interactive-banners-style-07">
<div class="interactive-banners-box bg-dark-slate-blue">
<div class="interactive-banners-box-image">
<img src="images/home-business-services-img03.jpg" alt=""/>
<div class="overlay-bg bg-gradient-dark-slate-blue-transparent"></div>
</div>
<div class="fancy-text-content padding-55px-lr md-padding-55px-lr xs-padding-30px-lr">
<span class="text-very-small letter-spacing-1px line-height-16px alt-font border-radius-2px text-white text-uppercase padding-5px-tb padding-15px-lr bg-neon-blue margin-20px-bottom d-inline-block">Responsive</span>
<div class="alt-font text-extra-large text-white margin-10px-bottom w-80 xl-w-90 lg-w-80 md-w-90 sm-w-60 xs-w-100">True responsiveness modern responsive</div>
<a href="about-us.html" class="btn btn-fancy btn-very-small btn-white margin-15px-top btn-round-edge-small">Learn more</a>
</div>
</div>
</div>
<!-- end interactive banner item -->
<!-- start interactive banner item -->
<div class="swiper-slide interactive-banners-style-07">
<div class="interactive-banners-box bg-dark-slate-blue">
<div class="interactive-banners-box-image">
<img src="images/home-business-services-img04.jpg" alt=""/>
<div class="overlay-bg bg-gradient-dark-slate-blue-transparent"></div>
</div>
<div class="fancy-text-content padding-55px-lr md-padding-55px-lr xs-padding-30px-lr">
<span class="text-very-small letter-spacing-1px line-height-16px alt-font border-radius-2px text-white text-uppercase padding-5px-tb padding-15px-lr bg-neon-blue margin-20px-bottom d-inline-block">Modern</span>
<div class="alt-font text-extra-large text-white margin-10px-bottom w-80 xl-w-90 lg-w-80 md-w-90 sm-w-60 xs-w-100">Beautiful and modern latest page builder</div>
<a href="about-us.html" class="btn btn-fancy btn-very-small btn-white margin-15px-top btn-round-edge-small">Learn more</a>
</div>
</div>
</div>
<!-- end interactive banner item -->
</div>
</div>
<!-- end slider -->
</div>
</div>
</div>
</div>
</section>
<!-- end section -->
<!-- start section -->
<section class="overflow-visible position-relative z-index-1">
<div class="container">
<div class="row justify-content-center ">
<div class="col-12 col-lg-5 col-sm-9 d-flex flex-column text-center text-lg-left md-margin-6-rem-bottom wow animate__fadeIn">
<div class="margin-20px-bottom sm-margin-15px-bottom"><span class="alt-font text-medium text-gradient-sky-blue-pink text-uppercase font-weight-500">Our expertise</span></div>
<h5 class="alt-font text-extra-dark-gray font-weight-600 w-95 margin-20px-bottom md-margin-30px-bottom lg-w-100">We design brand, digital experience that engage the right customers</h5>
<div class="mt-auto mx-auto mx-lg-0">
<a href="index.html" class="btn btn-fancy btn-small btn-transparent-light-gray">Discover litho</a>
</div>
</div>
<div class="col-12 col-lg-6 offset-lg-1">
<div class="row row-cols-1 row-cols-sm-2">
<!-- start pie chart item -->
<div class="col text-center text-lg-left xs-margin-45px-bottom wow animate__fadeIn" data-wow-delay="0.2s">
<div class="chart-percent d-inline-block margin-40px-bottom xs-margin-20px-bottom">
<span class="pie-chart-style-02" data-line-width="8" data-percent="92" data-track-color="#f5f5f5" data-start-color="#f77993" data-end-color="#5d6ff9">
<span class="percent alt-font font-weight-500 title-extra-small letter-spacing-minus-1px text-extra-dark-gray"></span>
</span>
</div>
<div class="last-paragraph-no-margin wow animate__fadeIn" data-wow-duration="0.2">
<span class="alt-font font-weight-500 margin-5px-bottom d-block text-extra-dark-gray">Innovative solutions</span>
<p class="d-inline-block w-85 lg-w-100 md-w-75 sm-w-95 xs-w-75">Lorem ipsum is simply dummy text of the printing and type.</p>
</div>
</div>
<!-- end pie chart item -->
<!-- start pie chart item -->
<div class="col text-center text-lg-left wow animate__fadeIn" data-wow-delay="0.4s">
<div class="chart-percent d-inline-block margin-40px-bottom xs-margin-20px-bottom">
<span class="pie-chart-style-02" data-line-width="8" data-percent="90" data-track-color="#f5f5f5" data-start-color="#f77993" data-end-color="#5d6ff9">
<span class="percent alt-font font-weight-500 title-extra-small letter-spacing-minus-1px text-extra-dark-gray"></span>
</span>
</div>
<div class="last-paragraph-no-margin">
<span class="alt-font font-weight-500 margin-5px-bottom d-block text-extra-dark-gray">Marketing strategy</span>
<p class="d-inline-block w-85 lg-w-100 md-w-75 sm-w-95 xs-w-75">Lorem ipsum is simply dummy text of the printing and type.</p>
</div>
</div>
<!-- end pie chart item -->
</div>
</div>
</div>
</div>
</section>
<!-- end section -->
<!-- start section -->
<section class="border-top border-color-medium-gray">
<div class="container">
<div class="row">
<div class="col-12 tab-style-01 without-number wow animate__fadeIn">
<!-- start tab navigation -->
<ul class="nav nav-tabs text-uppercase justify-content-center text-center alt-font font-weight-500 margin-7-rem-bottom md-margin-5-rem-bottom sm-margin-20px-bottom">
<li class="nav-item"><a class="nav-link active" data-toggle="tab" href="home-business.html#planning-tab">Planning</a><span class="tab-border bg-extra-dark-gray"></span></li>
<li class="nav-item"><a class="nav-link" data-toggle="tab" href="home-business.html#research-tab">Research</a><span class="tab-border bg-extra-dark-gray"></span></li>
<li class="nav-item"><a class="nav-link" data-toggle="tab" href="home-business.html#target-tab">Target</a><span class="tab-border bg-extra-dark-gray"></span></li>
<li class="nav-item"><a class="nav-link" data-toggle="tab" href="home-business.html#campaign-tab">Campaign</a><span class="tab-border bg-extra-dark-gray"></span></li>
</ul>
<!-- end tab navigation -->
<div class="tab-content">
<!-- start tab item -->
<div id="planning-tab" class="tab-pane fade in active show">
<div class="row align-items-center">
<div class="col-12 col-md-6 text-right sm-margin-40px-bottom">
<img src="images/home-business-tab-img01.jpg" alt="" />
</div>
<div class="col-12 col-lg-5 offset-lg-1 col-md-6 text-center text-sm-left">
<span class="alt-font text-medium text-gradient-sky-blue-pink text-uppercase font-weight-500 margin-15px-bottom d-inline-block">Modernized redesign</span>
<h5 class="alt-font font-weight-600 text-extra-dark-gray margin-35px-bottom md-margin-30px-bottom">Business planning</h5>
<p class="w-85 lg-w-100">Lorem ipsum dolor sit amet consectetur adipiscing elit do eiusmod tempor incididunt ut labore et dolore magna ut enim ad minim veniam nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
<a href="index.html" class="btn btn-fancy btn-medium btn-dark-gray margin-20px-top">Discover litho</a>
</div>
</div>
</div>
<!-- end tab item -->
<!-- start tab item -->
<div id="research-tab" class="tab-pane fade">
<div class="row align-items-center">
<div class="col-12 col-md-6 text-right sm-margin-40px-bottom">
<img src="images/home-business-tab-img02.jpg" alt="" />
</div>
<div class="col-12 col-lg-5 offset-lg-1 col-md-6">
<span class="alt-font text-medium text-gradient-sky-blue-pink text-uppercase font-weight-500 margin-15px-bottom d-inline-block">Innovative solutions</span>
<h5 class="alt-font font-weight-600 text-extra-dark-gray margin-35px-bottom md-margin-30px-bottom">Business research</h5>
<p class="w-85 lg-w-100">Lorem ipsum dolor sit amet consectetur adipiscing elit do eiusmod tempor incididunt ut labore et dolore magna ut enim ad minim veniam nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
<a href="index.html" class="btn btn-fancy btn-medium btn-dark-gray margin-20px-top">Discover litho</a>
</div>
</div>
</div>
<!-- end tab item -->
<!-- start tab item -->
<div id="target-tab" class="tab-pane fade">
<div class="row align-items-center">
<div class="col-12 col-md-6 text-right sm-margin-40px-bottom">
<img src="images/home-business-tab-img03.jpg" alt="" />
</div>
<div class="col-12 col-lg-5 offset-lg-1 col-md-6">
<span class="alt-font text-medium text-gradient-sky-blue-pink text-uppercase font-weight-500 margin-15px-bottom d-inline-block">Modernized redesign</span>
<h5 class="alt-font font-weight-600 text-extra-dark-gray margin-35px-bottom md-margin-30px-bottom">Business target</h5>
<p class="w-85 lg-w-100">Lorem ipsum dolor sit amet consectetur adipiscing elit do eiusmod tempor incididunt ut labore et dolore magna ut enim ad minim veniam nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
<a href="index.html" class="btn btn-fancy btn-medium btn-dark-gray margin-20px-top">Discover litho</a>
</div>
</div>
</div>
<!-- end tab item -->
<!-- start tab item -->
<div id="campaign-tab" class="tab-pane fade">
<div class="row align-items-center">
<div class="col-12 col-md-6 text-right sm-margin-40px-bottom">
<img src="images/home-business-tab-img04.jpg" alt="" />
</div>
<div class="col-12 col-lg-5 offset-lg-1 col-md-6">
<span class="alt-font text-medium text-gradient-sky-blue-pink text-uppercase font-weight-500 margin-15px-bottom d-inline-block">Innovative solutions</span>
<h5 class="alt-font font-weight-600 text-extra-dark-gray margin-35px-bottom md-margin-30px-bottom">Business campaign</h5>
<p class="w-85 lg-w-100">Lorem ipsum dolor sit amet consectetur adipiscing elit do eiusmod tempor incididunt ut labore et dolore magna ut enim ad minim veniam nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
<a href="index.html" class="btn btn-fancy btn-medium btn-dark-gray margin-20px-top">Discover litho</a>
</div>
</div>
</div>
<!-- end tab item -->
</div>
</div>
</div>
</div>
</section>
<!-- end section -->
<!-- start section -->
<section class="bg-light-blue">
<div class="container">
<div class="row justify-content-center wow animate__fadeIn">
<div class="col-12 col-xl-6 col-lg-7 col-sm-8 text-center margin-5-rem-bottom md-margin-5-rem-bottom">
<span class="d-inline-block alt-font text-medium text-gradient-sky-blue-pink text-uppercase font-weight-500 margin-20px-bottom sm-margin-15px-bottom">our premium services</span>
<h5 class="alt-font text-extra-dark-gray font-weight-600 letter-spacing-minus-1px">Litho specializes in creativity design and innovative technology</h5>
</div>
</div>
<div class="row row-cols-1 row-cols-lg-2 justify-content-center">
<!-- start feature box item -->
<div class="col col-md-9 margin-30px-bottom xs-margin-15px-bottom wow animate__fadeInUp">
<div class="feature-box h-100 feature-box-left-icon border-radius-5px bg-white box-shadow-small box-shadow-extra-large-hover overflow-hidden padding-4-rem-all">
<div class="feature-box-icon">
<i class="line-icon-Navigation-LeftWindow icon-medium text-gradient-sky-blue-pink"></i>
</div>
<div class="feature-box-content last-paragraph-no-margin">
<span class="alt-font font-weight-500 margin-10px-bottom d-block text-extra-dark-gray">Powerfull theme options</span>
<p>Lorem ipsum dolor sit amet consectetur adipiscing elit do eiusmod tempor incididunt ut labore et dolore.</p>
</div>
</div>
</div>
<!-- end feature box item -->
<!-- start feature box item -->
<div class="col col-md-9 margin-30px-bottom xs-margin-15px-bottom wow animate__fadeInUp" data-wow-delay="0.2s">
<div class="feature-box h-100 feature-box-left-icon border-radius-5px bg-white box-shadow-small box-shadow-extra-large-hover overflow-hidden padding-4-rem-all">
<div class="feature-box-icon">
<i class="line-icon-Cursor-Click2 icon-medium text-gradient-sky-blue-pink"></i>
</div>
<div class="feature-box-content last-paragraph-no-margin">
<span class="alt-font font-weight-500 margin-10px-bottom d-block text-extra-dark-gray">Unlimited layouts and styles</span>
<p>Lorem ipsum dolor sit amet consectetur adipiscing elit do eiusmod tempor incididunt ut labore et dolore.</p>
</div>
</div>
</div>
<!-- end feature box item -->
<!-- start feature box item -->
<div class="col col-md-9 md-margin-30px-bottom xs-margin-15px-bottom wow animate__fadeInUp" data-wow-delay="0.4s">
<div class="feature-box h-100 feature-box-left-icon border-radius-5px bg-white box-shadow-small box-shadow-extra-large-hover overflow-hidden padding-4-rem-all">
<div class="feature-box-icon">
<i class="line-icon-Archery-2 icon-medium text-gradient-sky-blue-pink"></i>
</div>
<div class="feature-box-content last-paragraph-no-margin">
<span class="alt-font font-weight-500 margin-10px-bottom d-block text-extra-dark-gray">Developing an effective strategy</span>
<p>Lorem ipsum dolor sit amet consectetur adipiscing elit do eiusmod tempor incididunt ut labore et dolore.</p>
</div>
</div>
</div>
<!-- end feature box item -->
<!-- start feature box item -->
<div class="col col-md-9 wow animate__fadeInUp" data-wow-delay="0.6s">
<div class="feature-box h-100 feature-box-left-icon border-radius-5px bg-white box-shadow-small box-shadow-extra-large-hover overflow-hidden padding-4-rem-all">
<div class="feature-box-icon">
<i class="line-icon-Female icon-medium text-gradient-sky-blue-pink"></i>
</div>
<div class="feature-box-content last-paragraph-no-margin">
<span class="alt-font font-weight-500 margin-10px-bottom d-block text-extra-dark-gray">Automated testing and support</span>
<p>Lorem ipsum dolor sit amet consectetur adipiscing elit do eiusmod tempor incididunt ut labore et dolore.</p>
</div>
</div>
</div>
<!-- end feature box item -->
</div>
</div>
</section>
<!-- end section -->
<!-- start section -->
<section class="big-section cover-background" style="background-image:url('images/home-business-parallax-bg.jpg');">
<div class="opacity-extra-medium-2 bg-dark-slate-blue"></div>
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-xl-7 col-lg-8 col-md-10 text-center overlap-gap-section">
<a href="https://www.youtube.com/watch?v=g0f_BRYJLJE" class="popup-youtube video-icon-box video-icon-large position-relative d-inline-block margin-3-half-rem-bottom wow animate__bounceIn">
<span>
<span class="video-icon bg-neon-blue">
<i class="icon-simple-line-control-play text-white"></i>
<span class="video-icon-sonar"><span class="video-icon-sonar-afr bg-neon-blue"></span></span>
</span>
</span>
</a>
<h4 class="alt-font text-white font-weight-600 margin-45px-bottom md-margin-35px-bottom xs-margin-25px-bottom wow animate__fadeIn">Beautifully simple handcrafted templates for your website</h4>
<span class="text-white alt-font text-uppercase letter-spacing-1px wow animate__fadeIn">unlimited power and customization</span>
</div>
</div>
</div>
</section>
<!-- end section -->
<!-- start section -->
<section class="padding-100px-tb lg-padding-90px-tb md-padding-75px-tb wow animate__fadeIn">
<div class="container">
<div class="row row-cols-1 row-cols-md-4 row-cols-sm-2 align-items-center justify-content-center">
<!-- start counter item -->
<div class="col text-center sm-margin-40px-bottom">
<h4 class="vertical-counter d-inline-flex text-extra-dark-gray alt-font appear font-weight-600 letter-spacing-minus-2px md-letter-spacing-normal mb-0" data-to="2530"></h4>
<span class="alt-font text-uppercase text-small d-block margin-5px-top">Working hours</span>
</div>
<!-- end counter item -->
<!-- start counter item -->
<div class="col text-center sm-margin-40px-bottom">
<h4 class="vertical-counter d-inline-flex text-extra-dark-gray alt-font appear font-weight-600 letter-spacing-minus-2px md-letter-spacing-normal mb-0" data-to="3200"></h4>
<span class="alt-font text-uppercase text-small d-block margin-5px-top">Photo capture</span>
</div>
<!-- end counter item -->
<!-- start counter item -->
<div class="col text-center xs-margin-40px-bottom">
<h4 class="vertical-counter d-inline-flex text-extra-dark-gray alt-font appear font-weight-600 letter-spacing-minus-2px md-letter-spacing-normal mb-0" data-to="2830"></h4>
<span class="alt-font text-uppercase text-small d-block margin-5px-top">Work completed</span>
</div>
<!-- end counter item -->
<!-- start counter item -->
<div class="col text-center">
<h4 class="vertical-counter d-inline-flex text-extra-dark-gray alt-font appear font-weight-600 letter-spacing-minus-2px md-letter-spacing-normal mb-0" data-to="2060"></h4>
<span class="alt-font text-uppercase text-small d-block margin-5px-top">Telephonic talk</span>
</div>
<!-- end counter item -->
</div>
</div>