-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
1395 lines (1341 loc) · 80.6 KB
/
Copy pathhome.html
File metadata and controls
1395 lines (1341 loc) · 80.6 KB
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 lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<!-- Page Title -->
<title>Rayo - Digital Agency & Personal Portfolio HTML Template</title>
<!-- Meta Tags -->
<meta name="description" content="Elevate your digital presence with Rayo - dynamic and stylish HTML template designed for creative agencies and personal brands. With modern layouts, smooth interactions and a polished aesthetic, Rayo template helps showcase projects, services and expertise with clarity and impact.">
<meta name="keywords" content="mix_design, resume, portfolio, personal page, cv, template, one page, responsive, html5, css3, creative, clean">
<meta name="author" content="mix_design">
<!-- Viewport Meta-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Template Favicon & Icons Start -->
<link rel="icon" href="img/favicon/favicon.ico" sizes="any">
<link rel="icon" href="img/favicon/icon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="img/favicon/apple-touch-icon.png">
<link rel="manifest" href="img/favicon/manifest.webmanifest">
<!-- Template Favicon & Icons End -->
<!-- Facebook Metadata Start -->
<meta property="og:image:height" content="1200">
<meta property="og:image:width" content="1200">
<meta property="og:title" content="Rayo - Digital Agency & Personal Portfolio HTML Template">
<meta property="og:description" content="Elevate your digital presence with Rayo - dynamic and stylish HTML template designed for creative agencies and personal brands. With modern layouts, smooth interactions and a polished aesthetic, Rayo template helps showcase projects, services and expertise with clarity and impact.">
<meta property="og:url" content="https://mixdesign.dev/themeforest/rayo">
<meta property="og:image" content="https://mixdesign.dev/themeforest/rayo/img/og-image.jpg">
<!-- Facebook Metadata End -->
<!-- Template Styles Start -->
<link rel="stylesheet" type="text/css" href="css/loaders/loader.css">
<link rel="stylesheet" type="text/css" href="css/plugins.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<!-- Template Styles End -->
<!-- Custom Browser Color Start -->
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#FAF7F6">
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#161616">
<meta name="msapplication-navbutton-color" content="#161616">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<!-- Custom Browser Color End -->
</head>
<body>
<!-- Loader Start -->
<div id="loader" class="loader">
<div class="loader__wrapper">
<div class="loader__content">
<div class="loader__count">
<span class="count__text">0</span>
<span class="count__percent">%</span>
</div>
</div>
</div>
</div>
<!-- Loader End -->
<!-- Menu & Menu Hamburger Start -->
<nav class="mxd-nav__wrap" data-lenis-prevent="">
<!-- Hamburger Start -->
<div class="mxd-nav__contain loading__fade">
<a href="#0" class="mxd-nav__hamburger">
<!-- flip element -->
<div class="hamburger__base"></div>
<div class="hamburger__line"></div>
<div class="hamburger__line"></div>
</a>
</div>
<!-- Hamburger End -->
<!-- Main Navigation Start -->
<div class="mxd-menu__wrapper">
<!-- background active layer -->
<div class="mxd-menu__base"></div>
<!-- menu container -->
<div class="mxd-menu__contain">
<div class="mxd-menu__inner">
<!-- left side -->
<div class="mxd-menu__left">
<p class="mxd-menu__caption menu-fade-in">🦄 Innovative design<br>and cutting-edge development</p>
<div class="main-menu">
<nav class="main-menu__content">
<ul id="main-menu" class="main-menu__accordion">
<li class="main-menu__item">
<div class="main-menu__toggle">
<span class="main-menu__link btn btn-anim">
<span class="btn-caption">Home</span>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" version="1.1" viewBox="0 0 20 20">
<path d="M19.6,9.6h-3.9c-.4,0-1.8-.2-1.8-.2-.6,0-1.1-.2-1.6-.6-.5-.3-.9-.8-1.2-1.2-.3-.4-.4-.9-.5-1.4,0,0,0-1.1-.2-1.5V.4c0-.2-.2-.4-.4-.4s-.4.2-.4.4v4.4c0,.4-.2,1.5-.2,1.5,0,.5-.2,1-.5,1.4-.3.5-.7.9-1.2,1.2s-1,.5-1.6.6c0,0-1.2,0-1.7.2H.4c-.2,0-.4.2-.4.4s.2.4.4.4h4.1c.4,0,1.7.2,1.7.2.6,0,1.1.2,1.6.6.4.3.8.7,1.1,1.1.3.5.5,1,.6,1.6,0,0,0,1.3.2,1.7v4.1c0,.2.2.4.4.4s.4-.2.4-.4v-4.1c0-.4.2-1.7.2-1.7,0-.6.2-1.1.6-1.6.3-.4.7-.8,1.1-1.1.5-.3,1-.5,1.6-.6,0,0,1.3,0,1.8-.2h3.9c.2,0,.4-.2.4-.4s-.2-.4-.4-.4h0Z"/>
</svg>
</div>
<ul class="submenu">
<li class="submenu__item">
<a href="index-main.html">Main home</a>
</li>
<li class="submenu__item">
<a href="index-software-development-company.html">Software development company</a>
</li>
<li class="submenu__item">
<a href="index-freelancer-portfolio.html">Freelancer portfolio</a>
</li>
<li class="submenu__item active">
<a href="index-digital-agency.html">Digital agency</a>
</li>
<li class="submenu__item">
<a href="index-creative-design-studio.html">Creative design studio</a>
</li>
<li class="submenu__item">
<a href="index-personal-portfolio.html">Personal portfolio</a>
</li>
<li class="submenu__item">
<a href="index-web-agency.html">Web agency</a>
</li>
<li class="submenu__item">
<a href="index-creative-developer.html">Creative developer</a>
</li>
<li class="submenu__item">
<a href="index-designer.html">Designer</a>
</li>
</ul>
</li>
<li class="main-menu__item">
<div class="main-menu__toggle">
<span class="main-menu__link btn btn-anim">
<span class="btn-caption">Works</span>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" version="1.1" viewBox="0 0 20 20">
<path d="M19.6,9.6h-3.9c-.4,0-1.8-.2-1.8-.2-.6,0-1.1-.2-1.6-.6-.5-.3-.9-.8-1.2-1.2-.3-.4-.4-.9-.5-1.4,0,0,0-1.1-.2-1.5V.4c0-.2-.2-.4-.4-.4s-.4.2-.4.4v4.4c0,.4-.2,1.5-.2,1.5,0,.5-.2,1-.5,1.4-.3.5-.7.9-1.2,1.2s-1,.5-1.6.6c0,0-1.2,0-1.7.2H.4c-.2,0-.4.2-.4.4s.2.4.4.4h4.1c.4,0,1.7.2,1.7.2.6,0,1.1.2,1.6.6.4.3.8.7,1.1,1.1.3.5.5,1,.6,1.6,0,0,0,1.3.2,1.7v4.1c0,.2.2.4.4.4s.4-.2.4-.4v-4.1c0-.4.2-1.7.2-1.7,0-.6.2-1.1.6-1.6.3-.4.7-.8,1.1-1.1.5-.3,1-.5,1.6-.6,0,0,1.3,0,1.8-.2h3.9c.2,0,.4-.2.4-.4s-.2-.4-.4-.4h0Z"/>
</svg>
</div>
<ul class="submenu">
<li class="submenu__item">
<a href="works-simple.html">Portfolio</a>
</li>
<li class="submenu__item">
<a href="works-masonry.html">Works masonry</a>
</li>
<li class="submenu__item">
<a href="project-details.html">Project details</a>
</li>
</ul>
</li>
<li class="main-menu__item">
<div class="main-menu__toggle">
<span class="main-menu__link btn btn-anim">
<span class="btn-caption">Pages</span>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" version="1.1" viewBox="0 0 20 20">
<path d="M19.6,9.6h-3.9c-.4,0-1.8-.2-1.8-.2-.6,0-1.1-.2-1.6-.6-.5-.3-.9-.8-1.2-1.2-.3-.4-.4-.9-.5-1.4,0,0,0-1.1-.2-1.5V.4c0-.2-.2-.4-.4-.4s-.4.2-.4.4v4.4c0,.4-.2,1.5-.2,1.5,0,.5-.2,1-.5,1.4-.3.5-.7.9-1.2,1.2s-1,.5-1.6.6c0,0-1.2,0-1.7.2H.4c-.2,0-.4.2-.4.4s.2.4.4.4h4.1c.4,0,1.7.2,1.7.2.6,0,1.1.2,1.6.6.4.3.8.7,1.1,1.1.3.5.5,1,.6,1.6,0,0,0,1.3.2,1.7v4.1c0,.2.2.4.4.4s.4-.2.4-.4v-4.1c0-.4.2-1.7.2-1.7,0-.6.2-1.1.6-1.6.3-.4.7-.8,1.1-1.1.5-.3,1-.5,1.6-.6,0,0,1.3,0,1.8-.2h3.9c.2,0,.4-.2.4-.4s-.2-.4-.4-.4h0Z"/>
</svg>
</div>
<ul class="submenu">
<li class="submenu__item">
<a href="about-me.html">About me</a>
</li>
<li class="submenu__item">
<a href="about-us.html">About us</a>
</li>
<li class="submenu__item">
<a href="services.html">Services</a>
</li>
<li class="submenu__item">
<a href="team.html">Our team</a>
</li>
<li class="submenu__item">
<a href="pricing.html">Pricing</a>
</li>
<li class="submenu__item">
<a href="faq.html">FAQ page</a>
</li>
<li class="submenu__item">
<a href="404.html">404 error page</a>
</li>
<li class="submenu__item">
<a href="index.html">Landing page</a>
</li>
</ul>
</li>
<li class="main-menu__item">
<div class="main-menu__toggle">
<span class="main-menu__link btn btn-anim">
<span class="btn-caption">Insights</span>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" version="1.1" viewBox="0 0 20 20">
<path d="M19.6,9.6h-3.9c-.4,0-1.8-.2-1.8-.2-.6,0-1.1-.2-1.6-.6-.5-.3-.9-.8-1.2-1.2-.3-.4-.4-.9-.5-1.4,0,0,0-1.1-.2-1.5V.4c0-.2-.2-.4-.4-.4s-.4.2-.4.4v4.4c0,.4-.2,1.5-.2,1.5,0,.5-.2,1-.5,1.4-.3.5-.7.9-1.2,1.2s-1,.5-1.6.6c0,0-1.2,0-1.7.2H.4c-.2,0-.4.2-.4.4s.2.4.4.4h4.1c.4,0,1.7.2,1.7.2.6,0,1.1.2,1.6.6.4.3.8.7,1.1,1.1.3.5.5,1,.6,1.6,0,0,0,1.3.2,1.7v4.1c0,.2.2.4.4.4s.4-.2.4-.4v-4.1c0-.4.2-1.7.2-1.7,0-.6.2-1.1.6-1.6.3-.4.7-.8,1.1-1.1.5-.3,1-.5,1.6-.6,0,0,1.3,0,1.8-.2h3.9c.2,0,.4-.2.4-.4s-.2-.4-.4-.4h0Z"/>
</svg>
</div>
<ul class="submenu">
<li class="submenu__item">
<a href="blog-standard.html">Blog standard</a>
</li>
<li class="submenu__item">
<a href="blog-creative.html">Blog creative</a>
</li>
<li class="submenu__item">
<a href="blog-article.html">Single post</a>
</li>
</ul>
</li>
<li class="main-menu__item">
<a class="main-menu__link btn btn-anim" href="contact.html">
<span class="btn-caption">Contact</span>
</a>
</li>
</ul>
</nav>
</div>
</div>
<!-- right side -->
<div class="mxd-menu__right">
<div class="menu-promo">
<div class="menu-promo__content">
<!-- <p class="menu-promo__caption menu-fade-in">👋 Nice to see you!<br>I'm Alex Walker, digital
designer and illustrator based in Odesa, Ukraine</p>
<div class="menu-promo__video">
<video class="menu-video" id="inner-video" preload="auto" autoplay="autoplay" loop="loop" muted="muted" poster="https://dummyimage.com/540x310/5d5d5d/737373">
<source type="video/mp4" src="video/540x310_video.mp4">
<source type="video/webm" src="video/540x310_video.webm">
<source type="video/ogv" src="video/540x310_video.ogv">
</video>
</div> -->
</div>
</div>
</div>
<!-- data bottom line -->
<div class="mxd-menu__data menu-fade-in">
<p class="t-xsmall">
<a class="no-effect" href="https://1.envato.market/EKA9WD" target="_blank">GRAPHIQ_ART</a>
</p>
<p class="t-xsmall">
<i class="ph ph-copyright"></i>
2025
</p>
</div>
</div>
</div>
</div>
<!-- Main Navigation End -->
</nav>
<!-- Menu & Menu Hamburger End -->
<!-- Header Start -->
<header id="header" class="mxd-header">
<!-- header logo -->
<div class="mxd-header__logo loading__fade">
<a href="index-main.html" class="mxd-logo">
<!-- logo icon -->
<div class="mxd-logo__image" id="emoji-logo">
<img class="emoji-display" id="emoji-display" src="emojis/1.png" alt="Emoji">
</div>
<!-- logo text -->
<span class="mxd-logo__text">GRAPHIQ<br>STUDIO LLC</span>
</a>
</div>
<!-- header controls -->
<div class="mxd-header__controls loading__fade">
<button id="color-switcher" class="mxd-color-switcher" type="button" role="switch" aria-label="light/dark mode" aria-checked="true"></button>
<a class="btn btn-anim btn-default btn-mobile-icon btn-outline slide-right-up" href="contact.html">
<span class="btn-caption">Say Hello</span>
<i class="ph-bold ph-arrow-up-right"></i>
</a>
</div>
</header>
<!-- Header End -->
<!-- Page Content Start -->
<main id="mxd-page-content" class="mxd-page-content">
<!-- Hero Section Start -->
<div class="mxd-section">
<div class="mxd-hero-02 mxd-pinned-fullscreen">
<div class="mxd-pinned-fullscreen__static hero-02-fade-out-scroll loading-wrap">
<div class="hero-02-static__tl-trigger"></div>
<!-- static top -->
<div class="mxd-hero-02-static__top hero-02-static-anim-el">
<div class="mxd-container fullwidth-container grid-container">
<div class="container-fluid p-0">
<div class="row g-0">
<div class="col-12 col-xl-6 mxd-grid-item no-margin">
<div class="hero-02-static__caption loading__item">
<p class="t-large t-medium t-120 t-bright">Powering next gen projects.</p>
<p class="t-large t-medium t-120 t-muted">No creative limits.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="mxd-hero-02-static__center">
<div class="mxd-hero-02-marquee">
<div class="mxd-hero-02-marquee__image loading__item">
<img class="mxd-move" src="/porthomeimages/smiley.png" alt="Hero Image">
</div>
<div class="mxd-hero-02-marquee__line loading__item">
<div class="marquee marquee-left--gsap">
<div class="marquee__toleft">
<!-- single item -->
<div class="marquee__item one-line item-regular text">
<p class="marquee__text">GRAPHIQ STUDIO LLC — Visual. Digital. Remarkable</p>
<div class="marquee__image">
<svg class="mxd-pulse" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80" fill="currentColor">
<path fill="currentColor" d="M78.4,38.4c0,0-11.8,0-15.8,0c-1.6,0-4.8-0.2-7.1-0.8c-2.3-0.6-4.3-0.8-6.3-2.4c-2-1.2-3.5-3.2-4.7-4.8
c-1.2-1.6-1.6-3.6-2-5.5c-0.3-1.5-0.7-4.3-0.8-5.9c-0.2-4.3,0-17.4,0-17.4C41.8,0.8,41,0,40.2,0s-1.6,0.8-1.6,1.6c0,0,0,13.1,0,17.4
c0,1.6-0.6,4.3-0.8,5.9c-0.3,2-0.8,4-2,5.5c-1.2,2-2.8,3.6-4.7,4.8s-4,1.8-6.3,2.4c-1.9,0.5-4.7,0.6-6.7,0.8c-3.9,0.4-16.6,0-16.6,0
C0.8,38.4,0,39.2,0,40c0,0.8,0.8,1.6,1.6,1.6c0,0,12.2,0,16.6,0c1.6,0,4.8,0.3,6.7,0.8c2.3,0.6,4.3,0.8,6.3,2.4
c1.6,1.2,3.2,2.8,4.3,4.4c1.2,2,2.1,3.9,2.4,6.3c0.2,1.7,0.7,4.7,0.8,6.7c0.2,4,0,16.2,0,16.2c0,0.8,0.8,1.6,1.6,1.6
s1.6-0.8,1.6-1.6c0,0,0-12.3,0-16.2c0-1.6,0.5-5.1,0.8-6.7c0.5-2.3,0.8-4.4,2.4-6.3c1.2-1.6,2.8-3.2,4.3-4.4c2-1.2,3.9-2,6.3-2.4
c1.8-0.3,5.1-0.7,7.1-0.8c3.5-0.2,15.8,0,15.8,0c0.8,0,1.6-0.8,1.6-1.6C80,39.2,79.2,38.4,78.4,38.4C78.4,38.4,78.4,38.4,78.4,38.4z
"/>
</svg>
</div>
</div>
<!-- single item -->
<div class="marquee__item one-line item-regular text">
<p class="marquee__text">GRAPHIQ STUDIO LLC — Visual. Digital. Remarkable</p>
<div class="marquee__image">
<svg class="mxd-pulse" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80" fill="currentColor">
<path fill="currentColor" d="M78.4,38.4c0,0-11.8,0-15.8,0c-1.6,0-4.8-0.2-7.1-0.8c-2.3-0.6-4.3-0.8-6.3-2.4c-2-1.2-3.5-3.2-4.7-4.8
c-1.2-1.6-1.6-3.6-2-5.5c-0.3-1.5-0.7-4.3-0.8-5.9c-0.2-4.3,0-17.4,0-17.4C41.8,0.8,41,0,40.2,0s-1.6,0.8-1.6,1.6c0,0,0,13.1,0,17.4
c0,1.6-0.6,4.3-0.8,5.9c-0.3,2-0.8,4-2,5.5c-1.2,2-2.8,3.6-4.7,4.8s-4,1.8-6.3,2.4c-1.9,0.5-4.7,0.6-6.7,0.8c-3.9,0.4-16.6,0-16.6,0
C0.8,38.4,0,39.2,0,40c0,0.8,0.8,1.6,1.6,1.6c0,0,12.2,0,16.6,0c1.6,0,4.8,0.3,6.7,0.8c2.3,0.6,4.3,0.8,6.3,2.4
c1.6,1.2,3.2,2.8,4.3,4.4c1.2,2,2.1,3.9,2.4,6.3c0.2,1.7,0.7,4.7,0.8,6.7c0.2,4,0,16.2,0,16.2c0,0.8,0.8,1.6,1.6,1.6
s1.6-0.8,1.6-1.6c0,0,0-12.3,0-16.2c0-1.6,0.5-5.1,0.8-6.7c0.5-2.3,0.8-4.4,2.4-6.3c1.2-1.6,2.8-3.2,4.3-4.4c2-1.2,3.9-2,6.3-2.4
c1.8-0.3,5.1-0.7,7.1-0.8c3.5-0.2,15.8,0,15.8,0c0.8,0,1.6-0.8,1.6-1.6C80,39.2,79.2,38.4,78.4,38.4C78.4,38.4,78.4,38.4,78.4,38.4z
"/>
</svg>
</div>
</div>
<!-- single item -->
<div class="marquee__item one-line item-regular text">
<p class="marquee__text">GRAPHIQ STUDIO LLC — Visual. Digital. Remarkable</p>
<div class="marquee__image">
<svg class="mxd-pulse" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80" fill="currentColor">
<path fill="currentColor" d="M78.4,38.4c0,0-11.8,0-15.8,0c-1.6,0-4.8-0.2-7.1-0.8c-2.3-0.6-4.3-0.8-6.3-2.4c-2-1.2-3.5-3.2-4.7-4.8
c-1.2-1.6-1.6-3.6-2-5.5c-0.3-1.5-0.7-4.3-0.8-5.9c-0.2-4.3,0-17.4,0-17.4C41.8,0.8,41,0,40.2,0s-1.6,0.8-1.6,1.6c0,0,0,13.1,0,17.4
c0,1.6-0.6,4.3-0.8,5.9c-0.3,2-0.8,4-2,5.5c-1.2,2-2.8,3.6-4.7,4.8s-4,1.8-6.3,2.4c-1.9,0.5-4.7,0.6-6.7,0.8c-3.9,0.4-16.6,0-16.6,0
C0.8,38.4,0,39.2,0,40c0,0.8,0.8,1.6,1.6,1.6c0,0,12.2,0,16.6,0c1.6,0,4.8,0.3,6.7,0.8c2.3,0.6,4.3,0.8,6.3,2.4
c1.6,1.2,3.2,2.8,4.3,4.4c1.2,2,2.1,3.9,2.4,6.3c0.2,1.7,0.7,4.7,0.8,6.7c0.2,4,0,16.2,0,16.2c0,0.8,0.8,1.6,1.6,1.6
s1.6-0.8,1.6-1.6c0,0,0-12.3,0-16.2c0-1.6,0.5-5.1,0.8-6.7c0.5-2.3,0.8-4.4,2.4-6.3c1.2-1.6,2.8-3.2,4.3-4.4c2-1.2,3.9-2,6.3-2.4
c1.8-0.3,5.1-0.7,7.1-0.8c3.5-0.2,15.8,0,15.8,0c0.8,0,1.6-0.8,1.6-1.6C80,39.2,79.2,38.4,78.4,38.4C78.4,38.4,78.4,38.4,78.4,38.4z
"/>
</svg>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="mxd-hero-02-static__bottom hero-02-static-anim-el">
<div class="mxd-container fullwidth-container grid-container">
<div class="container-fluid p-0">
<div class="row g-0">
<div class="col-12 col-md-6 col-xl-4 mxd-grid-item no-margin">
<div class="mxd-paragraph__lists loading__fade">
<div class="container-fluid p-0">
<div class="row g-0">
<div class="col-6 col-xl-5">
<ul>
<li>
<p class="t-small anim-uni-in-up">Innovations</p>
</li>
<li>
<p class="t-small anim-uni-in-up">Creativity</p>
</li>
<li>
<p class="t-small anim-uni-in-up">Experience</p>
</li>
<li>
<p class="t-small anim-uni-in-up">Competence</p>
</li>
<li>
<p class="t-small anim-uni-in-up">Passion</p>
</li>
</ul>
</div>
<div class="col-6 col-xl-5">
<ul>
<li>
<p class="t-small anim-uni-in-up">IU/UX</p>
</li>
<li>
<p class="t-small anim-uni-in-up">App design</p>
</li>
<li>
<p class="t-small anim-uni-in-up">Development</p>
</li>
<li>
<p class="t-small anim-uni-in-up">Branding</p>
</li>
<li>
<p class="t-small anim-uni-in-up">Motion</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="mxd-hero-02-static__btn hero-02-static-anim-el loading__fade">
<a href="#0" class="btn-rotating btn-rotating-160">
<!-- SVG rotating text -->
<svg version="1.1" id="scrollDown" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 160 160" style="enable-background:new 0 0 160 160;" xml:space="preserve"
class="btn-rotating__text mxd-rotate" data-value="360">
<defs>
<path id="textPath" d="M149.7,80c0,38.5-31.2,69.7-69.7,69.7S10.3,118.5,10.3,80S41.5,10.3,80,10.3S149.7,41.5,149.7,80z"/>
</defs>
<g>
<use xlink:href="#textPath" fill="none"></use>
<text>
<!-- button text here!!! -->
<textPath xlink:href="#textPath">Scroll for More * Scroll for More * Scroll for More * </textPath>
</text>
</g>
</svg>
<!-- image -->
<!-- <img class="btn-rotating__image" src="img/icons/60x60_obj-btn-02.svg" alt="Object"> -->
<svg class="btn-rotating__image" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="60px" height="60px" viewBox="0 0 60 60" style="enable-background:new 0 0 60 60;" xml:space="preserve">
<style type="text/css">
.icon-star-scroll {
fill:var(--accent);
}
</style>
<path class="icon-star-scroll" d="M58.9,28.9c0,0-9.1,0.1-12.1,0c-1.3,0-5.3-0.5-5.3-0.5c-1.7-0.2-3.4-0.7-4.8-1.7c-1.4-1-2.7-2.3-3.6-3.7
c-0.8-1.3-1.3-2.7-1.5-4.2c0,0-0.4-3.3-0.5-4.4c-0.2-3.3,0-13.1,0-13.1c0-0.6-0.5-1.1-1.1-1.1s-1.1,0.5-1.1,1.1
c0,0,0.2,9.8,0,13.1c0,1.1-0.5,4.4-0.5,4.4c-0.2,1.5-0.6,3-1.5,4.2c-0.9,1.5-2.2,2.7-3.6,3.7s-3,1.5-4.7,1.7c0,0-3.7,0.4-5,0.5
c-3.1,0.2-12.5,0-12.5,0C0.5,28.9,0,29.4,0,30s0.5,1.1,1.1,1.1c0,0,9.4-0.2,12.5,0c1.2,0,5,0.5,5,0.5c1.7,0.2,3.3,0.7,4.7,1.7
c1.3,0.9,2.4,2,3.3,3.3c1,1.4,1.5,3.1,1.7,4.8c0,0,0.4,3.9,0.5,5.2c0.1,3,0,12.2,0,12.2c0,0.6,0.5,1.1,1.1,1.1s1.1-0.5,1.1-1.1
c0,0-0.1-9.2,0-12.2c0-1.3,0.5-5.2,0.5-5.2c0.2-1.7,0.7-3.4,1.7-4.8c0.9-1.3,2-2.4,3.3-3.3c1.4-1,3.1-1.5,4.8-1.7
c0,0,3.9-0.4,5.3-0.5c3-0.1,12.1,0,12.1,0c0.6,0,1.1-0.5,1.1-1.1s-0.5-1.1-1.1-1.1l0,0L58.9,28.9z"/>
</svg>
</a>
</div>
</div>
<div class="mxd-pinned-fullscreen__scroll">
<div class="mxd-hero-02-scroll__wrap">
<div class="mxd-hero-02-scroll__images">
<div class="mxd-hero-02-images__row mxd-hero-02-images__row-01">
<a class="mxd-hero-02-image__portrait portrait-01" href="project-details.html">
<div class="mxd-hero-02-image__inner type-01 anim-uni-in-up">
<img src="/porthomeimages/port3.png" alt="Hero Image">
<div class="mxd-preview-hover">
<i class="mxd-preview-hover__icon icon-small">
<img src="img/icons/icon-eye.svg" alt="Eye Icon">
</i>
</div>
</div>
</a>
<a class="mxd-hero-02-image__landscape landscape-01" href="project-details.html">
<div class="mxd-hero-02-image__inner type-03 anim-uni-in-up">
<img src="/porthomeimages/port1.png" alt="Hero Image">
<div class="mxd-preview-hover">
<i class="mxd-preview-hover__icon icon-small">
<img src="img/icons/icon-eye.svg" alt="Eye Icon">
</i>
</div>
</div>
</a>
<a class="mxd-hero-02-image__portrait portrait-02" href="project-details.html">
<div class="mxd-hero-02-image__inner type-01 anim-uni-in-up">
<img src="/porthomeimages/port4.png" alt="Hero Image">
<div class="mxd-preview-hover">
<i class="mxd-preview-hover__icon icon-small">
<img src="img/icons/icon-eye.svg" alt="Eye Icon">
</i>
</div>
</div>
</a>
</div>
<div class="mxd-hero-02-images__row mxd-hero-02-images__row-02">
<a class="mxd-hero-02-image__landscape landscape-02" href="project-details.html">
<div class="mxd-hero-02-image__inner type-03 anim-uni-in-up">
<img src="/porthomeimages/ditalproduct1.png" alt="Hero Image">
<div class="mxd-preview-hover">
<i class="mxd-preview-hover__icon icon-small">
<img src="img/icons/icon-eye.svg" alt="Eye Icon">
</i>
</div>
</div>
</a>
<a class="mxd-hero-02-image__portrait portrait-xl portrait-03" href="project-details.html">
<div class="mxd-hero-02-image__inner type-02 anim-uni-in-up">
<img src="/porthomeimages/port5.png" alt="Hero Image">
<div class="mxd-preview-hover">
<i class="mxd-preview-hover__icon icon-small">
<img src="img/icons/icon-eye.svg" alt="Eye Icon">
</i>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
<div class="mxd-pinned-fullscreen__tl-trigger"></div>
</div>
</div>
<!-- Hero Section End -->
<!-- Section - Services/Features Stacking Cards Start -->
<div class="mxd-section padding-stacked-section">
<div class="mxd-container grid-container">
<!-- Block - Services/Features Stacking Cards Start -->
<div class="mxd-block mxd-grid-item no-margin">
<div class="content__block">
<div class="stack-wrapper mxd-hero-02-stack">
<div class="stack-offset"></div>
<div class="services-stack">
<!-- services stack single item -->
<div class="stack-item">
<div class="mxd-services-stack__inner showcase-inner bg-base-opp">
<div class="mxd-services-stack__container">
<div class="mxd-services-stack__title showcase-title">
<h3 class="opposite">Digital products</h3>
<span class="mxd-services-stack__number t-opp-muted">/01</span>
</div>
<div class="mxd-services-stack__info showcase-info">
<p class="t-opposite">We create visually compelling designs that enhance user experience.
We make sure your brand's visuals resonate with your audience.</p>
</div>
<div class="mxd-services-stack__works">
<a class="mxd-services-stack__work" href="project-details.html">
<img class="mxd-services-stack__preview" src="/porthomeimages/ditalproduct1.png" alt="Work Preview">
<div class="mxd-services-stack__tags tags-absolute">
<span class="tag tag-default tag-permanent">Sora</span>
<span class="tag tag-default tag-permanent">AI</span>
<span class="tag tag-default tag-permanent">Editorial</span>
</div>
<div class="mxd-preview-hover">
<i class="mxd-preview-hover__icon icon-small">
<img src="img/icons/icon-eye.svg" alt="Eye Icon">
</i>
</div>
</a>
<a class="mxd-services-stack__work" href="project-details.html">
<img class="mxd-services-stack__preview" src="/porthomeimages/ditalproduct2.png" alt="Work Preview">
<div class="mxd-services-stack__tags tags-absolute">
<span class="tag tag-default tag-permanent">Frontend</span>
<span class="tag tag-default tag-permanent">Interactions</span>
<span class="tag tag-default tag-permanent">Web</span>
</div>
<div class="mxd-preview-hover">
<i class="mxd-preview-hover__icon icon-small">
<img src="img/icons/icon-eye.svg" alt="Eye Icon">
</i>
</div>
</a>
</div>
</div>
</div>
</div>
<!-- services stack single item -->
<div class="stack-item">
<div class="mxd-services-stack__inner showcase-inner bg-accent">
<div class="mxd-services-stack__title showcase-title">
<h3 class="opposite">Corporate websites</h3>
<span class="mxd-services-stack__number t-opp-brigth">/02</span>
</div>
<div class="mxd-services-stack__info showcase-info">
<p class="t-opposite">We create visually compelling designs that enhance user experience.
We make sure your brand's visuals resonate with your audience.</p>
</div>
<div class="mxd-services-stack__works">
<a class="mxd-services-stack__work" href="project-details.html">
<img class="mxd-services-stack__preview" src="/porthomeimages/corpweb1.png" alt="Work Preview">
<div class="mxd-services-stack__tags tags-absolute">
<span class="tag tag-default tag-permanent">Frontend</span>
<span class="tag tag-default tag-permanent">Interactions</span>
<span class="tag tag-default tag-permanent">Web</span>
</div>
<div class="mxd-preview-hover">
<i class="mxd-preview-hover__icon icon-small">
<img src="img/icons/icon-eye.svg" alt="Eye Icon">
</i>
</div>
</a>
<a class="mxd-services-stack__work" href="project-details.html">
<img class="mxd-services-stack__preview" src="/porthomeimages/corpweb2.png" alt="Work Preview">
<div class="mxd-services-stack__tags tags-absolute">
<span class="tag tag-default tag-permanent">Brand</span>
<span class="tag tag-default tag-permanent">Illustrations</span>
<span class="tag tag-default tag-permanent">Web</span>
</div>
<div class="mxd-preview-hover">
<i class="mxd-preview-hover__icon icon-small">
<img src="img/icons/icon-eye.svg" alt="Eye Icon">
</i>
</div>
</a>
</div>
</div>
</div>
<!-- services stack single item -->
<div class="stack-item">
<div class="mxd-services-stack__inner radius-dark showcase-inner bg-base-tint">
<div class="mxd-services-stack__title showcase-title">
<h3>eCommerce</h3>
<span class="mxd-services-stack__number t-muted-extra">/03</span>
</div>
<div class="mxd-services-stack__info showcase-info">
<p>We create visually compelling designs that enhance user experience. We make sure
your brand's visuals resonate with your audience.</p>
</div>
<div class="mxd-services-stack__works">
<a class="mxd-services-stack__work" href="project-details.html">
<img class="mxd-services-stack__preview" src="/porthomeimages/ecom1.png" alt="Work Preview">
<div class="mxd-services-stack__tags tags-absolute">
<span class="tag tag-default tag-permanent">Design</span>
<span class="tag tag-default tag-permanent">UI/UX</span>
<span class="tag tag-default tag-permanent">Android</span>
</div>
<div class="mxd-preview-hover">
<i class="mxd-preview-hover__icon icon-small">
<img src="img/icons/icon-eye.svg" alt="Eye Icon">
</i>
</div>
</a>
<a class="mxd-services-stack__work" href="project-details.html">
<img class="mxd-services-stack__preview" src="/porthomeimages/ecom2.png" alt="Work Preview">
<div class="mxd-services-stack__tags tags-absolute">
<span class="tag tag-default tag-permanent">IU/UX design</span>
<span class="tag tag-default tag-permanent">Development</span>
</div>
<div class="mxd-preview-hover">
<i class="mxd-preview-hover__icon icon-small">
<img src="img/icons/icon-eye.svg" alt="Eye Icon">
</i>
</div>
</a>
</div>
</div>
</div>
<!-- services stack single item -->
<div class="stack-item">
<div class="mxd-services-stack__inner showcase-inner bg-base-opp">
<div class="mxd-services-stack__title showcase-title">
<h3 class="opposite">Brand identity</h3>
<span class="mxd-services-stack__number t-opp-muted">/04</span>
</div>
<div class="mxd-services-stack__info showcase-info">
<p class="t-opposite">We create visually compelling designs that enhance user experience.
We make sure your brand's visuals resonate with your audience.</p>
</div>
<div class="mxd-services-stack__works">
<a class="mxd-services-stack__work" href="project-details.html">
<img class="mxd-services-stack__preview" src="/porthomeimages/brand1.png" alt="Work Preview">
<div class="mxd-services-stack__tags tags-absolute">
<span class="tag tag-default tag-permanent">Brand</span>
<span class="tag tag-default tag-permanent">Style guides</span>
</div>
<div class="mxd-preview-hover">
<i class="mxd-preview-hover__icon icon-small">
<img src="img/icons/icon-eye.svg" alt="Eye Icon">
</i>
</div>
</a>
<a class="mxd-services-stack__work" href="project-details.html">
<img class="mxd-services-stack__preview" src="/porthomeimages/brand2.png" alt="Work Preview">
<div class="mxd-services-stack__tags tags-absolute">
<span class="tag tag-default tag-permanent">Interactions</span>
<span class="tag tag-default tag-permanent">Web</span>
<span class="tag tag-default tag-permanent">Style guides</span>
</div>
<div class="mxd-preview-hover">
<i class="mxd-preview-hover__icon icon-small">
<img src="img/icons/icon-eye.svg" alt="Eye Icon">
</i>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Block - Services/Features Stacking Cards End -->
</div>
</div>
<!-- Section - Services/Features Stacking Cards End -->
<!-- Section - Our Capabilities List Small Start -->
<div class="mxd-section overflow-hidden padding-grid-pre-mtext">
<div class="mxd-container grid-container">
<!-- Block - Section Title Start -->
<div class="mxd-block">
<div class="mxd-section-title">
<div class="container-fluid p-0">
<div class="row g-0">
<div class="col-12 col-xl-6 mxd-grid-item no-margin">
<div class="mxd-section-title__hrtitle">
<h2 class="reveal-type">Our capabilities</h2>
</div>
</div>
<div class="col-12 col-xl-3 mxd-grid-item no-margin">
<div class="mxd-section-title__hrdescr">
<p class="anim-uni-in-up">Design</p>
<p class="anim-uni-in-up">Development</p>
<p class="anim-uni-in-up">Mastership</p>
</div>
</div>
<div class="col-12 col-xl-3 mxd-grid-item no-margin">
<div class="mxd-section-title__hrcontrols anim-uni-in-up">
<a class="btn btn-anim btn-default btn-outline slide-right-up" href="works-masonry.html">
<span class="btn-caption">Works</span>
<i class="ph-bold ph-arrow-up-right"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Block - Section Title End -->
<!-- Block - Our Capabilities List Start -->
<div class="mxd-block">
<div class="container-fluid p-0">
<div class="row g-0">
<div class="col-12 mxd-grid-item no-margin">
<div class="mxd-cpb-list">
<!-- item -->
<div class="mxd-cpb-list__item hover-reveal__item">
<div class="mxd-cpb-list__divider anim-uni-in-up"></div>
<div class="hover-reveal__content hover-reveal-280x340">
<img class="hover-reveal__image" src="/porthomeimages/uiux.png" alt="Project Preview">
</div>
<div class="mxd-cpb-list__content anim-uni-in-up">
<h6 class="mxd-cpb-list__title">UI/UX design</h6>
<div class="mxd-cpb-list__num">
<span>/ 01</span>
</div>
</div>
<div class="mxd-cpb-list__image anim-uni-in-up">
<img src="https://dummyimage.com/1200x800/5d5d5d/838383" alt="Project Preview">
</div>
<div class="mxd-cpb-list__divider anim-uni-in-up"></div>
</div>
<!-- item -->
<div class="mxd-cpb-list__item hover-reveal__item">
<div class="mxd-cpb-list__divider anim-uni-in-up"></div>
<div class="hover-reveal__content hover-reveal-280x340">
<img class="hover-reveal__image" src="/porthomeimages/website.png" alt="Project Preview">
</div>
<div class="mxd-cpb-list__content anim-uni-in-up">
<h6 class="mxd-cpb-list__title">Hi-end websites</h6>
<div class="mxd-cpb-list__num">
<span>/ 02</span>
</div>
</div>
<div class="mxd-cpb-list__image anim-uni-in-up">
<img src="https://dummyimage.com/1200x800/5d5d5d/838383" alt="Project Preview">
</div>
<div class="mxd-cpb-list__divider anim-uni-in-up"></div>
</div>
<!-- item -->
<div class="mxd-cpb-list__item hover-reveal__item">
<div class="mxd-cpb-list__divider anim-uni-in-up"></div>
<div class="hover-reveal__content hover-reveal-280x340">
<img class="hover-reveal__image" src="porthomeimages/deisngproduct.png" alt="Project Preview">
</div>
<div class="mxd-cpb-list__content anim-uni-in-up">
<h6 class="mxd-cpb-list__title">Product design</h6>
<div class="mxd-cpb-list__num">
<span>/ 03</span>
</div>
</div>
<div class="mxd-cpb-list__image anim-uni-in-up">
<img src="https://dummyimage.com/1200x800/5d5d5d/838383" alt="Project Preview">
</div>
<div class="mxd-cpb-list__divider anim-uni-in-up"></div>
</div>
<!-- item -->
<div class="mxd-cpb-list__item hover-reveal__item">
<div class="mxd-cpb-list__divider anim-uni-in-up"></div>
<div class="hover-reveal__content hover-reveal-280x340">
<img class="hover-reveal__image" src="/porthomeimages/webmobile.png" alt="Project Preview">
</div>
<div class="mxd-cpb-list__content anim-uni-in-up">
<h6 class="mxd-cpb-list__title">Web & mobile apps</h6>
<div class="mxd-cpb-list__num">
<span>/ 04</span>
</div>
</div>
<!-- <div class="mxd-cpb-list__image anim-uni-in-up">
<img src="https://dummyimage.com/1200x800/5d5d5d/838383" alt="Project Preview">
</div>
<div class="mxd-cpb-list__divider anim-uni-in-up"></div>
</div> -->
<!-- item -->
<!-- <div class="mxd-cpb-list__item hover-reveal__item">
<div class="mxd-cpb-list__divider anim-uni-in-up"></div>
<div class="hover-reveal__content hover-reveal-280x340">
<img class="hover-reveal__image" src="https://dummyimage.com/600x730/5d5d5d/838383" alt="Project Preview">
</div>
<div class="mxd-cpb-list__content anim-uni-in-up">
<h6 class="mxd-cpb-list__title">Project management</h6>
<div class="mxd-cpb-list__num">
<span>/ 05</span>
</div>
</div>
<div class="mxd-cpb-list__image anim-uni-in-up">
<img src="https://dummyimage.com/1200x800/5d5d5d/838383" alt="Project Preview">
</div>
<div class="mxd-cpb-list__divider anim-uni-in-up"></div>
</div> -->
</div>
</div>
</div>
</div>
</div>
<!-- Block - Our Capabilities List Start -->
</div>
</div>
<!-- Section - Our Capabilities List Small End -->
<!-- Section - Marquee Text One Line Start -->
<div class="mxd-section padding-mtext-pre-grid">
<div class="mxd-container fullwidth-container">
<!-- Block - Marquee Text One Line Start -->
<div class="mxd-block">
<div class="marquee marquee-right--gsap muted-extra">
<div class="marquee__toright">
<!-- single item -->
<div class="marquee__item one-line item-regular text">
<p class="marquee__text">Design</p>
<div class="marquee__image">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80" fill="currentColor">
<path fill="currentColor" d="M78.4,38.4c0,0-11.8,0-15.8,0c-1.6,0-4.8-0.2-7.1-0.8c-2.3-0.6-4.3-0.8-6.3-2.4c-2-1.2-3.5-3.2-4.7-4.8
c-1.2-1.6-1.6-3.6-2-5.5c-0.3-1.5-0.7-4.3-0.8-5.9c-0.2-4.3,0-17.4,0-17.4C41.8,0.8,41,0,40.2,0s-1.6,0.8-1.6,1.6c0,0,0,13.1,0,17.4
c0,1.6-0.6,4.3-0.8,5.9c-0.3,2-0.8,4-2,5.5c-1.2,2-2.8,3.6-4.7,4.8s-4,1.8-6.3,2.4c-1.9,0.5-4.7,0.6-6.7,0.8c-3.9,0.4-16.6,0-16.6,0
C0.8,38.4,0,39.2,0,40c0,0.8,0.8,1.6,1.6,1.6c0,0,12.2,0,16.6,0c1.6,0,4.8,0.3,6.7,0.8c2.3,0.6,4.3,0.8,6.3,2.4
c1.6,1.2,3.2,2.8,4.3,4.4c1.2,2,2.1,3.9,2.4,6.3c0.2,1.7,0.7,4.7,0.8,6.7c0.2,4,0,16.2,0,16.2c0,0.8,0.8,1.6,1.6,1.6
s1.6-0.8,1.6-1.6c0,0,0-12.3,0-16.2c0-1.6,0.5-5.1,0.8-6.7c0.5-2.3,0.8-4.4,2.4-6.3c1.2-1.6,2.8-3.2,4.3-4.4c2-1.2,3.9-2,6.3-2.4
c1.8-0.3,5.1-0.7,7.1-0.8c3.5-0.2,15.8,0,15.8,0c0.8,0,1.6-0.8,1.6-1.6C80,39.2,79.2,38.4,78.4,38.4C78.4,38.4,78.4,38.4,78.4,38.4z
"/>
</svg>
</div>
</div>
<!-- single item -->
<div class="marquee__item one-line item-regular text">
<p class="marquee__text">Development</p>
<div class="marquee__image">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80" fill="currentColor">
<path fill="currentColor" d="M78.4,38.4c0,0-11.8,0-15.8,0c-1.6,0-4.8-0.2-7.1-0.8c-2.3-0.6-4.3-0.8-6.3-2.4c-2-1.2-3.5-3.2-4.7-4.8
c-1.2-1.6-1.6-3.6-2-5.5c-0.3-1.5-0.7-4.3-0.8-5.9c-0.2-4.3,0-17.4,0-17.4C41.8,0.8,41,0,40.2,0s-1.6,0.8-1.6,1.6c0,0,0,13.1,0,17.4
c0,1.6-0.6,4.3-0.8,5.9c-0.3,2-0.8,4-2,5.5c-1.2,2-2.8,3.6-4.7,4.8s-4,1.8-6.3,2.4c-1.9,0.5-4.7,0.6-6.7,0.8c-3.9,0.4-16.6,0-16.6,0
C0.8,38.4,0,39.2,0,40c0,0.8,0.8,1.6,1.6,1.6c0,0,12.2,0,16.6,0c1.6,0,4.8,0.3,6.7,0.8c2.3,0.6,4.3,0.8,6.3,2.4
c1.6,1.2,3.2,2.8,4.3,4.4c1.2,2,2.1,3.9,2.4,6.3c0.2,1.7,0.7,4.7,0.8,6.7c0.2,4,0,16.2,0,16.2c0,0.8,0.8,1.6,1.6,1.6
s1.6-0.8,1.6-1.6c0,0,0-12.3,0-16.2c0-1.6,0.5-5.1,0.8-6.7c0.5-2.3,0.8-4.4,2.4-6.3c1.2-1.6,2.8-3.2,4.3-4.4c2-1.2,3.9-2,6.3-2.4
c1.8-0.3,5.1-0.7,7.1-0.8c3.5-0.2,15.8,0,15.8,0c0.8,0,1.6-0.8,1.6-1.6C80,39.2,79.2,38.4,78.4,38.4C78.4,38.4,78.4,38.4,78.4,38.4z
"/>
</svg>
</div>
</div>
<!-- single item -->
<div class="marquee__item one-line item-regular text">
<p class="marquee__text">Branding</p>
<div class="marquee__image">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80" fill="currentColor">
<path fill="currentColor" d="M78.4,38.4c0,0-11.8,0-15.8,0c-1.6,0-4.8-0.2-7.1-0.8c-2.3-0.6-4.3-0.8-6.3-2.4c-2-1.2-3.5-3.2-4.7-4.8
c-1.2-1.6-1.6-3.6-2-5.5c-0.3-1.5-0.7-4.3-0.8-5.9c-0.2-4.3,0-17.4,0-17.4C41.8,0.8,41,0,40.2,0s-1.6,0.8-1.6,1.6c0,0,0,13.1,0,17.4
c0,1.6-0.6,4.3-0.8,5.9c-0.3,2-0.8,4-2,5.5c-1.2,2-2.8,3.6-4.7,4.8s-4,1.8-6.3,2.4c-1.9,0.5-4.7,0.6-6.7,0.8c-3.9,0.4-16.6,0-16.6,0
C0.8,38.4,0,39.2,0,40c0,0.8,0.8,1.6,1.6,1.6c0,0,12.2,0,16.6,0c1.6,0,4.8,0.3,6.7,0.8c2.3,0.6,4.3,0.8,6.3,2.4
c1.6,1.2,3.2,2.8,4.3,4.4c1.2,2,2.1,3.9,2.4,6.3c0.2,1.7,0.7,4.7,0.8,6.7c0.2,4,0,16.2,0,16.2c0,0.8,0.8,1.6,1.6,1.6
s1.6-0.8,1.6-1.6c0,0,0-12.3,0-16.2c0-1.6,0.5-5.1,0.8-6.7c0.5-2.3,0.8-4.4,2.4-6.3c1.2-1.6,2.8-3.2,4.3-4.4c2-1.2,3.9-2,6.3-2.4
c1.8-0.3,5.1-0.7,7.1-0.8c3.5-0.2,15.8,0,15.8,0c0.8,0,1.6-0.8,1.6-1.6C80,39.2,79.2,38.4,78.4,38.4C78.4,38.4,78.4,38.4,78.4,38.4z
"/>
</svg>
</div>
</div>
<!-- single item -->
<div class="marquee__item one-line item-regular text">
<p class="marquee__text">eCommerce</p>
<div class="marquee__image">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80" fill="currentColor">
<path fill="currentColor" d="M78.4,38.4c0,0-11.8,0-15.8,0c-1.6,0-4.8-0.2-7.1-0.8c-2.3-0.6-4.3-0.8-6.3-2.4c-2-1.2-3.5-3.2-4.7-4.8
c-1.2-1.6-1.6-3.6-2-5.5c-0.3-1.5-0.7-4.3-0.8-5.9c-0.2-4.3,0-17.4,0-17.4C41.8,0.8,41,0,40.2,0s-1.6,0.8-1.6,1.6c0,0,0,13.1,0,17.4
c0,1.6-0.6,4.3-0.8,5.9c-0.3,2-0.8,4-2,5.5c-1.2,2-2.8,3.6-4.7,4.8s-4,1.8-6.3,2.4c-1.9,0.5-4.7,0.6-6.7,0.8c-3.9,0.4-16.6,0-16.6,0
C0.8,38.4,0,39.2,0,40c0,0.8,0.8,1.6,1.6,1.6c0,0,12.2,0,16.6,0c1.6,0,4.8,0.3,6.7,0.8c2.3,0.6,4.3,0.8,6.3,2.4
c1.6,1.2,3.2,2.8,4.3,4.4c1.2,2,2.1,3.9,2.4,6.3c0.2,1.7,0.7,4.7,0.8,6.7c0.2,4,0,16.2,0,16.2c0,0.8,0.8,1.6,1.6,1.6
s1.6-0.8,1.6-1.6c0,0,0-12.3,0-16.2c0-1.6,0.5-5.1,0.8-6.7c0.5-2.3,0.8-4.4,2.4-6.3c1.2-1.6,2.8-3.2,4.3-4.4c2-1.2,3.9-2,6.3-2.4
c1.8-0.3,5.1-0.7,7.1-0.8c3.5-0.2,15.8,0,15.8,0c0.8,0,1.6-0.8,1.6-1.6C80,39.2,79.2,38.4,78.4,38.4C78.4,38.4,78.4,38.4,78.4,38.4z
"/>
</svg>
</div>
</div>
<!-- single item -->
<div class="marquee__item one-line item-regular text">
<p class="marquee__text">Mobile Apps</p>
<div class="marquee__image">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80" fill="currentColor">
<path fill="currentColor" d="M78.4,38.4c0,0-11.8,0-15.8,0c-1.6,0-4.8-0.2-7.1-0.8c-2.3-0.6-4.3-0.8-6.3-2.4c-2-1.2-3.5-3.2-4.7-4.8
c-1.2-1.6-1.6-3.6-2-5.5c-0.3-1.5-0.7-4.3-0.8-5.9c-0.2-4.3,0-17.4,0-17.4C41.8,0.8,41,0,40.2,0s-1.6,0.8-1.6,1.6c0,0,0,13.1,0,17.4
c0,1.6-0.6,4.3-0.8,5.9c-0.3,2-0.8,4-2,5.5c-1.2,2-2.8,3.6-4.7,4.8s-4,1.8-6.3,2.4c-1.9,0.5-4.7,0.6-6.7,0.8c-3.9,0.4-16.6,0-16.6,0
C0.8,38.4,0,39.2,0,40c0,0.8,0.8,1.6,1.6,1.6c0,0,12.2,0,16.6,0c1.6,0,4.8,0.3,6.7,0.8c2.3,0.6,4.3,0.8,6.3,2.4
c1.6,1.2,3.2,2.8,4.3,4.4c1.2,2,2.1,3.9,2.4,6.3c0.2,1.7,0.7,4.7,0.8,6.7c0.2,4,0,16.2,0,16.2c0,0.8,0.8,1.6,1.6,1.6
s1.6-0.8,1.6-1.6c0,0,0-12.3,0-16.2c0-1.6,0.5-5.1,0.8-6.7c0.5-2.3,0.8-4.4,2.4-6.3c1.2-1.6,2.8-3.2,4.3-4.4c2-1.2,3.9-2,6.3-2.4
c1.8-0.3,5.1-0.7,7.1-0.8c3.5-0.2,15.8,0,15.8,0c0.8,0,1.6-0.8,1.6-1.6C80,39.2,79.2,38.4,78.4,38.4C78.4,38.4,78.4,38.4,78.4,38.4z
"/>
</svg>
</div>
</div>
</div>
</div>
</div>
<!-- Block - Marquee Text One Line End -->
</div>
</div>
<!-- Section - Marquee Text One Line End -->
<!-- Section - Statistics Cards Start -->
<div class="mxd-section overflow-hidden padding-pre-title">
<div class="mxd-container grid-container">
<!-- Block - Statistics Cards Start -->
<div class="mxd-block">
<div class="mxd-stats-cards">
<div class="container-fluid px-0">
<div class="row gx-0">
<!-- item -->
<div class="col-12 col-xl-5 mxd-stats-cards__item mxd-grid-item anim-uni-scale-in-right">
<div class="mxd-stats-cards__inner align-end bg-accent radius-m padding-4">
<div class="mxd-counter align-end">
<p id="stats-counter-1" class="mxd-counter__number mxd-stats-number opposite">0</p>
<p class="mxd-counter__descr t-140 t-bright opposite">Happy clients who<br>trust our work</p>
</div>
<div class="mxd-stats-cards__btngroup">
<a class="btn btn-anim btn-default btn-outline opposite slide-right-up" href="about-us.html">
<span class="btn-caption">Studio</span>
<i class="ph-bold ph-arrow-up-right"></i>
</a>
</div>
<div class="mxd-stats-cards__image mxd-stats-cards-image-1">
<img src="/porthomeimages/800x800_card-image-01.webp" alt="Illustration">
</div>
</div>
</div>
<!-- item -->
<div class="col-12 col-xl-7 mxd-stats-cards__item mxd-grid-item anim-uni-scale-in-left">
<div class="mxd-stats-cards__inner align-end bg-base-tint radius-m padding-4">
<div class="mxd-stats-cards__btngroup">
<div class="mxd-avatars">
<div class="mxd-avatars__item">
<img src="/porthomeimages/300x300_ava-01.webp" alt="Avatar">
</div>
<div class="mxd-avatars__item bg-base-opp">
<svg class="mxd-avatars__icon" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="60px" height="60px" viewBox="0 0 60 60" style="enable-background:new 0 0 60 60;" xml:space="preserve">
<style type="text/css">
.icon-star {
fill:var(--additional);
}
</style>
<path class="icon-star" d="M58.9,28.9c0,0-9.1,0.1-12.1,0c-1.3,0-5.3-0.5-5.3-0.5c-1.7-0.2-3.4-0.7-4.8-1.7c-1.4-1-2.7-2.3-3.6-3.7
c-0.8-1.3-1.3-2.7-1.5-4.2c0,0-0.4-3.3-0.5-4.4c-0.2-3.3,0-13.1,0-13.1c0-0.6-0.5-1.1-1.1-1.1s-1.1,0.5-1.1,1.1
c0,0,0.2,9.8,0,13.1c0,1.1-0.5,4.4-0.5,4.4c-0.2,1.5-0.6,3-1.5,4.2c-0.9,1.5-2.2,2.7-3.6,3.7s-3,1.5-4.7,1.7c0,0-3.7,0.4-5,0.5
c-3.1,0.2-12.5,0-12.5,0C0.5,28.9,0,29.4,0,30s0.5,1.1,1.1,1.1c0,0,9.4-0.2,12.5,0c1.2,0,5,0.5,5,0.5c1.7,0.2,3.3,0.7,4.7,1.7
c1.3,0.9,2.4,2,3.3,3.3c1,1.4,1.5,3.1,1.7,4.8c0,0,0.4,3.9,0.5,5.2c0.1,3,0,12.2,0,12.2c0,0.6,0.5,1.1,1.1,1.1s1.1-0.5,1.1-1.1
c0,0-0.1-9.2,0-12.2c0-1.3,0.5-5.2,0.5-5.2c0.2-1.7,0.7-3.4,1.7-4.8c0.9-1.3,2-2.4,3.3-3.3c1.4-1,3.1-1.5,4.8-1.7
c0,0,3.9-0.4,5.3-0.5c3-0.1,12.1,0,12.1,0c0.6,0,1.1-0.5,1.1-1.1s-0.5-1.1-1.1-1.1l0,0L58.9,28.9z"/>
</svg>
</div>
<div class="mxd-avatars__item">
<img src="porthomeimages/300x300_ava-02.webp" alt="Avatar">
</div>
</div>
</div>
<div class="mxd-counter align-end">
<p id="stats-counter-2" class="mxd-counter__number mxd-stats-number">0</p>
<p class="mxd-counter__descr t-140 t-bright">Clients come back for<br>a new projects</p>
</div>
<div class="mxd-stats-cards__image mxd-stats-cards-image-2">
<img src="emoji.png" alt="Illustration">