-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest.html
More file actions
1540 lines (1362 loc) · 207 KB
/
Copy pathtest.html
File metadata and controls
1540 lines (1362 loc) · 207 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
<html lang="en" data-page-status="loading">
<head>
<!-- META TAGS -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Title -->
<title>Services | MDX</title>
<!-- Meta Description -->
<meta name="description" content="MDX is a creative agency that blends modern UI/UX design, web and app development, immersive 3D experiences, and strategic branding to help bold brands stand out." />
<!-- Meta Keywords -->
<meta name="keywords" content="creative agency, UI design, UX design, web development, app development, 3D experiences, branding, immersive websites, MDX, modern design, digital agency" />
<!-- Open Graph / Facebook -->
<meta property="og:title" content="MDX | UI/UX, Web/App Development, 3D & Branding Agency" />
<meta property="og:description" content="MDX blends cutting-edge UI/UX, web & app development, branding, and immersive 3D to craft standout digital experiences." />
<meta property="og:image" content="https://mdx.so/mdx-og.webp" />
<meta property="og:url" content="https://mdx.so" />
<link rel="canonical" href="https://mdx.so/services" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="MDX" />
<!-- JSON-LD Structured Data -->
<script type="application/ld+json">
{ "@context": "https://schema.org", "@type": "Organization", "name": "MDX", "url": "https://mdx.so", "logo": "https://mdx.so/logo.png", "description": "A creative agency specializing in UI/UX design, web & app development, 3D experiences, and branding for standout digital products.", "sameAs": ["https://www.instagram.com/marcelodesignx", "https://www.tiktok.com/@marcelodesignx", "https://www.linkedin.com/company/marcelo-design-x"], "address": { "@type": "PostalAddress", "addressLocality":
"Houston", "addressRegion": "Texas", "postalCode": "77063", "addressCountry": "USA" }, "contactPoint": { "@type": "ContactPoint", "telephone": "+1-868-480-6621", "contactType": "Customer Support", "email": "hello@mdx.so" } }
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-1NT1EQGZ7K"></script>
<script>
window.dataLayer = window.dataLayer || []; function gtag() { dataLayer.push(arguments); } gtag("js", new Date()); gtag("config", "G-1NT1EQGZ7K");
</script>
<!-- TikTok Pixel Code Start -->
<script>
!(function (w, d, t) { w.TiktokAnalyticsObject = t; var ttq = (w[t] = w[t] || []); ((ttq.methods = ["page", "track", "identify", "instances", "debug", "on", "off", "once", "ready", "alias", "group", "enableCookie", "disableCookie", "holdConsent", "revokeConsent", "grantConsent"]), (ttq.setAndDefer = function (t, e) { t[e] = function () { t.push([e].concat(Array.prototype.slice.call(arguments, 0))); }; })); for (var i = 0; i < ttq.methods.length; i++) ttq.setAndDefer(ttq, ttq.methods[i]);
((ttq.instance = function (t) { for (var e = ttq._i[t] || [], n = 0; n < ttq.methods.length; n++) ttq.setAndDefer(e, ttq.methods[n]); return e; }), (ttq.load = function (e, n) { var r = "https://analytics.tiktok.com/i18n/pixel/events.js", o = n && n.partner; ((ttq._i = ttq._i || {}), (ttq._i[e] = []), (ttq._i[e]._u = r), (ttq._t = ttq._t || {}), (ttq._t[e] = +new Date()), (ttq._o = ttq._o || {}), (ttq._o[e] = n || {})); n = document.createElement("script"); ((n.type = "text/javascript"),
(n.async = !0), (n.src = r + "?sdkid=" + e + "&lib=" + t)); e = document.getElementsByTagName("script")[0]; e.parentNode.insertBefore(n, e); })); ttq.load("D4K7GTRC77U3F3CUAUMG"); ttq.page(); })(window, document, "ttq");
</script>
<!-- TikTok Pixel Code End -->
<!-- Meta Pixel Code -->
<script>
!(function (f, b, e, v, n, t, s) { if (f.fbq) return; n = f.fbq = function () { n.callMethod ? n.callMethod.apply(n, arguments) : n.queue.push(arguments); }; if (!f._fbq) f._fbq = n; n.push = n; n.loaded = !0; n.version = "2.0"; n.queue = []; t = b.createElement(e); t.async = !0; t.src = v; s = b.getElementsByTagName(e)[0]; s.parentNode.insertBefore(t, s); })(window, document, "script", "https://connect.facebook.net/en_US/fbevents.js"); fbq("init", "1297655185716162"); fbq("track",
"PageView");
</script>
<noscript><img height="1" width="1" style="display: none" src="https://www.facebook.com/tr?id=1297655185716162&ev=PageView&noscript=1" /></noscript>
<!-- End Meta Pixel Code -->
<!-- FAVICON -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<!-- STYLES -->
<link rel="stylesheet" href="/dist/css/services.min.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
</head>
<body>
<!-- NAVBAR -->
<nav class="navbar">
<!-- LEFT WRAPPER -->
<div class="navbar-left" data-loader-fade-element-negative>
<div class="navbar-left__logo-wrapper">
<a href="/" aria-label="Return to Homepage">
<svg width="93" height="18" viewBox="0 0 93 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M5.2381 0C7.33333 0 8.73016 1.42857 9.42857 4.28571L11 9.49286L12.5714 4.28571C13.2698 1.42857 14.6667 0 16.7619 0C20.254 0 22 1.78571 22 5.35714V15H17.8095V4.82143C17.8095 4.46429 17.6349 4.28571 17.2857 4.28571C16.9365 4.28571 16.5873 5 16.2381 6.42857L14.1429 12.8571C13.7937 14.2857 12.9206 15 11.5238 15H10.4762C9.07937 15 8.20635 14.2857 7.85714 12.8571L5.7619 6.42857C5.4127 5 5.06349 4.28571 4.71429 4.28571C4.36508 4.28571 4.19048 4.46429 4.19048 4.82143V15H0V5.35714C0 1.78571 1.74603 0 5.2381 0Z"
fill="#111822"
/>
<path d="M36 3.21429V0H48.6667C52.8889 0 55 1.78571 55 5.35714V10.7143C55 13.5714 52.8889 15 48.6667 15H36V6.42857H40.2222V11.7857H48.6667C50.0741 11.7857 50.7778 11.0714 50.7778 9.64286V5.35714C50.7778 3.92857 50.0741 3.21429 48.6667 3.21429H36Z" fill="#111822" />
<path d="M70 0L77.8964 7.60992L70 15.2198H75.2643L80.5286 10.1429L87.7357 18H93L83.1607 7.60992L91.0571 0H85.7928L80.5286 5.0769L75.2643 0H70Z" fill="#111822" />
</svg>
</a>
</div>
<div class="navbar-left__divider"></div>
<div id="waveButton" class="navbar-left__wave-wrapper">
<svg id="waveSvg" fill="none" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid meet">
<polyline id="poly" />
</svg>
<!-- <canvas id="waveCanvas"></canvas> -->
</div>
</div>
<!-- CENTER WRAPPER -->
<div class="navbar-center" data-loader-fade-element-negative>
<a href="/" class="navbar-center__link">Home</a>
<a href="/projects" class="navbar-center__link">Projects</a>
<a href="/services" class="navbar-center__link --is-active">Services</a>
</div>
<!-- RIGHT WRAPPER -->
<div class="navbar-right" data-loader-fade-element-negative>
<a href="/contact" aria-label="Let's talk button" class="cta-1 btn-animate-chars">
<div class="btn-animate-chars__bg"></div>
<span data-button-animate-chars="" class="btn-animate-chars__text" translate="no">Let’s talk</span>
<span class="cta-1__arrow-wrapper">
<svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4.46054 0.646175L4.46053 2.42847L9.06702 2.42847L0.152926 10.1178L1.30269 11.4507L10.2168 3.76136L10.2168 8.55799L12.1526 8.55799L12.1526 0.646163L4.46054 0.646175Z" fill="#FF6711" />
</svg>
</span>
</a>
<div class="navbar-right__divider"></div>
<div class="navbar-right__menu-button__wrapper" data-menu-toggle>
<span class="navbar__menu-bar --is-top"></span>
<span class="navbar__menu-bar --is-bottom"></span>
</div>
</div>
</nav>
<!-- MENU -->
<div class="menu">
<!-- ellipses -->
<div class="menu__ellipse menu__ellipse-1"></div>
<div class="menu__ellipse menu__ellipse-2"></div>
<!-- inner wrapper -->
<div class="menu__wrapper">
<!-- close button -->
<div class="menu-close" data-menu-toggle>
<svg xmlns="http://www.w3.org/2000/svg" width="34" height="34" viewBox="0 0 34 34" fill="none">
<rect id="menu-close-bar-1" x="1.58984" y="0.0998535" width="45.6946" height="2.24728" transform="rotate(45 1.58984 0.0998535)" fill="#111822" />
<rect id="menu-close-bar-2" x="0.0898438" y="32.311" width="45.6946" height="2.24728" transform="rotate(-45 0.0898438 32.311)" fill="#111822" />
</svg>
</div>
<!-- connect block -->
<div class="menu__connect">
<div class="menu__connect-heading" data-menu-heading>
<span class="menu__connect-heading-icon"></span>
<span class="menu__connect-heading-text">Connect with us!</span>
</div>
<div class="menu__connect-text" data-menu-heading>
Turn Your Vision Into an Experience That Lasts
</div>
<div class="menu__line"></div>
<a href="/cdn-cgi/l/email-protection#3a525f5656557a575e42144955" class="menu__contact-email" data-menu-heading>
<svg width="23" height="25" viewBox="0 0 23 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M15.2885 3.44676C14.5506 3.38525 13.6404 3.38525 12.4824 3.38525H10.8665C9.70859 3.38525 8.7984 3.38525 8.06047 3.44676C7.30727 3.50956 6.67982 3.63951 6.09662 3.93011C5.13308 4.41023 4.31738 5.18223 3.74731 6.15355C3.59848 6.40714 3.47521 6.67453 3.37005 6.96294C3.01226 7.94413 2.84685 9.2392 2.60616 11.1237L2.5858 11.283C2.38081 12.8873 2.22056 14.1414 2.17189 15.1516C2.12247 16.1772 2.18225 17.0319 2.46611 17.8166C2.93006 19.0991 3.7867 20.1685 4.89158 20.8445C5.56757 21.258 6.3382 21.44 7.27963 21.5279C8.20684 21.6144 9.37169 21.6144 10.8618 21.6144H12.4872C13.9773 21.6144 15.1421 21.6144 16.0694 21.5279C17.0108 21.44 17.7814 21.258 18.4574 20.8445C19.5623 20.1685 20.4189 19.0991 20.8829 17.8166C21.1667 17.0319 21.2265 16.1772 21.1771 15.1516C21.1284 14.1414 20.9682 12.8872 20.7632 11.2829L20.7398 11.1C20.4848 9.1032 20.3141 7.76597 19.8981 6.75415C19.8115 6.54359 19.7137 6.34446 19.6017 6.15355C19.0316 5.18223 18.2159 4.41023 17.2524 3.93011C16.6692 3.63951 16.0417 3.50956 15.2885 3.44676ZM6.69566 5.35047C7.06329 5.16728 7.50279 5.06034 8.17039 5.00469C8.84696 4.94829 9.70216 4.94775 10.8962 4.94775H12.4527C13.6468 4.94775 14.502 4.94829 15.1786 5.00469C15.8462 5.06034 16.2857 5.16728 16.6533 5.35047C17.3454 5.69533 17.9343 6.24392 18.3537 6.93347L17.8264 7.50657C16.2148 9.2583 15.0562 10.5154 14.0568 11.3441C13.074 12.1592 12.3303 12.4861 11.5582 12.4861C10.7862 12.4861 10.0424 12.1592 9.0596 11.3441C8.06024 10.5154 6.90159 9.2583 5.29 7.50657L4.90579 7.08896C4.92318 7.05662 4.94098 7.02496 4.95922 6.99388C5.38057 6.27595 5.98348 5.70534 6.69566 5.35047ZM18.9092 8.53936C19.0476 9.23474 19.1676 10.1541 19.3346 11.4609C19.5453 13.1102 19.6965 14.298 19.7416 15.2333C19.7863 16.1609 19.7208 16.7592 19.5451 17.2449C19.2022 18.1928 18.569 18.9832 17.7523 19.4828C17.3339 19.7388 16.7978 19.8916 15.9463 19.9711C15.0878 20.0512 13.9846 20.0519 12.4527 20.0519H10.8962C9.36434 20.0519 8.26114 20.0512 7.40264 19.9711C6.55123 19.8916 6.01504 19.7388 5.59664 19.4828C4.77999 18.9832 4.14683 18.1928 3.80391 17.2449C3.62822 16.7592 3.56272 16.1609 3.60742 15.2333C3.65248 14.298 3.80363 13.1102 4.01437 11.4609C4.16486 10.2832 4.27696 9.41936 4.39983 8.74871C5.92248 10.4037 7.12285 11.7033 8.18763 12.5864C9.29828 13.5074 10.3455 14.0486 11.5582 14.0486C12.7709 14.0486 13.8181 13.5074 14.9288 12.5864C16.0139 11.6865 17.2397 10.354 18.804 8.6537L18.9092 8.53936Z"
fill="#5B6871"
/>
</svg>
<span><span class="__cf_email__" data-cfemail="462e232a2a29062b223e683529">[email protected]</span></span>
</a>
<a href="/contact" aria-label="Let's talk button" class="cta-1 btn-animate-chars" data-menu-heading>
<div class="btn-animate-chars__bg"></div>
<span data-button-animate-chars="" class="btn-animate-chars__text" translate="no">LET’S TALK</span>
<span class="cta-1__arrow-wrapper">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4.5 19.5L19.5 4.5M19.5 4.5H8.25M19.5 4.5V15.75" stroke="#FF8200" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
</a>
</div>
<!-- navigation block -->
<div class="menu-nav__wrapper" data-lenis-prevent>
<ul class="menu__navigation is--navigation">
<div class="menu__navigation--header">
<h4>NAVIGATION</h4>
</div>
<li>
<a class="menu__navigation-item" href="/">
<span class="menu__navigation-icon"></span>
<span class="menu__navigation-text">Home</span></a>
</li>
<li>
<a class="menu__navigation-item" href="/about-us">
<span class="menu__navigation-icon"></span>
<span class="menu__navigation-text">About Us</span></a>
</li>
<li>
<a class="menu__navigation-item --is-active" href="/services">
<span class="menu__navigation-icon"></span>
<span class="menu__navigation-text">Services</span></a>
</li>
<li>
<a class="menu__navigation-item" href="/projects">
<span class="menu__navigation-icon"></span>
<span class="menu__navigation-text">Projects</span></a>
</li>
<li>
<a class="menu__navigation-item" href="/about-us#awwards">
<span class="menu__navigation-icon"></span>
<span class="menu__navigation-text">Awwwards</span></a>
</li>
<li>
<a class="menu__navigation-item" href="/recruiting">
<span class="menu__navigation-icon"></span>
<span class="menu__navigation-text">Recruiting</span></a>
</li>
<li>
<a class="menu__navigation-item" href="/blog">
<span class="menu__navigation-icon"></span>
<span class="menu__navigation-text">Blog</span></a>
</li>
</ul>
<div class="menu__col">
<ul class="menu__navigation is--services">
<div class="menu__navigation--header">
<h4>SERVICES</h4>
</div>
<li>
<a class="menu__navigation-item" href="/ui-ux">
<span class="menu__navigation-icon"></span>
<span class="menu__navigation-text">UI/UX Design</span></a>
</li>
<li>
<a class="menu__navigation-item" href="/development">
<span class="menu__navigation-icon"></span>
<span class="menu__navigation-text">Development</span></a>
</li>
<li>
<a class="menu__navigation-item" href="/3d-animation">
<span class="menu__navigation-icon"></span>
<span class="menu__navigation-text">3D Animation</span></a>
</li>
<li>
<a class="menu__navigation-item" href="/branding">
<span class="menu__navigation-icon"></span>
<span class="menu__navigation-text">Branding</span></a>
</li>
</ul>
<ul class="menu__navigation is--sponsor">
<div class="menu__navigation--header">
<h4>SPONSOR</h4>
</div>
<li>
<a class="menu__navigation-item" href="/brand-deals">
<span class="menu__navigation-icon"></span>
<span class="menu__navigation-text">Brand Deals</span></a>
</li>
</ul>
</div>
</div>
<!-- lets talk block mobile -->
<div class="menu__cta-mobile is--portrait">
<a href="/cdn-cgi/l/email-protection#157d7079797a5578716d3b667a" class="menu__contact-email-mobile">
<svg width="23" height="25" viewBox="0 0 23 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M15.2885 3.44676C14.5506 3.38525 13.6404 3.38525 12.4824 3.38525H10.8665C9.70859 3.38525 8.7984 3.38525 8.06047 3.44676C7.30727 3.50956 6.67982 3.63951 6.09662 3.93011C5.13308 4.41023 4.31738 5.18223 3.74731 6.15355C3.59848 6.40714 3.47521 6.67453 3.37005 6.96294C3.01226 7.94413 2.84685 9.2392 2.60616 11.1237L2.5858 11.283C2.38081 12.8873 2.22056 14.1414 2.17189 15.1516C2.12247 16.1772 2.18225 17.0319 2.46611 17.8166C2.93006 19.0991 3.7867 20.1685 4.89158 20.8445C5.56757 21.258 6.3382 21.44 7.27963 21.5279C8.20684 21.6144 9.37169 21.6144 10.8618 21.6144H12.4872C13.9773 21.6144 15.1421 21.6144 16.0694 21.5279C17.0108 21.44 17.7814 21.258 18.4574 20.8445C19.5623 20.1685 20.4189 19.0991 20.8829 17.8166C21.1667 17.0319 21.2265 16.1772 21.1771 15.1516C21.1284 14.1414 20.9682 12.8872 20.7632 11.2829L20.7398 11.1C20.4848 9.1032 20.3141 7.76597 19.8981 6.75415C19.8115 6.54359 19.7137 6.34446 19.6017 6.15355C19.0316 5.18223 18.2159 4.41023 17.2524 3.93011C16.6692 3.63951 16.0417 3.50956 15.2885 3.44676ZM6.69566 5.35047C7.06329 5.16728 7.50279 5.06034 8.17039 5.00469C8.84696 4.94829 9.70216 4.94775 10.8962 4.94775H12.4527C13.6468 4.94775 14.502 4.94829 15.1786 5.00469C15.8462 5.06034 16.2857 5.16728 16.6533 5.35047C17.3454 5.69533 17.9343 6.24392 18.3537 6.93347L17.8264 7.50657C16.2148 9.2583 15.0562 10.5154 14.0568 11.3441C13.074 12.1592 12.3303 12.4861 11.5582 12.4861C10.7862 12.4861 10.0424 12.1592 9.0596 11.3441C8.06024 10.5154 6.90159 9.2583 5.29 7.50657L4.90579 7.08896C4.92318 7.05662 4.94098 7.02496 4.95922 6.99388C5.38057 6.27595 5.98348 5.70534 6.69566 5.35047ZM18.9092 8.53936C19.0476 9.23474 19.1676 10.1541 19.3346 11.4609C19.5453 13.1102 19.6965 14.298 19.7416 15.2333C19.7863 16.1609 19.7208 16.7592 19.5451 17.2449C19.2022 18.1928 18.569 18.9832 17.7523 19.4828C17.3339 19.7388 16.7978 19.8916 15.9463 19.9711C15.0878 20.0512 13.9846 20.0519 12.4527 20.0519H10.8962C9.36434 20.0519 8.26114 20.0512 7.40264 19.9711C6.55123 19.8916 6.01504 19.7388 5.59664 19.4828C4.77999 18.9832 4.14683 18.1928 3.80391 17.2449C3.62822 16.7592 3.56272 16.1609 3.60742 15.2333C3.65248 14.298 3.80363 13.1102 4.01437 11.4609C4.16486 10.2832 4.27696 9.41936 4.39983 8.74871C5.92248 10.4037 7.12285 11.7033 8.18763 12.5864C9.29828 13.5074 10.3455 14.0486 11.5582 14.0486C12.7709 14.0486 13.8181 13.5074 14.9288 12.5864C16.0139 11.6865 17.2397 10.354 18.804 8.6537L18.9092 8.53936Z"
fill="#5B6871"
/>
</svg>
<span><span class="__cf_email__" data-cfemail="8fe7eae3e3e0cfe2ebf7a1fce0">[email protected]</span></span>
</a>
<a href="/contact" aria-label="Let's talk button" class="cta-1 btn-animate-chars" data-menu-heading>
<div class="btn-animate-chars__bg"></div>
<span data-button-animate-chars="" class="btn-animate-chars__text" translate="no">LET’S TALK</span>
<span class="cta-1__arrow-wrapper">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4.5 19.5L19.5 4.5M19.5 4.5H8.25M19.5 4.5V15.75" stroke="#FF8200" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
</a>
</div>
<!-- socials block -->
<div class="menu__socials">
<div class="menu__socials-divider"></div>
<div class="menu__socials--footer">
<span class="menu__socials--copyright">
©
<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script>
document.write(new Date().getFullYear());
</script>
MDX. All rights reserved.
</span>
<div class="menu__socials-list">
<a class="menu__socials-link" href="https://www.tiktok.com/@marcelodesignx?_t=ZM-8wsLc7iWLSA&_r=1" aria-label="Tiktok" target="_blank">
<svg width="11" height="13" viewBox="0 0 11 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M5.5 0V9.1C5.5 9.83454 4.90192 10.4 4.125 10.4C3.34808 10.4 2.75 9.83454 2.75 9.1C2.75 8.36546 3.34808 7.8 4.125 7.8V5.2C1.86317 5.2 0 6.96154 0 9.1C0 11.2385 1.86317 13 4.125 13C6.38683 13 8.25 11.2385 8.25 9.1V4.20215C9.0972 4.77274 9.98129 5.2 11 5.2V2.6C10.9349 2.6 9.98618 2.31522 9.32422 1.76973C8.66226 1.22423 8.25 0.539488 8.25 0H5.5Z" fill="#5B6871" />
</svg>
</a>
<a class="menu__socials-link" href="https://www.instagram.com/marcelodesignx/" aria-label="Instagram" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13" fill="none">
<path
d="M3.61111 0C1.62326 0 0 1.62326 0 3.61111V9.38889C0 11.3767 1.62326 13 3.61111 13H9.38889C11.3767 13 13 11.3767 13 9.38889V3.61111C13 1.62326 11.3767 0 9.38889 0H3.61111ZM3.61111 1.08333H9.38889C10.7911 1.08333 11.9167 2.20885 11.9167 3.61111V9.38889C11.9167 10.7911 10.7911 11.9167 9.38889 11.9167H3.61111C2.20885 11.9167 1.08333 10.7911 1.08333 9.38889V3.61111C1.08333 2.20885 2.20885 1.08333 3.61111 1.08333ZM10.2917 2.16667C10.148 2.16667 10.0102 2.22373 9.90865 2.32532C9.80707 2.4269 9.75 2.56467 9.75 2.70833C9.75 2.85199 9.80707 2.98977 9.90865 3.09135C10.0102 3.19293 10.148 3.25 10.2917 3.25C10.4353 3.25 10.5731 3.19293 10.6747 3.09135C10.7763 2.98977 10.8333 2.85199 10.8333 2.70833C10.8333 2.56467 10.7763 2.4269 10.6747 2.32532C10.5731 2.22373 10.4353 2.16667 10.2917 2.16667ZM6.5 2.88889C5.34144 2.88889 4.40392 3.34285 3.79308 4.03006C3.18223 4.71726 2.88889 5.61227 2.88889 6.5C2.88889 7.38773 3.18223 8.28274 3.79308 8.96994C4.40392 9.65715 5.34144 10.1111 6.5 10.1111C7.65856 10.1111 8.59608 9.65715 9.20692 8.96994C9.81777 8.28274 10.1111 7.38773 10.1111 6.5C10.1111 5.61227 9.81777 4.71726 9.20692 4.03006C8.59608 3.34285 7.65856 2.88889 6.5 2.88889ZM6.5 3.97222C7.38773 3.97222 7.98494 4.28562 8.39724 4.74946C8.80955 5.2133 9.02778 5.85301 9.02778 6.5C9.02778 7.14699 8.80955 7.7867 8.39724 8.25054C7.98494 8.71438 7.38773 9.02778 6.5 9.02778C5.61227 9.02778 5.01506 8.71438 4.60276 8.25054C4.19045 7.7867 3.97222 7.14699 3.97222 6.5C3.97222 5.85301 4.19045 5.2133 4.60276 4.74946C5.01506 4.28562 5.61227 3.97222 6.5 3.97222Z"
fill="#5B6871"
/>
</svg>
</a>
<a class="menu__socials-link" href="https://x.com/MarceloDesignX" aria-label="X social" target="_blank">
<svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.244436 0L5.27057 7.09067L0 13H1.12344L5.76842 7.79225L9.45982 13H13L7.74048 5.58059L12.7183 0H11.5955L7.24332 4.87901L3.78462 0H0.244436Z" fill="#5B6871" />
</svg>
</a>
<a class="menu__socials-link" href="https://www.facebook.com/MarceloDesignX" aria-label="Facebook" target="_blank">
<svg width="7" height="13" viewBox="0 0 7 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M5.38456 2.54348H6.7307C6.87931 2.54348 6.99993 2.41687 6.99993 2.26087V0.356935C6.99993 0.208848 6.89143 0.0856304 6.75089 0.0751739C6.32255 0.0432391 5.48579 0 4.88407 0C3.23074 0 2.15382 1.04 2.15382 2.93009V4.80435H0.269228C0.120614 4.80435 0 4.93096 0 5.08696V7.06522C0 7.22122 0.120614 7.34783 0.269228 7.34783H2.15382V12.7174C2.15382 12.8734 2.27444 13 2.42305 13H4.30765C4.45626 13 4.57688 12.8734 4.57688 12.7174V7.34783H6.52124C6.65855 7.34783 6.77378 7.23959 6.78885 7.0963L6.99831 5.11804C7.01608 4.95074 6.89116 4.80435 6.7307 4.80435H4.57688V3.3913C4.57688 2.92302 4.93845 2.54348 5.38456 2.54348Z"
fill="#5B6871"
/>
</svg>
</a>
<a class="menu__socials-link" href="https://www.youtube.com/@marcelodesignx2324" aria-label="Youtube" target="_blank">
<svg width="17" height="13" viewBox="0 0 17 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M16.5255 2.23438C16.3683 1.34094 15.6195 0.690308 14.7506 0.487183C13.4502 0.203125 11.0437 0 8.43991 0C5.83768 0 3.39261 0.203125 2.09072 0.487183C1.22331 0.690308 0.472993 1.29968 0.315842 2.23438C0.157151 3.25 0 4.67188 0 6.5C0 8.32812 0.157151 9.75 0.354359 10.7656C0.51305 11.6591 1.26183 12.3097 2.12924 12.5128C3.5097 12.7969 5.8762 13 8.47997 13C11.0837 13 13.4502 12.7969 14.8307 12.5128C15.6981 12.3097 16.4469 11.7003 16.6056 10.7656C16.7627 9.75 16.9599 8.28687 17 6.5C16.9199 4.67188 16.7227 3.25 16.5255 2.23438ZM6.31068 9.34375V3.65625L11.1223 6.5L6.31068 9.34375Z"
fill="#5B6871"
/>
</svg>
</a>
<a class="menu__socials-link" href="https://www.linkedin.com/company/65831843" aria-label="LinkedIn" target="_blank">
<svg width="15" height="13" viewBox="0 0 15 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M2.32609 0C1.27 0 0.502972 0.628815 0.502972 1.49366C0.502972 2.36153 1.28826 3.01804 2.32609 3.01804C3.38217 3.01804 4.1492 2.37708 4.1492 1.47594C4.10051 0.608072 3.3487 0 2.32609 0ZM0.804348 3.62578C0.636957 3.62578 0.5 3.76186 0.5 3.92817V12.6976C0.5 12.8639 0.636957 13 0.804348 13H3.84783C4.01522 13 4.15217 12.8639 4.15217 12.6976V3.92817C4.15217 3.76186 4.01522 3.62578 3.84783 3.62578H0.804348ZM5.36957 3.62578C5.20217 3.62578 5.06522 3.76186 5.06522 3.92817V12.6976C5.06522 12.8639 5.20217 13 5.36957 13H8.1087C8.2767 13 8.41304 12.8645 8.41304 12.6976V8.16169V8.08609V8.0105C8.41304 7.29382 8.96715 6.71006 9.67323 6.65563C9.70975 6.64958 9.74609 6.64972 9.78261 6.64972C9.81913 6.64972 9.85546 6.64958 9.89198 6.65563C10.5981 6.71006 11.1522 7.29382 11.1522 8.0105V12.6976C11.1522 12.8645 11.2885 13 11.4565 13H14.1957C14.363 13 14.5 12.8639 14.5 12.6976V7.5569C14.5 5.60041 13.4436 3.62578 11.088 3.62578C10.0167 3.62578 9.20739 4.03711 8.71739 4.37881V3.92817C8.71739 3.76186 8.58043 3.62578 8.41304 3.62578H5.36957Z"
fill="#5B6871"
/>
</svg>
</a>
</div>
<div class="menu__socials--terms">
<a href="privacy-policy">Privacy Policy</a>
<a href="terms-&-conditions">Terms Of Use</a>
</div>
</div>
</div>
</div>
</div>
<main class="main-wrapper">
<!-- HERO -->
<section class="hero" data-fade data-fade-out>
<!-- ELLIPSES -->
<div class="hero__ellipse hero__ellipse-0"></div>
<div class="hero__ellipse hero__ellipse-1"></div>
<div class="hero__ellipse hero__ellipse-2" data-fade-el='{"y": 30}'></div>
<!-- GRID WRAPPER -->
<div class="hero-grid">
<div class="hero-grid__top">
<h2 class="hero-grid__heading" data-split="lines">
Crafted
<span>experiences</span>, delivered with intent
</h2>
<p class="hero-grid__subheading" data-split="lines">
<span>At MDX, our services are shaped as complete digital experiences.</span>
Every detail is thoughtfully crafted to align design, technology, and execution—setting new standards in quality and performance.
</p>
<a href="/contact" aria-label="Let's talk button" class="cta-1 btn-animate-chars" data-fade-el='{"y": 30}'>
<div class="btn-animate-chars__bg"></div>
<span data-button-animate-chars="" class="btn-animate-chars__text" translate="no">LET’S TALK</span>
<span class="cta-1__arrow-wrapper">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4.5 19.5L19.5 4.5M19.5 4.5H8.25M19.5 4.5V15.75" stroke="#FF8200" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
</a>
</div>
</div>
<img src="/assets/images/sv1-landscape.avif" alt="decorative frame" loading="lazy" class="hero-background is--landscape" />
</section>
<!-- OUR EXPERTISE -->
<section class="oe" data-fade data-fade-out>
<div class="oe-container">
<div class="oe-top">
<div class="oe-heading">
<span class="oe-tagline" data-fade-el='{"y": 10}'>Services</span>
<h3 class="oe-h3" data-split="words">
Our
<span>Expertise</span>
</h3>
</div>
<p class="oe-subheading" data-split="lines">
<span>We approach every service as part of a complete digital experience</span>—where design, technology, and execution work together with intent.
</p>
</div>
<div class="oe-bottom" data-fade-el='{"y": 15}'>
<div data-accordion-close-siblings="true" data-accordion-css-init="" class="accordion-css">
<ul class="accordion-css__list">
<li data-accordion-status="active" class="accordion-css__item">
<div data-hover="" data-accordion-toggle="" class="accordion-css__item-top">
<div class="accordion-css__item-svg">
<svg width="56" height="56" viewBox="0 0 56 56" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="56" height="56" rx="27.5" fill="#D0D2D1" fill-opacity="0.4" />
<path d="M28.4219 25.9999C29.0906 26.6687 29.0906 27.753 28.4219 28.4218C27.7531 29.0906 26.6688 29.0906 26 28.4218C25.3312 27.753 25.3312 26.6687 26 25.9999C26.6688 25.3312 27.7531 25.3312 28.4219 25.9999Z" fill="#101820" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M28.4913 18.0811C27.7475 17.9421 26.9497 18.0034 25.6504 18.1033L25.3738 18.1245C23.6599 18.2558 22.6108 18.3361 21.7355 18.7105C20.3756 19.2923 19.2923 20.3756 18.7105 21.7355C18.3361 22.6108 18.2558 23.6599 18.1245 25.3738L18.1033 25.6504C18.0034 26.9497 17.9421 27.7475 18.0811 28.4913C18.2968 29.6457 18.8609 30.7063 19.6973 31.5306C20.2363 32.0618 20.932 32.457 22.0651 33.1006L24.1365 34.2777C25.1325 34.8438 25.7424 35.1905 26.3611 35.3773C27.0363 35.5812 27.735 35.6568 28.4231 35.6088L29.6375 36.8232C31.6218 38.8075 34.8389 38.8075 36.8232 36.8232C38.8075 34.839 38.8075 31.6218 36.8232 29.6375L35.6088 28.4231C35.6568 27.735 35.5812 27.0364 35.3773 26.3611C35.1905 25.7424 34.8438 25.1325 34.2778 24.1365L33.1006 22.0651C32.457 20.932 32.0618 20.2363 31.5306 19.6973C30.7063 18.8609 29.6457 18.2968 28.4913 18.0811ZM25.648 19.6079C27.1017 19.4964 27.6899 19.4573 28.2157 19.5556C29.069 19.715 29.853 20.1319 30.4622 20.7502C30.8377 21.1312 31.1342 21.6407 31.8545 22.9083L32.9216 24.7862C33.5559 25.9024 33.8094 26.3577 33.9413 26.7947C34.1199 27.386 34.1654 28.0015 34.0834 28.5997C34.0022 29.1929 33.7957 29.769 33.4693 30.2873C33.2261 30.6736 32.8609 31.0453 31.9531 31.9531C31.0453 32.8609 30.6736 33.2261 30.2873 33.4693C29.7689 33.7957 29.1929 34.0022 28.5997 34.0834C28.0014 34.1653 27.386 34.1199 26.7947 33.9413C26.3577 33.8094 25.9024 33.5559 24.7862 32.9216L22.9083 31.8545C21.6407 31.1342 21.1312 30.8377 20.7502 30.4622C20.1319 29.853 19.715 29.069 19.5556 28.2157C19.4573 27.6899 19.4964 27.1017 19.6079 25.648C19.7556 23.7232 19.8253 22.9433 20.0896 22.3255C20.2041 22.0579 20.3448 21.8048 20.5087 21.5693L25.4697 26.5302C25.7625 26.8231 26.2374 26.8231 26.5303 26.5302C26.8232 26.2373 26.8232 25.7625 26.5303 25.4696L21.5694 20.5087C21.8049 20.3448 22.0579 20.2041 22.3255 20.0896C22.9433 19.8253 23.7232 19.7556 25.648 19.6079ZM30.6981 35.7626L30.1503 35.2148C30.4738 35.086 30.7872 34.9271 31.0864 34.7387C31.6334 34.3944 32.1294 33.8983 32.9394 33.0881L33.0881 32.9394C33.8983 32.1294 34.3944 31.6334 34.7387 31.0864C34.9271 30.7872 35.086 30.4738 35.2148 30.1504L35.7625 30.6982C37.161 32.0967 37.161 34.3641 35.7625 35.7626C34.364 37.1611 32.0966 37.1611 30.6981 35.7626Z"
fill="#101820"
/>
</svg>
</div>
<h3 class="accordion-css__item-h3">UI/UX Design</h3>
</div>
<a class="accordion-css__item-icon" href="/ui-ux">
<svg width="56" height="56" viewBox="0 0 56 56" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="28" cy="28" r="28" fill="#FF8200" />
<path
d="M27.1279 17.7546C26.4952 17.7575 25.9846 18.2726 25.9874 18.9053C25.9902 19.538 26.5054 20.0487 27.1381 20.0458L30.9295 20.0289C32.4683 20.022 33.5255 20.0191 34.3308 20.107C34.5926 20.1356 34.8113 20.1724 34.997 20.2169L18.7623 36.4517C18.3149 36.8991 18.3149 37.6245 18.7623 38.0719C19.2097 38.5192 19.935 38.5192 20.3824 38.0719L36.6172 21.8371C36.6617 22.0228 36.6985 22.2416 36.7271 22.5033C36.8151 23.3086 36.8121 24.3659 36.8052 25.9046L36.7883 29.696C36.7855 30.3287 37.2961 30.8439 37.9288 30.8467C38.5615 30.8496 39.0767 30.339 39.0795 29.7063L39.0967 25.8465C39.1032 24.3928 39.1086 23.2047 39.0048 22.2546C38.8969 21.2665 38.6593 20.3918 38.0767 19.6391C37.949 19.4741 37.8111 19.3175 37.6639 19.1703C37.5166 19.023 37.3601 18.8851 37.195 18.7574C36.4423 18.1749 35.5676 17.9372 34.5796 17.8293C33.6294 17.7256 32.4413 17.7309 30.9876 17.7374L27.1279 17.7546Z"
fill="#FCFCFD"
/>
</svg>
</a>
<div class="accordion-css__item-bottom">
<div class="accordion-css__item-bottom-wrap">
<div class="accordion-css__item-bottom-content">
<p class="accordion-css__item-p">Interfaces that feel natural and purposeful.</p>
</div>
</div>
</div>
</li>
<li data-accordion-status="not-active" class="accordion-css__item">
<div data-hover="" data-accordion-toggle="" class="accordion-css__item-top">
<div class="accordion-css__item-svg">
<svg width="56" height="56" viewBox="0 0 56 56" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="56" height="56" rx="27.5" fill="#D0D2D1" fill-opacity="0.4" />
<g clip-path="url(#clip0_5481_1787)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.7715 17.8418C17.6886 17.8418 16 19.5304 16 21.6133C16 23.6963 17.6886 25.3848 19.7715 25.3848C21.8545 25.3848 23.543 23.6963 23.543 21.6133C23.543 19.5304 21.8545 17.8418 19.7715 17.8418ZM18.0572 21.6133C18.0572 20.6665 18.8247 19.899 19.7715 19.899C20.7183 19.899 21.4858 20.6665 21.4858 21.6133C21.4858 22.5601 20.7183 23.3276 19.7715 23.3276C18.8247 23.3276 18.0572 22.5601 18.0572 21.6133Z" fill="#8C8D91" />
<path d="M28.0003 20.5847C27.4322 20.5847 26.9717 21.0452 26.9717 21.6133C26.9717 22.1814 27.4322 22.6419 28.0003 22.6419L38.972 22.6419C39.54 22.6419 40.0005 22.1814 40.0005 21.6133C40.0005 21.0452 39.54 20.5847 38.972 20.5847L28.0003 20.5847Z" fill="#8C8D91" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M36.229 31.5564C34.1461 31.5564 32.4575 33.245 32.4575 35.3279C32.4575 37.4109 34.1461 39.0994 36.229 39.0994C38.312 39.0994 40.0005 37.4109 40.0005 35.3279C40.0005 33.245 38.312 31.5564 36.229 31.5564ZM34.5147 35.3279C34.5147 34.3811 35.2822 33.6136 36.229 33.6136C37.1758 33.6136 37.9434 34.3811 37.9434 35.3279C37.9434 36.2747 37.1758 37.0422 36.229 37.0422C35.2822 37.0422 34.5147 36.2747 34.5147 35.3279Z"
fill="#8C8D91"
/>
<path d="M17.0286 34.2993C16.4605 34.2993 16 34.7598 16 35.3279C16 35.896 16.4605 36.3565 17.0286 36.3565L28.0003 36.3565C28.5684 36.3565 29.0289 35.896 29.0289 35.3279C29.0289 34.7598 28.5684 34.2993 28.0003 34.2993H17.0286Z" fill="#8C8D91" />
</g>
<defs>
<clipPath id="clip0_5481_1787">
<rect width="24" height="24" fill="white" transform="translate(16 16)" />
</clipPath>
</defs>
</svg>
</div>
<h3 class="accordion-css__item-h3">App Development</h3>
</div>
<a class="accordion-css__item-icon" href="/development">
<svg width="56" height="56" viewBox="0 0 56 56" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="28" cy="28" r="28" fill="#FF8200" />
<path
d="M27.1279 17.7546C26.4952 17.7575 25.9846 18.2726 25.9874 18.9053C25.9902 19.538 26.5054 20.0487 27.1381 20.0458L30.9295 20.0289C32.4683 20.022 33.5255 20.0191 34.3308 20.107C34.5926 20.1356 34.8113 20.1724 34.997 20.2169L18.7623 36.4517C18.3149 36.8991 18.3149 37.6245 18.7623 38.0719C19.2097 38.5192 19.935 38.5192 20.3824 38.0719L36.6172 21.8371C36.6617 22.0228 36.6985 22.2416 36.7271 22.5033C36.8151 23.3086 36.8121 24.3659 36.8052 25.9046L36.7883 29.696C36.7855 30.3287 37.2961 30.8439 37.9288 30.8467C38.5615 30.8496 39.0767 30.339 39.0795 29.7063L39.0967 25.8465C39.1032 24.3928 39.1086 23.2047 39.0048 22.2546C38.8969 21.2665 38.6593 20.3918 38.0767 19.6391C37.949 19.4741 37.8111 19.3175 37.6639 19.1703C37.5166 19.023 37.3601 18.8851 37.195 18.7574C36.4423 18.1749 35.5676 17.9372 34.5796 17.8293C33.6294 17.7256 32.4413 17.7309 30.9876 17.7374L27.1279 17.7546Z"
fill="#FCFCFD"
/>
</svg>
</a>
<div class="accordion-css__item-bottom">
<div class="accordion-css__item-bottom-wrap">
<div class="accordion-css__item-bottom-content">
<p class="accordion-css__item-p">Digital products engineered for performance and scale.</p>
</div>
</div>
</div>
</li>
<li data-accordion-status="not-active" class="accordion-css__item">
<div data-hover="" data-accordion-toggle="" class="accordion-css__item-top">
<div class="accordion-css__item-svg">
<svg width="56" height="56" viewBox="0 0 56 56" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="56" height="56" rx="27.5" fill="#D0D2D1" fill-opacity="0.4" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M26.7692 20.9231C24.9 20.9231 23.3846 22.4384 23.3846 24.3077C23.3846 26.177 24.9 27.6923 26.7692 27.6923C28.6385 27.6923 30.1538 26.177 30.1538 24.3077C30.1538 22.4384 28.6385 20.9231 26.7692 20.9231ZM25.2308 24.3077C25.2308 23.458 25.9196 22.7692 26.7692 22.7692C27.6189 22.7692 28.3077 23.458 28.3077 24.3077C28.3077 25.1574 27.6189 25.8462 26.7692 25.8462C25.9196 25.8462 25.2308 25.1574 25.2308 24.3077Z" fill="#8C8D91" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M33.4936 16.1523C32.0879 16 30.316 16 28.0557 16H27.9443C25.684 16 23.9121 16 22.5064 16.1523C21.0719 16.3077 19.9096 16.6306 18.9172 17.3516C18.3164 17.7881 17.7881 18.3164 17.3516 18.9172C16.6306 19.9096 16.3077 21.0719 16.1523 22.5064C16 23.9121 16 25.684 16 27.9443V28.0557C16 30.316 16 32.0879 16.1523 33.4936C16.3077 34.9281 16.6306 36.0904 17.3516 37.0828C17.3674 37.1046 17.3834 37.1263 17.3995 37.1479C17.8265 37.7218 18.3382 38.2278 18.9172 38.6484C19.9096 39.3694 21.0719 39.6923 22.5064 39.8477C23.9121 40 25.6839 40 27.9442 40H28.0557C30.316 40 32.0879 40 33.4936 39.8477C34.9281 39.6923 36.0904 39.3694 37.0828 38.6484C37.6836 38.2119 38.2119 37.6836 38.6484 37.0828C39.7191 35.6092 39.9265 33.7288 39.9813 31.0776C40 30.1763 40 29.1573 40 28.0074V27.9443C40 25.684 40 23.9121 39.8477 22.5064C39.6923 21.0719 39.3694 19.9096 38.6484 18.9172C38.2119 18.3164 37.6836 17.7881 37.0828 17.3516C36.0904 16.6306 34.9281 16.3077 33.4936 16.1523ZM20.0024 18.8451C20.6276 18.3909 21.4279 18.1261 22.7053 17.9877C24 17.8474 25.6719 17.8462 28 17.8462C30.3281 17.8462 32 17.8474 33.2947 17.9877C34.5721 18.1261 35.3724 18.3909 35.9976 18.8451C36.4417 19.1678 36.8322 19.5583 37.1549 20.0024C37.6091 20.6276 37.8739 21.4279 38.0123 22.7053C38.1526 24 38.1538 25.6719 38.1538 28C38.1538 28.3138 38.1538 28.6161 38.1535 28.9075C38.0232 28.797 37.8997 28.6999 37.7782 28.6137C34.7369 26.4543 30.5416 27.0261 28.1892 29.9207C27.994 30.1609 27.807 30.4423 27.5952 30.7931L27.4415 30.7623C26.0887 30.4916 25.2604 30.3258 24.4827 30.3424C22.4045 30.3865 20.4509 31.342 19.1402 32.9553C18.8074 33.3649 18.5265 33.8445 18.1876 34.4961C18.1029 34.1474 18.0372 33.7516 17.9877 33.2947C17.8474 32 17.8462 30.3281 17.8462 28C17.8462 25.6719 17.8474 24 17.9877 22.7053C18.1261 21.4279 18.3909 20.6276 18.8451 20.0024C19.1678 19.5583 19.5583 19.1678 20.0024 18.8451ZM36.7094 30.119C37.0141 30.3353 37.3666 30.6742 38.1259 31.4316C38.0555 33.8571 37.8116 35.0937 37.1549 35.9976C36.8322 36.4417 36.4417 36.8322 35.9976 37.1549C35.3724 37.6091 34.5721 37.8739 33.2947 38.0123C32 38.1526 30.3281 38.1538 28 38.1538C27.087 38.1538 26.2749 38.1537 25.547 38.145L28.4008 33.0959C28.5607 32.8129 28.6997 32.5671 28.8237 32.3501C29.2169 31.6625 29.4295 31.3218 29.6219 31.0851C31.3606 28.9456 34.4615 28.5229 36.7094 30.119ZM23.5041 38.0073C23.4911 38.0303 23.4793 38.0535 23.4685 38.077C23.1998 38.0597 22.946 38.0384 22.7053 38.0123C21.4279 37.8739 20.6276 37.6091 20.0024 37.1549C19.7301 36.9571 19.4781 36.7338 19.2494 36.4883C19.9408 35.1055 20.2267 34.5458 20.5731 34.1194C21.5419 32.9269 22.9859 32.2207 24.5219 32.1881C24.9955 32.178 25.5192 32.2643 26.6267 32.4827L23.5041 38.0073Z"
fill="#8C8D91"
/>
</svg>
</div>
<h3 class="accordion-css__item-h3">Branding</h3>
</div>
<a class="accordion-css__item-icon" href="/branding">
<svg width="56" height="56" viewBox="0 0 56 56" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="28" cy="28" r="28" fill="#FF8200" />
<path
d="M27.1279 17.7546C26.4952 17.7575 25.9846 18.2726 25.9874 18.9053C25.9902 19.538 26.5054 20.0487 27.1381 20.0458L30.9295 20.0289C32.4683 20.022 33.5255 20.0191 34.3308 20.107C34.5926 20.1356 34.8113 20.1724 34.997 20.2169L18.7623 36.4517C18.3149 36.8991 18.3149 37.6245 18.7623 38.0719C19.2097 38.5192 19.935 38.5192 20.3824 38.0719L36.6172 21.8371C36.6617 22.0228 36.6985 22.2416 36.7271 22.5033C36.8151 23.3086 36.8121 24.3659 36.8052 25.9046L36.7883 29.696C36.7855 30.3287 37.2961 30.8439 37.9288 30.8467C38.5615 30.8496 39.0767 30.339 39.0795 29.7063L39.0967 25.8465C39.1032 24.3928 39.1086 23.2047 39.0048 22.2546C38.8969 21.2665 38.6593 20.3918 38.0767 19.6391C37.949 19.4741 37.8111 19.3175 37.6639 19.1703C37.5166 19.023 37.3601 18.8851 37.195 18.7574C36.4423 18.1749 35.5676 17.9372 34.5796 17.8293C33.6294 17.7256 32.4413 17.7309 30.9876 17.7374L27.1279 17.7546Z"
fill="#FCFCFD"
/>
</svg>
</a>
<div class="accordion-css__item-bottom">
<div class="accordion-css__item-bottom-wrap">
<div class="accordion-css__item-bottom-content">
<p class="accordion-css__item-p">Visual identities that feel distinctive and intentional.</p>
</div>
</div>
</div>
</li>
<li data-accordion-status="not-active" class="accordion-css__item">
<div data-hover="" data-accordion-toggle="" class="accordion-css__item-top">
<div class="accordion-css__item-svg">
<svg width="56" height="56" viewBox="0 0 56 56" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="56" height="56" rx="27.5" fill="#D0D2D1" fill-opacity="0.4" />
<path
d="M23.3731 24.3587C23.3731 23.9078 23.0076 23.5422 22.5566 23.5422C22.1057 23.5422 21.7401 23.9078 21.7401 24.3587V25.7196H20.3793C19.9283 25.7196 19.5627 26.0851 19.5627 26.5361C19.5627 26.987 19.9283 27.3526 20.3793 27.3526H21.7401V28.7134C21.7401 29.1644 22.1057 29.5299 22.5566 29.5299C23.0076 29.5299 23.3731 29.1644 23.3731 28.7134V27.3526H24.734C25.1849 27.3526 25.5505 26.987 25.5505 26.5361C25.5505 26.0851 25.1849 25.7196 24.734 25.7196H23.3731V24.3587Z"
fill="#8C8D91"
/>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M22.001 19.1875C18.3498 19.1875 15.5451 22.4213 16.0614 26.0358L16.3128 27.7954L17.8982 33.3444C18.3578 34.953 19.8281 36.062 21.501 36.062C22.776 36.062 23.9635 35.4137 24.6529 34.3412L25.0605 33.7072C26.4361 31.5675 29.5639 31.5675 30.9395 33.7072L31.1888 34.0951C31.9769 35.321 33.3342 36.062 34.7916 36.062C36.9231 36.062 38.7302 34.4947 39.0316 32.3847L39.9386 26.0358C40.4549 22.4213 37.6502 19.1875 33.999 19.1875C33.1595 19.1875 32.3294 19.3637 31.5623 19.7046L30.9842 19.9615C29.8679 20.4576 29.416 20.654 28.9608 20.7506C28.3273 20.8851 27.6727 20.8851 27.0392 20.7506C26.584 20.654 26.1321 20.4576 25.0158 19.9615L24.4377 19.7046C23.6706 19.3637 22.8405 19.1875 22.001 19.1875ZM17.678 25.8049C17.3022 23.1742 19.3435 20.8205 22.001 20.8205C22.612 20.8205 23.2162 20.9487 23.7745 21.1969L24.4407 21.493C25.4412 21.9378 26.0568 22.2115 26.7001 22.348C27.5571 22.53 28.4429 22.53 29.2999 22.348C29.9432 22.2115 30.5588 21.9378 31.5593 21.493L32.2255 21.1969C32.7838 20.9487 33.388 20.8205 33.999 20.8205C36.6565 20.8205 38.6978 23.1742 38.322 25.8049L37.415 32.1538C37.2285 33.4593 36.1104 34.429 34.7916 34.429C33.8899 34.429 33.0501 33.9705 32.5625 33.212L32.3132 32.8242C30.2948 29.6845 25.7052 29.6845 23.6868 32.8242L23.2793 33.4582C22.8903 34.0632 22.2204 34.429 21.501 34.429C20.5572 34.429 19.7277 33.8033 19.4684 32.8958L17.9136 27.4541L17.678 25.8049Z"
fill="#8C8D91"
/>
<path d="M34.5321 24.3587C34.5321 24.96 34.0447 25.4474 33.4435 25.4474C32.8422 25.4474 32.3548 24.96 32.3548 24.3587C32.3548 23.7575 32.8422 23.27 33.4435 23.27C34.0447 23.27 34.5321 23.7575 34.5321 24.3587Z" fill="#8C8D91" />
<path d="M32.3548 26.5361C32.3548 27.1373 31.8674 27.6248 31.2661 27.6248C30.6648 27.6248 30.1774 27.1373 30.1774 26.5361C30.1774 25.9348 30.6648 25.4474 31.2661 25.4474C31.8674 25.4474 32.3548 25.9348 32.3548 26.5361Z" fill="#8C8D91" />
<path d="M36.7095 26.5361C36.7095 27.1373 36.2221 27.6248 35.6208 27.6248C35.0196 27.6248 34.5321 27.1373 34.5321 26.5361C34.5321 25.9348 35.0196 25.4474 35.6208 25.4474C36.2221 25.4474 36.7095 25.9348 36.7095 26.5361Z" fill="#8C8D91" />
<path d="M34.5321 28.7134C34.5321 29.3147 34.0447 29.8021 33.4435 29.8021C32.8422 29.8021 32.3548 29.3147 32.3548 28.7134C32.3548 28.1122 32.8422 27.6248 33.4435 27.6248C34.0447 27.6248 34.5321 28.1122 34.5321 28.7134Z" fill="#8C8D91" />
</svg>
</div>
<h3 class="accordion-css__item-h3">3D Animation</h3>
</div>
<a class="accordion-css__item-icon" href="/3d-animation">
<svg width="56" height="56" viewBox="0 0 56 56" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="28" cy="28" r="28" fill="#FF8200" />
<path
d="M27.1279 17.7546C26.4952 17.7575 25.9846 18.2726 25.9874 18.9053C25.9902 19.538 26.5054 20.0487 27.1381 20.0458L30.9295 20.0289C32.4683 20.022 33.5255 20.0191 34.3308 20.107C34.5926 20.1356 34.8113 20.1724 34.997 20.2169L18.7623 36.4517C18.3149 36.8991 18.3149 37.6245 18.7623 38.0719C19.2097 38.5192 19.935 38.5192 20.3824 38.0719L36.6172 21.8371C36.6617 22.0228 36.6985 22.2416 36.7271 22.5033C36.8151 23.3086 36.8121 24.3659 36.8052 25.9046L36.7883 29.696C36.7855 30.3287 37.2961 30.8439 37.9288 30.8467C38.5615 30.8496 39.0767 30.339 39.0795 29.7063L39.0967 25.8465C39.1032 24.3928 39.1086 23.2047 39.0048 22.2546C38.8969 21.2665 38.6593 20.3918 38.0767 19.6391C37.949 19.4741 37.8111 19.3175 37.6639 19.1703C37.5166 19.023 37.3601 18.8851 37.195 18.7574C36.4423 18.1749 35.5676 17.9372 34.5796 17.8293C33.6294 17.7256 32.4413 17.7309 30.9876 17.7374L27.1279 17.7546Z"
fill="#FCFCFD"
/>
</svg>
</a>
<div class="accordion-css__item-bottom">
<div class="accordion-css__item-bottom-wrap">
<div class="accordion-css__item-bottom-content">
<p class="accordion-css__item-p">Cinematic 3D storytelling that turns your brand into an experience.</p>
</div>
</div>
</div>
</li>
</ul>
</div>
<div class="oe-media">
<img src="/assets/images/services-image.avif" alt="services image" loading="lazy" />
</div>
</div>
</div>
<img src="/assets/images/sv2-landscape.avif" alt="decorative frame" loading="lazy" class="oe-background is--landscape" data-fade-out />
<img src="/assets/images/sv2-portrait.avif" alt="decorative frame" loading="lazy" class="oe-background is--portrait" data-fade-out />
</section>
<!-- HOW WE DELIVER -->
<section class="wwo" data-fade>
<div class="wwo-container">
<div class="wwo-heading">
<span class="wwo-tagline" data-fade-el='{"y": 10}'>How we deliver</span>
<h2 data-split="words">Beyond utility, <span>products</span> become experiences.</h2>
</div>
<div class="wwo-footer">
<p data-split="lines">A website can tell a story. An app can shape an experience. A brand can become a living system. This perspective elevates outcomes and creates lasting impact.</p>
</div>
</div>
<img src="/assets/images/sv3-landscape.avif" alt="decorative frame" loading="lazy" class="wwo-background is--landscape" />
<img src="/assets/images/sv3-portrait.avif" alt="decorative frame" loading="lazy" class="wwo-background is--portrait" />
</section>
<!-- PROCESS -->
<div data-nav-clear>
<section class="process" data-fade>
<div class="process-container">
<div class="process-heading">
<span class="process-tagline" data-fade-el='{"y": 10}'>How we deliver</span>
<h2 data-split="words">Our process is <span>intentional.</span></h2>
</div>
<div class="process-perspective">
<div class="process-content">
<!-- items -->
<div class="process-item">
<div class="process-item-step">
<svg width="24" height="10" viewBox="0 0 24 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 4.86374e-05V9.60938H20.5729L24 4.81134V4.79813L20.5729 4.86374e-05H0ZM18.575 4.80474L16.1476 1.4063H19.8491L22.2766 4.80474L19.8491 8.20317H16.1476L18.575 4.80474ZM13.1766 4.80474L10.7491 1.4063H14.4194L16.8469 4.80474L14.4194 8.20317H10.7491L13.1766 4.80474ZM1.4063 1.4063H9.02095L11.4484 4.80474L9.02095 8.20317H1.4063V1.4063Z" fill="#D0D2D1" />
<path d="M7.06805 2.70311L5.20004 4.7793L4.11559 3.78086L3.16309 4.81544L5.29398 6.77734L8.11346 3.64366L7.06805 2.70311Z" fill="#D0D2D1" />
</svg>
<span>Step 01</span>
</div>
<h4 class="process-item__h4">Discover needs and ambitions.</h4>
</div>
<div class="process-item">
<div class="process-item-step">
<svg width="24" height="10" viewBox="0 0 24 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 4.86374e-05V9.60938H20.5729L24 4.81134V4.79813L20.5729 4.86374e-05H0ZM18.575 4.80474L16.1476 1.4063H19.8491L22.2766 4.80474L19.8491 8.20317H16.1476L18.575 4.80474ZM13.1766 4.80474L10.7491 1.4063H14.4194L16.8469 4.80474L14.4194 8.20317H10.7491L13.1766 4.80474ZM1.4063 1.4063H9.02095L11.4484 4.80474L9.02095 8.20317H1.4063V1.4063Z" fill="#D0D2D1" />
<path d="M7.06805 2.70311L5.20004 4.7793L4.11559 3.78086L3.16309 4.81544L5.29398 6.77734L8.11346 3.64366L7.06805 2.70311Z" fill="#D0D2D1" />
</svg>
<span>Step 02</span>
</div>
<h4 class="process-item__h4">Translate Into Design and Code.</h4>
</div>
<div class="process-item">
<div class="process-item-step">
<svg width="24" height="10" viewBox="0 0 24 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 4.86374e-05V9.60938H20.5729L24 4.81134V4.79813L20.5729 4.86374e-05H0ZM18.575 4.80474L16.1476 1.4063H19.8491L22.2766 4.80474L19.8491 8.20317H16.1476L18.575 4.80474ZM13.1766 4.80474L10.7491 1.4063H14.4194L16.8469 4.80474L14.4194 8.20317H10.7491L13.1766 4.80474ZM1.4063 1.4063H9.02095L11.4484 4.80474L9.02095 8.20317H1.4063V1.4063Z" fill="#D0D2D1" />
<path d="M7.06805 2.70311L5.20004 4.7793L4.11559 3.78086L3.16309 4.81544L5.29398 6.77734L8.11346 3.64366L7.06805 2.70311Z" fill="#D0D2D1" />
</svg>
<span>Step 03</span>
</div>
<h4 class="process-item__h4">Integrate Brand Voice and Narrative.</h4>
</div>
<div class="process-item">
<div class="process-item-step">
<svg width="24" height="10" viewBox="0 0 24 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 4.86374e-05V9.60938H20.5729L24 4.81134V4.79813L20.5729 4.86374e-05H0ZM18.575 4.80474L16.1476 1.4063H19.8491L22.2766 4.80474L19.8491 8.20317H16.1476L18.575 4.80474ZM13.1766 4.80474L10.7491 1.4063H14.4194L16.8469 4.80474L14.4194 8.20317H10.7491L13.1766 4.80474ZM1.4063 1.4063H9.02095L11.4484 4.80474L9.02095 8.20317H1.4063V1.4063Z" fill="#D0D2D1" />
<path d="M7.06805 2.70311L5.20004 4.7793L4.11559 3.78086L3.16309 4.81544L5.29398 6.77734L8.11346 3.64366L7.06805 2.70311Z" fill="#D0D2D1" />
</svg>
<span>Step 04</span>
</div>
<h4 class="process-item__h4">Refine With Detail and Modern Craft.</h4>
</div>
<!-- main svg -->
<div class="process-main__svg">
<div class="process-main__svg-top">
<svg class="process-main__svg-top-path" viewBox="0 0 751 336" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_5918_1614)">
<path
d="M1.61929 1.99996L5.21721 3.1336L8.82062 4.26725L12.4294 5.40089L16.0432 6.53454L19.6621 7.66818L23.2859 8.80183L26.9145 9.93547L30.5477 11.0691L34.1854 12.2028L37.8274 13.3364L41.4736 14.4701L45.1239 15.6037L48.7781 16.7373L52.4362 17.871L56.0978 19.0046L59.763 20.1383L63.4314 21.2719L67.1032 22.4056L70.7781 23.5392L74.4559 24.6729L78.1365 25.8065L81.8198 26.9401L85.5056 28.0738L89.1938 29.2074L92.8843 30.3411L96.5768 31.4747L100.271 32.6084L103.968 33.742L107.666 34.8757L111.365 36.0093L115.066 37.143L118.768 38.2766L122.472 39.4102L126.176 40.5439L129.881 41.6775L133.587 42.8112L137.294 43.9448L141 45.0785L144.708 46.2121L148.415 47.3458L152.122 48.4794L155.829 49.6131L159.536 50.7467L163.242 51.8803L166.948 53.014L170.653 54.1476L174.357 55.2813L178.061 56.4149L181.763 57.5486L185.464 58.6822L189.163 59.8159L192.861 60.9495L196.557 62.0831L200.251 63.2168L203.943 64.3504L207.634 65.4841L211.321 66.6177L215.007 67.7514L218.69 68.885L222.37 70.0187L226.048 71.1523L229.722 72.286L233.394 73.4196L237.062 74.5532L240.726 75.6869L244.388 76.8205L248.045 77.9542L251.699 79.0878L255.349 80.2215L258.994 81.3551L262.636 82.4888L266.273 83.6224L269.906 84.7561L273.534 85.8897L277.157 87.0233L280.775 88.157L284.388 89.2906L287.996 90.4243L291.599 91.5579L295.196 92.6916L298.788 93.8252L302.374 94.9589L305.954 96.0925L309.528 97.2261L313.096 98.3598L316.658 99.4934L320.213 100.627L323.761 101.761L327.303 102.894L330.838 104.028L334.367 105.162L337.888 106.295L341.402 107.429L344.908 108.563L348.407 109.696L351.898 110.83L355.382 111.964L358.858 113.097L362.325 114.231L365.785 115.364L369.236 116.498L372.679 117.632L376.113 118.765L379.538 119.899L382.955 121.033L386.363 122.166L389.762 123.3L393.151 124.434L396.531 125.567L399.902 126.701L403.263 127.835L406.615 128.968L409.956 130.102L413.288 131.236L416.609 132.369L419.92 133.503L423.221 134.636L426.512 135.77L429.792 136.904L433.061 138.037L436.319 139.171L439.566 140.305L442.802 141.438L446.027 142.572L449.241 143.706L452.443 144.839L455.633 145.973L458.812 147.107L461.979 148.24L465.134 149.374L468.277 150.507L471.408 151.641L474.526 152.775L477.632 153.908L480.726 155.042L483.806 156.176L486.874 157.309L489.929 158.443L492.971 159.577L496 160.71L499.016 161.844L502.018 162.978L505.007 164.111L507.982 165.245L510.944 166.379L513.891 167.512L516.825 168.646L519.745 169.779L522.65 170.913L525.541 172.047L528.418 173.18L531.281 174.314L534.128 175.448L536.962 176.581L539.78 177.715L542.583 178.849L545.372 179.982L548.145 181.116L550.903 182.25L553.645 183.383L556.372 184.517L559.084 185.65L561.78 186.784L564.46 187.918L567.124 189.051L569.773 190.185L572.405 191.319L575.021 192.452L577.621 193.586L580.205 194.72L582.772 195.853L585.322 196.987L587.856 198.121L590.373 199.254L592.873 200.388L595.356 201.522L597.823 202.655L600.272 203.789L602.704 204.922L605.118 206.056L607.515 207.19L609.895 208.323L612.257 209.457L614.601 210.591L616.928 211.724L619.237 212.858L621.528 213.992L623.8 215.125L626.055 216.259L628.291 217.393L630.509 218.526L632.709 219.66L634.891 220.793L637.053 221.927L639.197 223.061L641.323 224.194L643.429 225.328L645.517 226.462L647.586 227.595L649.636 228.729L651.666 229.863L653.678 230.996L655.67 232.13L657.643 233.264L659.596 234.397L661.53 235.531L663.445 236.664L665.339 237.798L667.215 238.932L669.07 240.065L670.905 241.199L672.721 242.333L674.516 243.466L676.292 244.6L678.047 245.734L679.782 246.867L681.497 248.001L683.192 249.135L684.866 250.268L686.52 251.402L688.153 252.536L689.766 253.669L691.358 254.803L692.929 255.936L694.48 257.07L696.01 258.204L697.518 259.337L699.006 260.471L700.473 261.605L701.919 262.738L703.344 263.872L704.748 265.006L706.13 266.139L707.492 267.273L708.831 268.407L710.15 269.54L711.447 270.674L712.723 271.807L713.977 272.941L715.21 274.075L716.42 275.208L717.61 276.342L718.777 277.476L719.923 278.609L721.047 279.743L722.15 280.877L723.23 282.01L724.289 283.144L725.325 284.278L726.34 285.411L727.332 286.545L728.303 287.679L729.251 288.812L730.177 289.946L731.081 291.079L731.963 292.213L732.823 293.347L733.66 294.48L734.475 295.614L735.268 296.748L736.038 297.881L736.786 299.015L737.511 300.149L738.214 301.282L738.895 302.416L739.553 303.55L740.188 304.683L740.801 305.817L741.392 306.95L741.959 308.084L742.504 309.218L743.027 310.351L743.527 311.485L744.004 312.619L744.458 313.752L744.89 314.886L745.299 316.02L745.685 317.153L746.049 318.287L746.389 319.421L746.707 320.554L747.002 321.688L747.274 322.822L747.524 323.955L747.75 325.089L747.954 326.222L748.135 327.356L748.293 328.49L748.428 329.623L748.54 330.757L748.63 331.891L748.696 333.024L748.74 334.158L748.761 335.292L748.759 336.425L748.734 337.559L748.686 338.693L748.615 339.826L748.521 340.96L748.405 342.093L748.265 343.227L748.103 344.361L747.918 345.494L747.71 346.628L747.479 347.762L747.225 348.895L746.949 350.029L746.65 351.163L746.328 352.296L745.983 353.43L745.615 354.564L745.225 355.697L744.811 356.831L744.375 357.965L743.917 359.098L743.436 360.232L742.931 361.365L742.405 362.499L741.855 363.633L741.284 364.766L740.689 365.9L740.072 367.034L739.432 368.167L738.77 369.301L738.085 370.435L737.378 371.568L736.648 372.702L735.896 373.836L735.122 374.969L734.325 376.103L733.506 377.236L732.665 378.37L731.801 379.504L730.915 380.637L730.007 381.771L729.076 382.905L728.124 384.038L727.149 385.172L726.153 386.306L725.134 387.439L724.093 388.573L723.031 389.707L721.946 390.84L720.84 391.974L719.712 393.108L718.562 394.241L717.39 395.375L716.197 396.508L714.982 397.642L713.745 398.776L712.487 399.909L711.207 401.043L709.906 402.177L708.584 403.31L707.24 404.444L705.875 405.578L704.488 406.711L703.081 407.845L701.652 408.979L700.202 410.112L698.731 411.246L697.239 412.379L695.727 413.513L694.193 414.647L692.639 415.78L691.063 416.914L689.467 418.048L687.851 419.181L686.214 420.315L684.556 421.449L682.878 422.582L681.18 423.716L679.461 424.85L677.722 425.983L675.963 427.117L674.184 428.25L672.385 429.384L670.565 430.518L668.726 431.651L666.867 432.785L664.989 433.919L663.09 435.052L661.172 436.186L659.234 437.32L657.277 438.453L655.301 439.587L653.305 440.721L651.29 441.854L649.256 442.988L647.203 444.122L645.13 445.255L643.039 446.389L640.929 447.522L638.8 448.656L636.652 449.79L634.486 450.923L632.302 452.057L630.098 453.191L627.877 454.324L625.637 455.458L623.379 456.592L621.103 457.725L618.809 458.859L616.497 459.993L614.167 461.126L611.819 462.26L609.454 463.393L607.071 464.527L604.67 465.661L602.253 466.794L599.818 467.928L597.365 469.062L594.896 470.195L592.409 471.329L589.906 472.463L587.386 473.596L584.849 474.73L582.295 475.864L579.725 476.997L577.139 478.131L574.536 479.265L571.917 480.398L569.281 481.532L566.63 482.665L563.963 483.799L561.28 484.933L558.581 486.066L555.866 487.2L553.136 488.334L550.391 489.467L547.63 490.601L544.854 491.735L542.063 492.868L539.257 494.002L536.436 495.136L533.6 496.269L530.749 497.403L527.884 498.536L525.005 499.67L522.111 500.804L519.203 501.937L516.28 503.071L513.344 504.205L510.394 505.338L507.43 506.472L504.452 507.606L501.461 508.739L498.456 509.873L495.438 511.007L492.407 512.14L489.362 513.274L486.305 514.407L483.234 515.541L480.151 516.675L477.055 517.808L473.947 518.942L470.826 520.076L467.693 521.209L464.548 522.343L461.391 523.477L458.222 524.61L455.041 525.744L451.848 526.878L448.644 528.011L445.428 529.145L442.201 530.279L438.963 531.412L435.714 532.546L432.454 533.679L429.182 534.813L425.901 535.947L422.608 537.08L419.305 538.214L415.992 539.348L412.669 540.481L409.336 541.615L405.992 542.749L402.639 543.882L399.276 545.016L395.903 546.15L392.522 547.283L389.13 548.417L385.73 549.55L382.321 550.684L378.902 551.818L375.475 552.951L372.039 554.085L368.595 555.219L365.142 556.352L361.681 557.486L358.212 558.62L354.735 559.753L351.25 560.887L347.757 562.021L344.256 563.154L340.749 564.288L337.233 565.422L333.711 566.555L330.182 567.689L326.645 568.822L323.102 569.956L319.552 571.09L315.996 572.223L312.433 573.357L308.864 574.491L305.289 575.624L301.708 576.758L298.121 577.892L294.528 579.025L290.93 580.159L287.326 581.293L283.717 582.426L280.103 583.56L276.483 584.693L272.859 585.827L269.23 586.961L265.597 588.094L261.959 589.228L258.317 590.362L254.67 591.495L251.02 592.629L247.365 593.763L243.707 594.896L240.045 596.03L236.38 597.164L232.711 598.297L229.039 599.431L225.364 600.564L221.686 601.698L218.005 602.832L214.322 603.965L210.636 605.099L206.948 606.233L203.257 607.366L199.564 608.5L195.87 609.634L192.173 610.767L188.475 611.901L184.775 613.035L181.074 614.168L177.372 615.302L173.669 616.436L169.964 617.569L166.259 618.703L162.553 619.836L158.847 620.97L155.14 622.104L151.433 623.237L147.725 624.371L144.018 625.505L140.311 626.638L136.604 627.772L132.898 628.906L129.192 630.039L125.487 631.173L121.783 632.307L118.08 633.44L114.378 634.574L110.677 635.707L106.978 636.841L103.28 637.975L99.584 639.108L95.8899 640.242L92.1978 641.376L88.5077 642.509L84.82 643.643L81.1346 644.777L77.4518 645.91L73.7717 647.044L70.0944 648.178L66.4201 649.311L62.749 650.445L59.0811 651.579L55.4165 652.712L51.7556 653.846L48.0982 654.979L44.4448 656.113L40.7953 657.247L37.1498 658.38L33.5085 659.514L29.8717 660.648L26.2394 661.781L22.6116 662.915L18.9888 664.049L15.3708 665.182L11.7578 666.316L8.15014 667.45L4.54772 668.583L0.950788 669.717L-2.64055 670.85L-6.22606 671.984L-9.80577 673.118L-13.3794 674.251L-16.9469 675.385L-20.5081 676.519L-24.0629 677.652L-27.6112 678.786L-31.1527 679.92L-34.6874 681.053L-38.2151 682.187L-41.7358 683.321L-45.2491 684.454L-48.7551 685.588L-52.2536 686.721L-55.7445 687.855L-59.2276 688.989L-62.7027 690.122L-66.17 691.256L-69.6289 692.39L-73.0797 693.523L-76.5219 694.657L-79.9556 695.791L-83.3805 696.924L-86.7968 698.058L-90.204 699.192L-93.6022 700.325L-96.9911 701.459L-100.371 702.593L-103.741 703.726L-107.101 704.86L-110.452 705.993L-113.793 707.127L-117.124 708.261L-120.445 709.394L-123.755 710.528L-127.056 711.662L-130.345 712.795L-133.625 713.929L-136.893 715.063L-140.151 716.196L-143.397 717.33L-146.633 718.464L-149.857 719.597L-153.07 720.731L-156.271 721.864L-159.461 722.998L-162.639 724.132L-165.805 725.265L-168.959 726.399L-172.102 727.533L-175.231 728.666L-178.349 729.8L-181.454 730.934L-184.547 732.067L-187.627 733.201L-190.694 734.335L-193.748 735.468L-196.789 736.602L-199.818 737.736L-202.832 738.869L-205.834 740.003L-208.822 741.136L-211.796 742.27L-214.757 743.404L-217.704 744.537L-220.636 745.671L-223.555 746.805L-226.46 747.938L-229.35 749.072L-232.226 750.206L-235.088 751.339L-237.935 752.473L-240.767 753.607L-243.584 754.74L-246.387 755.874L-249.174 757.007L-251.946 758.141L-254.703 759.275L-257.445 760.408L-260.171 761.542L-262.882 762.676L-265.577 763.809L-268.256 764.943L-270.919 766.077L-273.566 767.21L-276.198 768.344L-278.813 769.478L-281.412 770.611L-283.994 771.745L-286.56 772.878L-289.11 774.012L-291.642 775.146L-294.158 776.279L-296.658 777.413L-299.14 778.547L-301.605 779.68L-304.053 780.814L-306.484 781.948L-308.897 783.081L-311.293 784.215L-313.672 785.349L-316.033 786.482L-318.376 787.616L-320.702 788.75L-323.009 789.883L-325.299 791.017L-327.571 792.15L-329.824 793.284L-332.059 794.418L-334.276 795.551L-336.475 796.685L-338.655 797.819L-340.817 798.952L-342.96 800.086L-345.084 801.22L-347.189 802.353L-349.276 803.487L-351.344 804.621L-353.392 805.754L-355.422 806.888L-357.432 808.021L-359.423 809.155L-361.395 810.289L-363.347 811.422L-365.28 812.556L-367.193 813.69L-369.086 814.823L-370.96 815.957L-372.814 817.091L-374.648 818.224L-376.463 819.358L-378.257 820.492L-380.031 821.625L-381.785 822.759L-383.519 823.893L-385.233 825.026L-386.926 826.16L-388.599 827.293L-390.252 828.427L-391.884 829.561L-393.495 830.694L-395.086 831.828L-396.656 832.962L-398.205 834.095L-399.734 835.229L-401.241 836.363L-402.728 837.496L-404.194 838.63L-405.638 839.764L-407.062 840.897L-408.464 842.031L-409.845 843.164L-411.205 844.298L-412.544 845.432L-413.861 846.565L-415.157 847.699L-416.431 848.833L-417.684 849.966L-418.915 851.1L-420.125 852.234L-421.313 853.367L-422.479 854.501L-423.624 855.635L-424.746 856.768L-425.847 857.902L-426.926 859.036L-427.984 860.169L-429.019 861.303L-430.032 862.436L-431.023 863.57L-431.992 864.704L-432.939 865.837L-433.864 866.971L-434.767 868.105L-435.647 869.238L-436.505 870.372L-437.341 871.506L-438.155 872.639L-438.946 873.773L-439.715 874.907L-440.462 876.04L-441.186 877.174L-441.887 878.307L-442.566 879.441L-443.223 880.575L-443.857 881.708L-444.469 882.842L-445.058 883.976L-445.624 885.109L-446.168 886.243L-446.689 887.377L-447.187 888.51L-447.663 889.644L-448.116 890.778L-448.546 891.911L-448.954 893.045L-449.338 894.178L-449.7 895.312L-450.04 896.446L-450.356 897.579L-450.65 898.713L-450.921 899.847L-451.169 900.98L-451.394 902.114L-451.596 903.248L-451.775 904.381L-451.932 905.515L-452.066 906.649L-452.177 907.782L-452.265 908.916L-452.33 910.05L-452.372 911.183L-452.391 912.317L-452.388 913.45L-452.361 914.584L-452.312 915.718L-452.24 916.851L-452.145 917.985L-452.027 919.119L-451.886 920.252L-451.722 921.386L-451.536 922.52L-451.326 923.653L-451.094 924.787L-450.839 925.921L-450.561 927.054L-450.26 928.188L-449.937 929.321L-449.591 930.455L-449.222 931.589L-448.83 932.722L-448.415 933.856L-447.978 934.99L-447.518 936.123L-447.035 937.257L-446.53 938.391L-446.002 939.524L-445.451 940.658L-444.877 941.792L-444.281 942.925L-443.663 944.059L-443.022 945.193L-442.358 946.326L-441.672 947.46L-440.964 948.593L-440.233 949.727L-439.479 950.861L-438.703 951.994L-437.905 953.128L-437.085 954.262L-436.242 955.395L-435.377 956.529L-434.489 957.663L-433.58 958.796L-432.648 959.93L-431.694 961.064L-430.718 962.197L-429.72 963.331L-428.7 964.464L-427.658 965.598L-426.594 966.732L-425.509 967.865L-424.401 968.999L-423.271 970.133L-422.12 971.266L-420.947 972.4L-419.752 973.534L-418.536 974.667L-417.298 975.801L-416.038 976.935L-414.757 978.068L-413.455 979.202L-412.131 980.336L-410.786 981.469L-409.42 982.603L-408.032 983.736L-406.623 984.87L-405.193 986.004L-403.742 987.137L-402.27 988.271L-400.776 989.405L-399.262 990.538L-397.727 991.672L-396.172 992.806L-394.595 993.939L-392.998 995.073L-391.38 996.207L-389.742 997.34L-388.083 998.474L-386.404 999.607L-384.704 1000.74L-382.984 1001.87L-381.244 1003.01L-379.484 1004.14L-377.703 1005.28L-375.903 1006.41L-374.082 1007.54L-372.242 1008.68L-370.382 1009.81L-368.502 1010.94L-366.602 1012.08L-364.683 1013.21L-362.744 1014.34L-360.785 1015.48L-358.808 1016.61L-356.811 1017.75L-354.795 1018.88L-352.759 1020.01L-350.705 1021.15L-348.631 1022.28L-346.539 1023.41L-344.428 1024.55L-342.298 1025.68L-340.149 1026.81L-337.981 1027.95L-335.796 1029.08L-333.591 1030.22L-331.369 1031.35L-329.128 1032.48L-326.868 1033.62L-324.591 1034.75L-322.296 1035.88L-319.983 1037.02L-317.652 1038.15L-315.303 1039.29L-312.937 1040.42L-310.553 1041.55L-308.151 1042.69L-305.732 1043.82L-303.296 1044.95L-300.843 1046.09L-298.372 1047.22L-295.885 1048.35L-293.38 1049.49L-290.859 1050.62L-288.321 1051.76L-285.767 1052.89L-283.196 1054.02L-280.608 1055.16L-278.004 1056.29L-275.384 1057.42L-272.748 1058.56L-270.095 1059.69L-267.427 1060.82L-264.743 1061.96L-262.043 1063.09L-259.328 1064.23L-256.597 1065.36L-253.85 1066.49L-251.089 1067.63L-248.312 1068.76L-245.519 1069.89L-242.712 1071.03L-239.89 1072.16L-237.054 1073.29L-234.202 1074.43L-231.336 1075.56L-228.456 1076.7L-225.561 1077.83L-222.652 1078.96L-219.729 1080.1L-216.792 1081.23L-213.841 1082.36L-210.876 1083.5L-207.897 1084.63L-204.905 1085.76L-201.899 1086.9L-198.88 1088.03L-195.848 1089.17L-192.803 1090.3L-189.745 1091.43L-186.674 1092.57L-183.59 1093.7L-180.493 1094.83L-177.384 1095.97L-174.263 1097.1L-171.129 1098.23L-167.983 1099.37L-164.825 1100.5L-161.655 1101.64L-158.473 1102.77L-155.28 1103.9L-152.075 1105.04L-148.859 1106.17L-145.631 1107.3L-142.392 1108.44L-139.142 1109.57L-135.881 1110.7L-132.609 1111.84L-129.327 1112.97L-126.034 1114.11L-122.73 1115.24L-119.417 1116.37L-116.093 1117.51L-112.759 1118.64L-109.415 1119.77L-106.061 1120.91L-102.697 1122.04L-99.3242 1123.17L-95.9417 1124.31L-92.5499 1125.44L-89.1489 1126.58L-85.7389 1127.71L-82.3199 1128.84L-78.8922 1129.98L-75.4559 1131.11L-72.0109 1132.24L-68.5577 1133.38L-65.0962 1134.51L-61.6266 1135.64L-58.1488 1136.78L-54.6634 1137.91L-51.1701 1139.05L-47.6693 1140.18L-44.1609 1141.31L-40.6453 1142.45L-37.1224 1143.58L-33.5926 1144.71L-30.0557 1145.85L-26.5121 1146.98L-22.9618 1148.11L-19.405 1149.25L-15.8419 1150.38L-12.2724 1151.52L-8.69687 1152.65L-5.11541 1153.78L-1.52803 1154.92L2.06506 1156.05L5.66364 1157.18L9.2677 1158.32L12.877 1159.45L16.4916 1160.59L20.1112 1161.72L23.7355 1162.85L27.3647 1163.99L30.9984 1165.12L34.6366 1166.25L38.2792 1167.39L41.926 1168.52L45.5767 1169.65L49.2315 1170.79L52.8899 1171.92L56.552 1173.06L60.2176 1174.19L63.8865 1175.32L67.5586 1176.46L71.2338 1177.59L74.9121 1178.72L78.593 1179.86L82.2766 1180.99L85.9627 1182.12L89.6511 1183.26L93.3419 1184.39L97.0346 1185.53L100.729 1186.66L104.426 1187.79L108.124 1188.93L111.824 1190.06L115.525 1191.19L119.228 1192.33L122.931 1193.46L126.635 1194.59L130.341 1195.73L134.047 1196.86L137.753 1198L141.46 1199.13L145.167 1200.26L148.874 1201.4L152.582 1202.53L156.289 1203.66L159.995 1204.8L163.702 1205.93L167.407 1207.06L171.113 1208.2L174.817 1209.33L178.52 1210.47L182.222 1211.6L185.922 1212.73L189.621 1213.87L193.319 1215"
stroke="url(#paint0_linear_5918_1614)"
stroke-width="3"
stroke-miterlimit="10"
stroke-linecap="round"
stroke-linejoin="round"
/>
</g>
<defs>
<linearGradient id="paint0_linear_5918_1614" x1="748.761" y1="608.5" x2="-452.391" y2="608.5" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF8200" />
<stop offset="1" stop-color="#FF8200" />
</linearGradient>
<clipPath id="clip0_5918_1614">
<rect width="751" height="336" fill="white" />
</clipPath>
<mask id="fog-mask" maskUnits="objectBoundingBox">
<linearGradient id="fog-gradient" x1="0" y1="100%" x2="0" y2="0%">
<stop id="stop-visible" offset="100%" stop-color="white" />
<stop id="stop-fog" offset="100%" stop-color="black" />
</linearGradient>
<rect width="200%" height="200%" fill="url(#fog-gradient)" />
</mask>
</defs>
</svg>
<div class="process-item__guide is--1">
<div class="process-item__marker">
<svg width="46" height="306" viewBox="0 0 46 306" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.4" data-figma-bg-blur-radius="200" d="M23 22L23 306" stroke="url(#paint0_linear_5481_1659)" stroke-width="1.5" />
<circle cx="23" cy="23" r="6" fill="#FF8200" />
<g filter="url(#filter1_f_5481_1659)">
<circle cx="23" cy="23" r="8" fill="#FF8200" />
</g>
<defs>
<filter id="filter1_f_5481_1659" x="0" y="0" width="46" height="46" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="7.5" result="effect1_foregroundBlur_5481_1659" />
</filter>
<linearGradient id="paint0_linear_5481_1659" x1="23.5" y1="22" x2="23.5" y2="306" gradientUnits="userSpaceOnUse">
<stop stop-color="#D8C0A6" />
<stop offset="1" stop-color="#D8C0A6" stop-opacity="0" />
</linearGradient>
</defs>
</svg>
</div>
</div>
</div>
<div class="process-main__svg-center">
<svg class="process-main__svg-center-path" viewBox="0 0 1065 573" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_5918_1618)">
<path
d="M403.031 -334L406.209 -332.866L409.392 -331.733L412.58 -330.599L415.772 -329.465L418.969 -328.332L422.17 -327.198L425.375 -326.065L428.585 -324.931L431.798 -323.797L435.015 -322.664L438.236 -321.53L441.461 -320.396L444.689 -319.263L447.92 -318.129L451.154 -316.995L454.392 -315.862L457.633 -314.728L460.876 -313.594L464.122 -312.461L467.371 -311.327L470.622 -310.193L473.876 -309.06L477.132 -307.926L480.39 -306.793L483.65 -305.659L486.912 -304.525L490.175 -303.392L493.44 -302.258L496.707 -301.124L499.975 -299.991L503.244 -298.857L506.515 -297.723L509.786 -296.59L513.058 -295.456L516.331 -294.322L519.605 -293.189L522.879 -292.055L526.154 -290.922L529.428 -289.788L532.703 -288.654L535.978 -287.521L539.253 -286.387L542.527 -285.253L545.801 -284.12L549.075 -282.986L552.348 -281.852L555.62 -280.719L558.891 -279.585L562.161 -278.451L565.43 -277.318L568.698 -276.184L571.965 -275.05L575.23 -273.917L578.493 -272.783L581.755 -271.65L585.014 -270.516L588.272 -269.382L591.528 -268.249L594.781 -267.115L598.032 -265.981L601.28 -264.848L604.526 -263.714L607.769 -262.58L611.01 -261.447L614.247 -260.313L617.481 -259.179L620.712 -258.046L623.94 -256.912L627.164 -255.779L630.384 -254.645L633.601 -253.511L636.814 -252.378L640.023 -251.244L643.227 -250.11L646.428 -248.977L649.624 -247.843L652.816 -246.709L656.003 -245.576L659.186 -244.442L662.363 -243.308L665.536 -242.175L668.704 -241.041L671.866 -239.907L675.023 -238.774L678.175 -237.64L681.321 -236.507L684.462 -235.373L687.596 -234.239L690.725 -233.106L693.848 -231.972L696.964 -230.838L700.075 -229.705L703.179 -228.571L706.276 -227.437L709.367 -226.304L712.451 -225.17L715.528 -224.036L718.599 -222.903L721.662 -221.769L724.718 -220.636L727.766 -219.502L730.808 -218.368L733.841 -217.235L736.867 -216.101L739.886 -214.967L742.896 -213.834L745.898 -212.7L748.892 -211.566L751.878 -210.433L754.856 -209.299L757.825 -208.165L760.785 -207.032L763.737 -205.898L766.68 -204.764L769.614 -203.631L772.539 -202.497L775.455 -201.364L778.361 -200.23L781.259 -199.096L784.146 -197.963L787.025 -196.829L789.893 -195.695L792.752 -194.562L795.6 -193.428L798.439 -192.294L801.268 -191.161L804.086 -190.027L806.894 -188.893L809.692 -187.76L812.479 -186.626L815.255 -185.493L818.02 -184.359L820.775 -183.225L823.519 -182.092L826.251 -180.958L828.973 -179.824L831.683 -178.691L834.382 -177.557L837.069 -176.423L839.744 -175.29L842.408 -174.156L845.06 -173.022L847.7 -171.889L850.329 -170.755L852.945 -169.621L855.548 -168.488L858.14 -167.354L860.719 -166.221L863.286 -165.087L865.84 -163.953L868.381 -162.82L870.909 -161.686L873.425 -160.552L875.928 -159.419L878.417 -158.285L880.894 -157.151L883.357 -156.018L885.806 -154.884L888.243 -153.75L890.665 -152.617L893.074 -151.483L895.47 -150.35L897.851 -149.216L900.219 -148.082L902.572 -146.949L904.912 -145.815L907.237 -144.681L909.548 -143.548L911.844 -142.414L914.127 -141.28L916.394 -140.147L918.647 -139.013L920.885 -137.879L923.109 -136.746L925.317 -135.612L927.511 -134.478L929.69 -133.345L931.853 -132.211L934.001 -131.078L936.134 -129.944L938.252 -128.81L940.354 -127.677L942.44 -126.543L944.511 -125.409L946.566 -124.276L948.606 -123.142L950.629 -122.008L952.637 -120.875L954.629 -119.741L956.604 -118.607L958.564 -117.474L960.507 -116.34L962.434 -115.207L964.344 -114.073L966.238 -112.939L968.116 -111.806L969.977 -110.672L971.821 -109.538L973.648 -108.405L975.459 -107.271L977.253 -106.137L979.03 -105.004L980.789 -103.87L982.532 -102.736L984.258 -101.603L985.966 -100.469L987.657 -99.3355L989.331 -98.2019L990.987 -97.0682L992.626 -95.9346L994.248 -94.8009L995.851 -93.6673L997.437 -92.5336L999.006 -91.4L1000.56 -90.2663L1002.09 -89.1327L1003.6 -87.9991L1005.1 -86.8654L1006.58 -85.7318L1008.04 -84.5981L1009.48 -83.4645L1010.91 -82.3308L1012.31 -81.1972L1013.7 -80.0635L1015.07 -78.9299L1016.42 -77.7962L1017.76 -76.6626L1019.07 -75.529L1020.37 -74.3953L1021.64 -73.2617L1022.9 -72.128L1024.14 -70.9944L1025.36 -69.8607L1026.57 -68.7271L1027.75 -67.5934L1028.91 -66.4598L1030.06 -65.3262L1031.19 -64.1925L1032.3 -63.0589L1033.38 -61.9252L1034.45 -60.7916L1035.5 -59.6579L1036.54 -58.5243L1037.55 -57.3906L1038.54 -56.257L1039.51 -55.1233L1040.47 -53.9897L1041.4 -52.8561L1042.32 -51.7224L1043.22 -50.5888L1044.09 -49.4551L1044.95 -48.3215L1045.79 -47.1878L1046.61 -46.0542L1047.4 -44.9205L1048.18 -43.7869L1048.94 -42.6533L1049.68 -41.5196L1050.4 -40.386L1051.1 -39.2523L1051.78 -38.1187L1052.44 -36.985L1053.08 -35.8514L1053.71 -34.7177L1054.31 -33.5841L1054.89 -32.4504L1055.45 -31.3168L1055.99 -30.1832L1056.51 -29.0495L1057.01 -27.9159L1057.49 -26.7822L1057.96 -25.6486L1058.4 -24.5149L1058.82 -23.3813L1059.22 -22.2476L1059.6 -21.114L1059.96 -19.9804L1060.3 -18.8467L1060.63 -17.7131L1060.93 -16.5794L1061.21 -15.4458L1061.47 -14.3121L1061.71 -13.1785L1061.93 -12.0448L1062.13 -10.9112L1062.31 -9.77755L1062.47 -8.6439L1062.61 -7.51026L1062.73 -6.37661L1062.83 -5.24297L1062.91 -4.10932L1062.96 -2.97568L1063 -1.84203L1063.02 -0.708388L1063.02 0.425257L1063 1.5589L1062.96 2.69255L1062.89 3.82619L1062.81 4.95984L1062.71 6.09348L1062.58 7.22713L1062.44 8.36077L1062.28 9.49442L1062.09 10.6281L1061.89 11.7617L1061.67 12.8954L1061.42 14.029L1061.16 15.1626L1060.87 16.2963L1060.57 17.4299L1060.24 18.5636L1059.9 19.6972L1059.53 20.8309L1059.15 21.9645L1058.74 23.0982L1058.32 24.2318L1057.87 25.3654L1057.41 26.4991L1056.92 27.6327L1056.42 28.7664L1055.89 29.9L1055.35 31.0337L1054.78 32.1673L1054.2 33.301L1053.59 34.4346L1052.97 35.5682L1052.32 36.7019L1051.66 37.8355L1050.97 38.9692L1050.27 40.1028L1049.55 41.2365L1048.8 42.3701L1048.04 43.5038L1047.26 44.6374L1046.46 45.7711L1045.63 46.9047L1044.79 48.0383L1043.93 49.172L1043.05 50.3056L1042.15 51.4393L1041.23 52.5729L1040.29 53.7066L1039.33 54.8402L1038.36 55.9739L1037.36 57.1075L1036.35 58.2411L1035.31 59.3748L1034.26 60.5084L1033.18 61.6421L1032.09 62.7757L1030.98 63.9094L1029.85 65.043L1028.7 66.1767L1027.53 67.3103L1026.34 68.444L1025.14 69.5776L1023.91 70.7112L1022.67 71.8449L1021.41 72.9785L1020.13 74.1122L1018.83 75.2458L1017.51 76.3795L1016.17 77.5131L1014.82 78.6468L1013.45 79.7804L1012.05 80.914L1010.64 82.0477L1009.22 83.1813L1007.77 84.315L1006.31 85.4486L1004.82 86.5823L1003.32 87.7159L1001.81 88.8496L1000.27 89.9832L998.715 91.1168L997.144 92.2505L995.554 93.3841L993.947 94.5178L992.323 95.6514L990.681 96.7851L989.021 97.9187L987.344 99.0524L985.65 100.186L983.938 101.32L982.209 102.453L980.463 103.587L978.7 104.721L976.92 105.854L975.123 106.988L973.31 108.122L971.479 109.255L969.632 110.389L967.768 111.522L965.887 112.656L963.99 113.79L962.077 114.923L960.147 116.057L958.2 117.191L956.238 118.324L954.26 119.458L952.265 120.592L950.254 121.725L948.228 122.859L946.185 123.993L944.127 125.126L942.053 126.26L939.964 127.393L937.859 128.527L935.739 129.661L933.603 130.794L931.452 131.928L929.286 133.062L927.104 134.195L924.908 135.329L922.696 136.463L920.47 137.596L918.229 138.73L915.974 139.864L913.703 140.997L911.418 142.131L909.119 143.265L906.805 144.398L904.478 145.532L902.136 146.665L899.779 147.799L897.409 148.933L895.025 150.066L892.627 151.2L890.216 152.334L887.791 153.467L885.352 154.601L882.9 155.735L880.434 156.868L877.955 158.002L875.463 159.136L872.958 160.269L870.44 161.403L867.909 162.536L865.366 163.67L862.809 164.804L860.24 165.937L857.659 167.071L855.065 168.205L852.459 169.338L849.841 170.472L847.21 171.606L844.568 172.739L841.914 173.873L839.248 175.007L836.57 176.14L833.881 177.274L831.18 178.407L828.467 179.541L825.744 180.675L823.009 181.808L820.264 182.942L817.507 184.076L814.739 185.209L811.961 186.343L809.172 187.477L806.373 188.61L803.563 189.744L800.742 190.878L797.912 192.011L795.071 193.145L792.221 194.279L789.36 195.412L786.49 196.546L783.61 197.679L780.721 198.813L777.822 199.947L774.913 201.08L771.996 202.214L769.069 203.348L766.133 204.481L763.189 205.615L760.235 206.749L757.273 207.882L754.302 209.016L751.323 210.15L748.336 211.283L745.34 212.417L742.337 213.55L739.325 214.684L736.305 215.818L733.278 216.951L730.243 218.085L727.2 219.219L724.15 220.352L721.093 221.486L718.028 222.62L714.957 223.753L711.878 224.887L708.793 226.021L705.701 227.154L702.602 228.288L699.497 229.422L696.385 230.555L693.268 231.689L690.144 232.822L687.014 233.956L683.878 235.09L680.736 236.223L677.589 237.357L674.437 238.491L671.278 239.624L668.115 240.758L664.946 241.892L661.773 243.025L658.594 244.159L655.411 245.293L652.223 246.426L649.03 247.56L645.833 248.693L642.632 249.827L639.426 250.961L636.216 252.094L633.003 253.228L629.785 254.362L626.564 255.495L623.34 256.629L620.111 257.763L616.88 258.896L613.645 260.03L610.407 261.164L607.167 262.297L603.923 263.431L600.677 264.564L597.428 265.698L594.176 266.832L590.922 267.965L587.666 269.099L584.408 270.233L581.148 271.366L577.886 272.5L574.623 273.634L571.357 274.767L568.09 275.901L564.822 277.035L561.553 278.168L558.283 279.302L555.011 280.436L551.739 281.569L548.466 282.703L545.192 283.836L541.918 284.97L538.644 286.104L535.369 287.237L532.094 288.371L528.819 289.505L525.545 290.638L522.27 291.772L518.996 292.906L515.723 294.039L512.45 295.173L509.178 296.307L505.907 297.44L502.636 298.574L499.367 299.707L496.1 300.841L492.833 301.975L489.568 303.108L486.305 304.242L483.044 305.376L479.784 306.509L476.526 307.643L473.271 308.777L470.018 309.91L466.767 311.044L463.518 312.178L460.273 313.311L457.03 314.445L453.79 315.579L450.553 316.712L447.319 317.846L444.088 318.979L440.861 320.113L437.637 321.247L434.417 322.38L431.2 323.514L427.987 324.648L424.779 325.781L421.574 326.915L418.374 328.049L415.178 329.182L411.987 330.316L408.8 331.45L405.617 332.583L402.44 333.717L399.268 334.85L396.1 335.984L392.938 337.118L389.781 338.251L386.63 339.385L383.484 340.519L380.344 341.652L377.21 342.786L374.081 343.92L370.959 345.053L367.843 346.187L364.733 347.321L361.629 348.454L358.532 349.588L355.442 350.721L352.358 351.855L349.281 352.989L346.211 354.122L343.149 355.256L340.093 356.39L337.045 357.523L334.004 358.657L330.971 359.791L327.946 360.924L324.928 362.058L321.918 363.192L318.916 364.325L315.923 365.459L312.937 366.593L309.96 367.726L306.992 368.86L304.032 369.993L301.081 371.127L298.138 372.261L295.205 373.394L292.28 374.528L289.365 375.662L286.459 376.795L283.562 377.929L280.675 379.063L277.798 380.196L274.93 381.33L272.072 382.464L269.223 383.597L266.385 384.731L263.557 385.864L260.74 386.998L257.932 388.132L255.135 389.265L252.349 390.399L249.573 391.533L246.809 392.666L244.055 393.8L241.312 394.934L238.58 396.067L235.859 397.201L233.15 398.335L230.452 399.468L227.765 400.602L225.09 401.736L222.427 402.869L219.776 404.003L217.137 405.136L214.509 406.27L211.894 407.404L209.291 408.537L206.7 409.671L204.122 410.805L201.556 411.938L199.003 413.072L196.462 414.206L193.934 415.339L191.42 416.473L188.918 417.607L186.429 418.74L183.954 419.874L181.491 421.007L179.042 422.141L176.607 423.275L174.185 424.408L171.777 425.542L169.383 426.676L167.002 427.809L164.635 428.943L162.283 430.077L159.944 431.21L157.62 432.344L155.31 433.478L153.014 434.611L150.733 435.745L148.466 436.878L146.214 438.012L143.977 439.146L141.754 440.279L139.546 441.413L137.354 442.547L135.176 443.68L133.013 444.814L130.866 445.948L128.734 447.081L126.618 448.215L124.517 449.349L122.431 450.482L120.361 451.616L118.307 452.75L116.268 453.883L114.246 455.017L112.239 456.15L110.248 457.284L108.274 458.418L106.316 459.551L104.373 460.685L102.448 461.819L100.538 462.952L98.6452 464.086L96.7687 465.22L94.9088 466.353L93.0656 467.487L91.2392 468.621L89.4296 469.754L87.6369 470.888L85.8611 472.021L84.1023 473.155L82.3606 474.289L80.6361 475.422L78.9287 476.556L77.2387 477.69L75.5661 478.823L73.9108 479.957L72.273 481.091L70.6527 482.224L69.05 483.358L67.465 484.492L65.8978 485.625L64.3483 486.759L62.8166 487.893L61.3028 489.026L59.807 490.16L58.3292 491.293L56.8694 492.427L55.4278 493.561L54.0044 494.694L52.5992 495.828L51.2122 496.962L49.8437 498.095L48.4935 499.229L47.1617 500.363L45.8485 501.496L44.5537 502.63L43.2776 503.764L42.0202 504.897L40.7814 506.031L39.5613 507.164L38.36 508.298L37.1777 509.432L36.0141 510.565L34.8694 511.699L33.7438 512.833L32.6371 513.966L31.5495 515.1L30.4809 516.234L29.4314 517.367L28.4013 518.501L27.3902 519.635L26.3984 520.768L25.4259 521.902L24.4727 523.036L23.5389 524.169L22.6245 525.303L21.7294 526.436L20.8539 527.57L19.9978 528.704L19.1613 529.837L18.3443 530.971L17.547 532.105L16.7692 533.238L16.0112 534.372L15.2727 535.506L14.554 536.639L13.855 537.773L13.1758 538.907L12.5164 540.04L11.8768 541.174L11.257 542.307L10.6571 543.441L10.0771 544.575L9.51692 545.708L8.97682 546.842L8.4565 547.976L7.95625 549.109L7.47597 550.243L7.01567 551.377L6.57543 552.51L6.15516 553.644L5.75505 554.778L5.37492 555.911L5.01495 557.045L4.67506 558.178L4.35522 559.312L4.05556 560.446L3.77606 561.579L3.51663 562.713L3.27736 563.847L3.05835 564.98L2.85942 566.114L2.68074 567.248L2.52223 568.381L2.38389 569.515L2.26571 570.649L2.16779 571.782L2.09014 572.916L2.03255 574.05L1.99532 575.183L1.97816 576.317L1.98136 577.45L2.00473 578.584L2.04825 579.718L2.11205 580.851L2.196 581.985L2.30022 583.119L2.42461 584.252L2.56916 585.386L2.73397 586.52L2.91894 587.653L3.12408 588.787L3.34939 589.921L3.59486 591.054L3.8605 592.188L4.1463 593.321L4.45217 594.455L4.77821 595.589L5.12441 596.722L5.49058 597.856L5.87692 598.99L6.28332 600.123L6.7097 601.257L7.15624 602.391L7.62265 603.524L8.10914 604.658L8.61569 605.792L9.14212 606.925L9.68842 608.059L10.2547 609.193L10.8409 610.326L11.447 611.46L12.0729 612.593L12.7187 613.727L13.3843 614.861L14.0696 615.994L14.7747 617.128L15.4995 618.262L16.244 619.395L17.0082 620.529L17.792 621.663L18.5955 622.796L19.4185 623.93L20.2611 625.064L21.1232 626.197L22.0048 627.331L22.9058 628.464L23.8262 629.598L24.766 630.732L25.7252 631.865L26.7037 632.999L27.7015 634.133L28.7185 635.266L29.7547 636.4L30.81 637.534L31.8845 638.667L32.9781 639.801L34.0907 640.935L35.2222 642.068L36.3727 643.202L37.5421 644.336L38.7304 645.469L39.9375 646.603L41.1634 647.736L42.4079 648.87L43.6712 650.004L44.9531 651.137L46.2535 652.271L47.5725 653.405L48.91 654.538L50.2659 655.672L51.6401 656.806L53.0328 657.939L54.4436 659.073L55.8727 660.207L57.3199 661.34L58.7853 662.474L60.2687 663.607L61.77 664.741L63.2894 665.875L64.8266 667.008L66.3816 668.142L67.9544 669.276L69.5448 670.409L71.153 671.543L72.7787 672.677L74.4219 673.81L76.0826 674.944L77.7607 676.078L79.4561 677.211L81.1688 678.345L82.8986 679.479L84.6456 680.612L86.4097 681.746L88.1907 682.879L89.9887 684.013L91.8035 685.147L93.6351 686.28L95.4835 687.414L97.3485 688.548L99.2301 689.681L101.128 690.815L103.043 691.949L104.974 693.082L106.921 694.216L108.884 695.35L110.864 696.483L112.859 697.617L114.871 698.75L116.899 699.884L118.942 701.018L121.001 702.151L123.076 703.285L125.166 704.419L127.272 705.552L129.393 706.686L131.53 707.82L133.682 708.953L135.849 710.087L138.032 711.221L140.229 712.354L142.441 713.488L144.668 714.622L146.91 715.755L149.167 716.889L151.438 718.022L153.724 719.156L156.024 720.29L158.339 721.423L160.667 722.557L163.01 723.691L165.367 724.824L167.738 725.958L170.123 727.092L172.522 728.225L174.934 729.359L177.36 730.493L179.8 731.626L182.253 732.76L184.719 733.893L187.199 735.027L189.692 736.161L192.198 737.294L194.716 738.428L197.248 739.562L199.793 740.695L202.35 741.829L204.919 742.963L207.502 744.096L210.096 745.23L212.703 746.364L215.322 747.497L217.953 748.631L220.596 749.765L223.251 750.898L225.918 752.032L228.597 753.165L231.287 754.299L233.988 755.433L236.701 756.566L239.425 757.7L242.161 758.834L244.907 759.967L247.664 761.101L250.433 762.235L253.212 763.368L256.001 764.502L258.801 765.636L261.612 766.769L264.433 767.903L267.264 769.036L270.105 770.17L272.956 771.304L275.818 772.437L278.688 773.571L281.569 774.705L284.459 775.838L287.359 776.972L290.267 778.106L293.186 779.239L296.113 780.373L299.049 781.507L301.994 782.64L304.948 783.774L307.911 784.908L310.882 786.041L313.862 787.175L316.85 788.308L319.846 789.442L322.85 790.576L325.862 791.709L328.882 792.843L331.91 793.977L334.946 795.11L337.989 796.244L341.039 797.378L344.097 798.511L347.162 799.645L350.234 800.779L353.313 801.912L356.399 803.046L359.491 804.179L362.59 805.313L365.696 806.447L368.808 807.58L371.926 808.714L375.05 809.848L378.181 810.981L381.317 812.115L384.459 813.249L387.606 814.382L390.759 815.516L393.918 816.65L397.081 817.783L400.25 818.917L403.424 820.051L406.603 821.184L409.787 822.318L412.975 823.451L416.168 824.585L419.365 825.719L422.567 826.852L425.773 827.986L428.983 829.12L432.197 830.253L435.414 831.387L438.636 832.521L441.861 833.654L445.089 834.788L448.321 835.922L451.556 837.055L454.794 838.189L458.035 839.322L461.278 840.456L464.525 841.59L467.774 842.723L471.026 843.857L474.28 844.991L477.536 846.124L480.794 847.258L484.054 848.392L487.316 849.525L490.58 850.659L493.845 851.793L497.112 852.926L500.38 854.06L503.65 855.194L506.92 856.327L510.192 857.461L513.464 858.594L516.737 859.728L520.011 860.862L523.285 861.995L526.56 863.129L529.834 864.263L533.109 865.396L536.384 866.53L539.659 867.664L542.933 868.797L546.207 869.931L549.48 871.065L552.753 872.198L556.025 873.332L559.296 874.465L562.566 875.599L565.835 876.733L569.103 877.866L572.369 879"
stroke="url(#paint0_linear_5918_1618)"
stroke-width="3"
stroke-miterlimit="10"
stroke-linecap="round"
stroke-linejoin="round"
/>
</g>
<defs>
<linearGradient id="paint0_linear_5918_1618" x1="1063.02" y1="272.5" x2="1.97813" y2="272.5" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF8200" />
<stop offset="1" stop-color="#FF8200" />
</linearGradient>
<clipPath id="clip0_5918_1618">
<rect width="1065" height="573" fill="white" />
</clipPath>
<mask id="fog-mask-center" maskUnits="objectBoundingBox">
<linearGradient id="fog-gradient-c" x1="0" y1="100%" x2="0" y2="0%">
<stop id="stop-visible-center" offset="100%" stop-color="white" />
<stop id="stop-fog-center" offset="100%" stop-color="black" />
</linearGradient>
<rect width="200%" height="200%" fill="url(#fog-gradient-c)" />
</mask>
</defs>
</svg>
<div class="process-item__guide is--2">
<div class="process-item__marker">
<svg width="46" height="306" viewBox="0 0 46 306" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.4" data-figma-bg-blur-radius="200" d="M23 22L23 306" stroke="url(#paint0_linear_5481_1659)" stroke-width="1.5" />
<circle cx="23" cy="23" r="6" fill="#FF8200" />
<g filter="url(#filter1_f_5481_1659)">
<circle cx="23" cy="23" r="8" fill="#FF8200" />
</g>
<defs>
<filter id="filter1_f_5481_1659" x="0" y="0" width="46" height="46" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="7.5" result="effect1_foregroundBlur_5481_1659" />
</filter>
<linearGradient id="paint0_linear_5481_1659" x1="23.5" y1="22" x2="23.5" y2="306" gradientUnits="userSpaceOnUse">
<stop stop-color="#D8C0A6" />
<stop offset="1" stop-color="#D8C0A6" stop-opacity="0" />
</linearGradient>
</defs>
</svg>
</div>
</div>
</div>
<div class="process-main__svg-bottom">
<svg class="process-main__svg-bottom-path" viewBox="0 0 693 502" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_5918_1619)">
<path
d="M491.117 -1494.48L494.99 -1492.61L498.869 -1490.75L502.754 -1488.88L506.644 -1487.02L510.539 -1485.15L514.44 -1483.28L518.346 -1481.42L522.257 -1479.55L526.173 -1477.69L530.093 -1475.82L534.018 -1473.95L537.947 -1472.09L541.881 -1470.22L545.818 -1468.36L549.76 -1466.49L553.705 -1464.62L557.654 -1462.76L561.606 -1460.89L565.562 -1459.03L569.521 -1457.16L573.483 -1455.3L577.448 -1453.43L581.415 -1451.56L585.385 -1449.7L589.358 -1447.83L593.333 -1445.97L597.31 -1444.1L601.288 -1442.23L605.269 -1440.37L609.251 -1438.5L613.235 -1436.64L617.221 -1434.77L621.207 -1432.9L625.194 -1431.04L629.183 -1429.17L633.172 -1427.31L637.162 -1425.44L641.152 -1423.58L645.142 -1421.71L649.133 -1419.84L653.123 -1417.98L657.114 -1416.11L661.104 -1414.25L665.094 -1412.38L669.083 -1410.51L673.071 -1408.65L677.058 -1406.78L681.045 -1404.92L685.03 -1403.05L689.013 -1401.19L692.995 -1399.32L696.976 -1397.45L700.954 -1395.59L704.931 -1393.72L708.906 -1391.86L712.878 -1389.99L716.848 -1388.12L720.815 -1386.26L724.779 -1384.39L728.741 -1382.53L732.699 -1380.66L736.655 -1378.79L740.607 -1376.93L744.555 -1375.06L748.5 -1373.2L752.441 -1371.33L756.378 -1369.47L760.311 -1367.6L764.24 -1365.73L768.164 -1363.87L772.084 -1362L775.999 -1360.14L779.909 -1358.27L783.815 -1356.4L787.715 -1354.54L791.61 -1352.67L795.499 -1350.81L799.383 -1348.94L803.261 -1347.07L807.133 -1345.21L810.999 -1343.34L814.859 -1341.48L818.713 -1339.61L822.56 -1337.75L826.401 -1335.88L830.235 -1334.01L834.062 -1332.15L837.881 -1330.28L841.694 -1328.42L845.499 -1326.55L849.297 -1324.68L853.087 -1322.82L856.87 -1320.95L860.644 -1319.09L864.411 -1317.22L868.169 -1315.36L871.919 -1313.49L875.66 -1311.62L879.393 -1309.76L883.117 -1307.89L886.832 -1306.03L890.538 -1304.16L894.234 -1302.29L897.922 -1300.43L901.6 -1298.56L905.268 -1296.7L908.926 -1294.83L912.575 -1292.96L916.213 -1291.1L919.842 -1289.23L923.46 -1287.37L927.067 -1285.5L930.664 -1283.64L934.25 -1281.77L937.826 -1279.9L941.39 -1278.04L944.943 -1276.17L948.485 -1274.31L952.016 -1272.44L955.535 -1270.57L959.042 -1268.71L962.537 -1266.84L966.021 -1264.98L969.492 -1263.11L972.951 -1261.25L976.398 -1259.38L979.833 -1257.51L983.254 -1255.65L986.663 -1253.78L990.06 -1251.92L993.443 -1250.05L996.813 -1248.18L1000.17 -1246.32L1003.51 -1244.45L1006.84 -1242.59L1010.16 -1240.72L1013.46 -1238.85L1016.75 -1236.99L1020.02 -1235.12L1023.28 -1233.26L1026.53 -1231.39L1029.76 -1229.53L1032.98 -1227.66L1036.18 -1225.79L1039.37 -1223.93L1042.54 -1222.06L1045.7 -1220.2L1048.84 -1218.33L1051.97 -1216.46L1055.08 -1214.6L1058.18 -1212.73L1061.26 -1210.87L1064.33 -1209L1067.38 -1207.13L1070.41 -1205.27L1073.43 -1203.4L1076.43 -1201.54L1079.41 -1199.67L1082.38 -1197.81L1085.34 -1195.94L1088.27 -1194.07L1091.19 -1192.21L1094.09 -1190.34L1096.98 -1188.48L1099.85 -1186.61L1102.7 -1184.74L1105.53 -1182.88L1108.35 -1181.01L1111.14 -1179.15L1113.92 -1177.28L1116.69 -1175.42L1119.43 -1173.55L1122.16 -1171.68L1124.87 -1169.82L1127.56 -1167.95L1130.23 -1166.09L1132.89 -1164.22L1135.53 -1162.35L1138.14 -1160.49L1140.74 -1158.62L1143.32 -1156.76L1145.88 -1154.89L1148.43 -1153.02L1150.95 -1151.16L1153.46 -1149.29L1155.94 -1147.43L1158.41 -1145.56L1160.85 -1143.7L1163.28 -1141.83L1165.69 -1139.96L1168.07 -1138.1L1170.44 -1136.23L1172.79 -1134.37L1175.12 -1132.5L1177.43 -1130.63L1179.71 -1128.77L1181.98 -1126.9L1184.23 -1125.04L1186.46 -1123.17L1188.66 -1121.3L1190.85 -1119.44L1193.01 -1117.57L1195.16 -1115.71L1197.28 -1113.84L1199.38 -1111.98L1201.47 -1110.11L1203.53 -1108.24L1205.57 -1106.38L1207.59 -1104.51L1209.58 -1102.65L1211.56 -1100.78L1213.51 -1098.91L1215.45 -1097.05L1217.36 -1095.18L1219.25 -1093.32L1221.11 -1091.45L1222.96 -1089.59L1224.78 -1087.72L1226.59 -1085.85L1228.37 -1083.99L1230.12 -1082.12L1231.86 -1080.26L1233.57 -1078.39L1235.27 -1076.52L1236.93 -1074.66L1238.58 -1072.79L1240.21 -1070.93L1241.81 -1069.06L1243.39 -1067.19L1244.94 -1065.33L1246.48 -1063.46L1247.99 -1061.6L1249.48 -1059.73L1250.94 -1057.87L1252.38 -1056L1253.8 -1054.13L1255.2 -1052.27L1256.57 -1050.4L1257.92 -1048.54L1259.25 -1046.67L1260.55 -1044.8L1261.83 -1042.94L1263.09 -1041.07L1264.32 -1039.21L1265.53 -1037.34L1266.72 -1035.47L1267.88 -1033.61L1269.02 -1031.74L1270.14 -1029.88L1271.23 -1028.01L1272.3 -1026.15L1273.34 -1024.28L1274.36 -1022.41L1275.36 -1020.55L1276.33 -1018.68L1277.28 -1016.82L1278.21 -1014.95L1279.11 -1013.08L1279.99 -1011.22L1280.84 -1009.35L1281.67 -1007.49L1282.47 -1005.62L1283.26 -1003.76L1284.01 -1001.89L1284.74 -1000.02L1285.45 -998.158L1286.14 -996.292L1286.8 -994.426L1287.43 -992.56L1288.04 -990.694L1288.63 -988.828L1289.19 -986.962L1289.73 -985.097L1290.24 -983.231L1290.73 -981.365L1291.2 -979.499L1291.64 -977.633L1292.05 -975.767L1292.44 -973.901L1292.81 -972.035L1293.15 -970.17L1293.47 -968.304L1293.76 -966.438L1294.03 -964.572L1294.28 -962.706L1294.5 -960.84L1294.69 -958.974L1294.86 -957.109L1295.01 -955.243L1295.13 -953.377L1295.22 -951.511L1295.29 -949.645L1295.34 -947.779L1295.36 -945.913L1295.36 -944.047L1295.34 -942.182L1295.28 -940.316L1295.21 -938.45L1295.11 -936.584L1294.98 -934.718L1294.83 -932.852L1294.66 -930.986L1294.46 -929.121L1294.23 -927.255L1293.98 -925.389L1293.71 -923.523L1293.41 -921.657L1293.09 -919.791L1292.75 -917.925L1292.37 -916.059L1291.98 -914.194L1291.56 -912.328L1291.11 -910.462L1290.64 -908.596L1290.15 -906.73L1289.63 -904.864L1289.09 -902.998L1288.52 -901.133L1287.93 -899.267L1287.32 -897.401L1286.68 -895.535L1286.01 -893.669L1285.32 -891.803L1284.61 -889.937L1283.87 -888.071L1283.11 -886.206L1282.33 -884.34L1281.52 -882.474L1280.68 -880.608L1279.83 -878.742L1278.94 -876.876L1278.04 -875.01L1277.11 -873.144L1276.15 -871.279L1275.18 -869.413L1274.18 -867.547L1273.15 -865.681L1272.1 -863.815L1271.03 -861.949L1269.93 -860.083L1268.81 -858.218L1267.67 -856.352L1266.5 -854.486L1265.31 -852.62L1264.1 -850.754L1262.86 -848.888L1261.6 -847.022L1260.31 -845.156L1259 -843.291L1257.67 -841.425L1256.32 -839.559L1254.94 -837.693L1253.54 -835.827L1252.12 -833.961L1250.67 -832.095L1249.2 -830.23L1247.71 -828.364L1246.19 -826.498L1244.65 -824.632L1243.09 -822.766L1241.51 -820.9L1239.91 -819.034L1238.28 -817.168L1236.63 -815.303L1234.95 -813.437L1233.26 -811.571L1231.54 -809.705L1229.8 -807.839L1228.04 -805.973L1226.25 -804.107L1224.45 -802.242L1222.62 -800.376L1220.77 -798.51L1218.9 -796.644L1217 -794.778L1215.09 -792.912L1213.15 -791.046L1211.19 -789.18L1209.21 -787.315L1207.21 -785.449L1205.19 -783.583L1203.15 -781.717L1201.08 -779.851L1199 -777.985L1196.89 -776.119L1194.76 -774.253L1192.61 -772.388L1190.44 -770.522L1188.25 -768.656L1186.04 -766.79L1183.81 -764.924L1181.56 -763.058L1179.29 -761.192L1177 -759.327L1174.69 -757.461L1172.36 -755.595L1170 -753.729L1167.63 -751.863L1165.24 -749.997L1162.83 -748.131L1160.4 -746.265L1157.95 -744.4L1155.48 -742.534L1152.99 -740.668L1150.48 -738.802L1147.96 -736.936L1145.41 -735.07L1142.84 -733.204L1140.26 -731.339L1137.66 -729.473L1135.04 -727.607L1132.4 -725.741L1129.74 -723.875L1127.06 -722.009L1124.37 -720.143L1121.66 -718.277L1118.92 -716.412L1116.18 -714.546L1113.41 -712.68L1110.62 -710.814L1107.82 -708.948L1105 -707.082L1102.17 -705.216L1099.31 -703.351L1096.44 -701.485L1093.55 -699.619L1090.65 -697.753L1087.73 -695.887L1084.79 -694.021L1081.83 -692.155L1078.86 -690.289L1075.87 -688.424L1072.87 -686.558L1069.85 -684.692L1066.81 -682.826L1063.76 -680.96L1060.69 -679.094L1057.61 -677.228L1054.51 -675.362L1051.39 -673.497L1048.26 -671.631L1045.12 -669.765L1041.95 -667.899L1038.78 -666.033L1035.59 -664.167L1032.38 -662.301L1029.16 -660.436L1025.93 -658.57L1022.68 -656.704L1019.42 -654.838L1016.14 -652.972L1012.85 -651.106L1009.54 -649.24L1006.22 -647.374L1002.89 -645.509L999.546 -643.643L996.187 -641.777L992.814 -639.911L989.429 -638.045L986.03 -636.179L982.619 -634.313L979.195 -632.448L975.758 -630.582L972.309 -628.716L968.848 -626.85L965.374 -624.984L961.888 -623.118L958.391 -621.252L954.881 -619.386L951.36 -617.521L947.827 -615.655L944.283 -613.789L940.728 -611.923L937.162 -610.057L933.584 -608.191L929.996 -606.325L926.397 -604.46L922.788 -602.594L919.168 -600.728L915.537 -598.862L911.897 -596.996L908.247 -595.13L904.586 -593.264L900.916 -591.398L897.237 -589.533L893.548 -587.667L889.849 -585.801L886.141 -583.935L882.425 -582.069L878.699 -580.203L874.965 -578.337L871.222 -576.472L867.471 -574.606L863.711 -572.74L859.943 -570.874L856.167 -569.008L852.383 -567.142L848.591 -565.276L844.792 -563.41L840.986 -561.545L837.172 -559.679L833.35 -557.813L829.522 -555.947L825.687 -554.081L821.845 -552.215L817.997 -550.349L814.142 -548.483L810.281 -546.618L806.413 -544.752L802.54 -542.886L798.661 -541.02L794.776 -539.154L790.886 -537.288L786.99 -535.422L783.089 -533.557L779.182 -531.691L775.271 -529.825L771.355 -527.959L767.435 -526.093L763.509 -524.227L759.58 -522.361L755.646 -520.495L751.708 -518.63L747.767 -516.764L743.821 -514.898L739.872 -513.032L735.919 -511.166L731.963 -509.3L728.004 -507.434L724.042 -505.569L720.077 -503.703L716.109 -501.837L712.139 -499.971L708.167 -498.105L704.192 -496.239L700.215 -494.373L696.236 -492.507L692.255 -490.642L688.272 -488.776L684.289 -486.91L680.303 -485.044L676.317 -483.178L672.329 -481.312L668.341 -479.446L664.352 -477.581L660.362 -475.715L656.372 -473.849L652.381 -471.983L648.391 -470.117L644.4 -468.251L640.41 -466.385L636.42 -464.519L632.43 -462.654L628.441 -460.788L624.453 -458.922L620.465 -457.056L616.479 -455.19L612.494 -453.324L608.511 -451.458L604.529 -449.593L600.548 -447.727L596.57 -445.861L592.593 -443.995L588.619 -442.129L584.647 -440.263L580.677 -438.397L576.71 -436.531L572.746 -434.666L568.785 -432.8L564.826 -430.934L560.871 -429.068L556.919 -427.202L552.971 -425.336L549.026 -423.47L545.086 -421.604L541.149 -419.739L537.216 -417.873L533.288 -416.007L529.364 -414.141L525.444 -412.275L521.529 -410.409L517.619 -408.543L513.714 -406.678L509.814 -404.812L505.92 -402.946L502.031 -401.08L498.147 -399.214L494.27 -397.348L490.398 -395.482L486.532 -393.616L482.672 -391.751L478.819 -389.885L474.972 -388.019L471.132 -386.153L467.299 -384.287L463.472 -382.421L459.653 -380.555L455.841 -378.69L452.036 -376.824L448.238 -374.958L444.449 -373.092L440.667 -371.226L436.893 -369.36L433.127 -367.494L429.369 -365.628L425.62 -363.763L421.879 -361.897L418.147 -360.031L414.424 -358.165L410.709 -356.299L407.004 -354.433L403.308 -352.567L399.621 -350.702L395.943 -348.836L392.276 -346.97L388.618 -345.104L384.97 -343.238L381.332 -341.372L377.704 -339.506L374.087 -337.64L370.48 -335.775L366.884 -333.909L363.298 -332.043L359.724 -330.177L356.16 -328.311L352.608 -326.445L349.066 -324.579L345.536 -322.714L342.018 -320.848L338.512 -318.982L335.017 -317.116L331.534 -315.25L328.064 -313.384L324.605 -311.518L321.159 -309.652L317.726 -307.787L314.305 -305.921L310.896 -304.055L307.501 -302.189L304.119 -300.323L300.75 -298.457L297.394 -296.591L294.051 -294.725L290.722 -292.86L287.407 -290.994L284.105 -289.128L280.817 -287.262L277.544 -285.396L274.284 -283.53L271.039 -281.664L267.808 -279.799L264.592 -277.933L261.39 -276.067L258.203 -274.201L255.031 -272.335L251.874 -270.469L248.732 -268.603L245.606 -266.737L242.494 -264.872L239.399 -263.006L236.318 -261.14L233.254 -259.274L230.205 -257.408L227.173 -255.542L224.156 -253.676L221.156 -251.811L218.172 -249.945L215.204 -248.079L212.253 -246.213L209.318 -244.347L206.4 -242.481L203.499 -240.615L200.615 -238.749L197.748 -236.884L194.899 -235.018L192.066 -233.152L189.251 -231.286L186.454 -229.42L183.674 -227.554L180.912 -225.688L178.168 -223.823L175.441 -221.957L172.733 -220.091L170.043 -218.225L167.371 -216.359L164.717 -214.493L162.082 -212.627L159.465 -210.761L156.867 -208.896L154.288 -207.03L151.728 -205.164L149.186 -203.298L146.664 -201.432L144.161 -199.566L141.677 -197.7L139.212 -195.835L136.767 -193.969L134.341 -192.103L131.935 -190.237L129.549 -188.371L127.182 -186.505L124.835 -184.639L122.508 -182.773L120.202 -180.908L117.915 -179.042L115.649 -177.176L113.403 -175.31L111.177 -173.444L108.972 -171.578L106.787 -169.712L104.623 -167.846L102.48 -165.981L100.358 -164.115L98.2562 -162.249L96.1757 -160.383L94.1163 -158.517L92.0781 -156.651L90.061 -154.785L88.0652 -152.92L86.0907 -151.054L84.1378 -149.188L82.2064 -147.322L80.2965 -145.456L78.4083 -143.59L76.5419 -141.724L74.6973 -139.858L72.8745 -137.993L71.0736 -136.127L69.2948 -134.261L67.5381 -132.395L65.8036 -130.529L64.0912 -128.663L62.4011 -126.797L60.7335 -124.932L59.0882 -123.066L57.4653 -121.2L55.865 -119.334L54.2873 -117.468L52.7323 -115.602L51.2 -113.736L49.6904 -111.87L48.2037 -110.005L46.7398 -108.139L45.299 -106.273L43.8811 -104.407L42.4863 -102.541L41.1146 -100.675L39.766 -98.8094L38.4406 -96.9435L37.1385 -95.0776L35.8597 -93.2118L34.6043 -91.3459L33.3723 -89.48L32.1637 -87.6142L30.9786 -85.7483L29.817 -83.8824L28.6791 -82.0166L27.5649 -80.1507L26.4742 -78.2848L25.4073 -76.419L24.3642 -74.5531L23.3447 -72.6872L22.3492 -70.8214L21.3776 -68.9555L20.4298 -67.0896L19.5061 -65.2238L18.6062 -63.3579L17.7305 -61.492L16.8787 -59.6262L16.051 -57.7603L15.2474 -55.8944L14.4681 -54.0286L13.7128 -52.1627L12.9818 -50.2968L12.275 -48.431L11.5924 -46.5651L10.9342 -44.6992L10.3002 -42.8333L9.69059 -40.9675L9.10534 -39.1016L8.54442 -37.2357L8.00796 -35.3699L7.49583 -33.504L7.00827 -31.6381L6.54505 -29.7723L6.10641 -27.9064L5.69222 -26.0405L5.30248 -24.1747L4.93732 -22.3088L4.59672 -20.4429L4.28059 -18.5771L3.98902 -16.7112L3.72215 -14.8453L3.47973 -12.9795L3.262 -11.1136L3.06885 -9.24773L2.90026 -7.38186L2.75625 -5.51599L2.63693 -3.65012L2.54231 -1.78425L2.47213 0.0816143L2.42677 1.94748L2.40586 3.81335L2.40975 5.67922L2.43823 7.54509L2.49127 9.41095L2.569 11.2768L2.67131 13.1427L2.79831 15.0086L2.94988 16.8744L3.12602 18.7403L3.32686 20.6062L3.55227 22.472L3.80225 24.3379L4.0768 26.2038L4.37592 28.0696L4.69962 29.9355L5.04789 31.8014L5.42062 33.6672L5.81791 35.5331L6.23978 37.399L6.68599 39.2648L7.15677 41.1307L7.65201 42.9966L8.17158 44.8624L8.71572 46.7283L9.28408 48.5942L9.8769 50.4601L10.4942 52.3259L11.1357 54.1918L11.8014 56.0577L12.4914 57.9235L13.2058 59.7894L13.9443 61.6553L14.7071 63.5211L15.494 65.387L16.305 67.2529L17.1401 69.1187L17.9993 70.9846L18.8825 72.8505L19.7898 74.7163L20.721 76.5822L21.6762 78.4481L22.6553 80.3139L23.6582 82.1798L24.6849 84.0457L25.7355 85.9115L26.8097 87.7774L27.9077 89.6433L29.0293 91.5091L30.1745 93.375L31.3434 95.2409L32.5357 97.1068L33.7516 98.9726L34.9909 100.838L36.2535 102.704L37.5396 104.57L38.8489 106.436L40.1815 108.302L41.5373 110.168L42.9162 112.034L44.3181 113.9L45.7431 115.765L47.1911 117.631L48.662 119.497L50.1559 121.363L51.6724 123.229L53.2119 125.095L54.7739 126.961L56.3586 128.827L57.9659 130.692L59.5957 132.558L61.248 134.424L62.9226 136.29L64.6196 138.156L66.3388 140.022L68.0803 141.888L69.8438 143.753L71.6295 145.619L73.4371 147.485L75.2666 149.351L77.118 151.217L78.9912 153.083L80.8862 154.949L82.8027 156.815L84.7408 158.68L86.7004 160.546L88.6815 162.412L90.6838 164.278L92.7075 166.144L94.7524 168.01L96.8184 169.876L98.9054 171.741L101.013 173.607L103.142 175.473L105.292 177.339L107.462 179.205L109.653 181.071L111.865 182.937L114.097 184.803L116.349 186.668L118.622 188.534L120.914 190.4L123.227 192.266L125.56 194.132L127.913 195.998L130.286 197.864L132.679 199.729L135.091 201.595L137.523 203.461L139.974 205.327L142.445 207.193L144.935 209.059L147.444 210.925L149.972 212.791L152.519 214.656L155.086 216.522L157.671 218.388L160.274 220.254L162.897 222.12L165.538 223.986L168.197 225.852L170.875 227.718L173.57 229.583L176.284 231.449L179.016 233.315L181.766 235.181L184.534 237.047L187.319 238.913L190.122 240.779L192.942 242.644L195.78 244.51L198.635 246.376L201.507 248.242L204.397 250.108L207.303 251.974L210.226 253.84L213.166 255.706L216.122 257.571L219.095 259.437L222.084 261.303L225.089 263.169L228.111 265.035L231.149 266.901L234.202 268.767L237.271 270.632L240.357 272.498L243.457 274.364L246.573 276.23L249.705 278.096L252.851 279.962L256.013 281.828L259.189 283.694L262.381 285.559L265.587 287.425L268.808 289.291L272.043 291.157L275.293 293.023L278.557 294.889L281.835 296.755L285.127 298.621L288.433 300.486L291.753 302.352L295.086 304.218L298.432 306.084L301.792 307.95L305.166 309.816L308.552 311.682L311.951 313.547L315.364 315.413L318.789 317.279L322.226 319.145L325.676 321.011L329.138 322.877L332.613 324.743L336.099 326.609L339.597 328.474L343.108 330.34L346.629 332.206L350.163 334.072L353.707 335.938L357.263 337.804L360.83 339.67L364.409 341.535L367.997 343.401L371.597 345.267L375.207 347.133L378.828 348.999L382.459 350.865L386.1 352.731L389.751 354.597L393.412 356.462L397.082 358.328L400.763 360.194L404.452 362.06L408.151 363.926L411.859 365.792L415.577 367.658L419.303 369.524L423.038 371.389L426.781 373.255L430.533 375.121L434.293 376.987L438.062 378.853L441.838 380.719L445.622 382.585L449.415 384.45L453.214 386.316L457.021 388.182L460.836 390.048L464.658 391.914L468.486 393.78L472.322 395.646L476.164 397.512L480.013 399.377L483.868 401.243L487.73 403.109L491.597 404.975L495.471 406.841L499.35 408.707L503.236 410.573L507.126 412.438L511.023 414.304L514.924 416.17L518.831 418.036L522.742 419.902L526.658 421.768L530.579 423.634L534.505 425.5L538.435 427.365L542.369 429.231L546.307 431.097L550.249 432.963L554.194 434.829L558.144 436.695L562.097 438.561L566.053 440.427L570.012 442.292L573.974 444.158L577.939 446.024L581.907 447.89L585.878 449.756L589.851 451.622L593.825 453.488L597.803 455.353L601.782 457.219L605.763 459.085L609.745 460.951L613.729 462.817L617.715 464.683L621.701 466.549L625.689 468.415L629.677 470.28L633.666 472.146L637.656 474.012L641.646 475.878L645.637 477.744L649.627 479.61L653.618 481.476L657.609 483.341L661.599 485.207L665.588 487.073L669.577 488.939L673.565 490.805L677.552 492.671L681.539 494.537L685.523 496.403L689.507 498.268L693.489 500.134L697.469 502"
stroke="url(#paint0_linear_5918_1619)"
stroke-width="3"
stroke-miterlimit="10"
stroke-linecap="round"
stroke-linejoin="round"
/>
</g>
<defs>
<linearGradient id="paint0_linear_5918_1619" x1="1295.36" y1="-496.239" x2="2.40586" y2="-496.239" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF8200" />
<stop offset="1" stop-color="#FF8200" />
</linearGradient>
<clipPath id="clip0_5918_1619">
<rect width="693" height="502" fill="white" />
</clipPath>
</defs>
</svg>
<div class="process-item__guide is--3">
<div class="process-item__marker">
<svg width="46" height="306" viewBox="0 0 46 306" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.4" data-figma-bg-blur-radius="200" d="M23 22L23 306" stroke="url(#paint0_linear_5481_1659)" stroke-width="1.5" />
<circle cx="23" cy="23" r="6" fill="#FF8200" />
<g filter="url(#filter1_f_5481_1659)">
<circle cx="23" cy="23" r="8" fill="#FF8200" />
</g>
<defs>
<filter id="filter1_f_5481_1659" x="0" y="0" width="46" height="46" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="7.5" result="effect1_foregroundBlur_5481_1659" />
</filter>
<linearGradient id="paint0_linear_5481_1659" x1="23.5" y1="22" x2="23.5" y2="306" gradientUnits="userSpaceOnUse">
<stop stop-color="#D8C0A6" />
<stop offset="1" stop-color="#D8C0A6" stop-opacity="0" />
</linearGradient>
</defs>
</svg>
</div>
</div>
<div class="process-item__guide is--4">
<div class="process-item__marker">
<svg width="46" height="306" viewBox="0 0 46 306" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.4" data-figma-bg-blur-radius="200" d="M23 22L23 306" stroke="url(#paint0_linear_5481_1659)" stroke-width="1.5" />
<circle cx="23" cy="23" r="6" fill="#FF8200" />
<g filter="url(#filter1_f_5481_1659)">
<circle cx="23" cy="23" r="8" fill="#FF8200" />
</g>
<defs>
<filter id="filter1_f_5481_1659" x="0" y="0" width="46" height="46" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="7.5" result="effect1_foregroundBlur_5481_1659" />
</filter>
<linearGradient id="paint0_linear_5481_1659" x1="23.5" y1="22" x2="23.5" y2="306" gradientUnits="userSpaceOnUse">
<stop stop-color="#D8C0A6" />
<stop offset="1" stop-color="#D8C0A6" stop-opacity="0" />
</linearGradient>
</defs>
</svg>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<img src="/assets/images/sv4-landscape.avif" alt="decorative frame" loading="lazy" class="process-background is--landscape" />
<img src="/assets/images/sv4-portrait.avif" alt="decorative frame" loading="lazy" class="process-background is--portrait" />
</section>
</div>
<!-- RESULTS -->
<section class="gs" data-fade>
<div class="gs-container">
<span class="gs-tagline" data-fade-el='{"y": 15}'>Outcomes</span>
<h2 class="gs-heading" data-split="words">
Your next project could be the next
<span>Awwwards winner.</span>
</h2>
<p class="gs-subheading" data-split="lines">
<span>Results include stronger engagement,</span>
higher trust, and a brand presence that feels premium.
</p>
</div>
<img src="/assets/images/sv5-landscape.avif" alt="decorative frame" loading="lazy" class="gs-background is--landscape" data-fade-out />
<img src="/assets/images/sv5-portrait.avif" alt="decorative frame" loading="lazy" class="gs-background is--portrait" data-fade-out />
</section>
<!-- LETS TALK -->
<section class="lets-talk">
<!-- ELLIPSES -->
<div class="lets-talk__ellipse lets-talk__ellipse-0"></div>
<div class="lets-talk__ellipse lets-talk__ellipse-1"></div>
<!-- FLEX WRAPPER -->
<div class="lets-talk-flex">
<!-- LEFT WRAPPER INFO -->
<div class="lets-talk__info">
<div class="lets-talk__info-connect">
<span class="lets-talk__info-connect-icon"></span>
<span class="lets-talk__info-connect-text">Get started</span>
</div>
<p class="lets-talk__info-heading">Let’s work together</p>
<div class="lets-talk__info-divider"></div>
<p class="lets-talk__info-subheading">Uniting vision and talent to deliver results that leave a lasting mark.</p>
<div class="lets-talk__socials --is-desktop">
<a class="lets-talk__socials-link" href="https://www.tiktok.com/@marcelodesignx?_t=ZM-8wsLc7iWLSA&_r=1" aria-label="Tiktok" target="_blank">
<svg width="11" height="13" viewBox="0 0 11 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M5.5 0V9.1C5.5 9.83454 4.90192 10.4 4.125 10.4C3.34808 10.4 2.75 9.83454 2.75 9.1C2.75 8.36546 3.34808 7.8 4.125 7.8V5.2C1.86317 5.2 0 6.96154 0 9.1C0 11.2385 1.86317 13 4.125 13C6.38683 13 8.25 11.2385 8.25 9.1V4.20215C9.0972 4.77274 9.98129 5.2 11 5.2V2.6C10.9349 2.6 9.98618 2.31522 9.32422 1.76973C8.66226 1.22423 8.25 0.539488 8.25 0H5.5Z" fill="#5B6871" />
</svg>
</a>
<a class="lets-talk__socials-link" href="https://www.instagram.com/marcelodesignx/" aria-label="Instagram" target="_blank">
<svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M3.61111 0C1.62326 0 0 1.62326 0 3.61111V9.38889C0 11.3767 1.62326 13 3.61111 13H9.38889C11.3767 13 13 11.3767 13 9.38889V3.61111C13 1.62326 11.3767 0 9.38889 0H3.61111ZM3.61111 1.08333H9.38889C10.7911 1.08333 11.9167 2.20885 11.9167 3.61111V9.38889C11.9167 10.7911 10.7911 11.9167 9.38889 11.9167H3.61111C2.20885 11.9167 1.08333 10.7911 1.08333 9.38889V3.61111C1.08333 2.20885 2.20885 1.08333 3.61111 1.08333ZM10.2917 2.16667C10.148 2.16667 10.0102 2.22373 9.90865 2.32532C9.80707 2.4269 9.75 2.56467 9.75 2.70833C9.75 2.85199 9.80707 2.98977 9.90865 3.09135C10.0102 3.19293 10.148 3.25 10.2917 3.25C10.4353 3.25 10.5731 3.19293 10.6747 3.09135C10.7763 2.98977 10.8333 2.85199 10.8333 2.70833C10.8333 2.56467 10.7763 2.4269 10.6747 2.32532C10.5731 2.22373 10.4353 2.16667 10.2917 2.16667ZM6.5 2.88889C5.34144 2.88889 4.40392 3.34285 3.79308 4.03006C3.18223 4.71726 2.88889 5.61227 2.88889 6.5C2.88889 7.38773 3.18223 8.28274 3.79308 8.96994C4.40392 9.65715 5.34144 10.1111 6.5 10.1111C7.65856 10.1111 8.59608 9.65715 9.20692 8.96994C9.81777 8.28274 10.1111 7.38773 10.1111 6.5C10.1111 5.61227 9.81777 4.71726 9.20692 4.03006C8.59608 3.34285 7.65856 2.88889 6.5 2.88889ZM6.5 3.97222C7.38773 3.97222 7.98494 4.28562 8.39724 4.74946C8.80955 5.2133 9.02778 5.85301 9.02778 6.5C9.02778 7.14699 8.80955 7.7867 8.39724 8.25054C7.98494 8.71438 7.38773 9.02778 6.5 9.02778C5.61227 9.02778 5.01506 8.71438 4.60276 8.25054C4.19045 7.7867 3.97222 7.14699 3.97222 6.5C3.97222 5.85301 4.19045 5.2133 4.60276 4.74946C5.01506 4.28562 5.61227 3.97222 6.5 3.97222Z"
fill="#5B6871"
/>
</svg>
</a>
<a class="lets-talk__socials-link" href="https://x.com/MarceloDesignX" aria-label="X social" target="_blank">
<svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.244436 0L5.27057 7.09067L0 13H1.12344L5.76842 7.79225L9.45982 13H13L7.74048 5.58059L12.7183 0H11.5955L7.24332 4.87901L3.78462 0H0.244436Z" fill="#5B6871" />
</svg>
</a>
<a class="lets-talk__socials-link" href="https://www.facebook.com/MarceloDesignX" aria-label="Facebook" target="_blank">
<svg width="7" height="13" viewBox="0 0 7 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M5.38456 2.54348H6.7307C6.87931 2.54348 6.99993 2.41687 6.99993 2.26087V0.356935C6.99993 0.208848 6.89143 0.0856304 6.75089 0.0751739C6.32255 0.0432391 5.48579 0 4.88407 0C3.23074 0 2.15382 1.04 2.15382 2.93009V4.80435H0.269228C0.120614 4.80435 0 4.93096 0 5.08696V7.06522C0 7.22122 0.120614 7.34783 0.269228 7.34783H2.15382V12.7174C2.15382 12.8734 2.27444 13 2.42305 13H4.30765C4.45626 13 4.57688 12.8734 4.57688 12.7174V7.34783H6.52124C6.65855 7.34783 6.77378 7.23959 6.78885 7.0963L6.99831 5.11804C7.01608 4.95074 6.89116 4.80435 6.7307 4.80435H4.57688V3.3913C4.57688 2.92302 4.93845 2.54348 5.38456 2.54348Z"
fill="#5B6871"
/>
</svg>
</a>
<a class="lets-talk__socials-link" href="https://www.youtube.com/@marcelodesignx2324" aria-label="Youtube" target="_blank">
<svg width="17" height="13" viewBox="0 0 17 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M16.5255 2.23438C16.3683 1.34094 15.6195 0.690308 14.7506 0.487183C13.4502 0.203125 11.0437 0 8.43991 0C5.83768 0 3.39261 0.203125 2.09072 0.487183C1.22331 0.690308 0.472993 1.29968 0.315842 2.23438C0.157151 3.25 0 4.67188 0 6.5C0 8.32812 0.157151 9.75 0.354359 10.7656C0.51305 11.6591 1.26183 12.3097 2.12924 12.5128C3.5097 12.7969 5.8762 13 8.47997 13C11.0837 13 13.4502 12.7969 14.8307 12.5128C15.6981 12.3097 16.4469 11.7003 16.6056 10.7656C16.7627 9.75 16.9599 8.28687 17 6.5C16.9199 4.67188 16.7227 3.25 16.5255 2.23438ZM6.31068 9.34375V3.65625L11.1223 6.5L6.31068 9.34375Z"
fill="#5B6871"
/>
</svg>
</a>
<a class="lets-talk__socials-link" href="https://www.linkedin.com/company/65831843" aria-label="LinkedIn" target="_blank">
<svg width="15" height="13" viewBox="0 0 15 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M2.32609 0C1.27 0 0.502972 0.628815 0.502972 1.49366C0.502972 2.36153 1.28826 3.01804 2.32609 3.01804C3.38217 3.01804 4.1492 2.37708 4.1492 1.47594C4.10051 0.608072 3.3487 0 2.32609 0ZM0.804348 3.62578C0.636957 3.62578 0.5 3.76186 0.5 3.92817V12.6976C0.5 12.8639 0.636957 13 0.804348 13H3.84783C4.01522 13 4.15217 12.8639 4.15217 12.6976V3.92817C4.15217 3.76186 4.01522 3.62578 3.84783 3.62578H0.804348ZM5.36957 3.62578C5.20217 3.62578 5.06522 3.76186 5.06522 3.92817V12.6976C5.06522 12.8639 5.20217 13 5.36957 13H8.1087C8.2767 13 8.41304 12.8645 8.41304 12.6976V8.16169V8.08609V8.0105C8.41304 7.29382 8.96715 6.71006 9.67323 6.65563C9.70975 6.64958 9.74609 6.64972 9.78261 6.64972C9.81913 6.64972 9.85546 6.64958 9.89198 6.65563C10.5981 6.71006 11.1522 7.29382 11.1522 8.0105V12.6976C11.1522 12.8645 11.2885 13 11.4565 13H14.1957C14.363 13 14.5 12.8639 14.5 12.6976V7.5569C14.5 5.60041 13.4436 3.62578 11.088 3.62578C10.0167 3.62578 9.20739 4.03711 8.71739 4.37881V3.92817C8.71739 3.76186 8.58043 3.62578 8.41304 3.62578H5.36957Z"
fill="#5B6871"
/>
</svg>
</a>
</div>
<a href="/cdn-cgi/l/email-protection#deb6bbb2b2b19eb3baa6f0adb1" class="lets-talk__contact-Email">
<svg width="23" height="25" viewBox="0 0 23 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M15.2885 3.44676C14.5506 3.38525 13.6404 3.38525 12.4824 3.38525H10.8665C9.70859 3.38525 8.7984 3.38525 8.06047 3.44676C7.30727 3.50956 6.67982 3.63951 6.09662 3.93011C5.13308 4.41023 4.31738 5.18223 3.74731 6.15355C3.59848 6.40714 3.47521 6.67453 3.37005 6.96294C3.01226 7.94413 2.84685 9.2392 2.60616 11.1237L2.5858 11.283C2.38081 12.8873 2.22056 14.1414 2.17189 15.1516C2.12247 16.1772 2.18225 17.0319 2.46611 17.8166C2.93006 19.0991 3.7867 20.1685 4.89158 20.8445C5.56757 21.258 6.3382 21.44 7.27963 21.5279C8.20684 21.6144 9.37169 21.6144 10.8618 21.6144H12.4872C13.9773 21.6144 15.1421 21.6144 16.0694 21.5279C17.0108 21.44 17.7814 21.258 18.4574 20.8445C19.5623 20.1685 20.4189 19.0991 20.8829 17.8166C21.1667 17.0319 21.2265 16.1772 21.1771 15.1516C21.1284 14.1414 20.9682 12.8872 20.7632 11.2829L20.7398 11.1C20.4848 9.1032 20.3141 7.76597 19.8981 6.75415C19.8115 6.54359 19.7137 6.34446 19.6017 6.15355C19.0316 5.18223 18.2159 4.41023 17.2524 3.93011C16.6692 3.63951 16.0417 3.50956 15.2885 3.44676ZM6.69566 5.35047C7.06329 5.16728 7.50279 5.06034 8.17039 5.00469C8.84696 4.94829 9.70216 4.94775 10.8962 4.94775H12.4527C13.6468 4.94775 14.502 4.94829 15.1786 5.00469C15.8462 5.06034 16.2857 5.16728 16.6533 5.35047C17.3454 5.69533 17.9343 6.24392 18.3537 6.93347L17.8264 7.50657C16.2148 9.2583 15.0562 10.5154 14.0568 11.3441C13.074 12.1592 12.3303 12.4861 11.5582 12.4861C10.7862 12.4861 10.0424 12.1592 9.0596 11.3441C8.06024 10.5154 6.90159 9.2583 5.29 7.50657L4.90579 7.08896C4.92318 7.05662 4.94098 7.02496 4.95922 6.99388C5.38057 6.27595 5.98348 5.70534 6.69566 5.35047ZM18.9092 8.53936C19.0476 9.23474 19.1676 10.1541 19.3346 11.4609C19.5453 13.1102 19.6965 14.298 19.7416 15.2333C19.7863 16.1609 19.7208 16.7592 19.5451 17.2449C19.2022 18.1928 18.569 18.9832 17.7523 19.4828C17.3339 19.7388 16.7978 19.8916 15.9463 19.9711C15.0878 20.0512 13.9846 20.0519 12.4527 20.0519H10.8962C9.36434 20.0519 8.26114 20.0512 7.40264 19.9711C6.55123 19.8916 6.01504 19.7388 5.59664 19.4828C4.77999 18.9832 4.14683 18.1928 3.80391 17.2449C3.62822 16.7592 3.56272 16.1609 3.60742 15.2333C3.65248 14.298 3.80363 13.1102 4.01437 11.4609C4.16486 10.2832 4.27696 9.41936 4.39983 8.74871C5.92248 10.4037 7.12285 11.7033 8.18763 12.5864C9.29828 13.5074 10.3455 14.0486 11.5582 14.0486C12.7709 14.0486 13.8181 13.5074 14.9288 12.5864C16.0139 11.6865 17.2397 10.354 18.804 8.6537L18.9092 8.53936Z"
fill="#5B6871"
/>
</svg>
<span><span class="__cf_email__" data-cfemail="e28a878e8e8da28f869acc918d">[email protected]</span></span>
</a>
</div>
<!-- RIGHT WRAPPER FORM -->
<div class="lets-talk__form-wrapper">
<h3>Let's talk</h3>
<form class="lets-talk__form" data-form-validate novalidate>
<div class="form-group">
<div class="form-group-field" data-validate>
<label data-label for="text" class="form-label">Fullname
</label>
<input data-name="Fullname" type="text" id="fullname" name="fullname" class="form-input" max="256" required placeholder="Full name" />
<div class="form-error" data-error-message></div>
</div>
<div class="form-group-field" data-validate>
<label data-label for="text" class="form-label">Company
</label>
<input data-name="company" type="text" id="company" name="company" class="form-input" max="256" required placeholder="Company" />
<div class="form-error" data-error-message></div>
</div>
</div>
<div class="form-group">
<div class="form-group-field" data-validate>