-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfancy-multi-page.html
1756 lines (1415 loc) · 114 KB
/
fancy-multi-page.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>
<!-- Change the value of lang="en" attribute if your website's language is not English.
You can find the code of your language here - https://www.w3schools.com/tags/ref_language_codes.asp -->
<html lang="en">
<head>
<title>Resonance — One & Multi Page Creative Template</title>
<meta name="description" content="Resonance — One & Multi Page Creative Template">
<meta charset="utf-8">
<meta name="author" content="https://themeforest.net/user/bestlooker/portfolio">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Favicon -->
<link rel="icon" href="images/favicon.png" type="image/png" sizes="any">
<link rel="icon" href="images/favicon.svg" type="image/svg+xml">
<!-- CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/style-responsive.css">
<link rel="stylesheet" href="css/vertical-rhythm.min.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/splitting.css">
<link rel="stylesheet" href="css/YTPlayer.css">
<link rel="stylesheet" href="css/demo-fancy/demo-fancy.css">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
</head>
<body class="appear-animate">
<!-- Page Loader -->
<div class="page-loader color">
<div class="loader">Loading...</div>
</div>
<!-- End Page Loader -->
<!-- Skip to Content -->
<a href="#main" class="btn skip-to-content">Skip to Content</a>
<!-- End Skip to Content -->
<!-- Page Wrap -->
<div class="page" id="top">
<!-- Navigation Panel -->
<nav class="main-nav transparent stick-fixed wow-menubar wch-unset">
<div class="main-nav-sub container">
<!-- Logo (* Add your text or image to the link tag. Use SVG or PNG image format.
If you use a PNG logo image, the image resolution must be equal 200% of the visible logo
image size for support of retina screens. See details in the template documentation. *) -->
<div class="nav-logo-wrap position-static local-scroll">
<a href="index.html" class="logo">
<img src="images/demo-fancy/logo-dark.png" alt="Your Company Logo" width="154" height="35" />
</a>
</div>
<!-- Mobile Menu Button -->
<div class="mobile-nav" role="button" tabindex="0">
<i class="mobile-nav-icon"></i>
<span class="visually-hidden">Menu</span>
</div>
<!-- Main Menu -->
<div class="inner-nav desktop-nav">
<ul class="clearlist local-scroll justify-content-end">
<li><a href="fancy-multi-page.html" class="active">Home</a></li>
<li><a href="fancy-about.html">About</a></li>
<li><a href="fancy-services.html">Services</a></li>
<li><a href="fancy-portfolio.html">Portfolio</a></li>
<li><a href="fancy-blog.html">Blog</a></li>
<li><a href="fancy-contact.html">Contact</a></li>
<li class="desktop-nav-display">
<div class="vr mt-2"></div>
</li>
<!-- Languages -->
<li>
<a href="#" class="mn-has-sub">En <i class="mi-chevron-down"></i></a>
<ul class="mn-sub to-left">
<li><a href="#">English</a></li>
<li><a href="#">French</a></li>
<li><a href="#">German</a></li>
</ul>
</li>
<!-- End Languages -->
<li>
<a href="fancy-contact.html" class="opacity-1 no-hover">
<span class="btn btn-mod btn-w btn-border-c btn-small btn-round" data-btn-animate="y">Get in touch</span>
</a>
</li>
</ul>
</div>
<!-- End Main Menu -->
</div>
</nav>
<!-- End Navigation Panel -->
<main id="main">
<!-- Home Section -->
<section class="home-section bg-gradient-gray-light-1 bg-scroll" id="home">
<!-- Background Shape -->
<div class="bg-shape-1 wow fadeIn">
<img src="images/demo-fancy/bg-shape-1.svg" alt="" />
</div>
<!-- End Background Shape -->
<div class="container position-relative min-height-100vh d-flex align-items-center pt-100 pb-100 pt-sm-120 pb-sm-120">
<!-- Home Section Content -->
<div class="home-content text-start">
<div class="row">
<!-- Home Section Text -->
<div class="col-md-10 offset-md-1 col-lg-6 offset-lg-0 col-xl-5 d-flex align-items-center mb-md-60 mb-sm-30">
<div class="w-100 text-center text-lg-start">
<h2 class="section-caption-fancy mb-30 mb-xs-20 wow fadeInUp" data-wow-duration="1.2s">
Resonance Web Studio
</h2>
<h1 class="hs-title-10 mb-30">
<span class="wow charsAnimIn" data-splitting="chars">
Make your <span class="mark-decoration-3-wrap">beautiful <b class="mark-decoration-3 wow scalexIn" data-wow-delay="1.1s"></b></span> web presence easily
</span>
</h1>
<p class="section-descr mb-40 wow fadeInUp" data-wow-delay="0.6s" data-wow-duration="1.2s" data-wow-offset="0">
We are an award winning studio specializing in branding, design and engineering. Our mission is to make work process meaningful.
</p>
<div class="local-scroll wow fadeInUp wch-unset" data-wow-delay="0.7s" data-wow-duration="1.2s">
<a href="fancy-portfolio.html" class="btn btn-mod btn-color btn-large btn-round btn-hover-anim me-1 mb-xs-10">
<span>View works</span>
</a>
<a href="https://www.youtube.com/watch?v=jTea_8Fk5Ns" class="btn btn-mod btn-border-c btn-large btn-round mb-xs-10 lightbox mfp-iframe" data-btn-animate="y">
<i class="icon-play size-13 me-1"></i> How we work?
</a>
</div>
</div>
</div>
<!-- End Home Section Text -->
<!-- Image -->
<div class="col-lg-6 col-xl-7 d-flex align-items-center">
<div class="w-100 wow fadeInLeft" data-wow-delay="0.7s">
<div class="position-relative mt-40 mb-20">
<img src="images/demo-fancy/hs-image.png" alt="Image Description" class="w-100" />
<!-- Decorative Waves -->
<div class="decoration-5 d-none d-sm-block" data-rellax-y data-rellax-speed="-0.7" data-rellax-percentage="0.5">
<img src="images/demo-fancy/decoration-1.svg" alt="" />
</div>
<!-- End Decorative Waves -->
</div>
<div class="small text-gray text-center">
Illustration by <a href="https://icons8.com/illustrations/author/TQQ1qAnr9rn5" rel="noopener nofollow" target="_blank">Oleg Shcherba</a> from <a href="https://icons8.com/illustrations" rel="noopener nofollow" target="_blank">Ouch</a>!
</div>
</div>
</div>
<!-- End Image -->
</div>
</div>
<!-- End Home Section Content -->
<!-- Scroll Down -->
<div class="local-scroll scroll-down-wrap-type-1 wow fadeInUp" data-wow-offset="0">
<div class="container text-center text-lg-start">
<a href="#about" class="scroll-down-1">
<div class="scroll-down-1-icon">
<i class="mi-arrow-down"></i>
</div>
<div class="scroll-down-1-text">Scroll Down</div>
</a>
</div>
</div>
<!-- End Scroll Down -->
</div>
</section>
<!-- End Home Section -->
<!-- About Section -->
<section class="page-section" id="about">
<div class="container position-relative">
<div class="row mb-xs-40">
<div class="col-md-10 offset-md-1 col-lg-8 offset-lg-2 text-center">
<h2 class="section-caption-fancy mb-20 mb-xs-10">About Us</h2>
<h3 class="section-title mb-30 mb-xs-20 wow fadeInUp">The best way to create stanning layouts for your website.</h3>
<p class="section-descr mb-40 mb-sm-20 wow fadeInUp" data-wow-delay="0.06s">
Although web design has a fairly recent history. It has become a large part of people's everyday lives. It is hard to imagine the Internet without animated graphics, different styles
of typography, background, videos and music.
</p>
<div class="local-scroll wow fadeInUp" data-wow-delay="0.12s">
<a href="fancy-about.html" class="link-hover-anim" data-link-animate="y">Learn more about us <i class="mi-arrow-right size-24"></i></a>
</div>
</div>
</div>
<!-- Images Composition -->
<div class="row">
<div class="col-sm-4 mb-xs-50">
<div class="me-xl-4 pe-sm-2">
<div class="composition-1">
<div class="composition-1-image-1">
<img src="images/demo-fancy/section-image-1.jpg" alt="Image Description" />
</div>
<div class="composition-1-image-2">
<img src="images/demo-fancy/section-image-2.jpg" alt="Image Description" />
</div>
<div class="composition-1-decoration-1" data-rellax-y data-rellax-speed="-0.5" data-rellax-percentage="0.65">
<img src="images/demo-fancy/decoration-1.svg" alt="" />
</div>
<div class="composition-1-decoration-2" data-rellax-y data-rellax-speed="0.5" data-rellax-percentage="0.2">
<img src="images/demo-fancy/decoration-2.svg" alt="" />
</div>
</div>
</div>
</div>
<div class="col-sm-4 mb-xs-50">
<div class="ms-xl-5 ps-sm-2 me-xl-4 pe-sm-2 pe-xl-3">
<div class="composition-2">
<div class="composition-2-image-1 mt-xs-0">
<img src="images/demo-fancy/section-image-3.jpg" alt="Image Description" />
</div>
<div class="composition-2-image-2">
<img src="images/demo-fancy/section-image-4.jpg" alt="Image Description" />
</div>
<div class="composition-2-decoration" data-rellax-y data-rellax-speed="0.5" data-rellax-percentage="0.2">
<img src="images/demo-fancy/decoration-3.svg" alt="" />
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="ms-xl-4 ps-sm-2">
<div class="composition-3">
<div class="composition-3-image-1">
<img src="images/demo-fancy/section-image-6.jpg" alt="Image Description" />
</div>
<div class="composition-3-image-2">
<img src="images/demo-fancy/section-image-5.jpg" alt="Image Description" />
</div>
<div class="composition-3-decoration-1" data-rellax-y data-rellax-speed="0.5" data-rellax-percentage="0.7">
<img src="images/demo-fancy/decoration-4.svg" alt="" />
</div>
<div class="composition-3-decoration-2" data-rellax-y data-rellax-speed="-0.5" data-rellax-percentage="0.5">
<img src="images/demo-fancy/decoration-5.svg" alt="" />
</div>
</div>
</div>
</div>
</div>
<!-- End Images Composition -->
</div>
</section>
<!-- End About Section -->
<!-- Divider -->
<hr class="mt-0 mb-0"/>
<!-- End Divider -->
<!-- Services Section -->
<section class="page-section bg-gradient-gray-light-1 bg-scroll" id="services">
<div class="container position-relative">
<div class="row mb-60 mb-sm-40">
<div class="col-md-8 col-lg-6">
<h2 class="section-caption-fancy mb-20 mb-xs-10">Our Services</h2>
<h3 class="section-title mb-0 mb-sm-20">We provide the full stack of the best digital solutions.</h3>
</div>
<div class="col-md-4 col-lg-6 d-flex align-items-end">
<div class="local-scroll text-md-end w-100">
<a href="fancy-services.html" class="link-hover-anim" data-link-animate="y">All services <i class="mi-arrow-right size-24"></i></a>
</div>
</div>
</div>
<!-- Services Grid -->
<div class="row services-5-grid">
<!-- Services Item -->
<div class="col-md-6 d-flex align-items-stretch">
<div class="services-5-item d-flex align-items-stretch text-center text-xl-start">
<div class="d-xl-flex wow fadeInUpShort">
<div class="services-5-image mb-lg-20 me-xl-4">
<img src="images/demo-fancy/services/service-1.png" width="198" height="198" alt="Image Description" />
</div>
<div class="services-5-body d-flex align-items-center">
<div class="w-100">
<h4 class="services-5-title">Branding</h4>
<p class="services-5-text mb-0">
A type of marketing agency, group or a firm which specializes in creating brands, people and their careers marketed as brands.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- End Services Item -->
<!-- Services Item -->
<div class="col-md-6 d-flex align-items-stretch">
<div class="services-5-item d-flex align-items-stretch text-center text-xl-start">
<div class="d-xl-flex wow fadeInUpShort">
<div class="services-5-image mb-lg-20 me-xl-4">
<img src="images/demo-fancy/services/service-2.png" width="198" height="198" alt="Image Description" />
</div>
<div class="services-5-body d-flex align-items-center">
<div class="w-100">
<h4 class="services-5-title">Web Design</h4>
<p class="services-5-text mb-0">
A static website stores a unique file for every page of a static website. Each time that page is requested, the same content is returned.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- End Services Item -->
<!-- Services Item -->
<div class="col-md-6 d-flex align-items-stretch">
<div class="services-5-item d-flex align-items-stretch text-center text-xl-start">
<div class="d-xl-flex wow fadeInUpShort">
<div class="services-5-image mb-lg-20 me-xl-4">
<img src="images/demo-fancy/services/service-3.png" width="198" height="198" alt="Image Description" />
</div>
<div class="services-5-body d-flex align-items-center">
<div class="w-100">
<h4 class="services-5-title">Development</h4>
<p class="services-5-text mb-0">
There are three kinds of web developer specialization: front-end developer, back-end developer, and full-stack developer.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- End Services Item -->
<!-- Services Item -->
<div class="col-md-6 d-flex align-items-stretch">
<div class="services-5-item d-flex align-items-stretch text-center text-xl-start">
<div class="d-xl-flex wow fadeInUpShort">
<div class="services-5-image mb-lg-20 me-xl-4">
<img src="images/demo-fancy/services/service-4.png" width="198" height="198" alt="Image Description" />
</div>
<div class="services-5-body d-flex align-items-center">
<div class="w-100">
<h4 class="services-5-title">Marketing</h4>
<p class="services-5-text mb-0">
Marketing refers to activities a company undertakes to promote the buying or selling of a product, service, or good.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- End Services Item -->
</div>
<!-- End Services Grid -->
<div class="small text-gray text-center mt-60 mt-sm-40">
Illustrations by <a href="https://www.instagram.com/b0g3nta" rel="noopener nofollow" target="_blank">bogenta</a> from <a href="https://icons8.com/illustrations" rel="noopener nofollow" target="_blank">Ouch</a>!
</div>
</div>
</section>
<!-- End Services Section -->
<!-- Why Choose Us Section -->
<section class="page-section">
<div class="container position-relative">
<div class="row">
<!-- Image -->
<div class="col-lg-6 col-xl-7 d-flex align-items-center">
<div class="w-100">
<div class="mb-20">
<img src="images/demo-fancy/section-image-7.png" alt="Image Description" class="w-100" />
</div>
<div class="small text-gray text-center">
Illustration by <a href="https://icons8.com/illustrations/author/TQQ1qAnr9rn5" rel="noopener nofollow" target="_blank">Oleg Shcherba</a> from <a href="https://icons8.com/illustrations" rel="noopener nofollow" target="_blank">Ouch</a>!
</div>
</div>
</div>
<!-- End Images -->
<!-- Section Text -->
<div class="col-lg-6 col-xl-5 d-flex align-items-center order-first order-lg-last mb-md-60 mb-sm-40">
<div class="w-100">
<h2 class="section-caption-fancy mb-20 mb-xs-10">
Why Choose Us?
</h2>
<h3 class="section-title-small mb-30">
We use the power of design to solve complex problems.
</h3>
<p class="section-descr mb-30">
There are two primary jobs involved in creating a website the web designer and web developer, who often work closely together on a website.
</p>
<!-- Features List -->
<div class="row features-list">
<!-- Features List Item -->
<div class="col-sm-6 col-lg-12 col-xl-6 d-flex mb-3">
<div class="features-list-icon">
<i class="mi-check"></i>
</div>
<div class="features-list-text">
We're professional
</div>
</div>
<!-- End Features List Item -->
<!-- Features List Item -->
<div class="col-sm-6 col-lg-12 col-xl-6 col-lg-6 d-flex mb-3">
<div class="features-list-icon">
<i class="mi-check"></i>
</div>
<div class="features-list-text">
We're creative
</div>
</div>
<!-- End Features List Item -->
<!-- Features List Item -->
<div class="col-sm-6 col-lg-12 col-xl-6 d-flex mb-3">
<div class="features-list-icon">
<i class="mi-check"></i>
</div>
<div class="features-list-text">
We're honest
</div>
</div>
<!-- End Features List Item -->
<!-- Features List Item -->
<div class="col-sm-6 col-lg-12 col-xl-6 d-flex mb-3">
<div class="features-list-icon">
<i class="mi-check"></i>
</div>
<div class="features-list-text">
We're friendly
</div>
</div>
<!-- End Features List Item -->
</div>
<!-- End Features List -->
</div>
</div>
<!-- End Section Text -->
</div>
</div>
</section>
<!-- End Why Choose Us Section -->
<!-- Divider -->
<hr class="mt-0 mb-0"/>
<!-- End Divider -->
<!-- Portfolio Section -->
<section class="page-section" id="portfolio">
<div class="container position-relative">
<div class="row mb-60 mb-sm-40">
<div class="col-md-8 offset-md-2 text-center">
<h2 class="section-caption-fancy mb-20 mb-xs-10">Selected Work</h2>
<h3 class="section-title mb-0">We believe in making the best work, and being the best to work with.</h3>
</div>
</div>
<!-- Works Filter -->
<div class="works-filter works-filter-fancy text-center mb-60 mb-sm-40 z-1">
<a href="#" class="filter active" role="button" aria-pressed="true" data-filter="*">All works</a>
<a href="#branding" class="filter" role="button" aria-pressed="false" data-filter=".branding">Branding</a>
<a href="#design" class="filter" role="button" aria-pressed="false" data-filter=".design">Design</a>
<a href="#development" class="filter" role="button" aria-pressed="false" data-filter=".development">Development</a>
</div>
<!-- End Works Filter -->
<div class="position-relative">
<!-- Decorative Waves -->
<div class="decoration-6 d-none d-sm-block opacity-055" data-rellax-y data-rellax-speed="-0.7" data-rellax-percentage="0.5">
<img src="images/demo-fancy/decoration-6.svg" alt="" />
</div>
<!-- End Decorative Waves -->
<!-- Works Grid -->
<ul class="works-grid work-grid-3 work-grid-gut work-grid-fancy" id="work-grid">
<!-- Work Item (Lightbox) -->
<li class="work-item mix development">
<div class="wow-p fadeInUp" data-wow-offset="0">
<a href="images/demo-fancy/portfolio/project-1-large.jpg" class="work-lightbox-link mfp-image">
<div class="work-img">
<img src="images/demo-fancy/portfolio/project-1.jpg" alt="Work Description" />
</div>
<div class="work-intro text-start">
<h3 class="work-title">Medium Scene</h3>
<div class="work-descr">
Lightbox
</div>
</div>
</a>
</div>
</li>
<!-- End Work Item -->
<!-- Work Item (External Page) -->
<li class="work-item mix branding design">
<div class="wow-p fadeInUp" data-wow-offset="0">
<a href="fancy-portfolio-single.html" class="work-ext-link">
<div class="work-img">
<img src="images/demo-fancy/portfolio/project-2.jpg" alt="Work Description" />
</div>
<div class="work-intro text-start">
<h3 class="work-title">Rise of Design</h3>
<div class="work-descr">
External Page
</div>
</div>
</a>
</div>
</li>
<!-- End Work Item -->
<!-- Work Item (External Page) -->
<li class="work-item mix branding">
<div class="wow-p fadeInUp" data-wow-offset="0">
<a href="fancy-portfolio-single.html" class="work-ext-link">
<div class="work-img">
<img src="images/demo-fancy/portfolio/project-3.jpg" alt="Work Description" />
</div>
<div class="work-intro text-start">
<h3 class="work-title">Visual Stranger</h3>
<div class="work-descr">
External Page
</div>
</div>
</a>
</div>
</li>
<!-- End Work Item -->
<!-- Work Item (External Page) -->
<li class="work-item mix design development">
<div class="wow-p fadeInUp" data-wow-offset="0">
<a href="fancy-portfolio-single.html" class="work-ext-link">
<div class="work-img">
<img src="images/demo-fancy/portfolio/project-4.jpg" alt="Work Description" />
</div>
<div class="work-intro text-start">
<h3 class="work-title">Amplitude</h3>
<div class="work-descr">
External Page
</div>
</div>
</a>
</div>
</li>
<!-- End Work Item -->
<!-- Work Item (External Page) -->
<li class="work-item mix design">
<div class="wow-p fadeInUp" data-wow-offset="0">
<a href="fancy-portfolio-single.html" class="work-ext-link">
<div class="work-img">
<img src="images/demo-fancy/portfolio/project-5.jpg" alt="Work Description" />
</div>
<div class="work-intro text-start">
<h3 class="work-title">Super Awards</h3>
<div class="work-descr">
External Page
</div>
</div>
</a>
</div>
</li>
<!-- End Work Item -->
<!-- Work Item (Lightbox) -->
<li class="work-item mix design branding">
<div class="wow-p fadeInUp" data-wow-offset="0">
<a href="images/demo-fancy/portfolio/project-6-large.jpg" class="work-lightbox-link mfp-image">
<div class="work-img">
<img src="images/demo-fancy/portfolio/project-6.jpg" alt="Work Description" />
</div>
<div class="work-intro text-start">
<h3 class="work-title">Design System</h3>
<div class="work-descr">
Lightbox
</div>
</div>
</a>
</div>
</li>
<!-- End Work Item -->
</ul>
<!-- End Works Grid -->
</div>
<div class="small text-gray text-center mt-60 mt-sm-40">
Free Images by <a href="asylab.com" rel="noopener nofollow" target="_blank">asylab.com</a>, <a href="ui8.net " rel="noopener nofollow" target="_blank">ui8.net</a>, and <a href="freeui.design" rel="noopener nofollow" target="_blank">freeui.design</a>.
</div>
</div>
</section>
<!-- End Portfolio Section -->
<!-- Divider -->
<hr class="mt-0 mb-0"/>
<!-- End Divider -->
<!-- Testimonials Section -->
<section class="page-section">
<div class="container position-relative">
<div class="row">
<!-- Section Text -->
<div class="col-lg-5 col-xl-5 d-flex align-items-center mb-md-60 mb-sm-40">
<div class="w-100">
<h2 class="section-caption-fancy mb-20 mb-xs-10">
Testimonials
</h2>
<h3 class="section-title-small mb-30">
We help brands to stand out in the ever-changing digital landscape.
</h3>
<p class="section-descr mb-30">
A static website stores a unique file for every page of a static website. Each time that page is requested, the same content is returned.
</p>
<!-- Numbers -->
<div class="row">
<div class="col-md-6 number-1-item mb-sm-10">
<div class="number-1-title">
95
</div>
<div class="number-1-descr">
Projects done successfully
</div>
</div>
<div class="col-md-6 number-1-item">
<div class="number-1-title">
58
</div>
<div class="number-1-descr">
Satisfied customers
</div>
</div>
</div>
<!-- End Numbers -->
</div>
</div>
<!-- End Section Text -->
<!-- Testimonials Grid -->
<div class="col-lg-7 col-xl-6 offset-xl-1 d-flex align-items-center">
<div class="w-100 position-relative">
<!-- Decoration Dots -->
<div class="decoration-7 d-none d-sm-block" data-rellax-y data-rellax-speed="0.5" data-rellax-percentage="0.5">
<img src="images/demo-fancy/decoration-7.svg" alt="" />
</div>
<!-- End Decoration Dots -->
<div class="row masonry mb-n30">
<!-- Testimonials Item -->
<div class="col-md-6 mt-50 mt-sm-0 mb-30">
<div class="testimonials-4-item">
<div class="testimonials-4-icon">
<i class="icon-quotation-mark"></i>
</div>
<blockquote class="testimonials-4-text">
<p class="mb-0">
Beautifull template, nice code and easy to customize. Optimization and structure are verry good for SEO basics.
</p>
<footer class="testimonials-4-author mt-30 clearfix">
<div class="testimonials-4-author-img float-start">
<img width="44" height="44" src="images/demo-fancy/user-1.jpg" alt="Image description is here" />
</div>
<div class="overflow-hidden">
Thomas Johnson
<div class="small">
UI/ UX Designer
</div>
</div>
</footer>
</blockquote>
</div>
</div>
<!-- End Testimonials Item -->
<!-- Testimonials Item -->
<div class="col-md-6 mb-30">
<div class="testimonials-4-item">
<div class="testimonials-4-icon">
<i class="icon-quotation-mark"></i>
</div>
<blockquote class="testimonials-4-text">
<p class="mb-0">
The support is one of the absolute best I've ever had the pleasure of interacting with. Quick, courteous, and extremely helpful!
</p>
<footer class="testimonials-4-author mt-30 clearfix">
<div class="testimonials-4-author-img float-start">
<img width="44" height="44" src="images/demo-fancy/user-2.jpg" alt="Image description is here" />
</div>
<div class="overflow-hidden">
Emma Kande
<div class="small">
3D Artist
</div>
</div>
</footer>
</blockquote>
</div>
</div>
<!-- End Testimonials Item -->
<!-- Testimonials Item -->
<div class="col-md-6 mb-30">
<div class="testimonials-4-item">
<div class="testimonials-4-icon">
<i class="icon-quotation-mark"></i>
</div>
<blockquote class="testimonials-4-text">
<p class="mb-0">
This is template is so beautiful and has such wonderful new options. It is updated often which gives me even more quality.
</p>
<footer class="testimonials-4-author mt-30 clearfix">
<div class="testimonials-4-author-img float-start">
<img width="44" height="44" src="images/demo-fancy/user-3.jpg" alt="Image description is here" />
</div>
<div class="overflow-hidden">
Peter Rebel
<div class="small">
Business Owner
</div>
</div>
</footer>
</blockquote>
</div>
</div>
<!-- End Testimonials Item -->
<!-- Testimonials Item -->
<div class="col-md-6 mb-30">
<div class="testimonials-4-item">
<div class="testimonials-4-icon">
<i class="icon-quotation-mark"></i>
</div>
<blockquote class="testimonials-4-text">
<p class="mb-0">
A remarkable model, everything has been thought out with talent, the design, the responsiveness, the various adaptations.
</p>
<footer class="testimonials-4-author mt-30 clearfix">
<div class="testimonials-4-author-img float-start">
<img width="44" height="44" src="images/demo-fancy/user-4.jpg" alt="Image description is here" />
</div>
<div class="overflow-hidden">
Alice Watson
<div class="small">
Product Designer
</div>
</div>
</footer>
</blockquote>
</div>
</div>
<!-- End Testimonials Item -->
</div>
</div>
</div>
<!-- Testimonials Grid -->
</div>
<!-- Logotypes -->
<div class="page-section pb-0 text-center">
<h3 class="section-title-tiny">Trusted by Leading Companies</h3>
<div class="small-item-carousel black owl-carousel mb-0">
<!-- Logo Item -->
<div class="logo-item">
<img src="images/demo-fancy/logotypes/client-1.png" width="215" height="75" alt="Company Name" />
</div>
<!-- End Logo Item -->
<!-- Logo Item -->
<div class="logo-item">
<img src="images/demo-fancy/logotypes/client-2.png" width="215" height="75" alt="Company Name" />
</div>
<!-- End Logo Item -->
<!-- Logo Item -->
<div class="logo-item">
<img src="images/demo-fancy/logotypes/client-3.png" width="215" height="75" alt="Company Name" />
</div>
<!-- End Logo Item -->
<!-- Logo Item -->
<div class="logo-item">
<img src="images/demo-fancy/logotypes/client-4.png" width="215" height="75" alt="Company Name" />
</div>
<!-- End Logo Item -->
<!-- Logo Item -->
<div class="logo-item">
<img src="images/demo-fancy/logotypes/client-5.png" width="215" height="75" alt="Company Name" />
</div>
<!-- End Logo Item -->
<!-- Logo Item -->
<div class="logo-item">
<img src="images/demo-fancy/logotypes/client-6.png" width="215" height="75" alt="Company Name" />
</div>
<!-- End Logo Item -->
<!-- Logo Item -->
<div class="logo-item">
<img src="images/demo-fancy/logotypes/client-1.png" width="215" height="75" alt="Company Name" />
</div>
<!-- End Logo Item -->
<!-- Logo Item -->
<div class="logo-item">
<img src="images/demo-fancy/logotypes/client-2.png" width="215" height="75" alt="Company Name" />
</div>
<!-- End Logo Item -->
</div>
</div>
<!-- End Logotypes -->
</div>
</section>
<!-- End Testimonials Section -->
<!-- Divider -->
<hr class="mt-0 mb-0"/>
<!-- End Divider -->
<!-- Blog Section -->
<section class="page-section" id="blog">
<div class="container">
<div class="row mb-60 mb-sm-40">
<div class="col-lg-8 offset-lg-2 text-center mb-md-30">
<h2 class="section-caption-fancy mb-20 mb-xs-10">Our Blog</h2>
<h3 class="section-title mb-0 mb-xs-20">Check the latest news about our company in our blog.</h3>
</div>
<div class="col-lg-2 d-flex align-items-end">
<div class="local-scroll text-center text-lg-end w-100">
<a href="fancy-blog.html" class="link-hover-anim" data-link-animate="y">Our blog <i class="mi-arrow-right size-24"></i></a>
</div>
</div>
</div>
<!-- Blog Posts Grid -->
<div class="row position-relative mt-n30">
<!-- Decorative Waves -->
<div class="decoration-8 d-none d-sm-block opacity-05" data-rellax-y data-rellax-speed="-0.7" data-rellax-percentage="0.475">
<img src="images/demo-fancy/decoration-1.svg" alt="" />
</div>
<!-- End Decorative Waves -->
<!-- Post Item -->
<div class="post-prev col-md-6 col-lg-4 mt-30 wow fadeInLeft" data-wow-offset="0" data-wow-delay="0">
<div class="post-prev-container">
<div class="post-prev-img">
<a href="fancy-blog-single.html"><img src="images/demo-fancy/blog/post-prev-1.jpg" alt="Add Image Description" /></a>
</div>
<h4 class="post-prev-title"><a href="fancy-blog-single.html">Spotlight — Equinox Collection by Shane Griffin</a></h4>
<div class="post-prev-text">
Looking for inspiration to kick it off, I stumbled across the work of Shane Griffin, an artist and director based in New York...
</div>
<div class="post-prev-info clearfix">
<div class="float-start">
<a href="#"><img class="post-prev-author-img" width="30" height="30" src="images/demo-fancy/user-1.jpg" alt="Image Description" /></a><a href="#">Adam Smith</a>
</div>
<div class="float-end"><a href="#">August 3</a></div>
</div>
</div>
</div>
<!-- End Post Item -->
<!-- Post Item -->
<div class="post-prev col-md-6 col-lg-4 mt-30 wow fadeInLeft" data-wow-offset="0" data-wow-delay="0.1s">
<div class="post-prev-container">
<div class="post-prev-img">
<a href="fancy-blog-single.html"><img src="images/demo-fancy/blog/post-prev-2.jpg" alt="Add Image Description" /></a>
</div>
<h4 class="post-prev-title"><a href="fancy-blog-single.html">Random Explorations with Cinema 4D and Redshift</a></h4>
<div class="post-prev-text">
Nidia Dias is a 3D designer based in the Portugal with an incredible portfolio. From the professional work done with...
</div>
<div class="post-prev-info clearfix">
<div class="float-start">
<a href="#"><img class="post-prev-author-img" width="30" height="30" src="images/demo-fancy/user-2.jpg" alt="Image Description" /></a><a href="#">Emma Kandel</a>
</div>
<div class="float-end"><a href="#">August 2</a></div>
</div>
</div>
</div>
<!-- End Post Item -->
<!-- Post Item -->
<div class="post-prev col-md-6 col-lg-4 mt-30 wow fadeInLeft" data-wow-offset="0" data-wow-delay="0.2s">
<div class="post-prev-container">