-
Notifications
You must be signed in to change notification settings - Fork 472
/
index.html
4096 lines (4011 loc) · 526 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html><!-- Last Published: Fri Dec 06 2024 00:51:42 GMT+0000 (Coordinated Universal Time) -->
<html data-wf-domain="e2b-dev.webflow.io" data-wf-page="6717bb6618f6a40d53ac292f"
data-wf-site="6717bb6618f6a40d53ac2929" lang="en">
<head>
<meta charset="utf-8" />
<title>Open-source Code Interpreting for AI Apps — E2B</title>
<meta content="Add code interpreting in your AI apps and AI agents." name="description" />
<meta content="Open-source Code Interpreting for AI Apps — E2B" property="og:title" />
<meta content="Add code interpreting in your AI apps and AI agents." property="og:description" />
<meta
content="https://cdn.prod.website-files.com/6717bb6618f6a40d53ac2929/6751a1cb33c1e000eaf3874c_e2b-share-image.png"
property="og:image" />
<meta content="Open-source Code Interpreting for AI Apps — E2B" property="twitter:title" />
<meta content="Add code interpreting in your AI apps and AI agents." property="twitter:description" />
<meta
content="https://cdn.prod.website-files.com/6717bb6618f6a40d53ac2929/6751a1cb33c1e000eaf3874c_e2b-share-image.png"
property="twitter:image" />
<meta property="og:type" content="website" />
<meta content="summary_large_image" name="twitter:card" />
<meta content="width=device-width, initial-scale=1" name="viewport" />
<link href="https://cdn.prod.website-files.com/6717bb6618f6a40d53ac2929/css/e2b-dev.webflow.deb31f633.min.css"
rel="stylesheet" type="text/css" />
<style>
@media (min-width:992px) {
html.w-mod-js:not(.w-mod-ix) [data-w-id="0f5a298f-5538-18aa-6088-cfdeb3ddee5f"] {
-webkit-transform: translate3d(0px, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
-moz-transform: translate3d(0px, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
-ms-transform: translate3d(0px, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
transform: translate3d(0px, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="ec9502f6-c47c-5ca9-dd73-79d088ce7e41"] {
-webkit-transform: translate3d(0px, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
-moz-transform: translate3d(0px, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
-ms-transform: translate3d(0px, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
transform: translate3d(0px, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
}
}
</style>
<link href="https://fonts.googleapis.com" rel="preconnect" />
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin="anonymous" />
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script>
<script type="text/javascript">WebFont.load({ google: { families: ["IBM Plex Sans:regular,500,600,700"] } });</script>
<script
type="text/javascript">!function (o, c) { var n = c.documentElement, t = " w-mod-"; n.className += t + "js", ("ontouchstart" in o || o.DocumentTouch && c instanceof DocumentTouch) && (n.className += t + "touch") }(window, document);</script>
<link href="https://cdn.prod.website-files.com/6717bb6618f6a40d53ac2929/6751bc96a1a8a0ec9a69a57c_faviconV2.png"
rel="shortcut icon" type="image/x-icon" />
<link href="https://cdn.prod.website-files.com/6717bb6618f6a40d53ac2929/6751bcfd480f0e8498dc744b_touch.png"
rel="apple-touch-icon" />
<link href="https://e2b.dev/" rel="canonical" />
<style>
body {
font-feature-settings: "ss02";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
body {
font-feature-settings: "ss03";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
.unselectable {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
</style>
<!-- Disable scrolling -->
<script defer src="https://cdn.jsdelivr.net/npm/@finsweet/attributes-scrolldisable@1/scrolldisable.js"></script>
<!-- Light/Dark -->
<script defer
tr-color-vars="content-primary,content-secondary,content-tertiary,content-quad,content-on-black,content-dark80,content-dark60,content-dark40,content-dark20,cta-primary,cta-primary-hover,stroke-primary,stroke-primary-hover,stroke-codesnippet,stroke-on-black,bg-primary,bg-secondary,bg-codesnippet"
duration="0.25" ease="power1.out">
function colorModeToggle() {
function attr(defaultVal, attrVal) {
const defaultValType = typeof defaultVal;
if (typeof attrVal !== "string" || attrVal.trim() === "") return defaultVal;
if (attrVal === "true" && defaultValType === "boolean") return true;
if (attrVal === "false" && defaultValType === "boolean") return false;
if (isNaN(attrVal) && defaultValType === "string") return attrVal;
if (!isNaN(attrVal) && defaultValType === "number") return +attrVal;
return defaultVal;
}
const htmlElement = document.documentElement;
const computed = getComputedStyle(htmlElement);
let toggleEl;
let togglePressed = "false";
let previousTheme = "light"; // Default previous theme
const scriptTag = document.querySelector("[tr-color-vars]");
if (!scriptTag) {
console.warn("Script tag with tr-color-vars attribute not found");
return;
}
let colorModeDuration = attr(0.5, scriptTag.getAttribute("duration"));
let colorModeEase = attr("power1.out", scriptTag.getAttribute("ease"));
const cssVariables = scriptTag.getAttribute("tr-color-vars");
if (!cssVariables.length) {
console.warn("Value of tr-color-vars attribute not found");
return;
}
let lightColors = {};
let darkColors = {};
cssVariables.split(",").forEach(function (item) {
let lightValue = computed.getPropertyValue(`--color--${item}`);
let darkValue = computed.getPropertyValue(`--dark--${item}`);
if (lightValue.length) {
if (!darkValue.length) darkValue = lightValue;
lightColors[`--color--${item}`] = lightValue;
darkColors[`--color--${item}`] = darkValue;
}
});
if (!Object.keys(lightColors).length) {
console.warn("No variables found matching tr-color-vars attribute value");
return;
}
function setColors(colorObject, animate) {
if (typeof gsap !== "undefined" && animate) {
gsap.to(htmlElement, {
...colorObject,
duration: colorModeDuration,
ease: colorModeEase,
});
} else {
Object.keys(colorObject).forEach(function (key) {
htmlElement.style.setProperty(key, colorObject[key]);
});
}
}
function toggleBgDottedFilter(isDark) {
const bgDottedElements = document.querySelectorAll(".bg-dotted");
bgDottedElements.forEach((el) => {
el.style.filter = isDark ? "invert(1)" : "none";
});
}
function applyThemeBasedOnPreference(isDark) {
if (isDark) {
htmlElement.classList.add("dark-mode");
setColors(darkColors, false);
toggleBgDottedFilter(true); // Ensure the filter matches dark mode
togglePressed = "true";
previousTheme = "dark";
} else {
htmlElement.classList.remove("dark-mode");
setColors(lightColors, false);
toggleBgDottedFilter(false); // Ensure the filter matches light mode
togglePressed = "false";
previousTheme = "light";
}
}
function initializeTheme() {
const storagePreference = localStorage.getItem("dark-mode");
const isDark = storagePreference === "true";
applyThemeBasedOnPreference(isDark);
togglePressed = isDark ? "true" : "false";
}
function goDark(dark, animate) {
localStorage.setItem("dark-mode", dark ? "true" : "false");
applyThemeBasedOnPreference(dark, animate);
}
function checkPreference(e) {
applyThemeBasedOnPreference(e.matches);
}
const colorPreference = window.matchMedia("(prefers-color-scheme: dark)");
colorPreference.addEventListener("change", (e) => {
checkPreference(e);
});
window.addEventListener("DOMContentLoaded", () => {
toggleEl = document.querySelectorAll("[tr-color-toggle]");
// Initialize the theme from localStorage or default system preference
initializeTheme();
toggleEl.forEach((element) => {
element.setAttribute("aria-label", "View Dark Mode");
element.setAttribute("role", "button");
element.setAttribute("aria-pressed", togglePressed);
});
document.addEventListener("click", (e) => {
const targetElement = e.target.closest("[tr-color-toggle]");
if (targetElement) {
const isDark = htmlElement.classList.contains("dark-mode");
goDark(!isDark, true);
}
});
});
}
colorModeToggle();
</script>
<script>
document.addEventListener("DOMContentLoaded", function () {
const mainSection = document.getElementById("main");
const headerDivider = document.querySelector(".header-divider");
// Function to check the position of #main and update the divider opacity
function checkPosition() {
const rect = mainSection.getBoundingClientRect();
if (rect.top <= 100) {
headerDivider.style.opacity = "1"; // Show the divider
} else {
headerDivider.style.opacity = "0"; // Hide the divider
}
}
// Check position once on page load
checkPosition();
// Listen to scroll events to update as you scroll
window.addEventListener("scroll", checkPosition);
});
</script>
<!-- Custom right click -->
<script>
document.addEventListener("DOMContentLoaded", function () {
// Select the div that triggers the contextual menu and the menu itself
const triggerDiv = document.getElementById("right-click-menu");
const contextMenu = document.querySelector(".logo-right-click");
// Function to toggle the visibility of the contextual menu
function toggleContextMenu(event) {
event.preventDefault(); // Prevent any default action
const menuVisible = !contextMenu.classList.contains("hidden");
// Hide the menu if it's already visible
if (menuVisible) {
contextMenu.classList.add("hidden");
} else {
// Position the menu relative to the click and show it
contextMenu.classList.remove("hidden");
}
}
// Hide the contextual menu when clicking outside
function hideContextMenu() {
contextMenu.classList.add("hidden");
}
// Add event listeners
triggerDiv.addEventListener("contextmenu", toggleContextMenu); // Right-click opens menu
document.addEventListener("click", hideContextMenu); // Click outside closes menu
// Stop clicks on the menu itself from hiding it
contextMenu.addEventListener("click", function (event) {
event.stopPropagation();
});
});
</script>
<script>
document.addEventListener("DOMContentLoaded", function () {
// Select the tab with the class .external-link
const externalTab = document.querySelector('.external-link');
// Ensure the external tab is correctly set up
if (externalTab) {
// Disable Webflow's tab-switching behavior
externalTab.addEventListener('click', function (e) {
e.preventDefault(); // Prevent default tab behavior
e.stopImmediatePropagation(); // Stop all propagation, including Webflow's handlers
window.open('https://e2b.dev/docs/quickstart/connect-llms', '_blank'); // Open the external link in a new tab
});
// Optionally, set it to look like a regular link for clarity (optional)
externalTab.style.cursor = 'pointer';
}
});
</script>
</head>
<body class="body">
<div class="page">
<div class="header">
<div class="toast-msg-bar">
<div class="toast-msg-wrap">
<div class="toast-msg-star">
<div class="label on-black toast-msg-star-1">*<span class="label brand">*</span>*</div>
<div class="label on-black toast-msg-star-2"><span class="label brand">*</span>*<span
class="label brand">*</span></div>
</div><a href="https://x.com/mlejva/status/1846568274009698402" target="_blank"
class="toast-msg w-inline-block">
<div class="label on-black center">we just closed a new funding round of <span
class="label brand">$11.5M</span> LED by Decibel</div>
<div class="toast-msg-divider"></div>
<div class="label on-black">LEARN MORE →</div>
</a>
<div class="toast-msg-star">
<div class="label on-black toast-msg-star-1">*<span class="label brand">*</span>*</div>
<div class="label on-black toast-msg-star-2"><span class="label brand">*</span>*<span
class="label brand">*</span></div>
</div>
</div>
</div>
<div class="header-wrap-out">
<div fs-scrolldisable-element="smart-nav" data-animation="default" data-collapse="medium" data-duration="1"
data-easing="ease" data-easing2="ease" role="banner" class="navbar w-nav">
<div class="navbar-container w-container">
<div id="w-node-_9edbb656-9d1b-0e60-5e5a-b499e2f80eeb-7dfb0612" class="navbar-menu-button w-nav-button">
<div class="icon-24 menu-open w-embed"><svg width="24" height="24" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path d="M4 12H20" stroke="currentColor" stroke-width="2" />
<path d="M4 16H20" stroke="currentColor" stroke-width="2" />
<path d="M4 8H20" stroke="currentColor" stroke-width="2" />
</svg></div>
<div class="icon-24 menu-close w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M13.4116 11.9971L18.3656 7.04312L16.9514 5.62891L11.9974 10.5829L7.04703 5.63256L5.63281 7.04677L10.5832 11.9971L5.6377 16.9426L7.05191 18.3568L11.9974 13.4113L16.9465 18.3605L18.3607 16.9463L13.4116 11.9971Z"
fill="currentColor" />
</svg></div>
</div>
<div id="w-node-_6f395481-6352-fe11-0c0b-f1987dfb0647-7dfb0612" class="navbar-logo"><a id="right-click-menu"
ms-code-context-item="1" aria-label="logo" href="/" aria-current="page"
class="logo w-node-_6f395481-6352-fe11-0c0b-f1987dfb0648-7dfb0612 w-inline-block w--current">
<div class="logo-shape w-embed"><svg width="26" height="28" viewBox="0 0 26 28" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M21.8458 19.3029C21.6671 19.3029 21.5555 19.4963 21.6448 19.6511L23.5141 22.889C23.6175 23.0681 23.4528 23.2828 23.253 23.2293L17.5836 21.7101C17.3359 21.6437 17.0813 21.7907 17.0149 22.0384L15.4958 27.7079C15.4422 27.9077 15.1739 27.943 15.0705 27.7639L13.2008 24.5254C13.1115 24.3707 12.8881 24.3707 12.7987 24.5254L10.929 27.7639C10.8256 27.943 10.5573 27.9077 10.5038 27.7079L8.9846 22.0384C8.91824 21.7907 8.66365 21.6437 8.41597 21.7101L2.74652 23.2293C2.54675 23.2828 2.38199 23.0681 2.4854 22.889L4.35472 19.6511C4.44406 19.4963 4.33238 19.3029 4.15368 19.3029L0.415222 19.3028C0.208406 19.3028 0.104834 19.0528 0.251077 18.9066L4.40145 14.7563C4.58277 14.5749 4.58277 14.281 4.40145 14.0997L0.251079 9.94927C0.104837 9.80302 0.208414 9.55297 0.415232 9.55297L4.15328 9.55302C4.33198 9.55302 4.44368 9.35957 4.35433 9.20481L2.4854 5.96763C2.38199 5.78852 2.54676 5.5738 2.74652 5.62733L8.41597 7.14652C8.66365 7.21288 8.91824 7.0659 8.98461 6.81822L10.5038 1.14869C10.5573 0.948918 10.8256 0.913592 10.929 1.0927L12.7987 4.33116C12.8881 4.48593 13.1114 4.48593 13.2008 4.33116L15.0705 1.0927C15.1739 0.913592 15.4422 0.948917 15.4957 1.14869L17.0149 6.81822C17.0813 7.0659 17.3359 7.21288 17.5835 7.14652L23.253 5.62733C23.4528 5.5738 23.6175 5.78852 23.5141 5.96763L21.6452 9.20481C21.5558 9.35957 21.6675 9.55302 21.8462 9.55302L25.5844 9.55297C25.7912 9.55297 25.8948 9.80302 25.7486 9.94927L21.5982 14.0997C21.4169 14.281 21.4169 14.5749 21.5982 14.7563L25.7486 18.9066C25.8948 19.0528 25.7912 19.3028 25.5844 19.3028L21.8458 19.3029ZM20.419 10.404C20.5869 10.236 20.4241 9.9541 20.1947 10.0156L15.1461 11.3684C14.8984 11.4348 14.6438 11.2878 14.5775 11.0401L13.224 5.98888C13.1625 5.75947 12.837 5.75947 12.7755 5.98888L11.422 11.0401C11.3557 11.2878 11.1011 11.4348 10.8534 11.3684L5.80496 10.0156C5.57555 9.95414 5.41278 10.2361 5.58072 10.404L9.27643 14.0997C9.45774 14.281 9.45774 14.575 9.27643 14.7563L5.57985 18.4528C5.41191 18.6208 5.57467 18.9027 5.80409 18.8412L10.8534 17.4882C11.1011 17.4218 11.3557 17.5688 11.422 17.8165L12.7755 22.8677C12.837 23.0972 13.1625 23.0972 13.224 22.8677L14.5775 17.8165C14.6439 17.5688 14.8984 17.4218 15.1461 17.4882L20.1956 18.8413C20.425 18.9027 20.5878 18.6208 20.4198 18.4529L16.7232 14.7563C16.5419 14.575 16.5419 14.281 16.7232 14.0997L20.419 10.404Z"
fill="currentColor" />
</svg></div>
</a>
<div class="logo-right-click hidden">
<div class="icon-right-click-arrow w-embed"><svg width="10" height="5" viewBox="0 0 10 5" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path d="M5 0L10 5H0L5 0Z" fill="black" style="fill:black;fill-opacity:1;" />
</svg></div>
<div class="logo-right-click-menu"><a href="http://e2b.dev"
class="logo-right-click-menu-item w-inline-block">
<div class="icon-24 right-click-menu-icon w-embed"><svg width="24" height="24" viewBox="0 0 24 24"
fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 14.9167V6.75" stroke="currentColor" stroke-width="1.15" stroke-linecap="round"
stroke-linejoin="round" />
<path d="M8.5 11.417L12 14.917L15.5 11.417" stroke="currentColor" stroke-width="1.15"
stroke-linecap="round" stroke-linejoin="round" />
<path d="M16.0846 17.25H7.91797" stroke="currentColor" stroke-width="1.15"
stroke-linecap="round" stroke-linejoin="round" />
</svg></div>
<div class="label on-black">Download LOGO (SVG/PNG)</div>
</a>
<div class="logo-right-click-divider"></div><a href="mailto:[email protected]"
class="logo-right-click-menu-item w-inline-block">
<div class="icon-24 right-click-menu-icon w-embed"><svg width="24" height="24" viewBox="0 0 24 24"
fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M16.666 7.3335H7.33268C6.68835 7.3335 6.16602 7.85583 6.16602 8.50016V15.5002C6.16602 16.1445 6.68835 16.6668 7.33268 16.6668H16.666C17.3103 16.6668 17.8327 16.1445 17.8327 15.5002V8.50016C17.8327 7.85583 17.3103 7.3335 16.666 7.3335Z"
stroke="currentColor" stroke-width="1.15" stroke-linecap="round" stroke-linejoin="round" />
<path
d="M17.8327 9.0835L12.6002 12.4085C12.4201 12.5213 12.2119 12.5812 11.9993 12.5812C11.7868 12.5812 11.5786 12.5213 11.3985 12.4085L6.16602 9.0835"
stroke="currentColor" stroke-width="1.15" stroke-linecap="round" stroke-linejoin="round" />
</svg></div>
<div class="label on-black">Email CEO</div>
</a>
<div class="logo-right-click-divider"></div><a href="https://sandbox.company/" target="_blank"
class="logo-right-click-menu-item w-inline-block">
<div class="icon-24 right-click-menu-icon w-embed"><svg width="24" height="24" viewBox="0 0 24 24"
fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.5 8.5L8.5 15.5" stroke="currentColor" stroke-width="1.15" stroke-linecap="round"
stroke-linejoin="round" />
<path d="M10.832 8.5H15.4987V13.1667" stroke="currentColor" stroke-width="1.15"
stroke-linecap="round" stroke-linejoin="round" />
</svg></div>
<div class="label on-black">The SBX Co.</div>
</a>
</div>
</div>
</div>
<nav role="navigation" id="w-node-_9edbb656-9d1b-0e60-5e5a-b499e2f80ee4-7dfb0612"
class="navbar-menu w-nav-menu">
<div class="navbar-menu-primary"><a href="/" aria-current="page"
class="navbar-item w-inline-block w--current">
<div class="label navbar-link">Product</div>
</a>
<link rel="prefetch" href="/" /><a href="/pricing" class="navbar-item w-inline-block">
<div class="label navbar-link">Pricing</div>
</a>
<link rel="prefetch" href="/pricing" /><a href="https://e2b.dev/changelog"
class="navbar-item w-inline-block">
<div class="label navbar-link">Changelog</div>
</a><a href="https://e2b.dev/docs" class="navbar-item w-inline-block">
<div class="label navbar-link">Docs</div>
</a><a href="https://e2b.dev/blog" class="navbar-item w-inline-block">
<div class="label navbar-link">Blog</div>
</a><a href="https://e2b.dev/careers" class="navbar-item hide-desktop w-inline-block">
<div class="label navbar-link">Careers</div>
</a>
</div>
<div id="w-node-_6f395481-6352-fe11-0c0b-f1987dfb065b-7dfb0612" class="navbar-menu-secondary">
<div class="nav-careers"><a href="http://e2b.dev/careers" class="navbar-item w-inline-block">
<div class="label navbar-link">CAREERS</div>
</a></div>
<div class="nav-divider"></div>
<div id="w-node-_6f395481-6352-fe11-0c0b-f1987dfb0661-7dfb0612" class="nav-social"><a
aria-label="github link" href="https://github.com/e2b-dev" target="_blank" class="w-inline-block">
<div class="icon-24 w-embed"><svg width="24" height="24" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M12 4.6499C7.85775 4.6499 4.5 8.0129 4.5 12.1627C4.5 15.4814 6.64875 18.2977 9.62925 19.2907C10.0042 19.3597 10.1407 19.1279 10.1407 18.9284C10.1407 18.7507 10.1348 18.2774 10.131 17.6512C8.0445 18.1049 7.60425 16.6439 7.60425 16.6439C7.26375 15.7754 6.77175 15.5444 6.77175 15.5444C6.09075 15.0794 6.8235 15.0884 6.8235 15.0884C7.57575 15.1409 7.97175 15.8624 7.97175 15.8624C8.64075 17.0099 9.7275 16.6784 10.1542 16.4864C10.2232 16.0012 10.4167 15.6704 10.6313 15.4829C8.96625 15.2932 7.215 14.6482 7.215 11.7697C7.215 10.9499 7.5075 10.2787 7.98675 9.75365C7.9095 9.5639 7.65225 8.79965 8.06025 7.76615C8.06025 7.76615 8.69025 7.56365 10.1227 8.53565C10.7346 8.36879 11.3658 8.2838 12 8.2829C12.6375 8.2859 13.2787 8.36915 13.878 8.53565C15.3097 7.56365 15.9382 7.7654 15.9382 7.7654C16.3477 8.79965 16.0898 9.5639 16.0133 9.75365C16.4932 10.2787 16.7843 10.9499 16.7843 11.7697C16.7843 14.6557 15.03 15.2909 13.3597 15.4769C13.629 15.7087 13.8682 16.1669 13.8682 16.8682C13.8682 17.8717 13.8593 18.6824 13.8593 18.9284C13.8593 19.1294 13.9943 19.3634 14.3752 19.2899C15.8687 18.789 17.167 17.8314 18.0866 16.5524C19.0062 15.2735 19.5006 13.7379 19.5 12.1627C19.5 8.0129 16.1415 4.6499 12 4.6499Z"
fill="currentColor" />
</svg></div>
</a><a aria-label="discord link" href="https://discord.com/invite/U7KEcGErtQ" target="_blank"
class="w-inline-block">
<div class="icon-24 w-embed"><svg width="24" height="24" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M17.1599 7.97777C15.9482 6.99847 14.229 6.81787 14.229 6.81787L14.1996 7.96937C12.8143 7.96937 11.3849 7.96937 9.99961 7.96937L9.99191 6.88997C9.99191 6.88997 8.25171 6.99847 7.02321 7.99107C6.38131 8.58677 5.09961 12.0721 5.09961 15.0849C5.09961 15.1381 5.11291 15.1899 5.13951 15.2361C6.02501 16.7992 8.43931 17.208 8.98881 17.2255C8.99231 17.2262 8.99511 17.2262 8.99861 17.2262C9.09591 17.2262 9.19881 17.187 9.24431 17.1002L9.79241 16.0607C9.34021 15.9459 8.87331 15.8094 8.36441 15.6288C7.99971 15.4993 7.81001 15.0989 7.93951 14.7349C8.06901 14.3709 8.47011 14.1812 8.83341 14.31C11.3016 15.1878 12.7702 15.1871 15.3749 14.3065C15.7424 14.184 16.1393 14.3793 16.2625 14.7454C16.3864 15.1115 16.1897 15.5091 15.8236 15.633C15.314 15.8052 14.8492 15.9368 14.3991 16.0488L14.9542 17.1009C14.9997 17.1877 15.1033 17.2269 15.1999 17.2269C15.2034 17.2269 15.2062 17.2269 15.2097 17.2262C15.7599 17.2087 18.1742 16.7992 19.059 15.2361C19.0863 15.1899 19.0996 15.1381 19.0996 15.0842C19.0996 12.0721 17.8179 8.58677 17.1599 7.97777ZM10.0276 13.561C9.44731 13.561 8.97761 12.9359 8.97761 12.1638C8.97761 11.3924 9.44731 10.7666 10.0276 10.7666C10.61 10.6896 11.065 11.3917 11.0776 12.1638C11.0776 12.9359 10.6079 13.561 10.0276 13.561ZM14.1968 13.5778C13.6165 13.5778 13.1468 12.9513 13.1468 12.1778C13.1468 11.4043 13.6165 10.7778 14.1968 10.7778C14.7771 10.7778 15.2468 11.4043 15.2468 12.1778C15.2468 12.9513 14.7771 13.5778 14.1968 13.5778Z"
fill="currentColor" />
</svg></div>
</a><a aria-label="linkedin link" href="https://www.linkedin.com/company/e2b-dev/" target="_blank"
class="w-inline-block">
<div class="icon-24 w-embed"><svg width="24" height="24" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M17.9665 5H6.03347C5.75938 5 5.49651 5.10888 5.3027 5.3027C5.10888 5.49651 5 5.75938 5 6.03347V17.9665C5 18.2406 5.10888 18.5035 5.3027 18.6973C5.49651 18.8911 5.75938 19 6.03347 19H17.9665C18.2406 19 18.5035 18.8911 18.6973 18.6973C18.8911 18.5035 19 18.2406 19 17.9665V6.03347C19 5.75938 18.8911 5.49651 18.6973 5.3027C18.5035 5.10888 18.2406 5 17.9665 5ZM9.17278 16.9262H7.06792V10.2403H9.17278V16.9262ZM8.11889 9.31375C7.88013 9.31241 7.64712 9.24036 7.44926 9.10672C7.25141 8.97307 7.09757 8.78381 7.00718 8.56282C6.91678 8.34183 6.89388 8.09901 6.94135 7.86502C6.98883 7.63102 7.10455 7.41633 7.27392 7.24804C7.4433 7.07975 7.65873 6.96541 7.89302 6.91944C8.12732 6.87346 8.36998 6.89793 8.59039 6.98974C8.81079 7.08155 8.99906 7.2366 9.13144 7.43531C9.26381 7.63402 9.33435 7.86749 9.33417 8.10625C9.33642 8.2661 9.30647 8.42477 9.24609 8.5728C9.18572 8.72083 9.09616 8.85519 8.98275 8.96787C8.86934 9.08055 8.73441 9.16925 8.586 9.22867C8.43758 9.28809 8.27872 9.31703 8.11889 9.31375ZM16.9311 16.9321H14.8272V13.2794C14.8272 12.2022 14.3693 11.8697 13.7782 11.8697C13.154 11.8697 12.5415 12.3403 12.5415 13.3067V16.9321H10.4367V10.2451H12.4608V11.1717H12.4881C12.6913 10.7604 13.4029 10.0575 14.4889 10.0575C15.6633 10.0575 16.9321 10.7546 16.9321 12.7963L16.9311 16.9321Z"
fill="currentColor" />
</svg></div>
</a><a aria-label="x link" href="https://x.com/e2b_dev" target="_blank" class="w-inline-block">
<div class="icon-24 w-embed"><svg width="24" height="24" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M13.3021 10.8029L17.5685 5.84351L17.7862 5.59053H17.4524H16.4233H16.353L16.3072 5.64379L12.6657 9.87668L9.76624 5.65694L9.72061 5.59053H9.64004H6.16602H5.87501L6.03981 5.83037L10.5278 12.362L6.04994 17.5668L5.83228 17.8198H6.16602H7.19527H7.26553L7.31135 17.7666L11.1641 13.288L14.2325 17.7534L14.2781 17.8198H14.3587H17.8327H18.1237L17.9589 17.58L13.3021 10.8029ZM14.9226 16.774L11.8527 12.3829V12.3826L11.8251 12.3431L11.3636 11.6831L11.3636 11.683L7.86001 6.67158H9.06721L11.9848 10.845L11.9848 10.845L12.4463 11.5051L12.4463 11.5051L16.1299 16.774H14.9226Z"
fill="currentColor" stroke="currentColor" stroke-width="0.30625" />
</svg></div>
</a></div>
<div class="nav-divider"></div>
<div tr-color-toggle="" id="w-node-_6f395481-6352-fe11-0c0b-f1987dfb066b-7dfb0612" class="nav-switch">
<div class="icon-24 switch-dark w-embed"><svg width="24" height="24" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 6C11.2044 6.79565 10.7574 7.87478 10.7574 9C10.7574 10.1252 11.2044 11.2043 12 12C12.7957 12.7956 13.8748 13.2426 15 13.2426C16.1252 13.2426 17.2044 12.7956 18 12C18 13.1867 17.6481 14.3467 16.9888 15.3334C16.3295 16.3201 15.3925 17.0892 14.2961 17.5433C13.1997 17.9974 11.9933 18.1162 10.8295 17.8847C9.66557 17.6532 8.59648 17.0818 7.75736 16.2426C6.91825 15.4035 6.3468 14.3344 6.11529 13.1705C5.88378 12.0067 6.0026 10.8003 6.45673 9.7039C6.91085 8.60754 7.67989 7.67047 8.66658 7.01118C9.65328 6.35189 10.8133 6 12 6Z"
fill="currentColor" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" />
</svg></div>
<div class="icon-24 switch-light w-embed"><svg width="24" height="24" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M12 4C12.2761 4 12.5 4.22386 12.5 4.5V6C12.5 6.27614 12.2761 6.5 12 6.5C11.7239 6.5 11.5 6.27614 11.5 6V4.5C11.5 4.22386 11.7239 4 12 4ZM12 15.5C13.933 15.5 15.5 13.933 15.5 12C15.5 10.067 13.933 8.5 12 8.5C10.067 8.5 8.5 10.067 8.5 12C8.5 13.933 10.067 15.5 12 15.5ZM12.5 18C12.5 17.7239 12.2761 17.5 12 17.5C11.7239 17.5 11.5 17.7239 11.5 18V19.5C11.5 19.7761 11.7239 20 12 20C12.2761 20 12.5 19.7761 12.5 19.5V18ZM6.34371 6.34469C6.53897 6.14943 6.85556 6.14943 7.05082 6.34469L8.10832 7.40219C8.30358 7.59745 8.30358 7.91403 8.10832 8.1093C7.91306 8.30456 7.59647 8.30456 7.40121 8.1093L6.34371 7.0518C6.14845 6.85653 6.14845 6.53995 6.34371 6.34469ZM16.5987 15.8916C16.4034 15.6963 16.0868 15.6963 15.8916 15.8916C15.6963 16.0868 15.6963 16.4034 15.8916 16.5987L16.9491 17.6562C17.1443 17.8514 17.4609 17.8514 17.6562 17.6562C17.8514 17.4609 17.8514 17.1443 17.6562 16.9491L16.5987 15.8916ZM4 12C4 11.7239 4.22386 11.5 4.5 11.5H6C6.27614 11.5 6.5 11.7239 6.5 12C6.5 12.2761 6.27614 12.5 6 12.5H4.5C4.22386 12.5 4 12.2761 4 12ZM18 11.5C17.7239 11.5 17.5 11.7239 17.5 12C17.5 12.2761 17.7239 12.5 18 12.5H19.5C19.7761 12.5 20 12.2761 20 12C20 11.7239 19.7761 11.5 19.5 11.5H18ZM8.10832 15.8916C8.30358 16.0868 8.30358 16.4034 8.10832 16.5987L7.05082 17.6562C6.85556 17.8514 6.53897 17.8514 6.34371 17.6562C6.14845 17.4609 6.14845 17.1443 6.34371 16.9491L7.40121 15.8916C7.59647 15.6963 7.91306 15.6963 8.10832 15.8916ZM17.6562 7.05082C17.8514 6.85556 17.8514 6.53897 17.6562 6.34371C17.4609 6.14845 17.1443 6.14845 16.9491 6.34371L15.8916 7.40121C15.6963 7.59647 15.6963 7.91306 15.8916 8.10832C16.0868 8.30358 16.4034 8.30358 16.5987 8.10832L17.6562 7.05082Z"
fill="currentColor" />
</svg></div>
<div class="label switch-mode">Light/DARK</div>
</div>
<div id="w-node-_6f395481-6352-fe11-0c0b-f1987dfb066e-7dfb0612" class="wrap-buttons-small"><a
href="https://e2b.dev/auth/sign-up" class="button small primary mobile-w100 w-button">SIGN UP</a><a
href="https://e2b.dev/auth/sign-in" class="button small secondary mobile-w100 w-button">SIGN IN</a>
</div>
</div>
</nav>
</div>
</div>
</div>
<div class="header-divider"></div>
</div>
<div id="main" class="main">
<div class="s-intro">
<div class="promo-banner">
<div class="tag brand">
<div class="label on-black keep-white">NEW</div>
</div><a href="https://github.com/e2b-dev/desktop" target="_blank" class="promo-banner-text w-inline-block">
<div class="label underline">DESKTOP SANDBOX FOR COMPUTER USE</div>
<div class="label">→</div>
</a>
</div>
<div class="wrap-h">
<div class="h-hpcover desktop">
<div style="display:block" class="h1 float s-1">AI-generated code</div>
<div style="display:none" class="h1 float s-2">A1-G3NER4–ED c0de</div>
<div style="display:none" class="h1 float s-3">4I-GE7ER#T3D ©–de</div>
<div style="display:none" class="h1 float s-4">A*-GEN€RATED c0de</div>
<div style="display:none" class="h1 float s-5">—I-G3NERA+ED c°de</div>
</div>
<div class="h-hpcover mobile">
<div style="display:block" class="h1 float s-1">AI-generated</div>
<div style="display:none" class="h1 float s-2">A1-G3NER4–ED</div>
<div style="display:none" class="h1 float s-3">4I-GE7ER#T3D</div>
<div style="display:none" class="h1 float s-4">A*-GEN€RATED</div>
<div style="display:none" class="h1 float s-5">—I-G3NERA+ED</div>
</div>
<h1 class="h1">RUN AI-GENERATED code SECURELY in your APP</h1>
</div>
<div class="p perex sec-intro">E2B is an open-source runtime for executing AI-generated code in secure cloud
sandboxes. Made for agentic & AI use cases.</div>
<div class="wrap-buttons"><a href="https://e2b.dev/auth/sign-up"
class="button large primary _w-fixed w-button">START FOR FREE</a><a href="https://e2b.dev/docs"
class="button large secondary _w-fixed w-button">VIEW DOCS</a></div>
<div class="s-intro-trusted-by">
<div class="label">TRUSTED BY</div>
<div class="s-logo-carousel">
<div id="s-logos-carousel-gradient" class="s-logo-carousel-gradient"></div>
<div id="s-logos-carousel-gradient" class="s-logo-carousel-gradient right"></div>
<div class="wrap-logos">
<div class="client-logo w-embed"><svg width="7.375rem" height="1.875rem" viewBox="0 0 118 30" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M19.3284 2.08733L11.9434 9.47933H19.3284V2.08733ZM19.3284 2.08733V4.11111M11.9263 1V29M19.3284 16.8698L11.9434 9.47778M19.3284 16.8698V27.467L11.9434 20.075M19.3284 16.8698L11.9426 9.47778M19.3284 16.8698L19.3276 20.0322H22.4971V9.47778H11.9426M11.9434 9.47778V20.075M11.9434 9.47778L4.55763 16.8698M11.9434 20.075L4.55763 27.467V16.8698M4.55763 16.8698L4.55685 20.0322H1.38818V9.47778H11.9426M4.55763 16.8698L11.9426 9.47778M11.9426 9.47933L4.55685 2.08733V9.47933H11.9426Z"
stroke="currentColor" stroke-width="1.36111" stroke-miterlimit="10" />
<path
d="M44.1341 11.1328C44.5954 10.2703 45.2401 9.60606 46.0716 9.13862C46.9015 8.67273 47.8752 8.43939 48.9921 8.43939C50.109 8.43939 51.0338 8.66884 51.8077 9.12851C52.5824 9.58817 53.1618 10.1972 53.5452 10.9555C53.9287 11.7146 54.1208 12.5461 54.1208 13.4498V14.7021H45.4322C45.5022 15.7878 45.8686 16.6512 46.5312 17.2913C47.1939 17.9322 48.0837 18.2518 49.2014 18.2518C50.1082 18.2518 50.8036 18.0675 51.2842 17.6988C51.7665 17.3302 52.118 16.8192 52.342 16.1643H54.3316C54.0664 17.1801 53.5258 18.0613 52.7091 18.8056C51.8932 19.5507 50.7235 19.9225 49.2021 19.9225C48.0572 19.9225 47.0485 19.6892 46.1758 19.2233C45.3039 18.7574 44.6296 18.0924 44.1551 17.2291C43.6807 16.3657 43.4435 15.3499 43.4435 14.1802C43.4435 13.0104 43.6737 11.9954 44.1349 11.1321L44.1341 11.1328ZM52.0278 13.1364C52.0278 12.1898 51.7836 11.4494 51.2951 10.9127C50.8067 10.3768 50.039 10.1093 48.9914 10.1093C48.0145 10.1093 47.2149 10.3698 46.5942 10.8917C45.9728 11.4136 45.5925 12.1626 45.4532 13.1364H52.0278ZM56.731 8.75206V10.4849C56.731 10.5829 56.78 10.6312 56.878 10.6312C56.934 10.6312 56.9752 10.6172 57.004 10.5892C57.0328 10.5612 57.06 10.5059 57.0872 10.4227C57.4497 9.28173 58.3504 8.71084 59.7885 8.71084H60.7094V10.5892H59.5155C58.5798 10.5892 57.8821 10.8116 57.4209 11.2573C56.9597 11.7029 56.7295 12.4333 56.7295 13.4498V19.6091H54.8449V8.75128H56.731V8.75206ZM71.7748 17.3224C71.2794 18.1919 70.6369 18.8429 69.8482 19.2738C69.0596 19.7047 68.211 19.9209 67.3041 19.9209C65.5176 19.9209 64.2607 19.2116 63.535 17.7914C63.479 17.681 63.409 17.6249 63.3258 17.6249C63.2426 17.6249 63.1998 17.6669 63.1998 17.7502V23.5749H61.3152V8.75284H63.1998V10.6109C63.1998 10.6942 63.2418 10.7362 63.3258 10.7362C63.4098 10.7362 63.479 10.6802 63.535 10.5697C64.2607 9.1495 65.5176 8.44017 67.3041 8.44017C68.211 8.44017 69.0596 8.65639 69.8482 9.08728C70.6369 9.51817 71.2786 10.1692 71.7748 11.0395C72.2702 11.9091 72.5184 12.9575 72.5184 14.181C72.5184 15.4044 72.2702 16.4521 71.7748 17.3224ZM69.597 11.1842C68.9056 10.4671 67.9948 10.1085 66.8647 10.1085C65.7346 10.1085 64.823 10.4671 64.1324 11.1842C63.4409 11.9013 63.1874 12.8999 63.1874 14.1802C63.1874 15.4604 63.4409 16.4598 64.1324 17.1762C64.8238 17.8933 65.7346 18.2518 66.8647 18.2518C67.9948 18.2518 68.9064 17.8941 69.597 17.1762C70.2885 16.4591 70.6338 15.4604 70.6338 14.1802C70.6338 12.8999 70.2885 11.9013 69.597 11.1842ZM75.253 4.57617V19.6083H73.3685V4.57773H75.253V4.57617ZM76.8047 11.1321C77.2651 10.2695 77.9107 9.60528 78.7421 9.13784C79.572 8.67195 80.5458 8.43862 81.6619 8.43862C82.778 8.43862 83.7044 8.66806 84.4782 9.12773C85.2529 9.58739 85.8324 10.1964 86.2158 10.9547C86.6 11.7138 86.7914 12.5453 86.7914 13.4491V14.7013H78.1028C78.1728 15.7871 78.5391 16.6504 79.2018 17.2905C79.8645 17.9314 80.7542 18.2511 81.8719 18.2511C82.7788 18.2511 83.4734 18.0667 83.9548 17.6981C84.437 17.3294 84.7886 16.8184 85.0126 16.1635H87.0021C86.7369 17.1793 86.1956 18.0605 85.3797 18.8048C84.5638 19.5499 83.394 19.9217 81.8727 19.9217C80.7278 19.9217 79.719 19.6884 78.8463 19.2225C77.9745 18.7566 77.3001 18.0916 76.8257 17.2283C76.3512 16.3649 76.114 15.3492 76.114 14.1794C76.114 13.0096 76.3442 11.9946 76.8055 11.1313H76.8047V11.1321ZM84.6984 13.1356C84.6984 12.1891 84.4541 11.4486 83.9657 10.9119C83.4772 10.3761 82.7096 10.1085 81.6619 10.1085C80.6858 10.1085 79.8855 10.3691 79.2648 10.8909C78.6434 11.4128 78.2638 12.1618 78.1238 13.1356H84.6984ZM85.9529 19.1906L90.2657 13.8659L86.7276 9.16895V8.75128H88.8004L91.7536 12.8012L94.9362 8.75128H97.0502V9.18995L92.9887 14.1802L96.7368 19.1906V19.6083H94.706L91.5023 15.2449L88.0692 19.6083H85.9545V19.1906H85.9529ZM99.7865 5.21784V7.56751H97.5854V5.21784H99.7865ZM99.6721 19.6091H97.7868V8.75206H99.6721V19.6091ZM100.266 8.75206H102.317V5.82917H104.202V8.75206H106.359L106.889 10.3434H104.202V15.5374C104.202 16.2467 104.184 16.7725 104.149 17.1139C104.114 17.4554 104.097 17.6607 104.097 17.7299C104.097 17.8279 104.124 17.9042 104.18 17.9594C104.236 18.0154 104.312 18.0426 104.411 18.0426C104.48 18.0426 104.686 18.0255 105.029 17.9905C105.37 17.9555 105.897 17.9384 106.61 17.9384H107.343V19.6083H105.877C104.676 19.6083 103.783 19.3166 103.197 18.7309C102.611 18.1461 102.317 17.2563 102.317 16.0585V10.3426H100.268V8.75128H100.266V8.75206ZM106.927 8.75206H108.848L111.968 17.8606C112.011 17.9726 112.077 18.1196 112.291 18.1196C112.505 18.1196 112.571 17.9718 112.613 17.8606L115.732 8.75206H117.524V9.16973L113.622 20.8823C113.286 21.8848 112.816 22.5841 112.209 22.9807C111.602 23.3774 110.896 23.5757 109.723 23.5757H107.713V21.9058H109.242C109.73 21.9058 110.128 21.9229 110.435 21.9579C110.741 21.9929 110.937 22.0101 111.021 22.0101C111.259 22.0101 111.419 21.9058 111.504 21.6974L112.09 20.1107C112.16 19.9443 112.166 19.8191 112.111 19.7343C112.083 19.6783 112.049 19.6433 112.007 19.6301C111.965 19.6161 111.902 19.6091 111.819 19.6091H110.542L106.929 8.75284H106.927V8.75206ZM42.2457 17.3403C41.7502 18.2098 41.1078 18.8608 40.3191 19.2917C39.5305 19.7226 38.6819 19.9388 37.775 19.9388C35.9885 19.9388 34.7316 19.2295 34.0059 17.8093C33.9499 17.6988 33.8799 17.6428 33.7967 17.6428C33.7135 17.6428 33.6707 17.6848 33.6707 17.7681V23.5928H31.7861V8.77073H33.6707V10.6288C33.6707 10.7121 33.7127 10.7541 33.7967 10.7541C33.8807 10.7541 33.9499 10.6981 34.0059 10.5876C34.7308 9.16739 35.9885 8.45806 37.775 8.45806C38.6819 8.45806 39.5305 8.67428 40.3191 9.10517C41.1078 9.53606 41.7495 10.1871 42.2457 11.0566C42.7411 11.9262 42.9892 12.9746 42.9892 14.1988C42.9892 15.4231 42.7411 16.4707 42.2457 17.3403ZM40.0679 11.2021C39.3765 10.4849 38.4657 10.1264 37.3356 10.1264C36.2055 10.1264 35.2939 10.4849 34.6032 11.2021C33.9118 11.9192 33.6582 12.9178 33.6582 14.1981C33.6582 15.4783 33.9118 16.4777 34.6032 17.1941C35.2947 17.9112 36.2055 18.2697 37.3356 18.2697C38.4657 18.2697 39.3772 17.9119 40.0679 17.1941C40.7594 16.4769 41.1047 15.4783 41.1047 14.1981C41.1047 12.9178 40.7594 11.9192 40.0679 11.2021Z"
fill="currentColor" />
</svg></div>
<div class="client-logo w-embed"><svg width="7.125rem" height="1.625rem" viewBox="0 0 114 26" fill="none"
xmlns="http://www.w3.org/2000/svg">
<mask id="mask0_7725_2856" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="3"
width="114" height="23">
</mask>
<path
d="M26.1644 5.80413H23.4141V20.1082H32.6899V17.6507H26.1644V5.80413ZM41.2755 11.2128C41.0036 10.9292 40.6899 10.6982 40.3239 10.5091C39.7696 10.2256 39.1526 10.0786 38.4624 10.0786C37.5526 10.0786 36.7474 10.2991 36.0467 10.7507C35.3356 11.2023 34.7814 11.8114 34.3736 12.5781C33.9657 13.3552 33.767 14.2269 33.767 15.2036C33.767 16.1804 33.9657 17.0311 34.3736 17.8082C34.7814 18.5854 35.3356 19.1945 36.0467 19.6356C36.7579 20.0873 37.5526 20.3078 38.452 20.3078C39.1526 20.3078 39.7905 20.1607 40.3448 19.8772C40.7108 19.6881 41.0245 19.4571 41.2859 19.184V20.0978H43.9631V10.2781H41.2859V11.2023L41.2755 11.2128ZM40.7526 17.0941C40.2925 17.5982 39.6964 17.8502 38.9539 17.8502C38.4833 17.8502 38.0546 17.7347 37.6781 17.5036C37.3016 17.2726 37.0088 16.9575 36.7997 16.569C36.5905 16.1804 36.486 15.7183 36.486 15.1827C36.486 14.647 36.5905 14.2164 36.7997 13.8174C37.0088 13.4288 37.3016 13.1137 37.6677 12.8827C38.0337 12.6516 38.4624 12.5361 38.9539 12.5361C39.4454 12.5361 39.8847 12.6516 40.2506 12.8722C40.6167 13.0927 40.9094 13.4078 41.1186 13.8174C41.3383 14.2269 41.4428 14.6891 41.4428 15.2036C41.4428 15.9598 41.2128 16.59 40.7526 17.0941ZM53.6885 10.6141C53.1238 10.2571 52.4859 10.0786 51.7539 10.0786C51.0219 10.0786 50.3421 10.2361 49.7565 10.5617C49.4428 10.7402 49.1604 10.9502 48.9199 11.2023V10.2781H46.2637V20.1082H48.9199V14.4685C48.9199 14.0904 49.0036 13.7439 49.1709 13.4393C49.3382 13.1347 49.5683 12.9036 49.8715 12.7356C50.1644 12.5676 50.5094 12.4941 50.8859 12.4941C51.4506 12.4941 51.9212 12.6726 52.2873 13.0402C52.6532 13.4078 52.831 13.8804 52.831 14.4685V20.1082H55.5081V13.8594C55.5081 13.2082 55.3408 12.5991 55.0166 12.0214C54.6925 11.4439 54.2533 10.9818 53.6885 10.6141ZM64.533 11.1288C64.282 10.8873 63.9892 10.6877 63.665 10.5196C63.1003 10.2256 62.4624 10.0786 61.7618 10.0786C60.852 10.0786 60.0467 10.2991 59.346 10.7507C58.6349 11.2023 58.0702 11.8114 57.6519 12.5781C57.2336 13.3552 57.0245 14.2269 57.0245 15.2036C57.0245 16.1804 57.2336 17.0311 57.6519 17.8082C58.0702 18.5854 58.6349 19.1945 59.346 19.6356C60.0572 20.0873 60.8624 20.3078 61.7618 20.3078C62.4728 20.3078 63.1212 20.1607 63.6859 19.8667C64.0206 19.6986 64.3029 19.4886 64.5539 19.247V20.1082H67.231V5.39453H64.533V11.1183V11.1288ZM64.397 16.569C64.1879 16.9575 63.8951 17.2726 63.5186 17.5036C63.1421 17.7347 62.7134 17.8502 62.2219 17.8502C61.7303 17.8502 61.3225 17.7347 60.946 17.5141C60.5696 17.2936 60.2767 16.9785 60.0676 16.5795C59.8584 16.1804 59.7539 15.7183 59.7539 15.1827C59.7539 14.647 59.8584 14.2059 60.0676 13.8069C60.2767 13.4078 60.5696 13.0927 60.9356 12.8722C61.312 12.6516 61.7408 12.5361 62.2427 12.5361C62.7447 12.5361 63.1526 12.6516 63.529 12.8827C63.8951 13.1137 64.1879 13.4288 64.397 13.8174C64.6062 14.2059 64.7107 14.668 64.7107 15.2036C64.7107 15.7393 64.6062 16.1699 64.397 16.569ZM70.8702 5.64659C70.4414 5.64659 70.0755 5.79362 69.7931 6.09819C69.5107 6.39225 69.3643 6.75983 69.3643 7.17992C69.3643 7.60002 69.5107 7.97809 69.7931 8.27216C70.0755 8.56622 70.431 8.71325 70.8702 8.71325C71.3094 8.71325 71.6754 8.56622 71.9574 8.27216C72.2298 7.97809 72.3757 7.62102 72.3757 7.17992C72.3757 6.73882 72.2399 6.40275 71.9574 6.09819C71.6859 5.80413 71.3199 5.64659 70.8702 5.64659ZM69.5107 20.1082H72.209V10.2781H69.5107V20.1082ZM81.9761 10.6141C81.4112 10.2571 80.7736 10.0786 80.0412 10.0786C79.3095 10.0786 78.6296 10.2361 78.0438 10.5617C77.7304 10.7402 77.448 10.9502 77.2072 11.2023V10.2781H74.5514V20.1082H77.2072V14.4685C77.2072 14.0904 77.2913 13.7439 77.4587 13.4393C77.6255 13.1347 77.8555 12.9036 78.1588 12.7356C78.4521 12.5676 78.7971 12.4941 79.1737 12.4941C79.7379 12.4941 80.2087 12.6726 80.5745 13.0402C80.9411 13.4078 81.1186 13.8804 81.1186 14.4685V20.1082H83.796V13.8594C83.796 13.2082 83.6285 12.5991 83.3043 12.0214C82.9802 11.4439 82.541 10.9818 81.9761 10.6141ZM92.7056 10.2781V11.0973C92.4547 10.8557 92.1723 10.6562 91.8373 10.4881C91.2731 10.2151 90.6241 10.0681 89.9132 10.0681C89.0349 10.0681 88.24 10.2781 87.5392 10.7087C86.8392 11.1393 86.2843 11.7169 85.8875 12.4521C85.4901 13.1873 85.291 14.0064 85.291 14.9306C85.291 15.8548 85.4901 16.6845 85.8875 17.4301C86.2843 18.1758 86.8392 18.764 87.5392 19.1945C88.24 19.6251 89.0349 19.8352 89.9132 19.8352C90.6241 19.8352 91.2623 19.6881 91.8273 19.4046C92.1514 19.2365 92.444 19.037 92.6848 18.7955V19.6462C92.6848 20.3603 92.444 20.9379 91.9523 21.3685C91.4715 21.7991 90.8232 22.0091 90.0074 22.0091C89.3483 22.0091 88.7841 21.8936 88.3133 21.6521C87.8425 21.4105 87.4242 21.0745 87.0483 20.6229L85.3434 22.3137C85.8243 22.9963 86.4625 23.5215 87.2575 23.889C88.0517 24.2567 88.9724 24.4457 90.0182 24.4457C91.064 24.4457 91.9732 24.2462 92.7681 23.847C93.5631 23.448 94.1905 22.8808 94.6405 22.1457C95.0897 21.4105 95.3197 20.5703 95.3197 19.6041V10.2781H92.6848H92.7056ZM92.5381 16.2329C92.3397 16.611 92.0673 16.8945 91.7123 17.0941C91.3565 17.2936 90.9274 17.3986 90.4257 17.3986C89.9657 17.3986 89.5474 17.2936 89.1816 17.0836C88.8049 16.8735 88.5225 16.5795 88.3241 16.2119C88.125 15.8338 88.0208 15.4137 88.0208 14.9411C88.0208 14.4685 88.125 14.0589 88.3342 13.6913C88.5433 13.3133 88.8258 13.0297 89.1816 12.8196C89.5366 12.6096 89.9657 12.5046 90.4466 12.5046C90.9274 12.5046 91.3357 12.6096 91.7015 12.8196C92.0673 13.0297 92.3498 13.3238 92.5381 13.6913C92.7365 14.0695 92.8307 14.4895 92.8307 14.9621C92.8307 15.4347 92.7365 15.8653 92.5381 16.2329Z"
fill="currentColor" />
<path
d="M102.755 5.8042L97.0039 20.1083H99.9213L100.935 17.4407H106.782L107.785 20.1083H110.724L105.035 5.8042H102.765H102.755ZM101.814 15.1197L103.864 9.72155L105.893 15.1197H101.804H101.814ZM111.037 20.1083H113.788V5.8042H111.037V20.1083Z"
fill="currentColor" />
<path d="M0 16.7896V21.5366L3.79607 23.5845V18.827L0 16.7896Z" fill="currentColor" />
<path d="M0 11.2129V15.9599L3.79607 18.0079V13.2503L0 11.2129Z" fill="currentColor" />
<path d="M0 5.63623V10.3832L3.79607 12.4312V7.68418L0 5.63623Z" fill="currentColor" />
<path d="M13.5742 18.8265V23.5841L17.3702 21.5361V16.7891L13.5742 18.8265Z" fill="currentColor" />
<path d="M4.52783 13.2498V18.0074L8.32387 15.9595V11.2124L4.52783 13.2498Z" fill="currentColor" />
<path d="M4.52783 7.68418V12.4312L8.32387 10.3832V5.63623L4.52783 7.68418Z" fill="currentColor" />
<path d="M7.93702 5.03744L4.16187 3L0.386719 5.03744L4.16187 7.06438L7.93702 5.03744Z"
fill="currentColor" />
<path d="M4.52783 19.2051V23.9521L8.32387 26.0001V21.2531L4.52783 19.2051Z" fill="currentColor" />
<path d="M9.05615 21.2531V26.0001L12.8522 23.9521V19.2051L9.05615 21.2531Z" fill="currentColor" />
<path d="M4.91553 18.6065L8.6907 20.644L12.4554 18.6065L8.6907 16.5796L4.91553 18.6065Z"
fill="currentColor" />
<path d="M16.9937 16.1803L13.2185 14.1533L9.44336 16.1803L13.2185 18.2177L16.9937 16.1803Z"
fill="currentColor" />
</svg></div>
<div class="client-logo w-embed"><svg width="2.25rem" height="2rem" viewBox="0 0 36 32" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_7725_2785)">
<path
d="M6.9799 23.7911V23.7828C6.9799 23.304 6.62977 22.9042 6.13377 22.9042C5.63775 22.9042 5.29597 23.2956 5.29597 23.7745V23.7828C5.29597 24.2616 5.64609 24.6613 6.14211 24.6613C6.63811 24.6613 6.9799 24.27 6.9799 23.7911ZM4.6499 23.7911V23.7828C4.6499 22.9876 5.27929 22.3379 6.14211 22.3379C7.00491 22.3379 7.62596 22.9792 7.62596 23.7745V23.7828C7.62596 24.5781 6.99657 25.2276 6.13377 25.2276C5.27096 25.2317 4.6499 24.5865 4.6499 23.7911Z"
fill="currentColor" />
<path
d="M8.25146 22.3862H10.3814V22.9441H8.86836V23.5396H10.2022V24.0974H8.86836V25.18H8.25146V22.3862Z"
fill="currentColor" />
<path
d="M13.9073 24.0197L13.5363 23.112L13.1653 24.0197H13.9073ZM13.2612 22.375H13.8281L15.0285 25.1897H14.3866L14.1323 24.5609H12.9486L12.6943 25.1897H12.0649L13.2612 22.375Z"
fill="currentColor" />
<path
d="M15.5415 22.3862H16.2041L16.9377 23.5686L17.6755 22.3862H18.3382V25.18H17.7256V23.3564L16.9377 24.5514H16.9211L16.1416 23.3687V25.18H15.5415V22.3862Z"
fill="currentColor" />
<path
d="M19.0259 22.3862H21.1349V22.9316H19.6385V23.4979H20.9557V24.0475H19.6385V24.6345H21.1557V25.18H19.0259V22.3862Z"
fill="currentColor" />
<path
d="M23.0231 23.7436C23.3232 23.7436 23.4941 23.5853 23.4941 23.348V23.3397C23.4941 23.0773 23.3106 22.94 23.0106 22.94H22.3978V23.7436H23.0231ZM21.7852 22.3862H23.0648C23.4191 22.3862 23.6941 22.486 23.8817 22.6692C24.036 22.8234 24.1193 23.044 24.1193 23.3064V23.3147C24.1193 23.7643 23.8776 24.0475 23.519 24.1807L24.2027 25.18H23.4816L22.8813 24.2848H22.3978V25.18H21.7852V22.3862Z"
fill="currentColor" />
<path d="M24.7822 22.3862H25.3991V25.18H24.7822V22.3862Z" fill="currentColor" />
<path
d="M26.0532 23.7911V23.7828C26.0532 22.9876 26.6535 22.3379 27.5121 22.3379C28.0414 22.3379 28.354 22.5128 28.6166 22.7711L28.2248 23.2207C28.0081 23.025 27.7872 22.9042 27.5079 22.9042C27.0369 22.9042 26.6952 23.2956 26.6952 23.7745V23.7828C26.6952 24.2616 27.0285 24.6613 27.5079 24.6613C27.8288 24.6613 28.0248 24.5322 28.2414 24.3324L28.6333 24.728C28.3458 25.0362 28.0248 25.2276 27.487 25.2276C26.666 25.2317 26.0532 24.5947 26.0532 23.7911Z"
fill="currentColor" />
<path
d="M30.8174 24.0197L30.4465 23.112L30.0754 24.0197H30.8174ZM30.1672 22.375H30.734L31.9345 25.1897H31.2926L31.0383 24.5609H29.8545L29.6003 25.1897H28.9751L30.1672 22.375Z"
fill="black" />
<path
d="M22.8027 16.5258L23.728 16.2551V15.0976H17.7175V16.2551L18.6429 16.5258C19.3015 16.7257 19.3264 16.8005 19.3264 17.3251V18.9032C18.9931 18.9698 18.3678 18.974 17.9635 18.9157C15.7919 18.5993 15.1917 17.0004 15.1917 15.3224C15.1917 14.3814 15.5084 13.5236 16.2295 12.8283C16.7422 12.3328 17.5301 11.8831 18.7263 11.9248C19.2473 11.9456 19.8475 12.1912 20.0518 12.337C20.6478 12.7492 20.7853 13.2363 20.9437 13.8401H22.4818L22.4734 11.4792C22.4734 11.4792 20.9186 10.4175 18.2386 10.4175C16.1087 10.4175 11.9155 11.3044 11.9155 15.464C11.9155 18.0205 14.0621 20.015 17.8009 20.2023C20.3769 20.3314 22.1233 19.5735 22.1233 19.5735L22.1191 17.3251C22.1191 16.8047 22.1442 16.7298 22.8027 16.5258Z"
fill="currentColor" />
<path
d="M8.15957 14.8308C7.99284 14.9849 7.61353 15.1722 7.3051 15.2472C6.46313 15.4596 5.38359 15.3762 5.3419 15.3762V11.8079C6.05466 11.8079 7.30092 11.6996 8.10121 12.2742C8.49719 12.5574 8.72643 13.0071 8.73894 13.59C8.74727 14.0063 8.59722 14.456 8.15957 14.8308ZM7.93448 10.642C7.4885 10.5921 6.18803 10.5796 6.18803 10.5796L0.902832 10.5838V11.7371L1.79065 12.0119C2.51173 12.2451 2.51173 12.3117 2.51173 12.8405L2.5159 17.8621C2.5159 18.3908 2.5159 18.4242 1.79481 18.6531L0.911168 18.9071V20.0688H6.94664V18.9071L6.06298 18.6531C5.3419 18.4242 5.3419 18.3908 5.3419 17.8621L5.34607 16.6504H6.77574C8.08871 16.6296 9.15576 16.5463 10.1019 16.0091C11.0064 15.497 11.5024 14.5477 11.5024 13.5567C11.4983 11.9578 10.2353 10.8794 7.93448 10.642Z"
fill="currentColor" />
<path
d="M27.2242 16.8086C27.8329 15.651 28.6915 13.9939 28.7499 13.8731C28.8082 14.0106 29.5918 15.6261 30.167 16.8086H27.2242ZM34.8604 18.6781C34.3227 18.4783 34.2018 18.3825 34.0475 18.0452L30.2962 10.5879H28.7415L24.5442 18.1867C24.3941 18.4741 24.2566 18.5408 23.9023 18.6656L22.9478 18.9571V20.0688H27.6036V18.9321L26.5699 18.6656C26.349 18.6115 26.3574 18.4658 26.4115 18.3658C26.4115 18.3658 26.5449 18.1076 26.7491 17.7204H30.6464C30.8548 18.1119 30.9089 18.191 30.9756 18.3325C31.0757 18.5408 30.884 18.6323 30.638 18.7031L29.7044 18.9613V20.0729H35.6814V18.9821C35.6814 18.9738 34.8604 18.6781 34.8604 18.6781Z"
fill="currentColor" />
<path
d="M15.2078 29.8789L14.8034 29.9788L14.6992 29.5624L15.362 29.3667H15.708V31.6943H15.2078V29.8789Z"
fill="black" />
<path
d="M17.588 30.1361V30.1277C17.588 29.9237 17.438 29.7739 17.1796 29.7739C16.9295 29.7739 16.7877 29.9196 16.7877 30.1236V30.1319C16.7877 30.336 16.9378 30.4775 17.1921 30.4775C17.4464 30.4775 17.588 30.336 17.588 30.1361ZM16.3334 31.456L16.6001 31.0688C16.767 31.2062 16.9129 31.2687 17.1046 31.2687C17.388 31.2687 17.5422 31.0522 17.5756 30.744C17.463 30.8398 17.3087 30.9023 17.1046 30.9023C16.6001 30.9023 16.2793 30.6233 16.2793 30.1569V30.1485C16.2793 29.6822 16.6377 29.3408 17.163 29.3408C17.4755 29.3408 17.6547 29.4158 17.8298 29.5906C17.9965 29.7572 18.1048 30.007 18.1048 30.4608V30.4692C18.1048 31.2187 17.7505 31.7308 17.0921 31.7308C16.7586 31.7308 16.5294 31.6184 16.3334 31.456Z"
fill="currentColor" />
<path
d="M18.9554 29.8789L18.551 29.9788L18.4468 29.5624L19.1095 29.3667H19.4597V31.6943H18.9554V29.8789Z"
fill="black" />
<path
d="M21.3433 30.9564V30.948C21.3433 30.7524 21.1933 30.6107 20.9391 30.6107C20.689 30.6107 20.5431 30.7482 20.5431 30.9438V30.9522C20.5431 31.148 20.6931 31.2977 20.9473 31.2977C21.1974 31.2977 21.3433 31.1521 21.3433 30.9564ZM20.2971 31.4852C20.1304 31.3186 20.022 31.0688 20.022 30.6107V30.6025C20.022 29.8904 20.3471 29.3408 21.039 29.3408C21.3517 29.3408 21.5601 29.4324 21.7644 29.5948L21.4976 29.9862C21.3475 29.8697 21.2225 29.803 21.0266 29.803C20.7389 29.803 20.593 30.0362 20.5597 30.3401C20.6765 30.2651 20.8098 30.1902 21.039 30.1902C21.4976 30.1902 21.8519 30.4442 21.8519 30.9272V30.9356C21.8519 31.4061 21.4726 31.735 20.9682 31.735C20.6639 31.7308 20.4597 31.6476 20.2971 31.4852Z"
fill="currentColor" />
<path
d="M19.7843 2.20618C19.4758 2.23115 19.3342 2.59341 19.3925 2.95149C19.7427 2.91401 20.0678 2.85156 20.3637 2.75996C20.3303 2.62672 20.2762 2.50596 20.1928 2.4102C20.1052 2.3061 19.9719 2.18953 19.7843 2.20618ZM16.8332 2.21867C16.6666 2.17287 16.5081 2.25615 16.4206 2.33525C16.3039 2.44351 16.2247 2.59756 16.183 2.75996C16.4831 2.84739 16.8041 2.91401 17.1542 2.95149C17.2 2.62672 17.0917 2.29778 16.8332 2.21867ZM18.2504 2.19785C18.0046 2.21451 17.8044 2.30611 17.6627 2.44767C17.5293 2.58092 17.4417 2.76411 17.421 2.97647C17.9545 3.03477 18.588 3.02644 19.1174 2.98064C19.0923 2.7433 19.0007 2.5601 18.8506 2.4227C18.7257 2.31027 18.4963 2.1812 18.2504 2.19785ZM20.472 4.12568C20.4636 3.98411 20.4262 3.86752 20.3553 3.77176C20.2887 3.68016 20.1928 3.60521 20.0553 3.60104C19.826 3.59687 19.6801 3.75926 19.5925 3.90083C19.4883 4.06738 19.43 4.26724 19.4425 4.49624C19.3508 4.5129 19.2508 4.5379 19.1591 4.54622C19.1507 4.28807 19.0465 4.09654 18.8965 3.95912C18.7506 3.82173 18.5463 3.72595 18.2754 3.72595C18.0046 3.72595 17.8086 3.82588 17.6585 3.95912C17.5044 4.09654 17.4043 4.29223 17.3918 4.54622C17.2917 4.53373 17.1959 4.51707 17.1084 4.49209C17.1209 4.10485 16.9709 3.80506 16.7249 3.65933C16.5749 3.57189 16.3873 3.58438 16.2706 3.68849C16.1622 3.78425 16.0955 3.92997 16.0872 4.11735C16.0747 4.1215 15.687 3.78425 15.5953 3.66349C15.5953 3.66349 15.5953 3.66349 15.5953 3.65933C15.5912 3.6052 15.587 3.5469 15.587 3.48862C15.587 2.00632 16.7958 0.798819 18.2796 0.798819C19.7635 0.798819 20.9722 2.00632 20.9722 3.48862C20.9722 3.53025 20.9722 3.57606 20.9681 3.61769C20.9013 3.72595 20.7597 3.92581 20.472 4.12568ZM20.3095 4.70028C20.2137 4.84184 20.0761 4.98341 19.8718 5.00007C19.7719 5.00424 19.6718 4.96676 19.605 4.90429C19.505 4.81269 19.4591 4.67946 19.4384 4.50041C19.8177 4.42131 20.1636 4.30471 20.4595 4.13816C20.4637 4.13816 20.4637 4.14233 20.4637 4.14233C20.472 4.33803 20.4178 4.54205 20.3095 4.70028ZM18.8923 5.14579C18.7423 5.28321 18.5422 5.38314 18.2713 5.38314C18.0003 5.38314 17.7962 5.28321 17.6503 5.14579C17.5001 5.0084 17.3918 4.81686 17.3877 4.56287C17.3877 4.55871 17.3877 4.55038 17.3918 4.55038C17.9211 4.64198 18.6297 4.63366 19.1507 4.55455C19.1507 4.81686 19.0424 5.0084 18.8923 5.14579ZM16.6957 4.9959C16.4956 4.9959 16.3414 4.846 16.2498 4.7086C16.1456 4.55455 16.0747 4.363 16.0788 4.13816V4.12983C16.3748 4.29638 16.7208 4.41297 17.1 4.49624C17.0792 4.75441 16.95 4.99174 16.6957 4.9959ZM18.2713 0.27002C16.4915 0.27002 15.041 1.71901 15.041 3.49694C15.041 5.27488 16.4915 6.72387 18.2713 6.72387C20.051 6.72387 21.5016 5.27903 21.5016 3.49694C21.5016 1.71484 20.0553 0.27002 18.2713 0.27002Z"
fill="currentColor" />
<path
d="M28.7505 29.3266C28.4628 29.2933 28.2836 29.2933 27.6626 29.4057C27.1291 29.5223 26.8206 29.643 26.633 29.743C26.5163 29.5807 25.5285 28.2732 24.6115 27.0532H23.7153L26.4871 31.471L26.5288 31.5001C26.5705 31.5251 26.9374 31.7333 27.9961 31.7125C28.6588 31.7 29.5049 31.5293 29.5507 31.5168C30.001 31.4002 30.2635 30.4966 30.3553 30.1136L30.3886 29.9761L30.2802 29.8846C30.2593 29.8637 29.6966 29.4016 28.7505 29.3266Z"
fill="currentColor" />
<path
d="M7.83463 29.3266C8.12223 29.2933 8.30146 29.2933 8.92251 29.4057C9.45604 29.5223 9.76449 29.643 9.95205 29.743C10.0688 29.5807 11.0566 28.2732 11.9736 27.0532H12.8656L10.0938 31.471L10.0521 31.5001C10.0104 31.5251 9.64361 31.7333 8.58489 31.7125C7.92217 31.7 7.07604 31.5293 7.03019 31.5168C6.58002 31.4002 6.31743 30.4966 6.22573 30.1136L6.19238 29.9761L6.30076 29.8846C6.32577 29.8637 6.88846 29.4016 7.83463 29.3266Z"
fill="currentColor" />
<path
d="M23.8528 9.32982L27.5624 3.44224C27.5624 3.44224 27.4207 3.00921 26.9872 2.7802C26.5663 2.55535 26.1119 2.65113 26.1119 2.65113L22.7065 8.7802C23.2359 8.98839 23.6235 9.19241 23.8528 9.32982Z"
fill="currentColor" />
<path
d="M13.9869 8.95215L10.4857 2.64819C10.4857 2.64819 10.0313 2.55243 9.61036 2.77727C9.18104 3.00628 9.03516 3.43931 9.03516 3.43931L12.8865 9.5559C13.2366 9.33106 13.6034 9.12702 13.9869 8.95215Z"
fill="currentColor" />
</g>
<defs>
<clipPath id="clip0_7725_2785">
<rect width="2.182rem" height="2rem" fill="currentColor" />
</clipPath>
</defs>
</svg></div>
<div class="client-logo w-embed"><svg width="5.688rem" height="1.5rem" viewBox="0 0 91 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M9.54466 3.08753C9.01541 3.1702 8.28707 3.36957 7.89862 3.53492C7.81551 3.57154 7.70508 3.61728 7.61409 3.65497C7.57219 3.67233 7.53441 3.68798 7.50533 3.70024C7.19457 3.83642 7.09745 3.88503 6.60705 4.1768C5.35917 4.91596 4.27638 6.01008 3.54319 7.26953C2.62063 8.84509 2.23218 10.7951 2.47982 12.57C2.57694 13.2557 2.62548 13.4599 2.85371 14.1747C3.53833 16.2998 5.05812 18.0504 7.11687 19.0861C8.3162 19.689 9.49611 19.9614 10.9285 19.9614C12.7979 19.9614 14.4828 19.3925 16.0511 18.2303C17.3524 17.2626 18.474 15.6482 19.0082 13.9656C19.2801 13.1146 19.4209 11.5439 19.2898 10.8437C19.2072 10.4158 18.8188 9.44322 18.6731 9.31192C18.6586 9.29733 18.5906 9.20981 18.5275 9.1174C18.4158 8.9472 18.1002 8.63114 18.0468 8.63114C18.0273 8.63114 17.9642 8.58251 17.8962 8.51927C17.7845 8.41716 17.6049 8.30532 17.1679 8.06218C16.9543 7.94061 16.4104 7.78013 16.0026 7.71692C15.818 7.68288 14.5702 7.65856 13.0164 7.65371L10.3458 7.63912L9.8894 7.77528C9.32616 7.94061 8.97655 8.12539 8.47158 8.51927C7.45192 9.33138 6.92751 10.7124 7.13629 12.0594C7.25769 12.8569 7.60245 13.5328 8.19481 14.131C8.82605 14.7728 9.57379 15.1327 10.5109 15.2445C11.8996 15.4147 13.3514 14.7193 14.1137 13.5182C14.3031 13.2216 14.5459 12.6721 14.5459 12.5408V12.4241H12.6376H10.7294L10.4624 12.288C10.2439 12.181 10.1759 12.1129 10.0691 11.8941C9.8894 11.5391 9.8894 11.2959 10.0739 10.9993C10.1565 10.8777 10.3118 10.7124 10.4235 10.6395L10.6274 10.5033L13.1086 10.4741C15.7501 10.4498 15.7889 10.4498 16.1094 10.6832C16.1871 10.7367 16.3036 10.8632 16.3667 10.9653C16.6581 11.4272 16.4833 12.8375 16.0074 13.8586C15.5024 14.9382 14.643 15.8621 13.6476 16.3921C13.0795 16.6936 12.5697 16.8833 12.0113 17C11.5743 17.0924 11.4092 17.1021 10.71 17.0778C9.89911 17.0486 9.71945 17.0195 9.03483 16.7812C8.2191 16.4991 7.1703 15.7843 6.65559 15.1619C5.66021 13.9559 5.21836 12.7159 5.29118 11.2959C5.33975 10.2164 5.42714 9.85169 5.81074 9.06877C6.45167 7.75582 7.46649 6.793 8.81146 6.22404C9.75831 5.8253 10.1662 5.77667 13.2835 5.73777C13.2835 5.73777 16.7752 5.78466 17.2256 5.73777C17.2533 5.73488 17.2886 5.7321 17.3304 5.72881C17.9675 5.67864 20.1244 5.5088 20.3331 3H17.2256H11.5597C10.3847 3.00487 9.94282 3.01946 9.54466 3.08753ZM31.5076 19.3086L31.3414 17.0656C31.113 17.1487 31.0091 17.1695 30.8431 17.1695C30.5522 17.1695 30.3446 16.941 30.3446 16.5464V9.23603H27.4992V14.9265C27.4992 16.1934 26.6892 17.0449 25.5262 17.0449C24.4879 17.0449 23.8856 16.2972 23.8856 15.1134V9.23603H21.0196V15.778C21.0196 17.8548 22.3072 19.5163 24.6124 19.5163C26.0871 19.5163 27.0632 18.8102 27.6239 17.7718C27.9146 18.914 28.7247 19.5163 30.0124 19.5163C30.6353 19.5163 31.113 19.4332 31.5076 19.3086ZM48.5142 12.9951C48.5142 10.7313 47.3097 9.13218 45.0459 9.13218C43.3636 9.13218 42.263 10.0252 41.7437 11.2505C41.266 9.98368 40.1861 9.13218 38.5452 9.13218C37.1331 9.13218 36.1362 9.776 35.5548 10.7106L35.4717 9.23603H32.7301V19.4124H35.5754V13.722C35.5754 12.4551 36.3647 11.6036 37.5069 11.6036C38.566 11.6036 39.1892 12.3513 39.1892 13.6181V19.4124H42.0344V13.722C42.0344 12.4551 42.8236 11.6036 43.966 11.6036C45.0043 11.6036 45.6482 12.3305 45.6482 13.6181V19.4124H48.5142V12.9951ZM54.266 19.3086L54.1 17.0656C53.8714 17.1487 53.7676 17.1695 53.6015 17.1695C53.3106 17.1695 53.103 16.941 53.103 16.5464V4.66701H50.2578V16.7126C50.2578 18.5194 51.1093 19.5163 52.7708 19.5163C53.3937 19.5163 53.8714 19.4332 54.266 19.3086ZM65.3231 14.2827C65.3231 11.2298 63.246 9.13218 60.0893 9.13218C56.974 9.13218 54.8764 11.3128 54.8764 14.3865C54.8764 17.4395 56.974 19.5163 60.0893 19.5163C63.246 19.5163 65.3231 17.3356 65.3231 14.2827ZM57.7426 14.345C57.7426 12.6212 58.677 11.479 60.0893 11.479C61.543 11.479 62.4361 12.6212 62.4361 14.345C62.4361 16.0272 61.543 17.1695 60.0893 17.1695C58.677 17.1695 57.7426 16.0272 57.7426 14.345ZM76.6053 14.2827C76.6053 11.2298 74.5285 9.13218 71.3716 9.13218C68.2564 9.13218 66.1588 11.3128 66.1588 14.3865C66.1588 17.4395 68.2564 19.5163 71.3716 19.5163C74.5285 19.5163 76.6053 17.3356 76.6053 14.2827ZM69.0248 14.345C69.0248 12.6212 69.9594 11.479 71.3716 11.479C72.8254 11.479 73.7185 12.6212 73.7185 14.345C73.7185 16.0272 72.8254 17.1695 71.3716 17.1695C69.9594 17.1695 69.0248 16.0272 69.0248 14.345ZM88.4068 14.1581C88.4068 10.939 86.5583 9.13218 83.9832 9.13218C82.4462 9.13218 81.3871 9.79678 80.8055 10.7106L80.7432 9.21525H77.9811V23.6076H80.8263V17.9587C81.3871 18.8932 82.3839 19.5163 83.8793 19.5163C86.6414 19.5163 88.4068 17.3149 88.4068 14.1581ZM85.52 14.2827C85.52 16.0065 84.5854 17.1279 83.2354 17.1279C81.7194 17.1279 80.8263 15.8611 80.8263 14.6358V13.9919C80.8263 12.8497 81.6778 11.5205 83.2561 11.5205C84.6477 11.5205 85.52 12.6005 85.52 14.2827Z"
fill="currentColor" />
</svg></div>
<div class="client-logo w-embed"><svg width="8.188rem" height="1.563rem" viewBox="0 0 131 25" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M10.5633 13.8399C9.78508 13.139 9.82827 11.9225 10.621 11.2515C11.4378 10.5602 12.6824 10.6816 13.3461 11.5191C13.7757 12.0614 13.8305 12.8181 13.4844 13.4323C13.1321 14.0575 12.392 14.4335 11.6853 14.3519C11.2681 14.3038 10.8986 14.1538 10.5633 13.8399Z"
fill="currentColor" />
<path
d="M10.3034 18.7849C10.1697 17.9562 10.4655 17.3507 11.1375 17.0168C11.7775 16.6988 12.5484 16.8404 13.0522 17.3686C13.6614 18.0071 13.5891 19.0219 12.8949 19.5766C12.1506 20.1714 11.0636 20.0165 10.5173 19.2311C10.4316 19.1078 10.3809 18.9603 10.3034 18.7849Z"
fill="currentColor" />
<path
d="M10.7574 5.64019C11.2244 5.28097 11.6984 5.11179 12.2572 5.27571C12.9407 5.47619 13.3952 5.98064 13.4592 6.63298C13.5172 7.22527 13.1939 7.81502 12.6515 8.10644C12.0781 8.41446 11.3272 8.34697 10.8321 7.9429C10.0947 7.34103 10.0548 6.4489 10.7574 5.64019Z"
fill="currentColor" />
<path
d="M18.2236 14.3539C19.0251 15.21 18.6544 16.4856 17.6759 16.861C16.9985 17.1208 16.2565 16.8907 15.8311 16.2818C15.4452 15.7293 15.4876 14.9505 15.9317 14.436C16.406 13.8864 17.1392 13.7253 17.7788 14.0427C17.9287 14.1171 18.0587 14.2318 18.2236 14.3539Z"
fill="currentColor" />
<path
d="M15.8438 10.4907C15.2568 9.65684 15.6522 8.41831 16.702 8.12938C17.3883 7.94051 18.1332 8.25245 18.4778 8.88837C18.8211 9.52166 18.671 10.3213 18.1221 10.7843C17.5715 11.2486 16.7524 11.2769 16.1903 10.8425C16.0706 10.75 15.9726 10.6295 15.8438 10.4907Z"
fill="currentColor" />
<path
d="M5.38773 8.65337C6.07366 7.98681 6.80436 7.89025 7.47985 8.35202C8.1454 8.80698 8.34545 9.68563 7.94237 10.3834C7.53669 11.0858 6.6277 11.356 5.89989 10.9906C5.18399 10.6312 4.86053 9.77509 5.16763 9.03754C5.21941 8.91317 5.29772 8.79986 5.38773 8.65337Z"
fill="currentColor" />
<path
d="M7.70215 14.3508C8.46284 15.1342 8.20131 16.4112 7.21365 16.8411C6.55336 17.1285 5.78595 16.9174 5.34822 16.3304C4.93246 15.7728 4.95968 14.9701 5.41223 14.4434C5.89783 13.8783 6.65471 13.7225 7.30216 14.0636C7.43565 14.1339 7.55196 14.2368 7.70215 14.3508Z"
fill="currentColor" />
<path
d="M7.87997 21.489C7.60387 22.3622 6.90056 22.7399 6.13564 22.4621C5.55838 22.2525 5.21962 21.6867 5.31473 21.091C5.40705 20.5129 5.96829 20.0642 6.59946 20.064C7.21909 20.0637 7.75922 20.4776 7.86383 21.0436C7.88828 21.176 7.87819 21.3147 7.87997 21.489Z"
fill="currentColor" />
<path
d="M18.0651 22.1444C17.4018 22.6578 16.7372 22.6704 16.2358 22.2065C15.7225 21.7318 15.6725 21.038 16.1139 20.5158C16.5395 20.0122 17.3228 19.9123 17.8723 20.2915C18.4225 20.6711 18.573 21.3892 18.2192 21.9588C18.1837 22.0161 18.1333 22.0642 18.0651 22.1444Z"
fill="currentColor" />
<path
d="M21.0385 12.7753C21.0155 11.885 21.4359 11.3575 22.1905 11.2846C22.7777 11.2278 23.327 11.5622 23.5279 12.0987C23.7229 12.6193 23.5572 13.1714 23.1054 13.5061C22.6226 13.8637 21.9326 13.8693 21.5003 13.4714C21.3087 13.2951 21.1941 13.0352 21.0385 12.7753Z"
fill="currentColor" />
<path
d="M16.1571 4.57C15.7463 3.99297 15.717 3.48937 16.044 3.03897C16.3734 2.5853 16.9574 2.38823 17.4958 2.54907C18.1616 2.74799 18.5457 3.41155 18.3745 4.06691C18.2083 4.70315 17.4568 5.13258 16.7995 4.93584C16.5798 4.87007 16.3875 4.71249 16.1571 4.57Z"
fill="currentColor" />
<path
d="M7.65308 4.47288C7.19195 4.97872 6.6669 5.11683 6.06637 4.87023C5.50598 4.64011 5.19622 4.02608 5.32803 3.46074C5.46239 2.88442 6.03277 2.47038 6.65667 2.49627C7.28845 2.52248 7.81059 2.98154 7.87917 3.578C7.91492 3.88896 7.87943 4.18689 7.65308 4.47288Z"
fill="currentColor" />
<path
d="M1.56165 13.7351C0.635642 13.7986 0.0230482 13.3221 0.000632914 12.5633C-0.0182595 11.9238 0.387185 11.4286 1.03107 11.305C1.66872 11.1826 2.29056 11.5243 2.50555 12.1152C2.71861 12.7008 2.46858 13.3126 1.88668 13.617C1.79744 13.6637 1.6968 13.6886 1.56165 13.7351Z"
fill="currentColor" />
<path
d="M22.4462 17.4517C22.534 17.4596 22.5874 17.4568 22.6343 17.473C23.1329 17.6455 23.3847 17.9633 23.3638 18.3887C23.3462 18.7459 23.0576 19.0835 22.683 19.185C22.2321 19.3072 21.7548 19.1398 21.5156 18.7755C21.2665 18.3962 21.3736 17.8712 21.7883 17.6273C21.9678 17.5217 22.2003 17.5062 22.4462 17.4517Z"
fill="currentColor" />
<path
d="M1.17976 17.4586C1.53615 17.425 1.82109 17.5044 2.05807 17.7256C2.44004 18.0821 2.42898 18.6347 2.02865 18.9702C1.68316 19.2597 1.29058 19.296 0.889064 19.1201C0.575915 18.9828 0.373295 18.7378 0.35965 18.3789C0.346197 18.025 0.51121 17.7604 0.811032 17.5849C0.911034 17.5263 1.03132 17.5024 1.17976 17.4586Z"
fill="currentColor" />
<path
d="M12.8085 1.13497C12.3951 1.85097 11.6106 1.98773 11.1079 1.4664C10.7444 1.08946 10.8033 0.469267 11.2462 0.189782C11.6165 -0.0439603 12.0163 -0.0686949 12.4003 0.154157C12.7576 0.361571 12.9124 0.680033 12.8085 1.13497Z"
fill="currentColor" />
<path
d="M11.3439 23.3897C11.8047 23.2007 12.2082 23.2123 12.5649 23.5377C12.8126 23.7636 12.9076 24.0473 12.8156 24.3702C12.7252 24.6871 12.515 24.9098 12.1828 24.9666C11.9851 25.0004 11.7714 25.016 11.5767 24.9785C10.8855 24.8454 10.6452 24.0957 11.1134 23.5662C11.1687 23.5036 11.2443 23.4588 11.3439 23.3897Z"
fill="currentColor" />
<path
d="M1.72816 5.889C1.88641 5.99371 2.04372 6.06012 2.11943 6.17865C2.2236 6.34176 2.31507 6.54167 2.32512 6.73045C2.34896 7.1778 1.93383 7.54969 1.43077 7.57987C0.869898 7.61352 0.409201 7.27701 0.359251 6.7972C0.312126 6.34451 0.66027 5.89845 1.14224 5.83355C1.32007 5.8096 1.50768 5.85834 1.72816 5.889Z"
fill="currentColor" />
<path
d="M23.1832 7.22802C22.8614 7.56974 22.4934 7.63932 22.0882 7.55169C21.7211 7.47229 21.4463 7.1784 21.394 6.82966C21.3428 6.48757 21.5331 6.12502 21.8602 5.9417C22.2469 5.72496 22.7615 5.78927 23.0863 6.09493C23.3973 6.38758 23.4319 6.70641 23.1832 7.22802Z"
fill="currentColor" />
<path
d="M73.2205 16.2069C73.2205 16.5275 73.2205 16.7989 73.2205 17.1312C72.9429 17.1476 72.6849 17.1628 72.3857 17.1804C72.3857 14.5235 72.3857 11.9156 72.3857 9.28033C72.6538 9.28033 72.9185 9.28033 73.2101 9.28033C73.2101 10.8115 73.2101 12.3213 73.2101 13.8432C73.4489 13.8779 73.5204 13.6895 73.6265 13.5812C74.8876 12.2931 76.1656 11.0202 77.3858 9.69422C77.7827 9.26291 78.1878 9.20501 78.7791 9.2859C77.6376 10.4874 76.5434 11.6391 75.398 12.8447C76.5851 14.2528 77.773 15.662 78.999 17.1162C78.4447 17.2147 78.0335 17.2164 77.6538 16.7401C76.87 15.7572 76.0148 14.8312 75.1885 13.8823C75.0776 13.755 74.9637 13.6303 74.8594 13.5136C74.3281 14.0211 73.8094 14.5064 73.3072 15.0081C73.2374 15.0777 73.2308 15.2276 73.2259 15.3416C73.2143 15.6133 73.2212 15.8857 73.2205 16.2069Z"
fill="currentColor" />
<path
d="M103.808 9.66368C103.722 9.53573 103.657 9.43737 103.539 9.2575C103.851 9.2575 104.105 9.22142 104.341 9.2711C104.481 9.30068 104.618 9.44575 104.713 9.57197C105.346 10.4155 105.966 11.2684 106.593 12.117C106.671 12.2226 106.759 12.3205 106.877 12.4632C107.1 12.159 107.298 11.8901 107.496 11.6214C107.97 10.9776 108.47 10.3506 108.908 9.68314C109.136 9.33558 109.396 9.19791 109.788 9.25295C109.87 9.26453 109.954 9.26502 110.132 9.27704C109.189 10.5641 108.284 11.799 107.349 13.0751C108.329 14.4091 109.307 15.7418 110.322 17.123C109.752 17.2216 109.354 17.2078 109.024 16.7067C108.445 15.827 107.788 14.9982 107.162 14.1493C107.064 14.0161 106.957 13.8896 106.82 13.7179C106.462 14.2046 106.132 14.6516 105.804 15.1C105.422 15.6215 104.998 16.1187 104.673 16.6737C104.356 17.2142 103.933 17.2231 103.362 17.1217C104.361 15.7678 105.327 14.4583 106.327 13.102C105.491 11.9611 104.66 10.8272 103.808 9.66368Z"
fill="currentColor" />
<path
d="M61.4395 13.1503C61.4723 11.8781 61.932 10.8547 62.8971 10.085C64.4011 8.88538 66.8127 8.88918 68.1995 10.0835C68.2861 10.1581 68.3583 10.2493 68.4536 10.35C68.2867 10.5232 68.1364 10.6792 67.9556 10.8669C67.0992 10.0776 66.103 9.83019 65.0092 9.99918C64.2118 10.1224 63.5332 10.4899 63.0076 11.121C62.0037 12.3264 62.0232 14.2074 63.0739 15.3944C63.7055 16.1079 64.5204 16.442 65.4668 16.4753C66.4098 16.5085 67.2376 16.2192 67.9431 15.5509C68.1159 15.7428 68.2608 15.9037 68.4291 16.0907C68.233 16.3862 67.9142 16.577 67.5932 16.7557C66.1999 17.5315 63.4469 17.5888 62.0373 15.3788C61.6119 14.7118 61.4385 13.9794 61.4395 13.1503Z"
fill="currentColor" />
<path
d="M43.2857 15.2913C43.2857 13.2689 43.2857 11.2974 43.2857 9.2915C43.571 9.2915 43.8329 9.2915 44.1325 9.2915C44.1325 11.6591 44.1325 14.0176 44.1325 16.4217C45.6059 16.4217 47.0433 16.4217 48.5133 16.4217C48.5133 16.6795 48.5133 16.8917 48.5133 17.1351C46.7911 17.1351 45.0787 17.1351 43.2958 17.1351C43.2731 16.5505 43.2917 15.9459 43.2857 15.2913Z"
fill="currentColor" />
<path
d="M129.22 16.8779C129.224 14.3513 129.228 11.871 129.234 9.39073C129.234 9.36151 129.262 9.33235 129.288 9.27979C129.524 9.27979 129.772 9.27979 130.045 9.27979C130.045 11.8887 130.045 14.4834 130.045 17.1536C129.819 17.1536 129.589 17.1682 129.363 17.1431C129.308 17.137 129.267 17.0007 129.22 16.8779Z"
fill="currentColor" />
<path fill-rule="evenodd" clip-rule="evenodd"
d="M32.6533 14.7813V9.29139C32.7022 9.28751 32.7491 9.28287 32.7946 9.27837C32.8888 9.26905 32.9771 9.2603 33.0655 9.26005C34.0865 9.25715 35.1075 9.25682 36.1286 9.25786C36.6784 9.25843 37.2161 9.33576 37.7184 9.56983C39.0817 10.2051 39.2553 11.967 38.0469 12.8695C37.9971 12.9066 37.9466 12.9427 37.8807 12.9897C37.8447 13.0154 37.8041 13.0444 37.7565 13.0786C37.8212 13.1084 37.8792 13.1347 37.9328 13.1588L37.9328 13.1589C38.0367 13.2058 38.1237 13.2451 38.2087 13.288C38.8564 13.6148 39.2041 14.1385 39.249 14.8657C39.2967 15.6392 39.0525 16.2725 38.381 16.702C37.9547 16.9746 37.4755 17.1128 36.9788 17.1226C35.9186 17.1436 34.858 17.1476 33.7974 17.1516H33.7974C33.4631 17.1529 33.1288 17.1542 32.7945 17.156C32.7764 17.1561 32.7582 17.1455 32.7275 17.1277C32.7085 17.1167 32.6848 17.1029 32.6533 17.0872L32.6533 14.7813ZM37.7661 13.8161C37.3355 13.5797 36.8648 13.5236 36.3856 13.52C35.5361 13.5134 34.6865 13.5129 33.837 13.5157C33.7601 13.5159 33.6832 13.533 33.613 13.5487L33.613 13.5487C33.5824 13.5554 33.5532 13.562 33.5258 13.5667V13.5668L33.5257 13.5668V16.4457C33.5592 16.4507 33.5889 16.4561 33.6161 16.461H33.6161C33.6679 16.4704 33.7106 16.4781 33.7533 16.4781C33.9644 16.4778 34.1756 16.4781 34.3868 16.4783C35.0592 16.4792 35.7316 16.48 36.4036 16.4647C36.7232 16.4574 37.046 16.4031 37.3589 16.3329C37.6408 16.2696 37.8809 16.1533 38.0598 15.976C38.2239 15.8134 38.3365 15.5995 38.3825 15.3281C38.3962 15.2473 38.4063 15.1673 38.4121 15.0885C38.4483 14.5974 38.3142 14.1536 37.7997 13.836L37.7863 13.8287L37.7661 13.8161ZM37.0143 10.1238C37.1046 10.1522 37.1933 10.1841 37.2794 10.219C37.7627 10.4147 37.9969 10.8225 38.0003 11.3504C38.0038 11.8888 37.8079 12.3406 37.2975 12.5452C36.9274 12.6936 36.5159 12.7782 36.1169 12.8058C35.667 12.837 35.2147 12.8337 34.7455 12.8303C34.5442 12.8288 34.3397 12.8273 34.131 12.8285L33.5502 12.8287C33.5502 12.8286 33.5502 12.8285 33.5501 12.8285C33.5499 12.8285 33.5498 12.8285 33.5496 12.8285C33.4747 12.4938 33.4835 12.1668 33.4922 11.844C33.4962 11.6955 33.5001 11.548 33.4959 11.401C33.4869 11.0849 33.489 10.7685 33.4912 10.4463V10.4463C33.4921 10.3033 33.4931 10.1591 33.4931 10.0133C33.5215 10.0057 33.5474 9.99718 33.5716 9.98923L33.5716 9.98923C33.6188 9.9737 33.6594 9.96032 33.7001 9.96027C33.9114 9.95997 34.1228 9.95841 34.3341 9.95686C34.9557 9.95229 35.5774 9.94771 36.1977 9.97514C36.4698 9.98716 36.7491 10.0405 37.0143 10.1238Z"
fill="currentColor" />
<path fill-rule="evenodd" clip-rule="evenodd"
d="M82.5093 15.1897V9.29674C82.5601 9.29205 82.6082 9.28652 82.6547 9.28119L82.6547 9.28119C82.7498 9.27027 82.8376 9.2602 82.9253 9.25993C83.2009 9.25908 83.4766 9.25636 83.7522 9.25363C84.5139 9.24611 85.2755 9.23858 86.0355 9.27062C86.5354 9.29169 87.0542 9.38717 87.5215 9.56311C89.0699 10.1462 88.9644 12.1706 87.9376 12.8432C87.8854 12.8775 87.8357 12.9158 87.771 12.9658L87.7709 12.9658C87.7356 12.9931 87.6957 13.024 87.6484 13.0595C87.7073 13.092 87.7603 13.1217 87.8095 13.1493C87.9059 13.2034 87.988 13.2494 88.0716 13.2923C88.7582 13.6447 89.0847 14.2103 89.1025 14.9774C89.1206 15.7598 88.8289 16.3623 88.1384 16.7552C87.6839 17.0138 87.186 17.1312 86.6729 17.1368C85.7048 17.1474 84.7366 17.1455 83.7411 17.1435H83.7411H83.7409C83.3387 17.1427 82.9321 17.1419 82.5192 17.1419L82.516 16.863C82.5134 16.6473 82.5108 16.4285 82.5097 16.2097C82.5085 15.9876 82.5087 15.7656 82.509 15.5269L82.5093 15.1897ZM83.3535 16.1175L83.3983 16.4354C83.7023 16.4354 84.0037 16.4363 84.3031 16.4371H84.3032H84.3032C85.1096 16.4395 85.9021 16.4418 86.6942 16.4268C86.7478 16.4258 86.8019 16.4216 86.8561 16.4148C86.8687 16.4132 86.8814 16.4115 86.894 16.4096C87.0948 16.38 87.2962 16.3156 87.4829 16.2406C88.0125 16.0281 88.2561 15.6044 88.2686 15.0403C88.2814 14.4606 88.0826 13.9803 87.5151 13.7773C87.1224 13.6368 86.6939 13.55 86.2774 13.5318C85.6428 13.504 85.0067 13.5087 84.3708 13.5135H84.3707C84.1387 13.5152 83.9066 13.5169 83.6746 13.517C83.611 13.5171 83.5474 13.5251 83.4741 13.5343L83.4741 13.5343C83.4369 13.5389 83.3972 13.5439 83.3537 13.5483V13.5483L83.3534 13.5484L83.3535 16.1175ZM84.3208 9.95203H83.3885V12.7908C83.3888 12.7908 83.3891 12.7908 83.3894 12.7908V12.7909C83.6628 12.7909 83.9335 12.7918 84.2021 12.7927C84.9174 12.7952 85.6184 12.7976 86.319 12.7823C86.5659 12.7769 86.8219 12.6936 87.0539 12.598C87.5978 12.374 87.8572 11.9485 87.8525 11.3589C87.848 10.7842 87.5739 10.3841 87.0489 10.179C86.7937 10.0792 86.5163 10.0083 86.2434 9.98448C86.2333 9.9836 86.2232 9.98278 86.2132 9.98202C85.866 9.95599 85.517 9.95537 85.1318 9.95469C85.129 9.95468 85.1263 9.95468 85.1235 9.95467C84.9812 9.95438 84.8361 9.95399 84.6872 9.952L84.3208 9.95203Z"
fill="currentColor" />
<path fill-rule="evenodd" clip-rule="evenodd"
d="M99.3073 16.3152C100.975 14.8906 101.009 12.6421 100.245 11.2689C99.5109 9.98089 98.3985 9.32696 96.9908 9.21136C93.7868 8.94822 91.6466 11.6925 92.6753 14.6242C93.7531 17.6954 97.5803 17.7904 99.3073 16.3152ZM95.4898 16.3215C93.4667 15.6961 92.7396 13.3812 93.6378 11.6518C93.639 11.6496 93.6402 11.6475 93.6414 11.6453C93.646 11.6361 93.6507 11.627 93.6554 11.6179C94.7198 9.68474 97.4024 9.48542 98.8031 10.7531C99.855 11.705 100.178 13.2703 99.6037 14.5903C99.0465 15.8702 97.7203 16.6029 96.2295 16.4662C95.9665 16.442 95.7198 16.3927 95.4898 16.3215Z"
fill="currentColor" />
<path fill-rule="evenodd" clip-rule="evenodd"
d="M54.3742 9.28484C53.4009 11.413 52.4394 13.5155 51.4637 15.6538C51.3917 15.8285 51.3106 15.9948 51.2304 16.1594C51.0752 16.4775 50.9231 16.7895 50.8457 17.1433C50.8827 17.147 50.9148 17.1506 50.9438 17.154C50.9978 17.1602 51.0408 17.1651 51.0838 17.166L51.084 17.166C51.6557 17.178 51.6572 17.178 51.8804 16.6754C51.9271 16.5703 51.9748 16.4655 52.0225 16.3607C52.1583 16.0627 52.294 15.7646 52.4067 15.4581C52.5177 15.1562 52.6885 15.0484 53.0118 15.053C53.8311 15.0647 54.6506 15.0627 55.4701 15.0607C55.8424 15.0597 56.2147 15.0588 56.587 15.0592C56.6772 15.0593 56.7673 15.0659 56.8629 15.073C56.9089 15.0763 56.9561 15.0798 57.0052 15.0827L57.93 17.1303H58.8135L55.226 9.28369H54.3747L54.3742 9.28484ZM54.7989 10.1419L54.7986 10.1412L54.7948 10.1495C54.3784 11.0714 54.0095 11.8882 53.6267 12.7408C53.3894 13.2821 53.166 13.7875 52.9192 14.3458L52.9183 14.3478H56.6792L56.6792 14.3477H56.6799L54.7992 10.1411L54.7989 10.1419Z"
fill="currentColor" />
<path fill-rule="evenodd" clip-rule="evenodd"
d="M125.778 17.1384C125.688 16.9249 125.623 16.7717 125.546 16.5837C124.424 14.1308 123.314 11.7127 122.2 9.28701L122.193 9.27295H121.354L117.764 17.1403H118.632L119.568 15.0879H123.991C124.067 15.2598 124.143 15.4298 124.218 15.5985C124.404 16.0142 124.586 16.4223 124.759 16.8344C124.856 17.0658 124.987 17.2003 125.253 17.1686C125.361 17.1558 125.47 17.1521 125.592 17.148C125.651 17.146 125.713 17.1439 125.779 17.1406L125.778 17.1384ZM123.657 14.3405H123.657L121.774 10.1404L121.773 10.1423C121.61 10.4975 121.499 10.7404 121.374 11.0192C120.878 12.1365 120.395 13.2176 119.895 14.3391L119.894 14.3405H119.894L119.894 14.3406H123.657L123.657 14.3405Z"
fill="currentColor" />
</svg></div>
</div>
<div class="wrap-logos _2">
<div class="client-logo w-embed"><svg width="7.375rem" height="1.875rem" viewBox="0 0 118 30" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M19.3284 2.08733L11.9434 9.47933H19.3284V2.08733ZM19.3284 2.08733V4.11111M11.9263 1V29M19.3284 16.8698L11.9434 9.47778M19.3284 16.8698V27.467L11.9434 20.075M19.3284 16.8698L11.9426 9.47778M19.3284 16.8698L19.3276 20.0322H22.4971V9.47778H11.9426M11.9434 9.47778V20.075M11.9434 9.47778L4.55763 16.8698M11.9434 20.075L4.55763 27.467V16.8698M4.55763 16.8698L4.55685 20.0322H1.38818V9.47778H11.9426M4.55763 16.8698L11.9426 9.47778M11.9426 9.47933L4.55685 2.08733V9.47933H11.9426Z"
stroke="currentColor" stroke-width="1.36111" stroke-miterlimit="10" />
<path
d="M44.1341 11.1328C44.5954 10.2703 45.2401 9.60606 46.0716 9.13862C46.9015 8.67273 47.8752 8.43939 48.9921 8.43939C50.109 8.43939 51.0338 8.66884 51.8077 9.12851C52.5824 9.58817 53.1618 10.1972 53.5452 10.9555C53.9287 11.7146 54.1208 12.5461 54.1208 13.4498V14.7021H45.4322C45.5022 15.7878 45.8686 16.6512 46.5312 17.2913C47.1939 17.9322 48.0837 18.2518 49.2014 18.2518C50.1082 18.2518 50.8036 18.0675 51.2842 17.6988C51.7665 17.3302 52.118 16.8192 52.342 16.1643H54.3316C54.0664 17.1801 53.5258 18.0613 52.7091 18.8056C51.8932 19.5507 50.7235 19.9225 49.2021 19.9225C48.0572 19.9225 47.0485 19.6892 46.1758 19.2233C45.3039 18.7574 44.6296 18.0924 44.1551 17.2291C43.6807 16.3657 43.4435 15.3499 43.4435 14.1802C43.4435 13.0104 43.6737 11.9954 44.1349 11.1321L44.1341 11.1328ZM52.0278 13.1364C52.0278 12.1898 51.7836 11.4494 51.2951 10.9127C50.8067 10.3768 50.039 10.1093 48.9914 10.1093C48.0145 10.1093 47.2149 10.3698 46.5942 10.8917C45.9728 11.4136 45.5925 12.1626 45.4532 13.1364H52.0278ZM56.731 8.75206V10.4849C56.731 10.5829 56.78 10.6312 56.878 10.6312C56.934 10.6312 56.9752 10.6172 57.004 10.5892C57.0328 10.5612 57.06 10.5059 57.0872 10.4227C57.4497 9.28173 58.3504 8.71084 59.7885 8.71084H60.7094V10.5892H59.5155C58.5798 10.5892 57.8821 10.8116 57.4209 11.2573C56.9597 11.7029 56.7295 12.4333 56.7295 13.4498V19.6091H54.8449V8.75128H56.731V8.75206ZM71.7748 17.3224C71.2794 18.1919 70.6369 18.8429 69.8482 19.2738C69.0596 19.7047 68.211 19.9209 67.3041 19.9209C65.5176 19.9209 64.2607 19.2116 63.535 17.7914C63.479 17.681 63.409 17.6249 63.3258 17.6249C63.2426 17.6249 63.1998 17.6669 63.1998 17.7502V23.5749H61.3152V8.75284H63.1998V10.6109C63.1998 10.6942 63.2418 10.7362 63.3258 10.7362C63.4098 10.7362 63.479 10.6802 63.535 10.5697C64.2607 9.1495 65.5176 8.44017 67.3041 8.44017C68.211 8.44017 69.0596 8.65639 69.8482 9.08728C70.6369 9.51817 71.2786 10.1692 71.7748 11.0395C72.2702 11.9091 72.5184 12.9575 72.5184 14.181C72.5184 15.4044 72.2702 16.4521 71.7748 17.3224ZM69.597 11.1842C68.9056 10.4671 67.9948 10.1085 66.8647 10.1085C65.7346 10.1085 64.823 10.4671 64.1324 11.1842C63.4409 11.9013 63.1874 12.8999 63.1874 14.1802C63.1874 15.4604 63.4409 16.4598 64.1324 17.1762C64.8238 17.8933 65.7346 18.2518 66.8647 18.2518C67.9948 18.2518 68.9064 17.8941 69.597 17.1762C70.2885 16.4591 70.6338 15.4604 70.6338 14.1802C70.6338 12.8999 70.2885 11.9013 69.597 11.1842ZM75.253 4.57617V19.6083H73.3685V4.57773H75.253V4.57617ZM76.8047 11.1321C77.2651 10.2695 77.9107 9.60528 78.7421 9.13784C79.572 8.67195 80.5458 8.43862 81.6619 8.43862C82.778 8.43862 83.7044 8.66806 84.4782 9.12773C85.2529 9.58739 85.8324 10.1964 86.2158 10.9547C86.6 11.7138 86.7914 12.5453 86.7914 13.4491V14.7013H78.1028C78.1728 15.7871 78.5391 16.6504 79.2018 17.2905C79.8645 17.9314 80.7542 18.2511 81.8719 18.2511C82.7788 18.2511 83.4734 18.0667 83.9548 17.6981C84.437 17.3294 84.7886 16.8184 85.0126 16.1635H87.0021C86.7369 17.1793 86.1956 18.0605 85.3797 18.8048C84.5638 19.5499 83.394 19.9217 81.8727 19.9217C80.7278 19.9217 79.719 19.6884 78.8463 19.2225C77.9745 18.7566 77.3001 18.0916 76.8257 17.2283C76.3512 16.3649 76.114 15.3492 76.114 14.1794C76.114 13.0096 76.3442 11.9946 76.8055 11.1313H76.8047V11.1321ZM84.6984 13.1356C84.6984 12.1891 84.4541 11.4486 83.9657 10.9119C83.4772 10.3761 82.7096 10.1085 81.6619 10.1085C80.6858 10.1085 79.8855 10.3691 79.2648 10.8909C78.6434 11.4128 78.2638 12.1618 78.1238 13.1356H84.6984ZM85.9529 19.1906L90.2657 13.8659L86.7276 9.16895V8.75128H88.8004L91.7536 12.8012L94.9362 8.75128H97.0502V9.18995L92.9887 14.1802L96.7368 19.1906V19.6083H94.706L91.5023 15.2449L88.0692 19.6083H85.9545V19.1906H85.9529ZM99.7865 5.21784V7.56751H97.5854V5.21784H99.7865ZM99.6721 19.6091H97.7868V8.75206H99.6721V19.6091ZM100.266 8.75206H102.317V5.82917H104.202V8.75206H106.359L106.889 10.3434H104.202V15.5374C104.202 16.2467 104.184 16.7725 104.149 17.1139C104.114 17.4554 104.097 17.6607 104.097 17.7299C104.097 17.8279 104.124 17.9042 104.18 17.9594C104.236 18.0154 104.312 18.0426 104.411 18.0426C104.48 18.0426 104.686 18.0255 105.029 17.9905C105.37 17.9555 105.897 17.9384 106.61 17.9384H107.343V19.6083H105.877C104.676 19.6083 103.783 19.3166 103.197 18.7309C102.611 18.1461 102.317 17.2563 102.317 16.0585V10.3426H100.268V8.75128H100.266V8.75206ZM106.927 8.75206H108.848L111.968 17.8606C112.011 17.9726 112.077 18.1196 112.291 18.1196C112.505 18.1196 112.571 17.9718 112.613 17.8606L115.732 8.75206H117.524V9.16973L113.622 20.8823C113.286 21.8848 112.816 22.5841 112.209 22.9807C111.602 23.3774 110.896 23.5757 109.723 23.5757H107.713V21.9058H109.242C109.73 21.9058 110.128 21.9229 110.435 21.9579C110.741 21.9929 110.937 22.0101 111.021 22.0101C111.259 22.0101 111.419 21.9058 111.504 21.6974L112.09 20.1107C112.16 19.9443 112.166 19.8191 112.111 19.7343C112.083 19.6783 112.049 19.6433 112.007 19.6301C111.965 19.6161 111.902 19.6091 111.819 19.6091H110.542L106.929 8.75284H106.927V8.75206ZM42.2457 17.3403C41.7502 18.2098 41.1078 18.8608 40.3191 19.2917C39.5305 19.7226 38.6819 19.9388 37.775 19.9388C35.9885 19.9388 34.7316 19.2295 34.0059 17.8093C33.9499 17.6988 33.8799 17.6428 33.7967 17.6428C33.7135 17.6428 33.6707 17.6848 33.6707 17.7681V23.5928H31.7861V8.77073H33.6707V10.6288C33.6707 10.7121 33.7127 10.7541 33.7967 10.7541C33.8807 10.7541 33.9499 10.6981 34.0059 10.5876C34.7308 9.16739 35.9885 8.45806 37.775 8.45806C38.6819 8.45806 39.5305 8.67428 40.3191 9.10517C41.1078 9.53606 41.7495 10.1871 42.2457 11.0566C42.7411 11.9262 42.9892 12.9746 42.9892 14.1988C42.9892 15.4231 42.7411 16.4707 42.2457 17.3403ZM40.0679 11.2021C39.3765 10.4849 38.4657 10.1264 37.3356 10.1264C36.2055 10.1264 35.2939 10.4849 34.6032 11.2021C33.9118 11.9192 33.6582 12.9178 33.6582 14.1981C33.6582 15.4783 33.9118 16.4777 34.6032 17.1941C35.2947 17.9112 36.2055 18.2697 37.3356 18.2697C38.4657 18.2697 39.3772 17.9119 40.0679 17.1941C40.7594 16.4769 41.1047 15.4783 41.1047 14.1981C41.1047 12.9178 40.7594 11.9192 40.0679 11.2021Z"
fill="currentColor" />
</svg></div>
<div class="client-logo w-embed"><svg width="7.125rem" height="1.625rem" viewBox="0 0 114 26" fill="none"
xmlns="http://www.w3.org/2000/svg">
<mask id="mask0_7725_2856" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="3"
width="114" height="23">
</mask>
<path
d="M26.1644 5.80413H23.4141V20.1082H32.6899V17.6507H26.1644V5.80413ZM41.2755 11.2128C41.0036 10.9292 40.6899 10.6982 40.3239 10.5091C39.7696 10.2256 39.1526 10.0786 38.4624 10.0786C37.5526 10.0786 36.7474 10.2991 36.0467 10.7507C35.3356 11.2023 34.7814 11.8114 34.3736 12.5781C33.9657 13.3552 33.767 14.2269 33.767 15.2036C33.767 16.1804 33.9657 17.0311 34.3736 17.8082C34.7814 18.5854 35.3356 19.1945 36.0467 19.6356C36.7579 20.0873 37.5526 20.3078 38.452 20.3078C39.1526 20.3078 39.7905 20.1607 40.3448 19.8772C40.7108 19.6881 41.0245 19.4571 41.2859 19.184V20.0978H43.9631V10.2781H41.2859V11.2023L41.2755 11.2128ZM40.7526 17.0941C40.2925 17.5982 39.6964 17.8502 38.9539 17.8502C38.4833 17.8502 38.0546 17.7347 37.6781 17.5036C37.3016 17.2726 37.0088 16.9575 36.7997 16.569C36.5905 16.1804 36.486 15.7183 36.486 15.1827C36.486 14.647 36.5905 14.2164 36.7997 13.8174C37.0088 13.4288 37.3016 13.1137 37.6677 12.8827C38.0337 12.6516 38.4624 12.5361 38.9539 12.5361C39.4454 12.5361 39.8847 12.6516 40.2506 12.8722C40.6167 13.0927 40.9094 13.4078 41.1186 13.8174C41.3383 14.2269 41.4428 14.6891 41.4428 15.2036C41.4428 15.9598 41.2128 16.59 40.7526 17.0941ZM53.6885 10.6141C53.1238 10.2571 52.4859 10.0786 51.7539 10.0786C51.0219 10.0786 50.3421 10.2361 49.7565 10.5617C49.4428 10.7402 49.1604 10.9502 48.9199 11.2023V10.2781H46.2637V20.1082H48.9199V14.4685C48.9199 14.0904 49.0036 13.7439 49.1709 13.4393C49.3382 13.1347 49.5683 12.9036 49.8715 12.7356C50.1644 12.5676 50.5094 12.4941 50.8859 12.4941C51.4506 12.4941 51.9212 12.6726 52.2873 13.0402C52.6532 13.4078 52.831 13.8804 52.831 14.4685V20.1082H55.5081V13.8594C55.5081 13.2082 55.3408 12.5991 55.0166 12.0214C54.6925 11.4439 54.2533 10.9818 53.6885 10.6141ZM64.533 11.1288C64.282 10.8873 63.9892 10.6877 63.665 10.5196C63.1003 10.2256 62.4624 10.0786 61.7618 10.0786C60.852 10.0786 60.0467 10.2991 59.346 10.7507C58.6349 11.2023 58.0702 11.8114 57.6519 12.5781C57.2336 13.3552 57.0245 14.2269 57.0245 15.2036C57.0245 16.1804 57.2336 17.0311 57.6519 17.8082C58.0702 18.5854 58.6349 19.1945 59.346 19.6356C60.0572 20.0873 60.8624 20.3078 61.7618 20.3078C62.4728 20.3078 63.1212 20.1607 63.6859 19.8667C64.0206 19.6986 64.3029 19.4886 64.5539 19.247V20.1082H67.231V5.39453H64.533V11.1183V11.1288ZM64.397 16.569C64.1879 16.9575 63.8951 17.2726 63.5186 17.5036C63.1421 17.7347 62.7134 17.8502 62.2219 17.8502C61.7303 17.8502 61.3225 17.7347 60.946 17.5141C60.5696 17.2936 60.2767 16.9785 60.0676 16.5795C59.8584 16.1804 59.7539 15.7183 59.7539 15.1827C59.7539 14.647 59.8584 14.2059 60.0676 13.8069C60.2767 13.4078 60.5696 13.0927 60.9356 12.8722C61.312 12.6516 61.7408 12.5361 62.2427 12.5361C62.7447 12.5361 63.1526 12.6516 63.529 12.8827C63.8951 13.1137 64.1879 13.4288 64.397 13.8174C64.6062 14.2059 64.7107 14.668 64.7107 15.2036C64.7107 15.7393 64.6062 16.1699 64.397 16.569ZM70.8702 5.64659C70.4414 5.64659 70.0755 5.79362 69.7931 6.09819C69.5107 6.39225 69.3643 6.75983 69.3643 7.17992C69.3643 7.60002 69.5107 7.97809 69.7931 8.27216C70.0755 8.56622 70.431 8.71325 70.8702 8.71325C71.3094 8.71325 71.6754 8.56622 71.9574 8.27216C72.2298 7.97809 72.3757 7.62102 72.3757 7.17992C72.3757 6.73882 72.2399 6.40275 71.9574 6.09819C71.6859 5.80413 71.3199 5.64659 70.8702 5.64659ZM69.5107 20.1082H72.209V10.2781H69.5107V20.1082ZM81.9761 10.6141C81.4112 10.2571 80.7736 10.0786 80.0412 10.0786C79.3095 10.0786 78.6296 10.2361 78.0438 10.5617C77.7304 10.7402 77.448 10.9502 77.2072 11.2023V10.2781H74.5514V20.1082H77.2072V14.4685C77.2072 14.0904 77.2913 13.7439 77.4587 13.4393C77.6255 13.1347 77.8555 12.9036 78.1588 12.7356C78.4521 12.5676 78.7971 12.4941 79.1737 12.4941C79.7379 12.4941 80.2087 12.6726 80.5745 13.0402C80.9411 13.4078 81.1186 13.8804 81.1186 14.4685V20.1082H83.796V13.8594C83.796 13.2082 83.6285 12.5991 83.3043 12.0214C82.9802 11.4439 82.541 10.9818 81.9761 10.6141ZM92.7056 10.2781V11.0973C92.4547 10.8557 92.1723 10.6562 91.8373 10.4881C91.2731 10.2151 90.6241 10.0681 89.9132 10.0681C89.0349 10.0681 88.24 10.2781 87.5392 10.7087C86.8392 11.1393 86.2843 11.7169 85.8875 12.4521C85.4901 13.1873 85.291 14.0064 85.291 14.9306C85.291 15.8548 85.4901 16.6845 85.8875 17.4301C86.2843 18.1758 86.8392 18.764 87.5392 19.1945C88.24 19.6251 89.0349 19.8352 89.9132 19.8352C90.6241 19.8352 91.2623 19.6881 91.8273 19.4046C92.1514 19.2365 92.444 19.037 92.6848 18.7955V19.6462C92.6848 20.3603 92.444 20.9379 91.9523 21.3685C91.4715 21.7991 90.8232 22.0091 90.0074 22.0091C89.3483 22.0091 88.7841 21.8936 88.3133 21.6521C87.8425 21.4105 87.4242 21.0745 87.0483 20.6229L85.3434 22.3137C85.8243 22.9963 86.4625 23.5215 87.2575 23.889C88.0517 24.2567 88.9724 24.4457 90.0182 24.4457C91.064 24.4457 91.9732 24.2462 92.7681 23.847C93.5631 23.448 94.1905 22.8808 94.6405 22.1457C95.0897 21.4105 95.3197 20.5703 95.3197 19.6041V10.2781H92.6848H92.7056ZM92.5381 16.2329C92.3397 16.611 92.0673 16.8945 91.7123 17.0941C91.3565 17.2936 90.9274 17.3986 90.4257 17.3986C89.9657 17.3986 89.5474 17.2936 89.1816 17.0836C88.8049 16.8735 88.5225 16.5795 88.3241 16.2119C88.125 15.8338 88.0208 15.4137 88.0208 14.9411C88.0208 14.4685 88.125 14.0589 88.3342 13.6913C88.5433 13.3133 88.8258 13.0297 89.1816 12.8196C89.5366 12.6096 89.9657 12.5046 90.4466 12.5046C90.9274 12.5046 91.3357 12.6096 91.7015 12.8196C92.0673 13.0297 92.3498 13.3238 92.5381 13.6913C92.7365 14.0695 92.8307 14.4895 92.8307 14.9621C92.8307 15.4347 92.7365 15.8653 92.5381 16.2329Z"
fill="currentColor" />
<path
d="M102.755 5.8042L97.0039 20.1083H99.9213L100.935 17.4407H106.782L107.785 20.1083H110.724L105.035 5.8042H102.765H102.755ZM101.814 15.1197L103.864 9.72155L105.893 15.1197H101.804H101.814ZM111.037 20.1083H113.788V5.8042H111.037V20.1083Z"
fill="currentColor" />
<path d="M0 16.7896V21.5366L3.79607 23.5845V18.827L0 16.7896Z" fill="currentColor" />
<path d="M0 11.2129V15.9599L3.79607 18.0079V13.2503L0 11.2129Z" fill="currentColor" />
<path d="M0 5.63623V10.3832L3.79607 12.4312V7.68418L0 5.63623Z" fill="currentColor" />
<path d="M13.5742 18.8265V23.5841L17.3702 21.5361V16.7891L13.5742 18.8265Z" fill="currentColor" />
<path d="M4.52783 13.2498V18.0074L8.32387 15.9595V11.2124L4.52783 13.2498Z" fill="currentColor" />
<path d="M4.52783 7.68418V12.4312L8.32387 10.3832V5.63623L4.52783 7.68418Z" fill="currentColor" />
<path d="M7.93702 5.03744L4.16187 3L0.386719 5.03744L4.16187 7.06438L7.93702 5.03744Z"
fill="currentColor" />
<path d="M4.52783 19.2051V23.9521L8.32387 26.0001V21.2531L4.52783 19.2051Z" fill="currentColor" />
<path d="M9.05615 21.2531V26.0001L12.8522 23.9521V19.2051L9.05615 21.2531Z" fill="currentColor" />
<path d="M4.91553 18.6065L8.6907 20.644L12.4554 18.6065L8.6907 16.5796L4.91553 18.6065Z"
fill="currentColor" />
<path d="M16.9937 16.1803L13.2185 14.1533L9.44336 16.1803L13.2185 18.2177L16.9937 16.1803Z"
fill="currentColor" />
</svg></div>
<div class="client-logo w-embed"><svg width="2.25rem" height="2rem" viewBox="0 0 36 32" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_7725_2785)">
<path
d="M6.9799 23.7911V23.7828C6.9799 23.304 6.62977 22.9042 6.13377 22.9042C5.63775 22.9042 5.29597 23.2956 5.29597 23.7745V23.7828C5.29597 24.2616 5.64609 24.6613 6.14211 24.6613C6.63811 24.6613 6.9799 24.27 6.9799 23.7911ZM4.6499 23.7911V23.7828C4.6499 22.9876 5.27929 22.3379 6.14211 22.3379C7.00491 22.3379 7.62596 22.9792 7.62596 23.7745V23.7828C7.62596 24.5781 6.99657 25.2276 6.13377 25.2276C5.27096 25.2317 4.6499 24.5865 4.6499 23.7911Z"
fill="currentColor" />
<path
d="M8.25146 22.3862H10.3814V22.9441H8.86836V23.5396H10.2022V24.0974H8.86836V25.18H8.25146V22.3862Z"
fill="currentColor" />
<path
d="M13.9073 24.0197L13.5363 23.112L13.1653 24.0197H13.9073ZM13.2612 22.375H13.8281L15.0285 25.1897H14.3866L14.1323 24.5609H12.9486L12.6943 25.1897H12.0649L13.2612 22.375Z"
fill="currentColor" />
<path
d="M15.5415 22.3862H16.2041L16.9377 23.5686L17.6755 22.3862H18.3382V25.18H17.7256V23.3564L16.9377 24.5514H16.9211L16.1416 23.3687V25.18H15.5415V22.3862Z"
fill="currentColor" />
<path
d="M19.0259 22.3862H21.1349V22.9316H19.6385V23.4979H20.9557V24.0475H19.6385V24.6345H21.1557V25.18H19.0259V22.3862Z"
fill="currentColor" />
<path
d="M23.0231 23.7436C23.3232 23.7436 23.4941 23.5853 23.4941 23.348V23.3397C23.4941 23.0773 23.3106 22.94 23.0106 22.94H22.3978V23.7436H23.0231ZM21.7852 22.3862H23.0648C23.4191 22.3862 23.6941 22.486 23.8817 22.6692C24.036 22.8234 24.1193 23.044 24.1193 23.3064V23.3147C24.1193 23.7643 23.8776 24.0475 23.519 24.1807L24.2027 25.18H23.4816L22.8813 24.2848H22.3978V25.18H21.7852V22.3862Z"
fill="currentColor" />
<path d="M24.7822 22.3862H25.3991V25.18H24.7822V22.3862Z" fill="currentColor" />
<path
d="M26.0532 23.7911V23.7828C26.0532 22.9876 26.6535 22.3379 27.5121 22.3379C28.0414 22.3379 28.354 22.5128 28.6166 22.7711L28.2248 23.2207C28.0081 23.025 27.7872 22.9042 27.5079 22.9042C27.0369 22.9042 26.6952 23.2956 26.6952 23.7745V23.7828C26.6952 24.2616 27.0285 24.6613 27.5079 24.6613C27.8288 24.6613 28.0248 24.5322 28.2414 24.3324L28.6333 24.728C28.3458 25.0362 28.0248 25.2276 27.487 25.2276C26.666 25.2317 26.0532 24.5947 26.0532 23.7911Z"
fill="currentColor" />
<path
d="M30.8174 24.0197L30.4465 23.112L30.0754 24.0197H30.8174ZM30.1672 22.375H30.734L31.9345 25.1897H31.2926L31.0383 24.5609H29.8545L29.6003 25.1897H28.9751L30.1672 22.375Z"
fill="black" />
<path
d="M22.8027 16.5258L23.728 16.2551V15.0976H17.7175V16.2551L18.6429 16.5258C19.3015 16.7257 19.3264 16.8005 19.3264 17.3251V18.9032C18.9931 18.9698 18.3678 18.974 17.9635 18.9157C15.7919 18.5993 15.1917 17.0004 15.1917 15.3224C15.1917 14.3814 15.5084 13.5236 16.2295 12.8283C16.7422 12.3328 17.5301 11.8831 18.7263 11.9248C19.2473 11.9456 19.8475 12.1912 20.0518 12.337C20.6478 12.7492 20.7853 13.2363 20.9437 13.8401H22.4818L22.4734 11.4792C22.4734 11.4792 20.9186 10.4175 18.2386 10.4175C16.1087 10.4175 11.9155 11.3044 11.9155 15.464C11.9155 18.0205 14.0621 20.015 17.8009 20.2023C20.3769 20.3314 22.1233 19.5735 22.1233 19.5735L22.1191 17.3251C22.1191 16.8047 22.1442 16.7298 22.8027 16.5258Z"
fill="currentColor" />
<path
d="M8.15957 14.8308C7.99284 14.9849 7.61353 15.1722 7.3051 15.2472C6.46313 15.4596 5.38359 15.3762 5.3419 15.3762V11.8079C6.05466 11.8079 7.30092 11.6996 8.10121 12.2742C8.49719 12.5574 8.72643 13.0071 8.73894 13.59C8.74727 14.0063 8.59722 14.456 8.15957 14.8308ZM7.93448 10.642C7.4885 10.5921 6.18803 10.5796 6.18803 10.5796L0.902832 10.5838V11.7371L1.79065 12.0119C2.51173 12.2451 2.51173 12.3117 2.51173 12.8405L2.5159 17.8621C2.5159 18.3908 2.5159 18.4242 1.79481 18.6531L0.911168 18.9071V20.0688H6.94664V18.9071L6.06298 18.6531C5.3419 18.4242 5.3419 18.3908 5.3419 17.8621L5.34607 16.6504H6.77574C8.08871 16.6296 9.15576 16.5463 10.1019 16.0091C11.0064 15.497 11.5024 14.5477 11.5024 13.5567C11.4983 11.9578 10.2353 10.8794 7.93448 10.642Z"
fill="currentColor" />
<path
d="M27.2242 16.8086C27.8329 15.651 28.6915 13.9939 28.7499 13.8731C28.8082 14.0106 29.5918 15.6261 30.167 16.8086H27.2242ZM34.8604 18.6781C34.3227 18.4783 34.2018 18.3825 34.0475 18.0452L30.2962 10.5879H28.7415L24.5442 18.1867C24.3941 18.4741 24.2566 18.5408 23.9023 18.6656L22.9478 18.9571V20.0688H27.6036V18.9321L26.5699 18.6656C26.349 18.6115 26.3574 18.4658 26.4115 18.3658C26.4115 18.3658 26.5449 18.1076 26.7491 17.7204H30.6464C30.8548 18.1119 30.9089 18.191 30.9756 18.3325C31.0757 18.5408 30.884 18.6323 30.638 18.7031L29.7044 18.9613V20.0729H35.6814V18.9821C35.6814 18.9738 34.8604 18.6781 34.8604 18.6781Z"
fill="currentColor" />
<path
d="M15.2078 29.8789L14.8034 29.9788L14.6992 29.5624L15.362 29.3667H15.708V31.6943H15.2078V29.8789Z"
fill="black" />
<path
d="M17.588 30.1361V30.1277C17.588 29.9237 17.438 29.7739 17.1796 29.7739C16.9295 29.7739 16.7877 29.9196 16.7877 30.1236V30.1319C16.7877 30.336 16.9378 30.4775 17.1921 30.4775C17.4464 30.4775 17.588 30.336 17.588 30.1361ZM16.3334 31.456L16.6001 31.0688C16.767 31.2062 16.9129 31.2687 17.1046 31.2687C17.388 31.2687 17.5422 31.0522 17.5756 30.744C17.463 30.8398 17.3087 30.9023 17.1046 30.9023C16.6001 30.9023 16.2793 30.6233 16.2793 30.1569V30.1485C16.2793 29.6822 16.6377 29.3408 17.163 29.3408C17.4755 29.3408 17.6547 29.4158 17.8298 29.5906C17.9965 29.7572 18.1048 30.007 18.1048 30.4608V30.4692C18.1048 31.2187 17.7505 31.7308 17.0921 31.7308C16.7586 31.7308 16.5294 31.6184 16.3334 31.456Z"
fill="currentColor" />
<path
d="M18.9554 29.8789L18.551 29.9788L18.4468 29.5624L19.1095 29.3667H19.4597V31.6943H18.9554V29.8789Z"
fill="black" />
<path
d="M21.3433 30.9564V30.948C21.3433 30.7524 21.1933 30.6107 20.9391 30.6107C20.689 30.6107 20.5431 30.7482 20.5431 30.9438V30.9522C20.5431 31.148 20.6931 31.2977 20.9473 31.2977C21.1974 31.2977 21.3433 31.1521 21.3433 30.9564ZM20.2971 31.4852C20.1304 31.3186 20.022 31.0688 20.022 30.6107V30.6025C20.022 29.8904 20.3471 29.3408 21.039 29.3408C21.3517 29.3408 21.5601 29.4324 21.7644 29.5948L21.4976 29.9862C21.3475 29.8697 21.2225 29.803 21.0266 29.803C20.7389 29.803 20.593 30.0362 20.5597 30.3401C20.6765 30.2651 20.8098 30.1902 21.039 30.1902C21.4976 30.1902 21.8519 30.4442 21.8519 30.9272V30.9356C21.8519 31.4061 21.4726 31.735 20.9682 31.735C20.6639 31.7308 20.4597 31.6476 20.2971 31.4852Z"
fill="currentColor" />
<path
d="M19.7843 2.20618C19.4758 2.23115 19.3342 2.59341 19.3925 2.95149C19.7427 2.91401 20.0678 2.85156 20.3637 2.75996C20.3303 2.62672 20.2762 2.50596 20.1928 2.4102C20.1052 2.3061 19.9719 2.18953 19.7843 2.20618ZM16.8332 2.21867C16.6666 2.17287 16.5081 2.25615 16.4206 2.33525C16.3039 2.44351 16.2247 2.59756 16.183 2.75996C16.4831 2.84739 16.8041 2.91401 17.1542 2.95149C17.2 2.62672 17.0917 2.29778 16.8332 2.21867ZM18.2504 2.19785C18.0046 2.21451 17.8044 2.30611 17.6627 2.44767C17.5293 2.58092 17.4417 2.76411 17.421 2.97647C17.9545 3.03477 18.588 3.02644 19.1174 2.98064C19.0923 2.7433 19.0007 2.5601 18.8506 2.4227C18.7257 2.31027 18.4963 2.1812 18.2504 2.19785ZM20.472 4.12568C20.4636 3.98411 20.4262 3.86752 20.3553 3.77176C20.2887 3.68016 20.1928 3.60521 20.0553 3.60104C19.826 3.59687 19.6801 3.75926 19.5925 3.90083C19.4883 4.06738 19.43 4.26724 19.4425 4.49624C19.3508 4.5129 19.2508 4.5379 19.1591 4.54622C19.1507 4.28807 19.0465 4.09654 18.8965 3.95912C18.7506 3.82173 18.5463 3.72595 18.2754 3.72595C18.0046 3.72595 17.8086 3.82588 17.6585 3.95912C17.5044 4.09654 17.4043 4.29223 17.3918 4.54622C17.2917 4.53373 17.1959 4.51707 17.1084 4.49209C17.1209 4.10485 16.9709 3.80506 16.7249 3.65933C16.5749 3.57189 16.3873 3.58438 16.2706 3.68849C16.1622 3.78425 16.0955 3.92997 16.0872 4.11735C16.0747 4.1215 15.687 3.78425 15.5953 3.66349C15.5953 3.66349 15.5953 3.66349 15.5953 3.65933C15.5912 3.6052 15.587 3.5469 15.587 3.48862C15.587 2.00632 16.7958 0.798819 18.2796 0.798819C19.7635 0.798819 20.9722 2.00632 20.9722 3.48862C20.9722 3.53025 20.9722 3.57606 20.9681 3.61769C20.9013 3.72595 20.7597 3.92581 20.472 4.12568ZM20.3095 4.70028C20.2137 4.84184 20.0761 4.98341 19.8718 5.00007C19.7719 5.00424 19.6718 4.96676 19.605 4.90429C19.505 4.81269 19.4591 4.67946 19.4384 4.50041C19.8177 4.42131 20.1636 4.30471 20.4595 4.13816C20.4637 4.13816 20.4637 4.14233 20.4637 4.14233C20.472 4.33803 20.4178 4.54205 20.3095 4.70028ZM18.8923 5.14579C18.7423 5.28321 18.5422 5.38314 18.2713 5.38314C18.0003 5.38314 17.7962 5.28321 17.6503 5.14579C17.5001 5.0084 17.3918 4.81686 17.3877 4.56287C17.3877 4.55871 17.3877 4.55038 17.3918 4.55038C17.9211 4.64198 18.6297 4.63366 19.1507 4.55455C19.1507 4.81686 19.0424 5.0084 18.8923 5.14579ZM16.6957 4.9959C16.4956 4.9959 16.3414 4.846 16.2498 4.7086C16.1456 4.55455 16.0747 4.363 16.0788 4.13816V4.12983C16.3748 4.29638 16.7208 4.41297 17.1 4.49624C17.0792 4.75441 16.95 4.99174 16.6957 4.9959ZM18.2713 0.27002C16.4915 0.27002 15.041 1.71901 15.041 3.49694C15.041 5.27488 16.4915 6.72387 18.2713 6.72387C20.051 6.72387 21.5016 5.27903 21.5016 3.49694C21.5016 1.71484 20.0553 0.27002 18.2713 0.27002Z"
fill="currentColor" />
<path
d="M28.7505 29.3266C28.4628 29.2933 28.2836 29.2933 27.6626 29.4057C27.1291 29.5223 26.8206 29.643 26.633 29.743C26.5163 29.5807 25.5285 28.2732 24.6115 27.0532H23.7153L26.4871 31.471L26.5288 31.5001C26.5705 31.5251 26.9374 31.7333 27.9961 31.7125C28.6588 31.7 29.5049 31.5293 29.5507 31.5168C30.001 31.4002 30.2635 30.4966 30.3553 30.1136L30.3886 29.9761L30.2802 29.8846C30.2593 29.8637 29.6966 29.4016 28.7505 29.3266Z"
fill="currentColor" />
<path
d="M7.83463 29.3266C8.12223 29.2933 8.30146 29.2933 8.92251 29.4057C9.45604 29.5223 9.76449 29.643 9.95205 29.743C10.0688 29.5807 11.0566 28.2732 11.9736 27.0532H12.8656L10.0938 31.471L10.0521 31.5001C10.0104 31.5251 9.64361 31.7333 8.58489 31.7125C7.92217 31.7 7.07604 31.5293 7.03019 31.5168C6.58002 31.4002 6.31743 30.4966 6.22573 30.1136L6.19238 29.9761L6.30076 29.8846C6.32577 29.8637 6.88846 29.4016 7.83463 29.3266Z"
fill="currentColor" />
<path
d="M23.8528 9.32982L27.5624 3.44224C27.5624 3.44224 27.4207 3.00921 26.9872 2.7802C26.5663 2.55535 26.1119 2.65113 26.1119 2.65113L22.7065 8.7802C23.2359 8.98839 23.6235 9.19241 23.8528 9.32982Z"
fill="currentColor" />
<path
d="M13.9869 8.95215L10.4857 2.64819C10.4857 2.64819 10.0313 2.55243 9.61036 2.77727C9.18104 3.00628 9.03516 3.43931 9.03516 3.43931L12.8865 9.5559C13.2366 9.33106 13.6034 9.12702 13.9869 8.95215Z"
fill="currentColor" />
</g>
<defs>
<clipPath id="clip0_7725_2785">
<rect width="2.182rem" height="2rem" fill="currentColor" />
</clipPath>
</defs>
</svg></div>
<div class="client-logo w-embed"><svg width="5.688rem" height="1.5rem" viewBox="0 0 91 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M9.54466 3.08753C9.01541 3.1702 8.28707 3.36957 7.89862 3.53492C7.81551 3.57154 7.70508 3.61728 7.61409 3.65497C7.57219 3.67233 7.53441 3.68798 7.50533 3.70024C7.19457 3.83642 7.09745 3.88503 6.60705 4.1768C5.35917 4.91596 4.27638 6.01008 3.54319 7.26953C2.62063 8.84509 2.23218 10.7951 2.47982 12.57C2.57694 13.2557 2.62548 13.4599 2.85371 14.1747C3.53833 16.2998 5.05812 18.0504 7.11687 19.0861C8.3162 19.689 9.49611 19.9614 10.9285 19.9614C12.7979 19.9614 14.4828 19.3925 16.0511 18.2303C17.3524 17.2626 18.474 15.6482 19.0082 13.9656C19.2801 13.1146 19.4209 11.5439 19.2898 10.8437C19.2072 10.4158 18.8188 9.44322 18.6731 9.31192C18.6586 9.29733 18.5906 9.20981 18.5275 9.1174C18.4158 8.9472 18.1002 8.63114 18.0468 8.63114C18.0273 8.63114 17.9642 8.58251 17.8962 8.51927C17.7845 8.41716 17.6049 8.30532 17.1679 8.06218C16.9543 7.94061 16.4104 7.78013 16.0026 7.71692C15.818 7.68288 14.5702 7.65856 13.0164 7.65371L10.3458 7.63912L9.8894 7.77528C9.32616 7.94061 8.97655 8.12539 8.47158 8.51927C7.45192 9.33138 6.92751 10.7124 7.13629 12.0594C7.25769 12.8569 7.60245 13.5328 8.19481 14.131C8.82605 14.7728 9.57379 15.1327 10.5109 15.2445C11.8996 15.4147 13.3514 14.7193 14.1137 13.5182C14.3031 13.2216 14.5459 12.6721 14.5459 12.5408V12.4241H12.6376H10.7294L10.4624 12.288C10.2439 12.181 10.1759 12.1129 10.0691 11.8941C9.8894 11.5391 9.8894 11.2959 10.0739 10.9993C10.1565 10.8777 10.3118 10.7124 10.4235 10.6395L10.6274 10.5033L13.1086 10.4741C15.7501 10.4498 15.7889 10.4498 16.1094 10.6832C16.1871 10.7367 16.3036 10.8632 16.3667 10.9653C16.6581 11.4272 16.4833 12.8375 16.0074 13.8586C15.5024 14.9382 14.643 15.8621 13.6476 16.3921C13.0795 16.6936 12.5697 16.8833 12.0113 17C11.5743 17.0924 11.4092 17.1021 10.71 17.0778C9.89911 17.0486 9.71945 17.0195 9.03483 16.7812C8.2191 16.4991 7.1703 15.7843 6.65559 15.1619C5.66021 13.9559 5.21836 12.7159 5.29118 11.2959C5.33975 10.2164 5.42714 9.85169 5.81074 9.06877C6.45167 7.75582 7.46649 6.793 8.81146 6.22404C9.75831 5.8253 10.1662 5.77667 13.2835 5.73777C13.2835 5.73777 16.7752 5.78466 17.2256 5.73777C17.2533 5.73488 17.2886 5.7321 17.3304 5.72881C17.9675 5.67864 20.1244 5.5088 20.3331 3H17.2256H11.5597C10.3847 3.00487 9.94282 3.01946 9.54466 3.08753ZM31.5076 19.3086L31.3414 17.0656C31.113 17.1487 31.0091 17.1695 30.8431 17.1695C30.5522 17.1695 30.3446 16.941 30.3446 16.5464V9.23603H27.4992V14.9265C27.4992 16.1934 26.6892 17.0449 25.5262 17.0449C24.4879 17.0449 23.8856 16.2972 23.8856 15.1134V9.23603H21.0196V15.778C21.0196 17.8548 22.3072 19.5163 24.6124 19.5163C26.0871 19.5163 27.0632 18.8102 27.6239 17.7718C27.9146 18.914 28.7247 19.5163 30.0124 19.5163C30.6353 19.5163 31.113 19.4332 31.5076 19.3086ZM48.5142 12.9951C48.5142 10.7313 47.3097 9.13218 45.0459 9.13218C43.3636 9.13218 42.263 10.0252 41.7437 11.2505C41.266 9.98368 40.1861 9.13218 38.5452 9.13218C37.1331 9.13218 36.1362 9.776 35.5548 10.7106L35.4717 9.23603H32.7301V19.4124H35.5754V13.722C35.5754 12.4551 36.3647 11.6036 37.5069 11.6036C38.566 11.6036 39.1892 12.3513 39.1892 13.6181V19.4124H42.0344V13.722C42.0344 12.4551 42.8236 11.6036 43.966 11.6036C45.0043 11.6036 45.6482 12.3305 45.6482 13.6181V19.4124H48.5142V12.9951ZM54.266 19.3086L54.1 17.0656C53.8714 17.1487 53.7676 17.1695 53.6015 17.1695C53.3106 17.1695 53.103 16.941 53.103 16.5464V4.66701H50.2578V16.7126C50.2578 18.5194 51.1093 19.5163 52.7708 19.5163C53.3937 19.5163 53.8714 19.4332 54.266 19.3086ZM65.3231 14.2827C65.3231 11.2298 63.246 9.13218 60.0893 9.13218C56.974 9.13218 54.8764 11.3128 54.8764 14.3865C54.8764 17.4395 56.974 19.5163 60.0893 19.5163C63.246 19.5163 65.3231 17.3356 65.3231 14.2827ZM57.7426 14.345C57.7426 12.6212 58.677 11.479 60.0893 11.479C61.543 11.479 62.4361 12.6212 62.4361 14.345C62.4361 16.0272 61.543 17.1695 60.0893 17.1695C58.677 17.1695 57.7426 16.0272 57.7426 14.345ZM76.6053 14.2827C76.6053 11.2298 74.5285 9.13218 71.3716 9.13218C68.2564 9.13218 66.1588 11.3128 66.1588 14.3865C66.1588 17.4395 68.2564 19.5163 71.3716 19.5163C74.5285 19.5163 76.6053 17.3356 76.6053 14.2827ZM69.0248 14.345C69.0248 12.6212 69.9594 11.479 71.3716 11.479C72.8254 11.479 73.7185 12.6212 73.7185 14.345C73.7185 16.0272 72.8254 17.1695 71.3716 17.1695C69.9594 17.1695 69.0248 16.0272 69.0248 14.345ZM88.4068 14.1581C88.4068 10.939 86.5583 9.13218 83.9832 9.13218C82.4462 9.13218 81.3871 9.79678 80.8055 10.7106L80.7432 9.21525H77.9811V23.6076H80.8263V17.9587C81.3871 18.8932 82.3839 19.5163 83.8793 19.5163C86.6414 19.5163 88.4068 17.3149 88.4068 14.1581ZM85.52 14.2827C85.52 16.0065 84.5854 17.1279 83.2354 17.1279C81.7194 17.1279 80.8263 15.8611 80.8263 14.6358V13.9919C80.8263 12.8497 81.6778 11.5205 83.2561 11.5205C84.6477 11.5205 85.52 12.6005 85.52 14.2827Z"
fill="currentColor" />
</svg></div>
<div class="client-logo w-embed"><svg width="8.188rem" height="1.563rem" viewBox="0 0 131 25" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M10.5633 13.8399C9.78508 13.139 9.82827 11.9225 10.621 11.2515C11.4378 10.5602 12.6824 10.6816 13.3461 11.5191C13.7757 12.0614 13.8305 12.8181 13.4844 13.4323C13.1321 14.0575 12.392 14.4335 11.6853 14.3519C11.2681 14.3038 10.8986 14.1538 10.5633 13.8399Z"
fill="currentColor" />
<path
d="M10.3034 18.7849C10.1697 17.9562 10.4655 17.3507 11.1375 17.0168C11.7775 16.6988 12.5484 16.8404 13.0522 17.3686C13.6614 18.0071 13.5891 19.0219 12.8949 19.5766C12.1506 20.1714 11.0636 20.0165 10.5173 19.2311C10.4316 19.1078 10.3809 18.9603 10.3034 18.7849Z"
fill="currentColor" />
<path
d="M10.7574 5.64019C11.2244 5.28097 11.6984 5.11179 12.2572 5.27571C12.9407 5.47619 13.3952 5.98064 13.4592 6.63298C13.5172 7.22527 13.1939 7.81502 12.6515 8.10644C12.0781 8.41446 11.3272 8.34697 10.8321 7.9429C10.0947 7.34103 10.0548 6.4489 10.7574 5.64019Z"
fill="currentColor" />
<path
d="M18.2236 14.3539C19.0251 15.21 18.6544 16.4856 17.6759 16.861C16.9985 17.1208 16.2565 16.8907 15.8311 16.2818C15.4452 15.7293 15.4876 14.9505 15.9317 14.436C16.406 13.8864 17.1392 13.7253 17.7788 14.0427C17.9287 14.1171 18.0587 14.2318 18.2236 14.3539Z"
fill="currentColor" />
<path
d="M15.8438 10.4907C15.2568 9.65684 15.6522 8.41831 16.702 8.12938C17.3883 7.94051 18.1332 8.25245 18.4778 8.88837C18.8211 9.52166 18.671 10.3213 18.1221 10.7843C17.5715 11.2486 16.7524 11.2769 16.1903 10.8425C16.0706 10.75 15.9726 10.6295 15.8438 10.4907Z"
fill="currentColor" />
<path
d="M5.38773 8.65337C6.07366 7.98681 6.80436 7.89025 7.47985 8.35202C8.1454 8.80698 8.34545 9.68563 7.94237 10.3834C7.53669 11.0858 6.6277 11.356 5.89989 10.9906C5.18399 10.6312 4.86053 9.77509 5.16763 9.03754C5.21941 8.91317 5.29772 8.79986 5.38773 8.65337Z"
fill="currentColor" />
<path
d="M7.70215 14.3508C8.46284 15.1342 8.20131 16.4112 7.21365 16.8411C6.55336 17.1285 5.78595 16.9174 5.34822 16.3304C4.93246 15.7728 4.95968 14.9701 5.41223 14.4434C5.89783 13.8783 6.65471 13.7225 7.30216 14.0636C7.43565 14.1339 7.55196 14.2368 7.70215 14.3508Z"
fill="currentColor" />
<path
d="M7.87997 21.489C7.60387 22.3622 6.90056 22.7399 6.13564 22.4621C5.55838 22.2525 5.21962 21.6867 5.31473 21.091C5.40705 20.5129 5.96829 20.0642 6.59946 20.064C7.21909 20.0637 7.75922 20.4776 7.86383 21.0436C7.88828 21.176 7.87819 21.3147 7.87997 21.489Z"
fill="currentColor" />
<path
d="M18.0651 22.1444C17.4018 22.6578 16.7372 22.6704 16.2358 22.2065C15.7225 21.7318 15.6725 21.038 16.1139 20.5158C16.5395 20.0122 17.3228 19.9123 17.8723 20.2915C18.4225 20.6711 18.573 21.3892 18.2192 21.9588C18.1837 22.0161 18.1333 22.0642 18.0651 22.1444Z"
fill="currentColor" />
<path
d="M21.0385 12.7753C21.0155 11.885 21.4359 11.3575 22.1905 11.2846C22.7777 11.2278 23.327 11.5622 23.5279 12.0987C23.7229 12.6193 23.5572 13.1714 23.1054 13.5061C22.6226 13.8637 21.9326 13.8693 21.5003 13.4714C21.3087 13.2951 21.1941 13.0352 21.0385 12.7753Z"
fill="currentColor" />
<path
d="M16.1571 4.57C15.7463 3.99297 15.717 3.48937 16.044 3.03897C16.3734 2.5853 16.9574 2.38823 17.4958 2.54907C18.1616 2.74799 18.5457 3.41155 18.3745 4.06691C18.2083 4.70315 17.4568 5.13258 16.7995 4.93584C16.5798 4.87007 16.3875 4.71249 16.1571 4.57Z"
fill="currentColor" />
<path
d="M7.65308 4.47288C7.19195 4.97872 6.6669 5.11683 6.06637 4.87023C5.50598 4.64011 5.19622 4.02608 5.32803 3.46074C5.46239 2.88442 6.03277 2.47038 6.65667 2.49627C7.28845 2.52248 7.81059 2.98154 7.87917 3.578C7.91492 3.88896 7.87943 4.18689 7.65308 4.47288Z"
fill="currentColor" />
<path
d="M1.56165 13.7351C0.635642 13.7986 0.0230482 13.3221 0.000632914 12.5633C-0.0182595 11.9238 0.387185 11.4286 1.03107 11.305C1.66872 11.1826 2.29056 11.5243 2.50555 12.1152C2.71861 12.7008 2.46858 13.3126 1.88668 13.617C1.79744 13.6637 1.6968 13.6886 1.56165 13.7351Z"
fill="currentColor" />
<path
d="M22.4462 17.4517C22.534 17.4596 22.5874 17.4568 22.6343 17.473C23.1329 17.6455 23.3847 17.9633 23.3638 18.3887C23.3462 18.7459 23.0576 19.0835 22.683 19.185C22.2321 19.3072 21.7548 19.1398 21.5156 18.7755C21.2665 18.3962 21.3736 17.8712 21.7883 17.6273C21.9678 17.5217 22.2003 17.5062 22.4462 17.4517Z"
fill="currentColor" />
<path
d="M1.17976 17.4586C1.53615 17.425 1.82109 17.5044 2.05807 17.7256C2.44004 18.0821 2.42898 18.6347 2.02865 18.9702C1.68316 19.2597 1.29058 19.296 0.889064 19.1201C0.575915 18.9828 0.373295 18.7378 0.35965 18.3789C0.346197 18.025 0.51121 17.7604 0.811032 17.5849C0.911034 17.5263 1.03132 17.5024 1.17976 17.4586Z"
fill="currentColor" />
<path
d="M12.8085 1.13497C12.3951 1.85097 11.6106 1.98773 11.1079 1.4664C10.7444 1.08946 10.8033 0.469267 11.2462 0.189782C11.6165 -0.0439603 12.0163 -0.0686949 12.4003 0.154157C12.7576 0.361571 12.9124 0.680033 12.8085 1.13497Z"
fill="currentColor" />
<path
d="M11.3439 23.3897C11.8047 23.2007 12.2082 23.2123 12.5649 23.5377C12.8126 23.7636 12.9076 24.0473 12.8156 24.3702C12.7252 24.6871 12.515 24.9098 12.1828 24.9666C11.9851 25.0004 11.7714 25.016 11.5767 24.9785C10.8855 24.8454 10.6452 24.0957 11.1134 23.5662C11.1687 23.5036 11.2443 23.4588 11.3439 23.3897Z"
fill="currentColor" />
<path
d="M1.72816 5.889C1.88641 5.99371 2.04372 6.06012 2.11943 6.17865C2.2236 6.34176 2.31507 6.54167 2.32512 6.73045C2.34896 7.1778 1.93383 7.54969 1.43077 7.57987C0.869898 7.61352 0.409201 7.27701 0.359251 6.7972C0.312126 6.34451 0.66027 5.89845 1.14224 5.83355C1.32007 5.8096 1.50768 5.85834 1.72816 5.889Z"
fill="currentColor" />
<path
d="M23.1832 7.22802C22.8614 7.56974 22.4934 7.63932 22.0882 7.55169C21.7211 7.47229 21.4463 7.1784 21.394 6.82966C21.3428 6.48757 21.5331 6.12502 21.8602 5.9417C22.2469 5.72496 22.7615 5.78927 23.0863 6.09493C23.3973 6.38758 23.4319 6.70641 23.1832 7.22802Z"
fill="currentColor" />
<path
d="M73.2205 16.2069C73.2205 16.5275 73.2205 16.7989 73.2205 17.1312C72.9429 17.1476 72.6849 17.1628 72.3857 17.1804C72.3857 14.5235 72.3857 11.9156 72.3857 9.28033C72.6538 9.28033 72.9185 9.28033 73.2101 9.28033C73.2101 10.8115 73.2101 12.3213 73.2101 13.8432C73.4489 13.8779 73.5204 13.6895 73.6265 13.5812C74.8876 12.2931 76.1656 11.0202 77.3858 9.69422C77.7827 9.26291 78.1878 9.20501 78.7791 9.2859C77.6376 10.4874 76.5434 11.6391 75.398 12.8447C76.5851 14.2528 77.773 15.662 78.999 17.1162C78.4447 17.2147 78.0335 17.2164 77.6538 16.7401C76.87 15.7572 76.0148 14.8312 75.1885 13.8823C75.0776 13.755 74.9637 13.6303 74.8594 13.5136C74.3281 14.0211 73.8094 14.5064 73.3072 15.0081C73.2374 15.0777 73.2308 15.2276 73.2259 15.3416C73.2143 15.6133 73.2212 15.8857 73.2205 16.2069Z"
fill="currentColor" />
<path
d="M103.808 9.66368C103.722 9.53573 103.657 9.43737 103.539 9.2575C103.851 9.2575 104.105 9.22142 104.341 9.2711C104.481 9.30068 104.618 9.44575 104.713 9.57197C105.346 10.4155 105.966 11.2684 106.593 12.117C106.671 12.2226 106.759 12.3205 106.877 12.4632C107.1 12.159 107.298 11.8901 107.496 11.6214C107.97 10.9776 108.47 10.3506 108.908 9.68314C109.136 9.33558 109.396 9.19791 109.788 9.25295C109.87 9.26453 109.954 9.26502 110.132 9.27704C109.189 10.5641 108.284 11.799 107.349 13.0751C108.329 14.4091 109.307 15.7418 110.322 17.123C109.752 17.2216 109.354 17.2078 109.024 16.7067C108.445 15.827 107.788 14.9982 107.162 14.1493C107.064 14.0161 106.957 13.8896 106.82 13.7179C106.462 14.2046 106.132 14.6516 105.804 15.1C105.422 15.6215 104.998 16.1187 104.673 16.6737C104.356 17.2142 103.933 17.2231 103.362 17.1217C104.361 15.7678 105.327 14.4583 106.327 13.102C105.491 11.9611 104.66 10.8272 103.808 9.66368Z"
fill="currentColor" />
<path
d="M61.4395 13.1503C61.4723 11.8781 61.932 10.8547 62.8971 10.085C64.4011 8.88538 66.8127 8.88918 68.1995 10.0835C68.2861 10.1581 68.3583 10.2493 68.4536 10.35C68.2867 10.5232 68.1364 10.6792 67.9556 10.8669C67.0992 10.0776 66.103 9.83019 65.0092 9.99918C64.2118 10.1224 63.5332 10.4899 63.0076 11.121C62.0037 12.3264 62.0232 14.2074 63.0739 15.3944C63.7055 16.1079 64.5204 16.442 65.4668 16.4753C66.4098 16.5085 67.2376 16.2192 67.9431 15.5509C68.1159 15.7428 68.2608 15.9037 68.4291 16.0907C68.233 16.3862 67.9142 16.577 67.5932 16.7557C66.1999 17.5315 63.4469 17.5888 62.0373 15.3788C61.6119 14.7118 61.4385 13.9794 61.4395 13.1503Z"
fill="currentColor" />
<path
d="M43.2857 15.2913C43.2857 13.2689 43.2857 11.2974 43.2857 9.2915C43.571 9.2915 43.8329 9.2915 44.1325 9.2915C44.1325 11.6591 44.1325 14.0176 44.1325 16.4217C45.6059 16.4217 47.0433 16.4217 48.5133 16.4217C48.5133 16.6795 48.5133 16.8917 48.5133 17.1351C46.7911 17.1351 45.0787 17.1351 43.2958 17.1351C43.2731 16.5505 43.2917 15.9459 43.2857 15.2913Z"
fill="currentColor" />
<path
d="M129.22 16.8779C129.224 14.3513 129.228 11.871 129.234 9.39073C129.234 9.36151 129.262 9.33235 129.288 9.27979C129.524 9.27979 129.772 9.27979 130.045 9.27979C130.045 11.8887 130.045 14.4834 130.045 17.1536C129.819 17.1536 129.589 17.1682 129.363 17.1431C129.308 17.137 129.267 17.0007 129.22 16.8779Z"
fill="currentColor" />
<path fill-rule="evenodd" clip-rule="evenodd"
d="M32.6533 14.7813V9.29139C32.7022 9.28751 32.7491 9.28287 32.7946 9.27837C32.8888 9.26905 32.9771 9.2603 33.0655 9.26005C34.0865 9.25715 35.1075 9.25682 36.1286 9.25786C36.6784 9.25843 37.2161 9.33576 37.7184 9.56983C39.0817 10.2051 39.2553 11.967 38.0469 12.8695C37.9971 12.9066 37.9466 12.9427 37.8807 12.9897C37.8447 13.0154 37.8041 13.0444 37.7565 13.0786C37.8212 13.1084 37.8792 13.1347 37.9328 13.1588L37.9328 13.1589C38.0367 13.2058 38.1237 13.2451 38.2087 13.288C38.8564 13.6148 39.2041 14.1385 39.249 14.8657C39.2967 15.6392 39.0525 16.2725 38.381 16.702C37.9547 16.9746 37.4755 17.1128 36.9788 17.1226C35.9186 17.1436 34.858 17.1476 33.7974 17.1516H33.7974C33.4631 17.1529 33.1288 17.1542 32.7945 17.156C32.7764 17.1561 32.7582 17.1455 32.7275 17.1277C32.7085 17.1167 32.6848 17.1029 32.6533 17.0872L32.6533 14.7813ZM37.7661 13.8161C37.3355 13.5797 36.8648 13.5236 36.3856 13.52C35.5361 13.5134 34.6865 13.5129 33.837 13.5157C33.7601 13.5159 33.6832 13.533 33.613 13.5487L33.613 13.5487C33.5824 13.5554 33.5532 13.562 33.5258 13.5667V13.5668L33.5257 13.5668V16.4457C33.5592 16.4507 33.5889 16.4561 33.6161 16.461H33.6161C33.6679 16.4704 33.7106 16.4781 33.7533 16.4781C33.9644 16.4778 34.1756 16.4781 34.3868 16.4783C35.0592 16.4792 35.7316 16.48 36.4036 16.4647C36.7232 16.4574 37.046 16.4031 37.3589 16.3329C37.6408 16.2696 37.8809 16.1533 38.0598 15.976C38.2239 15.8134 38.3365 15.5995 38.3825 15.3281C38.3962 15.2473 38.4063 15.1673 38.4121 15.0885C38.4483 14.5974 38.3142 14.1536 37.7997 13.836L37.7863 13.8287L37.7661 13.8161ZM37.0143 10.1238C37.1046 10.1522 37.1933 10.1841 37.2794 10.219C37.7627 10.4147 37.9969 10.8225 38.0003 11.3504C38.0038 11.8888 37.8079 12.3406 37.2975 12.5452C36.9274 12.6936 36.5159 12.7782 36.1169 12.8058C35.667 12.837 35.2147 12.8337 34.7455 12.8303C34.5442 12.8288 34.3397 12.8273 34.131 12.8285L33.5502 12.8287C33.5502 12.8286 33.5502 12.8285 33.5501 12.8285C33.5499 12.8285 33.5498 12.8285 33.5496 12.8285C33.4747 12.4938 33.4835 12.1668 33.4922 11.844C33.4962 11.6955 33.5001 11.548 33.4959 11.401C33.4869 11.0849 33.489 10.7685 33.4912 10.4463V10.4463C33.4921 10.3033 33.4931 10.1591 33.4931 10.0133C33.5215 10.0057 33.5474 9.99718 33.5716 9.98923L33.5716 9.98923C33.6188 9.9737 33.6594 9.96032 33.7001 9.96027C33.9114 9.95997 34.1228 9.95841 34.3341 9.95686C34.9557 9.95229 35.5774 9.94771 36.1977 9.97514C36.4698 9.98716 36.7491 10.0405 37.0143 10.1238Z"
fill="currentColor" />
<path fill-rule="evenodd" clip-rule="evenodd"
d="M82.5093 15.1897V9.29674C82.5601 9.29205 82.6082 9.28652 82.6547 9.28119L82.6547 9.28119C82.7498 9.27027 82.8376 9.2602 82.9253 9.25993C83.2009 9.25908 83.4766 9.25636 83.7522 9.25363C84.5139 9.24611 85.2755 9.23858 86.0355 9.27062C86.5354 9.29169 87.0542 9.38717 87.5215 9.56311C89.0699 10.1462 88.9644 12.1706 87.9376 12.8432C87.8854 12.8775 87.8357 12.9158 87.771 12.9658L87.7709 12.9658C87.7356 12.9931 87.6957 13.024 87.6484 13.0595C87.7073 13.092 87.7603 13.1217 87.8095 13.1493C87.9059 13.2034 87.988 13.2494 88.0716 13.2923C88.7582 13.6447 89.0847 14.2103 89.1025 14.9774C89.1206 15.7598 88.8289 16.3623 88.1384 16.7552C87.6839 17.0138 87.186 17.1312 86.6729 17.1368C85.7048 17.1474 84.7366 17.1455 83.7411 17.1435H83.7411H83.7409C83.3387 17.1427 82.9321 17.1419 82.5192 17.1419L82.516 16.863C82.5134 16.6473 82.5108 16.4285 82.5097 16.2097C82.5085 15.9876 82.5087 15.7656 82.509 15.5269L82.5093 15.1897ZM83.3535 16.1175L83.3983 16.4354C83.7023 16.4354 84.0037 16.4363 84.3031 16.4371H84.3032H84.3032C85.1096 16.4395 85.9021 16.4418 86.6942 16.4268C86.7478 16.4258 86.8019 16.4216 86.8561 16.4148C86.8687 16.4132 86.8814 16.4115 86.894 16.4096C87.0948 16.38 87.2962 16.3156 87.4829 16.2406C88.0125 16.0281 88.2561 15.6044 88.2686 15.0403C88.2814 14.4606 88.0826 13.9803 87.5151 13.7773C87.1224 13.6368 86.6939 13.55 86.2774 13.5318C85.6428 13.504 85.0067 13.5087 84.3708 13.5135H84.3707C84.1387 13.5152 83.9066 13.5169 83.6746 13.517C83.611 13.5171 83.5474 13.5251 83.4741 13.5343L83.4741 13.5343C83.4369 13.5389 83.3972 13.5439 83.3537 13.5483V13.5483L83.3534 13.5484L83.3535 16.1175ZM84.3208 9.95203H83.3885V12.7908C83.3888 12.7908 83.3891 12.7908 83.3894 12.7908V12.7909C83.6628 12.7909 83.9335 12.7918 84.2021 12.7927C84.9174 12.7952 85.6184 12.7976 86.319 12.7823C86.5659 12.7769 86.8219 12.6936 87.0539 12.598C87.5978 12.374 87.8572 11.9485 87.8525 11.3589C87.848 10.7842 87.5739 10.3841 87.0489 10.179C86.7937 10.0792 86.5163 10.0083 86.2434 9.98448C86.2333 9.9836 86.2232 9.98278 86.2132 9.98202C85.866 9.95599 85.517 9.95537 85.1318 9.95469C85.129 9.95468 85.1263 9.95468 85.1235 9.95467C84.9812 9.95438 84.8361 9.95399 84.6872 9.952L84.3208 9.95203Z"
fill="currentColor" />
<path fill-rule="evenodd" clip-rule="evenodd"
d="M99.3073 16.3152C100.975 14.8906 101.009 12.6421 100.245 11.2689C99.5109 9.98089 98.3985 9.32696 96.9908 9.21136C93.7868 8.94822 91.6466 11.6925 92.6753 14.6242C93.7531 17.6954 97.5803 17.7904 99.3073 16.3152ZM95.4898 16.3215C93.4667 15.6961 92.7396 13.3812 93.6378 11.6518C93.639 11.6496 93.6402 11.6475 93.6414 11.6453C93.646 11.6361 93.6507 11.627 93.6554 11.6179C94.7198 9.68474 97.4024 9.48542 98.8031 10.7531C99.855 11.705 100.178 13.2703 99.6037 14.5903C99.0465 15.8702 97.7203 16.6029 96.2295 16.4662C95.9665 16.442 95.7198 16.3927 95.4898 16.3215Z"
fill="currentColor" />
<path fill-rule="evenodd" clip-rule="evenodd"
d="M54.3742 9.28484C53.4009 11.413 52.4394 13.5155 51.4637 15.6538C51.3917 15.8285 51.3106 15.9948 51.2304 16.1594C51.0752 16.4775 50.9231 16.7895 50.8457 17.1433C50.8827 17.147 50.9148 17.1506 50.9438 17.154C50.9978 17.1602 51.0408 17.1651 51.0838 17.166L51.084 17.166C51.6557 17.178 51.6572 17.178 51.8804 16.6754C51.9271 16.5703 51.9748 16.4655 52.0225 16.3607C52.1583 16.0627 52.294 15.7646 52.4067 15.4581C52.5177 15.1562 52.6885 15.0484 53.0118 15.053C53.8311 15.0647 54.6506 15.0627 55.4701 15.0607C55.8424 15.0597 56.2147 15.0588 56.587 15.0592C56.6772 15.0593 56.7673 15.0659 56.8629 15.073C56.9089 15.0763 56.9561 15.0798 57.0052 15.0827L57.93 17.1303H58.8135L55.226 9.28369H54.3747L54.3742 9.28484ZM54.7989 10.1419L54.7986 10.1412L54.7948 10.1495C54.3784 11.0714 54.0095 11.8882 53.6267 12.7408C53.3894 13.2821 53.166 13.7875 52.9192 14.3458L52.9183 14.3478H56.6792L56.6792 14.3477H56.6799L54.7992 10.1411L54.7989 10.1419Z"
fill="currentColor" />
<path fill-rule="evenodd" clip-rule="evenodd"
d="M125.778 17.1384C125.688 16.9249 125.623 16.7717 125.546 16.5837C124.424 14.1308 123.314 11.7127 122.2 9.28701L122.193 9.27295H121.354L117.764 17.1403H118.632L119.568 15.0879H123.991C124.067 15.2598 124.143 15.4298 124.218 15.5985C124.404 16.0142 124.586 16.4223 124.759 16.8344C124.856 17.0658 124.987 17.2003 125.253 17.1686C125.361 17.1558 125.47 17.1521 125.592 17.148C125.651 17.146 125.713 17.1439 125.779 17.1406L125.778 17.1384ZM123.657 14.3405H123.657L121.774 10.1404L121.773 10.1423C121.61 10.4975 121.499 10.7404 121.374 11.0192C120.878 12.1365 120.395 13.2176 119.895 14.3391L119.894 14.3405H119.894L119.894 14.3406H123.657L123.657 14.3405Z"
fill="currentColor" />
</svg></div>
</div>
</div>
</div>
<div class="s-intro-visual">
<div class="s-cover-llm-wrap">
<div class="s-cover-llm-item">
<div class="s-cover-llm-inner">
<div class="s-cover-llm-window">
<div class="label s-cover-title">LLM</div>
<div class="img-cover-sbx-window w-embed"><svg width="244" height="7" viewBox="0 0 244 7" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M103 0H17V1H103V0ZM103 2H17V3H103V2ZM17 4H103V5H17V4ZM103 6H17V7H103V6Z"
fill="var(--color--content-primary)" />
<path fill-rule="evenodd" clip-rule="evenodd"
d="M4 0H0V1H4V0ZM4 2H0V3H4V2ZM0 4H4V5H0V4ZM4 6H0V7H4V6Z" fill="var(--color--content-primary)" />
<path fill-rule="evenodd" clip-rule="evenodd"
d="M244 0H141V1H244V0ZM244 2H141V3H244V2ZM141 4H244V5H141V4ZM244 6H141V7H244V6Z"
fill="var(--color--content-primary)" />
<path
d="M10.5029 4.6259L8.33285 6.8099L7.42285 5.8999L9.60685 3.7299L7.42285 1.5599L8.33285 0.649902L10.5029 2.8339L12.6729 0.649902L13.5829 1.5599L11.3989 3.7299L13.5829 5.8999L12.6729 6.8099L10.5029 4.6259Z"
fill="var(--color--content-primary)" />
</svg></div>
</div>
<div class="s-cover-llm-content">
<div class="s-cover-llm-content-icon">
<div class="icon-28 llm-openai w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24"
fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M20.6812 10.1859C21.141 8.82399 20.9827 7.33208 20.2473 6.09331C19.1413 4.19326 16.9181 3.21574 14.7468 3.67575C13.7808 2.60198 12.393 1.99134 10.9381 2.00009C8.71859 1.99509 6.74932 3.40512 6.0665 5.48892C4.6407 5.77705 3.40998 6.65769 2.6898 7.90584C1.57563 9.80088 1.82963 12.1897 3.31814 13.8147C2.85828 15.1766 3.01664 16.6685 3.75202 17.9073C4.85796 19.8073 7.08123 20.7849 9.25255 20.3249C10.2179 21.3986 11.6063 22.0093 13.0612 21.9999C15.282 22.0055 17.2519 20.5942 17.9347 18.5086C19.3605 18.2204 20.5912 17.3398 21.3114 16.0916C22.4243 14.1966 22.1697 11.8097 20.6818 10.1846L20.6812 10.1859ZM13.0625 20.693C12.1738 20.6942 11.313 20.3874 10.6309 19.8255C10.6619 19.8092 10.7157 19.7798 10.7506 19.7586L14.7867 17.4585C14.9931 17.3429 15.1198 17.126 15.1186 16.8917V11.2772L16.8243 12.2491C16.8427 12.2578 16.8547 12.2753 16.8573 12.2953V16.9448C16.8547 19.0123 15.1578 20.6886 13.0625 20.693ZM4.90166 17.2535C4.45638 16.4948 4.29612 15.6054 4.44878 14.7422C4.47855 14.7597 4.53112 14.7916 4.56849 14.8129L8.60458 17.1129C8.80917 17.231 9.06253 17.231 9.26776 17.1129L14.1951 14.3054V16.2491C14.1963 16.2691 14.1868 16.2885 14.171 16.301L10.0912 18.6254C8.27394 19.658 5.95312 19.0442 4.9023 17.2535H4.90166ZM3.83943 8.56023C4.28282 7.80022 4.98274 7.21895 5.81631 6.91707C5.81631 6.95145 5.81441 7.01207 5.81441 7.05458V11.6553C5.81314 11.8891 5.93982 12.1059 6.14568 12.2216L11.073 15.0285L9.3672 16.0004C9.3501 16.0116 9.32856 16.0135 9.30956 16.0054L5.22914 13.6791C3.41568 12.6428 2.79368 10.3534 3.8388 8.56086L3.83943 8.56023ZM17.8543 11.7784L12.927 8.97087L14.6327 7.9996C14.6498 7.98835 14.6714 7.98647 14.6904 7.9946L18.7708 10.319C20.5874 11.3547 21.2101 13.6478 20.1605 15.4404C19.7165 16.1991 19.0172 16.7804 18.1843 17.0829V12.3447C18.1862 12.1109 18.0601 11.8947 17.8549 11.7784H17.8543ZM19.5518 9.25712C19.522 9.239 19.4695 9.20775 19.4321 9.1865L15.396 6.88645C15.1914 6.76832 14.938 6.76832 14.7328 6.88645L9.80552 9.69401V7.75022C9.80425 7.73022 9.81376 7.71084 9.82959 7.69834L13.9094 5.37579C15.7266 4.34139 18.05 4.95703 19.0976 6.75082C19.5404 7.50834 19.7006 8.39523 19.5505 9.25712H19.5518ZM8.87821 12.7216L7.1718 11.7497C7.15343 11.7409 7.1414 11.7234 7.13887 11.7034V7.05395C7.14013 4.98391 8.84211 3.30637 10.94 3.30762C11.8274 3.30762 12.6863 3.61513 13.3685 4.17514C13.3374 4.19139 13.2842 4.22077 13.2487 4.24202L9.21265 6.54206C9.00616 6.65769 8.87948 6.87395 8.88074 7.10833L8.87821 12.7203V12.7216ZM9.80489 10.7503L11.9997 9.49963L14.1944 10.7497V13.2503L11.9997 14.5004L9.80489 13.2503V10.7503Z"
fill="currentColor" />
</svg></div>
<div class="icon-28 llm-meta w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24"
fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M7.33875 4.69428C5.53475 4.69428 3.96267 5.86761 2.87367 7.54786C1.64533 9.44078 1 11.8929 1 14.245C1 14.8922 1.06417 15.4999 1.1925 16.0536C1.25551 16.3216 1.33667 16.585 1.43542 16.8419C1.52998 17.0832 1.64371 17.3164 1.7755 17.5395C2.4135 18.6019 3.442 19.3059 5.06908 19.3059C6.44133 19.3059 7.48267 18.6909 8.70367 17.0656C9.40033 16.1379 9.75233 15.5751 11.1448 13.1056L11.8378 11.8782L12.0083 11.5803C12.0642 11.6719 12.1192 11.7599 12.176 11.8553L14.1487 15.1507C14.8123 16.2599 15.6749 17.4937 16.4128 18.1885C17.3717 19.0933 18.2388 19.3069 19.2178 19.3069C20.2033 19.3069 20.9375 18.9814 21.4683 18.5341C21.7646 18.2811 22.0157 17.9795 22.2108 17.6422C22.7076 16.7814 23 15.6924 23 14.2093C23 11.7159 22.3758 9.29869 21.0897 7.38011C19.9145 5.62744 18.3791 4.69428 16.7667 4.69428C15.8069 4.69428 14.8527 5.12236 13.9681 5.89328C13.3704 6.41578 12.8158 7.07578 12.2998 7.77244C11.6672 6.97036 11.076 6.35436 10.5049 5.88778C9.42142 5.00228 8.38283 4.69336 7.33875 4.69336V4.69428ZM16.6521 6.57619C17.7035 6.57619 18.6577 7.27103 19.3948 8.40861C20.4324 10.0109 20.9045 12.254 20.9045 14.2753C20.9045 15.6943 20.5672 16.9336 19.2188 16.9336C18.6871 16.9336 18.2773 16.7228 17.6934 16.0133C17.2388 15.4624 16.4623 14.2918 15.0974 12.0184L14.5318 11.0761C14.1642 10.4612 13.7806 9.856 13.3814 9.26111C13.4456 9.16119 13.5107 9.05578 13.5748 8.96136C14.6015 7.43328 15.5154 6.57619 16.6521 6.57619ZM7.30117 7.08311C8.46075 7.08311 9.18767 7.80819 9.75325 8.40861C10.0347 8.70836 10.4288 9.20703 10.8844 9.85603L9.94942 11.2915C9.2555 12.3576 8.22425 14.0571 7.34883 15.268C6.25708 16.7796 5.68967 16.9336 5.07 16.9336C4.58967 16.9336 4.1185 16.7164 3.80225 16.2058C3.56117 15.8153 3.37692 15.1699 3.37692 14.3303C3.37692 12.2944 3.95442 10.1732 4.89858 8.74961C5.31475 8.11986 5.78225 7.62578 6.30383 7.34436C6.60901 7.17477 6.95204 7.08492 7.30117 7.08311Z"
fill="currentColor" />
</svg></div>
<div class="icon-28 llm-anthropic w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24"
fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13.5225 5.12646L18.9978 18.8597H22.0004L16.5251 5.12646H13.5225Z"
fill="currentColor" />
<path
d="M7.17076 13.4252L9.04426 8.59899L10.9178 13.4252H7.17076ZM7.47451 5.12646L2 18.8597H5.06101L6.18064 15.9757H11.9081L13.0275 18.8597H16.0885L10.614 5.12646H7.47451Z"
fill="currentColor" />
</svg></div>
<div class="icon-28 llm-mistral w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24"
fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="3.25" y="3.25" width="3.5" height="3.5" fill="var(--color--content-primary)" />
<rect x="3.25" y="6.75" width="7" height="3.5" fill="var(--color--content-dark80)" />
<rect x="3.25" y="13.75" width="3.5" height="3.5" fill="var(--color--content-dark40)" />
<rect x="3.25" y="17.25" width="3.5" height="3.5" fill="var(--color--content-dark20)" />
<rect x="3.25" y="10.25" width="17.5" height="3.5" fill="var(--color--content-dark60)" />
<rect x="10.25" y="13.75" width="3.5" height="3.5" fill="var(--color--content-dark40)" />
<rect x="13.75" y="6.75" width="7" height="3.5" fill="var(--color--content-dark80)" />
<rect x="17.25" y="13.75" width="3.5" height="3.5" fill="var(--color--content-dark40)" />
<rect x="17.25" y="17.25" width="3.5" height="3.5" fill="var(--color--content-dark20)" />
<rect x="17.25" y="3.25" width="3.5" height="3.5" fill="var(--color--content-primary)" />
</svg></div>
<div class="icon-28 llm-gemini w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24"
fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M11.0399 19.32C11.6801 20.78 12.0002 22.34 12.0002 24C12.0002 22.34 12.3101 20.78 12.9302 19.32C13.5699 17.86 14.43 16.59 15.5099 15.51C16.5903 14.43 17.86 13.58 19.32 12.96C20.78 12.32 22.3403 12 24 12C22.3403 12 20.78 11.69 19.32 11.07C17.86 10.43 16.5903 9.57 15.5099 8.49003C14.43 7.41 13.5699 6.14001 12.9302 4.68C12.3101 3.22 12.0002 1.66 12.0002 0C12.0002 1.66 11.6801 3.22 11.0399 4.68C10.4202 6.14001 9.57 7.41 8.49011 8.49003C7.41021 9.57 6.14003 10.43 4.68002 11.07C3.22001 11.69 1.66015 12 0 12C1.66015 12 3.22001 12.32 4.68002 12.96C6.14003 13.58 7.41021 14.43 8.49011 15.51C9.57 16.59 10.4202 17.86 11.0399 19.32Z"
fill="currentColor" />
</svg></div>
<div class="icon-28 llm-any w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path d="M 12 3.917 L 12 20.083 M 19 7.958 L 5 16.041 M 5 7.958 L 19 16.041" fill="currentColor"
stroke-width="2px" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-dasharray="" fill-opacity="0"></path>
<path d="M 12 3.917 L 12 20.083 M 19 7.958 L 5 16.041 M 5 7.958 L 19 16.041"