-
Notifications
You must be signed in to change notification settings - Fork 0
/
home-creative-agency.html
1016 lines (1014 loc) · 91.2 KB
/
home-creative-agency.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 class="bg-smoky-black">
<div class="left-sidebar-wrapper" data-sticky_parent>
<!-- start left menu -->
<header class="side-menu-nav bg-smoky-black border-color-white-transparent">
<div class="left-sidebar-nav sidebar-nav-menu bg-smoky-black border-color-white-transparent padding-2-rem-lr padding-5-rem-tb md-padding-10-rem-top" data-sticky_column>
<div class="side-menu-header text-center">
<div class="navbar-brand">
<a href="index.html">
<img src="images/logo-copper-red-white.png" data-at2x="images/[email protected]" class="default-logo" alt="">
<img src="images/logo-copper-red-black.png" data-at2x="images/[email protected]" class="mobile-logo" alt="">
</a>
</div>
<div class="side-menu-button">
<a href="javascript:void(0);" class="nav-icon dark" data-toggle="collapse" data-target="#navbar-menu">
<span></span>
<span></span>
<span></span>
<span></span>
</a>
</div>
</div>
<!-- start menu -->
<div class="side-menu-header-bottom">
<div class="col-12 margin-10-half-rem-tb lg-margin-5-half-rem-tb md-margin-7-half-rem-tb sm-margin-6-rem-top md-no-margin-tb">
<ul class="menu-list alt-font">
<!-- start menu item -->
<li class="menu-list-item">
<a href="javascript:void(0);">Home</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<li class="menu-list-item">
<a href="javascript:void(0);">Corporate</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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>
</li>
<li class="menu-list-item">
<a href="javascript:void(0);">Specialized</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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>
</li>
<li class="menu-list-item">
<a href="javascript:void(0);">Portfolio</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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>
</li>
<li class="menu-list-item">
<a href="javascript:void(0);">Other</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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>
</li>
</ul>
</li>
<!-- end menu item -->
<!-- start menu item -->
<li class="menu-list-item">
<a href="javascript:void(0);">Pages</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<li class="menu-list-item">
<a href="javascript:void(0);">About</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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="menu-list-item">
<a href="javascript:void(0);">Services</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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="menu-list-item">
<a href="javascript:void(0);">Contact</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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="menu-list-item">
<a href="javascript:void(0);">Additional pages</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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>
<!-- end menu item -->
<!-- start menu item -->
<li class="menu-list-item">
<a href="javascript:void(0);">Portfolio</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<li class="menu-list-item">
<a href="javascript:void(0);">Portfolio classic</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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="menu-list-item">
<a href="javascript:void(0);">Portfolio boxed</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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="menu-list-item">
<a href="javascript:void(0);">Portfolio colorful</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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="menu-list-item">
<a href="javascript:void(0);">Portfolio bordered</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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="menu-list-item">
<a href="javascript:void(0);">Portfolio overlay</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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="menu-list-item">
<a href="javascript:void(0);">Portfolio switch image</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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="menu-list-item">
<a href="javascript:void(0);">Portfolio other</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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="menu-list-item">
<a href="javascript:void(0);">Single project page</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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>
<!-- end menu item -->
<!-- start menu item -->
<li class="menu-list-item">
<a href="javascript:void(0);">Elements</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<li class="menu-list-item">
<a href="javascript:void(0);">General</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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>
</li>
<li class="menu-list-item">
<a href="javascript:void(0);">Content & infographics</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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>
</li>
<li class="menu-list-item">
<a href="javascript:void(0);">Interactive</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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>
</li>
<li class="menu-list-item">
<a href="javascript:void(0);">Text & containers</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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>
</li>
</ul>
</li>
<!-- end menu item -->
<!-- start menu item -->
<li class="menu-list-item">
<a href="javascript:void(0);">Features</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<li class="menu-list-item">
<a href="javascript:void(0);">Header and menu</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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><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>
<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>
<li><a href="mobile-menu-classic.html">Mobile menu classic</a></li>
<li><a href="mobile-menu-modern.html">Mobile menu modern</a></li>
<li><a href="mobile-menu-full-screen.html">Mobile menu full screen</a></li>
</ul>
</li>
<li class="menu-list-item">
<a href="javascript:void(0);">Footer</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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="menu-list-item">
<a href="javascript:void(0);">Page title</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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="menu-list-item">
<a href="javascript:void(0);">Modal popup</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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="menu-list-item">
<a href="javascript:void(0);">Icon packs</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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="menu-list-item">
<a href="animations.html">Animations</a>
</li>
</ul>
</li>
<!-- end menu item -->
<!-- start menu item -->
<li class="menu-list-item">
<a href="javascript:void(0);">Blog</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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="menu-list-item">
<a href="javascript:void(0);">Post layout</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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="menu-list-item">
<a href="javascript:void(0);">Post types</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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>
<!-- end menu item -->
<!-- start menu item -->
<li class="menu-list-item">
<a href="javascript:void(0);">Shop</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<li class="menu-list-item">
<a href="javascript:void(0);">Shop Layout</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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>
</ul>
</li>
<li class="menu-list-item">
<a href="javascript:void(0);">Utility Pages</a><span class="menu-toggle"></span>
<ul class="sub-menu-item">
<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>
</li>
</ul>
</li>
<!-- end menu item -->
</ul>
</div>
<!-- end menu -->
<div class="col-12 text-center padding-3-rem-top lg-padding-1-rem-tb lg-no-padding-bottom md-padding-3-rem-tb">
<div class="footer-holder">
<div class="text-center elements-social social-icon-style-02 margin-2-rem-tb">
<ul class="small-icon light">
<li><a class="facebook" href="https://www.facebook.com/" target="_blank"><i class="fab fa-facebook-f"></i></a></li>
<li><a class="instagram" href="http://www.instagram.com" target="_blank"><i class="fab fa-instagram"></i></a></li>
<li><a class="twitter" href="http://www.twitter.com" target="_blank"><i class="fab fa-twitter"></i></a></li>
<li><a class="dribbble" href="http://www.dribbble.com" target="_blank"><i class="fab fa-dribbble"></i></a></li>
</ul>
</div>
<div class="text-medium-gray text-extra-small">© 2021 LITHO</div>
</div>
</div>
</div>
</div>
</header>
<!-- end left menu -->
<!-- start sidebar section -->
<div class="sidebar-wrapper" data-sticky_column>
<!-- start slider section -->
<section class="py-0 home-creative-agency">
<div class="container-fluid no-padding-lr">
<div class="row no-gutters">
<div class="col-md-12 position-relative full-screen md-landscape-h-600px">
<div class="swiper-container vertical-white-move slider-vertical" data-slider-options='{ "slidesPerView": 1, "spaceBetween": 0, "direction": "vertical", "autoplay": { "delay": 2000, "disableOnInteraction": false }, "pagination": { "el": ".swiper-vertical-pagination", "clickable": true }, "autoplay": { "delay": 2000, "disableOnInteraction": true }, "loop": false, "iOSEdgeSwipeThreshold": 200, "keyboard": { "enabled": true, "onlyInViewport": true }, "touchReleaseOnEdges": true }' data-slider-md-direction="horizontal">
<div class="swiper-wrapper">
<!-- start slider item -->
<div class="swiper-slide cover-background" style="background-image: url('images/home-creative-agency-bg-img-01.jpg')">
<div class="overlay-bg bg-transparent-gradient-smoky-black"></div>
<div class="container h-100">
<div class="row h-100">
<div class="col-10 col-xl-7 col-md-7 col-sm-6 d-flex flex-column justify-content-center text-left padding-7-rem-tb h-100">
<h1 class="alt-font font-weight-300 title-extra-large text-white letter-spacing-minus-6px sm-letter-spacing-minus-1-half"><span class="font-weight-600 d-block">Browne</span> coffee</h1>
<a href="single-project-page-01.html" class="video-icon-box video-icon-medium position-absolute left-15px bottom-100px sm-bottom-30px">
<span>
<span class="video-icon border border-width-2px border-color-copper-red-transparent margin-25px-right">
<i class="fas fa-arrow-right text-copper-red text-extra-medium ml-0"></i>
</span>
<span class="video-icon-text alt-font text-extra-medium text-white text-uppercase d-inline-block font-weight-500 align-middle">Watch projects</span>
</span>
</a>
</div>
</div>
</div>
</div>
<!-- end slider item -->
<!-- start slider item -->
<div class="swiper-slide cover-background" style="background-image: url('images/home-creative-agency-bg-img-02.jpg')">
<div class="overlay-bg bg-transparent-gradient-smoky-black"></div>
<div class="container h-100">
<div class="row h-100">
<div class="col-10 col-xl-7 col-md-7 col-sm-6 d-flex flex-column justify-content-center text-left padding-7-rem-tb h-100">
<h1 class="alt-font font-weight-300 title-extra-large text-white letter-spacing-minus-6px sm-letter-spacing-minus-1-half"><span class="font-weight-600 d-block">Nature</span> travel</h1>
<a href="single-project-page-02.html" class="video-icon-box video-icon-medium position-absolute left-15px bottom-100px sm-bottom-30px">
<span>
<span class="video-icon border border-width-2px border-color-copper-red-transparent margin-25px-right">
<i class="fas fa-arrow-right text-copper-red text-extra-medium ml-0"></i>
</span>
<span class="video-icon-text alt-font text-extra-medium text-white text-uppercase d-inline-block font-weight-500 align-middle">Watch projects</span>
</span>
</a>
</div>
</div>
</div>
</div>
<!-- end slider item -->
<!-- start slider item -->
<div class="swiper-slide cover-background" style="background-image: url('images/home-creative-agency-bg-img-03.jpg')">
<div class="overlay-bg bg-transparent-gradient-smoky-black"></div>
<div class="container h-100">
<div class="row h-100">
<div class="col-10 col-xl-7 col-md-7 col-sm-6 d-flex flex-column justify-content-center text-left padding-7-rem-tb h-100">
<h1 class="alt-font font-weight-300 title-extra-large text-white letter-spacing-minus-6px sm-letter-spacing-minus-1-half"><span class="font-weight-600 d-block">Black</span> shade</h1>
<a href="single-project-page-03.html" class="video-icon-box video-icon-medium position-absolute left-15px bottom-100px sm-bottom-30px">
<span>
<span class="video-icon border border-width-2px border-color-copper-red-transparent margin-25px-right">
<i class="fas fa-arrow-right text-copper-red text-extra-medium ml-0"></i>
</span>
<span class="video-icon-text alt-font text-extra-medium text-white text-uppercase d-inline-block font-weight-500 align-middle">Watch projects</span>
</span>
</a>
</div>
</div>
</div>
</div>
<!-- end slider item -->
</div>
<!-- start slider pagination -->
<div class="swiper-pagination swiper-vertical-pagination swiper-pagination-medium swiper-light-pagination d-flex flex-column align-items-center"></div>
<!-- end slider pagination -->
</div>
</div>
</div>
</div>
</section>
<!-- end slider section -->
<!-- start section -->
<section class="extra-big-section">
<div class="container">
<div class="row">
<div class="col-12 col-md-5 md-margin-20px-bottom wow animate__fadeIn">
<span class="alt-font font-weight-600 text-copper-red text-extra-medium text-uppercase d-block letter-spacing-1px">Award winning agency</span>
</div>
<div class="col-12 col-md-7">
<h5 class="alt-font w-95 sm-w-100 line-height-50px md-line-height-45px sm-line-height-36px wow animate__fadeIn" data-wow-delay="0.2s"><span class="font-weight-600 text-white">We believe very strongly</span> in making high caliber expertise available to our small business clients empowering them to achieve growth.</h5>
<div class="row">
<div class="col-12 col-xl-5 col-md-6 last-paragraph-no-margin wow animate__fadeInUp" data-wow-delay="0.4s">
<div class="w-100 h-1px bg-copper-red d-inline-block margin-3-half-rem-tb"></div>
<span class="alt-font font-weight-500 text-white text-large d-block margin-15px-bottom">Branding</span>
<p class="text-extra-medium line-height-30px w-95 sm-w-100">Lorem ipsum dolor consectetur adipiscing eiusmod tempor.</p>
</div>
<div class="col-12 col-xl-5 offset-xl-2 col-md-6 last-paragraph-no-margin wow animate__fadeInUp" data-wow-delay="0.6s">
<div class="w-100 h-1px bg-copper-red d-inline-block margin-3-half-rem-tb"></div>
<span class="alt-font font-weight-500 text-white text-large d-block margin-15px-bottom">Digital</span>
<p class="text-extra-medium line-height-30px w-95 sm-w-100">Lorem ipsum dolor consectetur adipiscing eiusmod tempor.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end section -->
<!-- start section -->
<section class="p-0">
<div class="container-fluid">
<div class="row">
<div class="col-12 filter-content px-0 wow animate__fadeIn">
<ul class="portfolio-colorful portfolio-wrapper grid grid-loading grid-4col xl-grid-4col lg-grid-2col md-grid-2col sm-grid-2col xs-grid-1col text-center" data-opacity="0.9" data-backgroundcolor="#d96f41,#d96f41,#d96f41,#d96f41,#d96f41,#d96f41,">
<li class="grid-sizer"></li>
<!-- start portfolio item -->
<li class="grid-item grid-item-double wow animate__fadeIn">
<a href="single-project-page-01.html">
<div class="portfolio-box">
<div class="portfolio-image">
<img src="images/home-creative-agency-img-01.jpg" alt="" />
<div class="portfolio-hover bg-transparent-white justify-content-between d-flex flex-row align-items-end padding-3-rem-tb padding-4-rem-lr xl-padding-2-rem-all">
<div class="text-left">
<div class="alt-font text-small text-uppercase text-white margin-5px-bottom opacity-5 move-top-bottom-self"><span>Branding</span></div>
<h6 class="font-weight-600 alt-font text-white text-uppercase no-margin-bottom move-bottom-top-self"><span>Mongolish</span></h6>
</div>
<span class="position-absolute top-50px right-50px move-right-left lg-top-30px lg-right-30px sm-top-20px sm-right-20px"><i class="ti-arrow-top-right icon-small text-extra-dark-gray"></i></span>
</div>
</div>
</div>
</a>
</li>
<!-- end portfolio item -->
<!-- start portfolio item -->
<li class="grid-item photography wow animate__fadeIn" data-wow-delay="0.2s">
<a href="single-project-page-02.html">
<div class="portfolio-box">
<div class="portfolio-image">
<img src="images/home-creative-agency-img-02.jpg" alt="" />
<div class="portfolio-hover bg-transparent-white justify-content-between d-flex flex-row align-items-end padding-3-rem-tb padding-4-rem-lr xl-padding-2-rem-all">
<div class="text-left">
<div class="alt-font text-small text-white text-uppercase margin-5px-bottom opacity-5 move-top-bottom-self"><span>Photography</span></div>
<h6 class="font-weight-600 alt-font text-white text-uppercase no-margin-bottom move-bottom-top-self"><span>Masscoating</span></h6>
</div>
<span class="position-absolute top-50px right-50px move-right-left lg-top-30px lg-right-30px sm-top-20px sm-right-20px"><i class="ti-arrow-top-right icon-small text-extra-dark-gray"></i></span>
</div>
</div>
</div>
</a>
</li>
<!-- end portfolio item -->
<!-- start portfolio item -->
<li class="grid-item logos web photography wow animate__fadeIn" data-wow-delay="0.4s">
<a href="single-project-page-03.html">
<div class="portfolio-box">
<div class="portfolio-image">
<img src="images/home-creative-agency-img-03.jpg" alt="" />
<div class="portfolio-hover bg-transparent-white justify-content-between d-flex flex-row align-items-end padding-3-rem-tb padding-4-rem-lr xl-padding-2-rem-all">
<div class="text-left">
<div class="alt-font text-small text-white text-uppercase margin-5px-bottom opacity-5 move-top-bottom-self"><span>Brochure</span></div>
<h6 class="font-weight-600 alt-font text-white text-uppercase no-margin-bottom move-bottom-top-self"><span>Cortifiel</span></h6>
</div>
<span class="position-absolute top-50px right-50px move-right-left lg-top-30px lg-right-30px sm-top-20px sm-right-20px"><i class="ti-arrow-top-right icon-small text-extra-dark-gray"></i></span>
</div>
</div>
</div>
</a>
</li>
<!-- end portfolio item -->
<!-- start portfolio item -->
<li class="grid-item grid-item-double branding photography web wow animate__fadeIn" data-wow-delay="0.6s">
<a href="single-project-page-04.html">
<div class="portfolio-box">
<div class="portfolio-image">
<img src="images/home-creative-agency-img-04.jpg" alt="" />
<div class="portfolio-hover bg-transparent-white justify-content-between d-flex flex-row align-items-end padding-3-rem-tb padding-4-rem-lr xl-padding-2-rem-all">
<div class="text-left">
<div class="alt-font text-small text-white text-uppercase margin-5px-bottom opacity-5 move-top-bottom-self"><span>Brochure</span></div>
<h6 class="font-weight-600 alt-font text-white text-uppercase no-margin-bottom move-bottom-top-self"><span>Everyday</span></h6>
</div>
<span class="position-absolute top-50px right-50px move-right-left lg-top-30px lg-right-30px sm-top-20px sm-right-20px"><i class="ti-arrow-top-right icon-small text-extra-dark-gray"></i></span>
</div>
</div>
</div>
</a>
</li>
<!-- end portfolio item -->
<!-- start portfolio item -->
<li class="grid-item photography logos wow animate__fadeIn">
<a href="single-project-page-05.html">
<div class="portfolio-box">
<div class="portfolio-image">
<img src="images/home-creative-agency-img-05.jpg" alt="" />
<div class="portfolio-hover bg-transparent-white justify-content-between d-flex flex-row align-items-end padding-3-rem-tb padding-4-rem-lr xl-padding-2-rem-all">
<div class="text-left">
<div class="alt-font text-small text-white text-uppercase margin-5px-bottom opacity-5 move-top-bottom-self"><span>Branding</span></div>
<h6 class="font-weight-600 alt-font text-white text-uppercase no-margin-bottom move-bottom-top-self"><span>Scandinavian</span></h6>
</div>
<span class="position-absolute top-50px right-50px move-right-left lg-top-30px lg-right-30px sm-top-20px sm-right-20px"><i class="ti-arrow-top-right icon-small text-extra-dark-gray"></i></span>
</div>
</div>
</div>
</a>
</li>
<!-- end portfolio item -->
<!-- start portfolio item -->
<li class="grid-item logos branding wow animate__fadeIn" data-wow-delay="0.2s">
<a href="single-project-page-01.html">
<div class="portfolio-box">
<div class="portfolio-image">
<img src="images/home-creative-agency-img-06.jpg" alt="" />
<div class="portfolio-hover bg-transparent-white justify-content-between d-flex flex-row align-items-end padding-3-rem-tb padding-4-rem-lr xl-padding-2-rem-all">
<div class="text-left">
<div class="alt-font text-small text-white text-uppercase margin-5px-bottom opacity-5 move-top-bottom-self"><span>Website</span></div>
<h6 class="font-weight-600 alt-font text-white text-uppercase no-margin-bottom move-bottom-top-self"><span>The Simplest</span></h6>
</div>
<span class="position-absolute top-50px right-50px move-right-left lg-top-30px lg-right-30px sm-top-20px sm-right-20px"><i class="ti-arrow-top-right icon-small text-extra-dark-gray"></i></span>
</div>
</div>
</div>
</a>
</li>
<!-- end portfolio item -->
</ul>
</div>
</div>
</div>
</section>
<!-- end section -->
<!-- start section -->
<section class="extra-big-section">
<div class="container">
<div class="row">
<div class="col-12 col-md-5 md-margin-20px-bottom wow animate__fadeIn">
<span class="alt-font font-weight-600 text-copper-red text-extra-medium text-uppercase d-block letter-spacing-1px">Valuable clients</span>
</div>
<div class="col-12 col-md-7 wow animate__fadeIn" data-wow-delay="0.2s">
<h5 class="alt-font w-95 line-height-50px md-line-height-36px">Your most <span class="font-weight-600 text-white">unhappy customers</span> are your greatest source of learning</h5>
</div>
</div>
<div class="row row-cols-1 row-cols-md-4 row-cols-sm-2 home-creative-agency client-logo-style-06 margin-9-half-rem-top md-margin-6-rem-top sm-margin-4-rem-top justify-content-center">
<!-- start client logo item -->
<div class="col-10 border-right border-bottom border-color-white-transparent text-center xs-no-border-right wow animate__fadeIn">
<div class="client-box padding-4-rem-tb lg-padding-3-rem-tb xs-padding-4-rem-tb">
<a href="home-creative-agency.html#"><img src="images/company-logo-32.png" alt=""></a>
</div>
</div>
<!-- end client logo item -->
<!-- start client logo item -->
<div class="col-10 border-right border-bottom border-color-white-transparent text-center sm-no-border-right wow animate__fadeIn" data-wow-delay="0.2s">
<div class="client-box padding-4-rem-tb lg-padding-3-rem-tb xs-padding-4-rem-tb">
<a href="home-creative-agency.html#"><img src="images/company-logo-33.png" alt=""></a>
</div>
</div>
<!-- end client logo item -->
<!-- start client logo item -->
<div class="col-10 border-right border-bottom border-color-white-transparent text-center xs-no-border-right wow animate__fadeIn" data-wow-delay="0.3s">
<div class="client-box padding-4-rem-tb lg-padding-3-rem-tb xs-padding-4-rem-tb">
<a href="home-creative-agency.html#"><img src="images/company-logo-34.png" alt=""></a>
</div>
</div>
<!-- end client logo item -->
<!-- start client logo item -->
<div class="col-10 border-bottom border-color-white-transparent text-center wow animate__fadeIn" data-wow-delay="0.4s">
<div class="client-box padding-4-rem-tb lg-padding-3-rem-tb xs-padding-4-rem-tb">
<a href="home-creative-agency.html#"><img src="images/company-logo-35.png" alt=""></a>
</div>
</div>
<!-- end client logo item -->
<!-- start client logo item -->
<div class="col-10 border-right border-color-white-transparent text-center sm-border-bottom xs-no-border-right wow animate__fadeIn" data-wow-delay="0.8s">
<div class="client-box padding-4-rem-tb lg-padding-3-rem-tb xs-padding-4-rem-tb">
<a href="home-creative-agency.html#"><img src="images/company-logo-36.png" alt=""></a>
</div>
</div>
<!-- end client logo item -->
<!-- start client logo item -->
<div class="col-10 border-right border-color-white-transparent text-center sm-no-border-right sm-border-bottom wow animate__fadeIn" data-wow-delay="0.7s">
<div class="client-box padding-4-rem-tb lg-padding-3-rem-tb xs-padding-4-rem-tb">
<a href="home-creative-agency.html#"><img src="images/company-logo-37.png" alt=""></a>
</div>
</div>
<!-- end client logo item -->
<!-- start client logo item -->
<div class="col-10 border-right border-color-white-transparent text-center xs-no-border-right xs-border-bottom wow animate__fadeIn" data-wow-delay="0.6s">
<div class="client-box padding-4-rem-tb lg-padding-3-rem-tb xs-padding-4-rem-tb">
<a href="home-creative-agency.html#"><img src="images/company-logo-38.png" alt=""></a>
</div>
</div>
<!-- end client logo item -->
<!-- start client logo item -->
<div class="col-10 border-color-white-transparent text-center wow animate__fadeIn" data-wow-delay="0.5s">
<div class="client-box padding-4-rem-tb lg-padding-3-rem-tb xs-padding-4-rem-tb">
<a href="home-creative-agency.html#"><img src="images/company-logo-39.png" alt=""></a>
</div>
</div>
<!-- end client logo item -->
</div>
</div>
</section>
<!-- end section -->
<!-- start section -->
<section class="extra-big-section cover-background" style="background-image: url('images/home-creative-agency-testimonials-bg.jpg');">
<div class="container">
<div class="row">
<div class="col-12 col-md-5 md-margin-20px-bottom wow animate__fadeIn">
<span class="alt-font font-weight-600 text-copper-red text-extra-medium text-uppercase d-block letter-spacing-1px">Proud testimonials</span>
</div>
<div class="col-12 col-xl-6 col-md-7 wow animate__fadeIn" data-wow-delay="0.2s">
<div class="swiper-container white-move" data-slider-options='{ "slidesPerView": 1, "loop": true, "autoplay": { "delay": 4500, "disableOnInteraction": false }, "keyboard": { "enabled": true, "onlyInViewport": true } }'>
<div class="swiper-wrapper">
<!-- start testimonial item -->
<div class="swiper-slide">
<h6 class="alt-font line-height-44px w-95 margin-4-rem-bottom sm-line-height-34px sm-w-100">This theme has a wide variety of options and a really good customer support. Some of the customizations are limited but even so the theme still gives a lot of features while prioritizing web.</h6>
<h6 class="alt-font font-weight-300 text-white margin-5px-bottom"><span class="font-weight-600">Alexander</span> harvard</h6>
<span class="alt-font text-large d-block">creative director</span>
</div>
<!-- end testimonial item -->
<!-- start testimonial item -->
<div class="swiper-slide">
<h6 class="alt-font line-height-44px w-95 margin-4-rem-bottom sm-line-height-34px sm-w-100">There are design companies and then there are user experience, design, consulting, interface design. I wanted to hire the best and after looking at several other companies.</h6>
<h6 class="alt-font font-weight-300 text-white margin-5px-bottom"><span class="font-weight-600">Herman</span> miller</h6>
<span class="alt-font text-large d-block">creative director</span>
</div>
<!-- end testimonial item -->
<!-- start testimonial item -->
<div class="swiper-slide">
<h6 class="alt-font line-height-44px w-95 margin-4-rem-bottom sm-line-height-34px sm-w-100">Absolutely amazing theme, flexible and awesome design with possibilities. It's so easy to use and to customize. Simply the great designs and best theme for WooCommerce.</h6>
<h6 class="alt-font font-weight-300 text-white margin-5px-bottom"><span class="font-weight-600">Lindsay</span> swanson</h6>
<span class="alt-font text-large d-block">creative director</span>
</div>
<!-- end testimonial item -->
<!-- start testimonial item -->
<div class="swiper-slide">
<h6 class="alt-font line-height-44px w-95 margin-4-rem-bottom sm-line-height-34px sm-w-100">I wanted to hire the best and after looking at several other companies, I knew Jacob was the perfect guy. I wanted to hire the best and after looking at several other companies.</h6>
<h6 class="alt-font font-weight-300 text-white margin-5px-bottom"><span class="font-weight-600">Jeremy</span> dupont</h6>
<span class="alt-font text-large d-block">creative director</span>
</div>
<!-- end testimonial item -->
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end section -->
<!-- start section -->
<section class="home-creative-agency extra-big-section pb-0">
<div class="container">
<div class="row">
<div class="col-12 col-md-5 sm-margin-20px-bottom wow animate__fadeIn">
<span class="alt-font font-weight-600 text-copper-red text-extra-medium text-uppercase d-block letter-spacing-1px">Latest blogs</span>
</div>
<div class="col-12 col-md-7 text-md-right wow animate__fadeIn" data-wow-delay="0.2s">
<a href="blog-metro.html" class="btn btn-link thin btn-extra-large text-medium-gray">Explore blog</a>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row justify-content-center margin-7-half-rem-top sm-margin-4-half-rem-top">
<div class="col-12 col-md-12 padding-3-rem-lr xl-padding-15px-lr">
<ul class="blog-metro blog-wrapper grid grid-loading grid-4col xl-grid-4col lg-grid-2col md-grid-2col sm-grid-2col xs-grid-1col gutter-extra-large">
<li class="grid-sizer"></li>
<!-- start blog item -->
<li class="grid-item last-paragraph-no-margin wow animate__fadeIn" data-wow-delay="0.2s">
<div class="blog-post">
<div class="blog-post-image">
<img src="images/architecture-img-27.jpg" alt="">
<div class="blog-overlay"></div>
</div>
<div class="post-details d-flex flex-column align-item-start padding-3-half-rem-all sm-padding-3-rem-all xl-padding-1-half-rem-all">
<div class="mb-auto w-100">
<a href="blog-metro.html" class="blog-category alt-font">Design</a>
</div>
<div class="align-self-end w-100">
<a href="blog-metro.html" class="alt-font font-weight-500 text-extra-small d-inline-block text-white text-uppercase opacity-6 margin-15px-bottom">30 August 2018</a>
<h6 class="alt-font font-weight-500 text-extra-large mb-0"><a href="blog-post-layout-02.html" class="text-white">Everything designed things are designed well</a></h6>
</div>
</div>
</div>
</li>
<!-- end blog item -->
<!-- start blog item -->
<li class="grid-item last-paragraph-no-margin wow animate__fadeIn" data-wow-delay="0.4s">
<div class="blog-post">
<div class="blog-post-image">
<img src="images/architecture-img-26.jpg" alt="">
<div class="blog-overlay"></div>
</div>
<div class="post-details d-flex flex-column align-item-start padding-3-half-rem-all sm-padding-3-rem-all xl-padding-1-half-rem-all">
<div class="mb-auto w-100">
<a href="blog-metro.html" class="blog-category alt-font">Interior</a>
</div>
<div class="align-self-end w-100">
<a href="blog-metro.html" class="alt-font font-weight-500 text-extra-small d-inline-block text-white text-uppercase opacity-6 margin-15px-bottom">30 August 2018</a>
<h6 class="alt-font font-weight-500 text-extra-large mb-0"><a href="blog-post-layout-04.html" class="text-white">Reason and judgment are the qualities of a leader</a></h6>
</div>
</div>
</div>
</li>
<!-- end blog item -->
<!-- start blog item -->
<li class="grid-item last-paragraph-no-margin wow animate__fadeIn" data-wow-delay="0.6s">
<div class="blog-post">
<div class="blog-post-image bg-dark-slate-blue">
<img src="images/home-creative-agency-img-08.jpg" alt="">
<div class="blog-overlay"></div>
</div>
<div class="post-details d-flex flex-column align-item-start padding-3-half-rem-all sm-padding-3-rem-all xl-padding-1-half-rem-all">
<div class="mb-auto w-100">
<a href="blog-metro.html" class="blog-category alt-font">Creativity</a>
</div>
<div class="align-self-end w-100">
<a href="blog-metro.html" class="alt-font font-weight-500 text-small d-inline-block text-white text-uppercase opacity-6 margin-10px-bottom">30 August 2018</a>
<a href="blog-post-layout-02.html" class="alt-font text-white text-extra-large mb-0 d-block w-95 xl-w-100">Architects design houses. I live in a home</a>
</div>
</div>
</div>
</li>
<!-- end blog item -->
<!-- start blog item -->
<li class="grid-item last-paragraph-no-margin wow animate__fadeIn" data-wow-delay="0.8s">
<div class="blog-post">
<div class="blog-post-image bg-dark-slate-blue">
<img src="images/home-creative-agency-img-09.jpg" alt="">
<div class="blog-overlay"></div>
</div>
<div class="post-details d-flex flex-column align-item-start padding-3-half-rem-all sm-padding-3-rem-all xl-padding-1-half-rem-all">
<div class="mb-auto w-100">
<a href="blog-metro.html" class="blog-category alt-font">Modern</a>
</div>
<div class="align-self-end w-100">
<a href="blog-metro.html" class="alt-font font-weight-500 text-small d-inline-block text-white text-uppercase opacity-6 margin-10px-bottom">30 August 2018</a>
<a href="blog-post-layout-03.html" class="alt-font text-white text-extra-large mb-0 d-block w-95 xl-w-100">Good design doesn't date. Bad design does</a>
</div>
</div>
</div>
</li>
<!-- end blog item -->
</ul>
</div>
</div>
<div class="row">
<div class="col-12 text-center margin-10-half-rem-tb md-margin-7-half-rem-tb wow animate__fadeInUp" data-wow-delay="0.2s">
<h5 class="alt-font font-weight-300 letter-spacing-minus-1px">Are you ready to work with us? <a href="contact-us-modern.html" class="text-copper-red font-weight-600 text-white-hover text-decoration-line-bottom">start a project</a></h5>
</div>
</div>
</div>
</section>
<!-- end section -->
<!-- start footer -->
<footer class="footer-creative-agency footer-dark border-top border-color-white-transparent">
<div class="footer-top padding-nine-top lg-padding-eight-tb md-padding-50px-tb">
<div class="container">
<div class="row">
<!-- start footer column -->
<div class="col-12 col-xl-3 col-sm-6 order-sm-1 order-xl-0 lg-margin-50px-bottom xs-margin-25px-bottom">
<a href="index.html" class="footer-logo margin-40px-bottom d-block"><img src="images/logo-copper-red.png" data-at2x="images/[email protected]" alt=""></a>
<span class="alt-font font-weight-300 text-extra-large line-height-36px letter-spacing-minus-1-half d-inline-block w-85">We create experiences for brands companies by using creativity.</span>
</div>
<!-- end footer column -->
<!-- start footer column -->
<div class="col-12 col-xl-2 offset-xl-1 col-sm-6 order-sm-3 order-xl-0 xs-margin-25px-bottom">
<span class="alt-font font-weight-500 d-block text-white text-uppercase letter-spacing-2px margin-20px-bottom xs-margin-10px-bottom">Company</span>
<ul>
<li><a href="about-us.html">About company</a></li>
<li><a href="our-services.html">Company services</a></li>
<li><a href="our-team.html">Creative people</a></li>
<li><a href="contact-us-classic.html">Contact us</a></li>
</ul>
</div>
<!-- end footer column -->
<!-- start footer column -->
<div class="col-12 col-xl-2 offset-xl-1 col-sm-6 order-sm-4 order-xl-0 xs-margin-25px-bottom">
<span class="alt-font font-weight-500 d-block text-white text-uppercase letter-spacing-2px margin-20px-bottom xs-margin-10px-bottom">Services</span>
<ul>
<li><a href="our-services.html">Brand experience</a></li>
<li><a href="our-services.html">E-commerce website</a></li>
<li><a href="our-services.html">Content writing</a></li>
<li><a href="our-services.html">Marketing strategy</a></li>
</ul>
</div>
<!-- end footer column -->
<!-- start footer column -->
<div class="col-12 col-xl-2 offset-xl-1 col-sm-6 order-sm-2 order-xl-0 lg-margin-50px-bottom xs-no-margin-bottom">
<span class="alt-font font-weight-500 d-block text-white text-uppercase letter-spacing-2px margin-30px-bottom xs-margin-25px-bottom">Follow us</span>
<div class="social-icon-style-12">
<ul class="extra-small-icon">
<li><a class="facebook" href="https://www.facebook.com/" target="_blank"><i class="fab fa-facebook-f"></i></a></li>
<li><a class="dribbble" href="http://www.dribbble.com" target="_blank"><i class="fab fa-dribbble"></i></a></li>
<li><a class="twitter" href="http://www.twitter.com" target="_blank"><i class="fab fa-twitter"></i></a></li>
<li><a class="instagram" href="http://www.instagram.com" target="_blank"><i class="fab fa-instagram"></i></a></li>
</ul>
</div>
</div>
<!-- end footer column -->
</div>
</div>
</div>
<div class="footer-bottom padding-eight-tb xs-no-padding-top">
<div class="container">
<div class="row">
<div class="col-12 col-md-6 order-2 order-md-0 text-sm-center text-md-left last-paragraph-no-margin">
<p class="text-extra-medium">© 2021 Litho is Proudly Powered by <a href="https://www.themezaa.com/" target="_blank" class="text-decoration-line-bottom text-white">ThemeZaa</a></p>
</div>
<div class="col-12 col-md-6 order-1 order-md-0 sm-margin-15px-bottom">
<ul class="footer-horizontal-link text-extra-medium d-flex flex-column flex-sm-row justify-content-sm-center justify-content-md-end">
<li><a href="home-creative-agency.html#">Privacy policy</a></li>
<li><a href="home-creative-agency.html#">Legal</a></li>
<li><a href="home-creative-agency.html#">Terms of service</a></li>
</ul>
</div>
</div>