CINXE.COM

Careers

<!DOCTYPE html><!-- Last Published: Tue Nov 26 2024 20:09:59 GMT+0000 (Coordinated Universal Time) --><html data-wf-domain="landing.mintlify.com" data-wf-page="66fbd73849575c8a321bd5ec" data-wf-site="66cc2bd703ccf308a49a6188" lang="en"><head><meta charset="utf-8"/><title>Careers</title><meta content="Meet the modern standard for public facing documentation. Beautiful out of the box, easy to maintain, and optimized for user engagement." name="description"/><meta content="Careers" property="og:title"/><meta content="Meet the modern standard for public facing documentation. Beautiful out of the box, easy to maintain, and optimized for user engagement." property="og:description"/><meta content="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/6731aa4104da280d698c4084_Landing%20page%20OG%20Image.png" property="og:image"/><meta content="Careers" property="twitter:title"/><meta content="Meet the modern standard for public facing documentation. Beautiful out of the box, easy to maintain, and optimized for user engagement." property="twitter:description"/><meta content="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/6731aa4104da280d698c4084_Landing%20page%20OG%20Image.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/66cc2bd703ccf308a49a6188/css/mintlify-lander.e68ba1a34.css" rel="stylesheet" type="text/css"/><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/66cc2bd703ccf308a49a6188/66cc3e0d67f2324645580a18_favicon.png" rel="shortcut icon" type="image/x-icon"/><link href="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc3e124fa129b7d5fd6c4a_webclip.png" rel="apple-touch-icon"/><script> (function() { var savedTheme = localStorage.getItem('isDarkMode'); var systemDark = window.matchMedia('(prefers-color-scheme: dark)').matches; var isDark = savedTheme === 'true' || (savedTheme === null && systemDark); if (isDark) { document.documentElement.classList.add('dark-mode'); } document.documentElement.classList.add('theme-loaded'); })(); </script> <script tr-color-vars="background-main,background-invert,text-main,text-invert,text-soft,text-sub,muted,muted-invert,muted-invert-90,border-solid,border-soft,border-sub,background-soft,transparent,transparent-invert,brand,brand-8"></script> <script> (function() { const htmlElement = document.documentElement; const scriptTag = document.querySelector("[tr-color-vars]"); const cssVariables = scriptTag ? scriptTag.getAttribute("tr-color-vars").split(",") : []; let lightColors = {}; let darkColors = {}; // Capture initial color values cssVariables.forEach(item => { const lightValue = getComputedStyle(htmlElement).getPropertyValue(`--color--${item}`); const darkValue = getComputedStyle(htmlElement).getPropertyValue(`--dark--${item}`) || lightValue; lightColors[`--color--${item}`] = lightValue; darkColors[`--color--${item}`] = darkValue; }); function setColors(colorObject) { Object.keys(colorObject).forEach(key => { htmlElement.style.setProperty(key, colorObject[key]); }); } function switchImageSource(element, isDarkMode) { const lightSrc = element.getAttribute('data-light-src'); const darkSrc = element.getAttribute('data-dark-src'); const lightSrcset = element.getAttribute('data-light-srcset'); const darkSrcset = element.getAttribute('data-dark-srcset'); if (isDarkMode) { if (darkSrc) element.src = darkSrc; if (darkSrcset) element.srcset = darkSrcset; } else { if (lightSrc) element.src = lightSrc; if (lightSrcset) element.srcset = lightSrcset; } } function switchAssets(isDarkMode) { document.querySelectorAll('.theme-asset').forEach(asset => { if (asset.tagName.toLowerCase() === 'picture') { asset.querySelectorAll('source, img').forEach(element => { switchImageSource(element, isDarkMode); }); } else if (asset.tagName.toLowerCase() === 'img') { switchImageSource(asset, isDarkMode); } }); document.querySelectorAll('.dark-asset, .light-asset').forEach(asset => { asset.classList.toggle('hidden', isDarkMode ? asset.classList.contains('light-asset') : asset.classList.contains('dark-asset')); }); } function setTheme(isDarkMode) { localStorage.setItem("isDarkMode", isDarkMode); htmlElement.classList.toggle("dark-mode", isDarkMode); document.body.classList.add('theme-loaded'); setColors(isDarkMode ? darkColors : lightColors); switchAssets(isDarkMode); updateToggleStates(isDarkMode); } function updateToggleStates(isDarkMode) { const systemDark = window.matchMedia("(prefers-color-scheme: dark)").matches; document.querySelector('[tr-color-system]')?.classList.toggle('active', isDarkMode === systemDark); document.querySelector('[tr-color-light]')?.classList.toggle('active', !isDarkMode); document.querySelector('[tr-color-dark]')?.classList.toggle('active', isDarkMode); } function initializeTheme() { const storedMode = localStorage.getItem("isDarkMode"); const systemDark = window.matchMedia("(prefers-color-scheme: dark)").matches; const isDarkMode = storedMode === null ? systemDark : storedMode === 'true'; setTheme(isDarkMode); window.matchMedia("(prefers-color-scheme: dark)").addListener(() => { if (localStorage.getItem("isDarkMode") === null) { setTheme(window.matchMedia("(prefers-color-scheme: dark)").matches); } }); } function setupToggles() { document.querySelector('[tr-color-system]')?.addEventListener("click", () => { localStorage.removeItem("isDarkMode"); setTheme(window.matchMedia("(prefers-color-scheme: dark)").matches); }); document.querySelector('[tr-color-light]')?.addEventListener("click", () => setTheme(false)); document.querySelector('[tr-color-dark]')?.addEventListener("click", () => setTheme(true)); } function preloadCorrectAssets() { const storedMode = localStorage.getItem("isDarkMode"); const systemDark = window.matchMedia("(prefers-color-scheme: dark)").matches; const isDarkMode = storedMode === null ? systemDark : storedMode === 'true'; switchAssets(isDarkMode); } // Preload correct assets immediately preloadCorrectAssets(); // Initialize theme and setup toggles when DOM is ready if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', () => { initializeTheme(); setupToggles(); }); } else { initializeTheme(); setupToggles(); } })(); </script> <style> :root { --color--background-main: #ffffff; } .dark-mode { --color--background-main: #08090A; } body { background-color: var(--color--background-main); } /* Hide the body until the theme is loaded */ body:not(.theme-loaded) { visibility: hidden; } </style> <link rel="stylesheet" href="https://unpkg.com/swiper@8/swiper-bundle.min.css"/> <!-- Cal element-click embed code begins --> <script type="text/javascript"> (function (C, A, L) { let p = function (a, ar) { a.q.push(ar); }; let d = C.document; C.Cal = C.Cal || function () { let cal = C.Cal; let ar = arguments; if (!cal.loaded) { cal.ns = {}; cal.q = cal.q || []; d.head.appendChild(d.createElement("script")).src = A; cal.loaded = true; } if (ar[0] === L) { const api = function () { p(api, arguments); }; const namespace = ar[1]; api.q = api.q || []; if(typeof namespace === "string"){cal.ns[namespace] = cal.ns[namespace] || api;p(cal.ns[namespace], ar);p(cal, ["initNamespace", namespace]);} else p(cal, ar); return;} p(cal, ar); }; })(window, "https://app.cal.com/embed/embed.js", "init"); Cal("init", "demo-with-mintlify", {origin:"https://cal.com"}); Cal("init", "mintlify-enterprise", {origin:"https://cal.com"}); Cal.ns["demo-with-mintlify", "mintlify-enterprise"]("ui", {"styles":{"branding":{"brandColor":"#000000"}},"hideEventTypeDetails":false,"layout":"month_view"}); </script> <!-- Cal element-click embed code ends --> <!-- Posthog --> <script> !function(t,e){var o,n,p,r;e.__SV||(window.posthog=e,e._i=[],e.init=function(i,s,a){function g(t,e){var o=e.split(".");2==o.length&&(t=t[o[0]],e=o[1]),t[e]=function(){t.push([e].concat(Array.prototype.slice.call(arguments,0)))}}(p=t.createElement("script")).type="text/javascript",p.async=!0,p.src=s.api_host.replace(".i.posthog.com","-assets.i.posthog.com")+"/static/array.js",(r=t.getElementsByTagName("script")[0]).parentNode.insertBefore(p,r);var u=e;for(void 0!==a?u=e[a]=[]:a="posthog",u.people=u.people||[],u.toString=function(t){var e="posthog";return"posthog"!==a&&(e+="."+a),t||(e+=" (stub)"),e},u.people.toString=function(){return u.toString(1)+".people (stub)"},o="init capture register register_once register_for_session unregister unregister_for_session getFeatureFlag getFeatureFlagPayload isFeatureEnabled reloadFeatureFlags updateEarlyAccessFeatureEnrollment getEarlyAccessFeatures on onFeatureFlags onSessionId getSurveys getActiveMatchingSurveys renderSurvey canRenderSurvey getNextSurveyStep identify setPersonProperties group resetGroups setPersonPropertiesForFlags resetPersonPropertiesForFlags setGroupPropertiesForFlags resetGroupPropertiesForFlags reset get_distinct_id getGroups get_session_id get_session_replay_url alias set_config startSessionRecording stopSessionRecording sessionRecordingStarted captureException loadToolbar get_property getSessionProperty createPersonProfile opt_in_capturing opt_out_capturing has_opted_in_capturing has_opted_out_capturing clear_opt_in_out_capturing debug".split(" "),n=0;n<o.length;n++)g(u,o[n]);e._i.push([i,s,a])},e.__SV=1)}(document,window.posthog||[]); posthog.init('phc_eNuN6Ojnk9O7uWfC17z12AK85fNR0BY6IiGVy0Gfwzw',{api_host:'https://us.i.posthog.com', person_profiles: 'identified_only' // or 'always' to create profiles for anonymous users as well }) </script> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-MJWB25XN');</script> <!-- End Google Tag Manager --> <!-- Quora Pixel Code (JS Helper) --> <script> !function(q,e,v,n,t,s){if(q.qp) return; n=q.qp=function(){n.qp?n.qp.apply(n,arguments):n.queue.push(arguments);}; n.queue=[];t=document.createElement(e);t.async=!0;t.src=v; s=document.getElementsByTagName(e)[0]; s.parentNode.insertBefore(t,s);}(window, 'script', 'https://a.quora.com/qevents.js'); qp('init', 'c6c2eacaf9ae4ef89e5e5312c5333c7e'); qp('track', 'ViewContent'); </script> <noscript><img height="1" width="1" style="display:none" src="https://q.quora.com/_/ad/c6c2eacaf9ae4ef89e5e5312c5333c7e/pixel?tag=ViewContent&noscript=1"/></noscript> <!-- End of Quora Pixel Code --> <!-- Unify GTM Code (JS Helper) --> <script> !function(){window.unify||(window.unify=Object.assign([],["identify","page","startAutoPage","stopAutoPage","startAutoIdentify","stopAutoIdentify"].reduce((function(t,e){return t[e]=function(){return unify.push([e,[].slice.call(arguments)]),unify},t}),{})));var t=document.createElement("script");t.async=!0,t.setAttribute("src","https://tag.unifyintent.com/v1/ShALG1c5rTJzkBaNJWFZWP/script.js"),t.setAttribute("data-api-key","wk_98uM5hH8_CooeLr8Z3fRL39Q1rxtqo5fejQKhn3qL"),t.setAttribute("id","unifytag"),(document.body||document.head).appendChild(t)}(); </script> <!-- End of Quora Pixel Code --></head><body><div class="page-wrapper"><div class="bufo"><div id="bufo-cursor" class="bufo-cursor"></div><div class="code-embed w-embed w-script"><script> document.addEventListener('DOMContentLoaded', function() { let mintieCount = 0; let timeoutId = null; const mintieChars = ['m', 'i', 'n', 't', 'i', 'e']; function handleKeyDown(event) { if (document.activeElement instanceof HTMLInputElement || document.activeElement instanceof HTMLTextAreaElement) { return; } if (event.key.toLowerCase() === mintieChars[mintieCount]) { mintieCount++; if (mintieCount === mintieChars.length) { // URL to your mode-independent GIF const gifUrl = 'https://mintlify-assets.b-cdn.net/website/home/minties.gif'; const cursorImage = document.createElement('img'); cursorImage.src = gifUrl; cursorImage.style.position = 'fixed'; cursorImage.style.zIndex = 9999; cursorImage.style.pointerEvents = 'none'; cursorImage.style.width = '32px'; cursorImage.style.height = 'auto'; cursorImage.style.transform = 'translate(-50%, -50%)'; document.body.appendChild(cursorImage); function updateCursorPosition(e) { cursorImage.style.left = e.clientX + 'px'; cursorImage.style.top = e.clientY + 'px'; } updateCursorPosition(event); document.addEventListener('mousemove', updateCursorPosition); timeoutId = setTimeout(() => { cursorImage.remove(); document.removeEventListener('mousemove', updateCursorPosition); mintieCount = 0; }, 3000); } else { clearTimeout(timeoutId); timeoutId = setTimeout(() => { mintieCount = 0; }, 1000); } } else { mintieCount = 0; clearTimeout(timeoutId); } } document.addEventListener('keydown', handleKeyDown); }); </script>'</div></div><div class="global-styles w-embed"><style> /* Make text look crisper and more legible in all browsers */ body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-smoothing: antialiased; text-rendering: optimizeLegibility; } /* Focus state style for keyboard navigation for the focusable elements */ *[tabindex]:focus-visible, input[type="file"]:focus-visible { outline: 0.125rem solid #4d65ff; outline-offset: 0.125rem; } /* Set color style to inherit */ .inherit-color * { color: inherit; } /* Get rid of top margin on first element in any rich text element */ .w-richtext > :not(div):first-child, .w-richtext > div:first-child > :first-child { margin-top: 0 !important; } /* Get rid of bottom margin on last element in any rich text element */ .w-richtext>:last-child, .w-richtext ol li:last-child, .w-richtext ul li:last-child { margin-bottom: 0 !important; } /* Make sure containers never lose their center alignment */ .container-medium,.container-small, .container-large { margin-right: auto !important; margin-left: auto !important; } /* Make the following elements inherit typography styles from the parent and not have hardcoded values. Important: You will not be able to style for example "All Links" in Designer with this CSS applied. Uncomment this CSS to use it in the project. Leave this message for future hand-off. */ /* a, .w-input, .w-select, .w-tab-link, .w-nav-link, .w-dropdown-btn, .w-dropdown-toggle, .w-dropdown-link { color: inherit; text-decoration: inherit; font-size: inherit; } */ /* Apply "..." after 3 lines of text */ .text-style-3lines { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 3; -webkit-box-orient: vertical; } /* Apply "..." after 2 lines of text */ .text-style-2lines { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; } /* These classes are never overwritten */ .hide { display: none !important; } @media screen and (max-width: 991px) { .hide, .hide-tablet { display: none !important; } } @media screen and (max-width: 767px) { .hide-mobile-landscape{ display: none !important; } } @media screen and (max-width: 479px) { .hide-mobile{ display: none !important; } } .margin-0 { margin: 0rem !important; } .padding-0 { padding: 0rem !important; } .spacing-clean { padding: 0rem !important; margin: 0rem !important; } .margin-top { margin-right: 0rem !important; margin-bottom: 0rem !important; margin-left: 0rem !important; } .padding-top { padding-right: 0rem !important; padding-bottom: 0rem !important; padding-left: 0rem !important; } .margin-right { margin-top: 0rem !important; margin-bottom: 0rem !important; margin-left: 0rem !important; } .padding-right { padding-top: 0rem !important; padding-bottom: 0rem !important; padding-left: 0rem !important; } .margin-bottom { margin-top: 0rem !important; margin-right: 0rem !important; margin-left: 0rem !important; } .padding-bottom { padding-top: 0rem !important; padding-right: 0rem !important; padding-left: 0rem !important; } .margin-left { margin-top: 0rem !important; margin-right: 0rem !important; margin-bottom: 0rem !important; } .padding-left { padding-top: 0rem !important; padding-right: 0rem !important; padding-bottom: 0rem !important; } .margin-horizontal { margin-top: 0rem !important; margin-bottom: 0rem !important; } .padding-horizontal { padding-top: 0rem !important; padding-bottom: 0rem !important; } .margin-vertical { margin-right: 0rem !important; margin-left: 0rem !important; } .padding-vertical { padding-right: 0rem !important; padding-left: 0rem !important; } </style></div><nav class="navigation"><div data-animation="default" class="navbar w-nav" data-easing2="ease" fs-scrolldisable-element="smart-nav" data-easing="ease" data-collapse="medium" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e932" role="banner" data-duration="400"><div class="navbar_container"><a href="/" class="navbar_logo-link w-nav-brand"><div class="brand-logo w-embed"><svg width="100%" height="auto" viewBox="0 0 110 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M31.3809 3.06182H36.2383L40.3588 13.1095H40.549L44.6695 3.06182H49.5269V19.2902H45.7075V9.32179H45.5728L41.6742 19.1872H39.2336L35.335 9.26635H35.2003V19.2902H31.3809V3.06182ZM51.0807 19.2902V7.1189H54.9559V19.2902H51.0807ZM53.0221 5.70052C52.4781 5.70052 52.0105 5.52091 51.6198 5.16171C51.229 4.79718 51.0331 4.35872 51.0331 3.8463C51.0331 3.33916 51.229 2.90598 51.6198 2.54676C52.0105 2.18225 52.4781 2 53.0221 2C53.5715 2 54.0391 2.18225 54.4249 2.54676C54.8156 2.90598 55.011 3.33916 55.011 3.8463C55.011 4.35872 54.8156 4.79718 54.4249 5.16171C54.0391 5.52091 53.5715 5.70052 53.0221 5.70052ZM60.4045 12.3488V19.2902H56.5293V7.1189H60.2141V9.35348H60.349C60.6183 8.60863 61.0779 8.0249 61.7275 7.60227C62.3776 7.17438 63.1512 6.96042 64.0492 6.96042C64.905 6.96042 65.6474 7.15326 66.2761 7.5389C66.9098 7.91923 67.4012 8.45278 67.7498 9.13956C68.1039 9.82103 68.2784 10.6187 68.273 11.5326V19.2902H64.3983V12.2933C64.4032 11.6171 64.2317 11.0889 63.8831 10.7085C63.5394 10.3282 63.0614 10.138 62.4485 10.138C62.0419 10.138 61.6829 10.2278 61.371 10.4074C61.0645 10.5817 60.827 10.8326 60.6579 11.1602C60.4943 11.4877 60.4095 11.8839 60.4045 12.3488ZM76.6497 7.1189V9.97158H68.9712V7.1189H76.6497ZM70.5798 4.20288H74.4545V15.4629C74.4545 15.7006 74.4917 15.8935 74.5655 16.0414C74.6449 16.184 74.7584 16.287 74.9062 16.3504C75.054 16.4085 75.231 16.4376 75.4373 16.4376C75.585 16.4376 75.7407 16.4244 75.9044 16.398C76.0735 16.3662 76.2004 16.3399 76.2852 16.3187L76.8713 19.1159C76.6864 19.1687 76.425 19.2347 76.0869 19.314C75.7541 19.3932 75.3554 19.4434 74.8903 19.4646C73.9819 19.5068 73.2024 19.4011 72.5528 19.1476C71.9082 18.8887 71.4143 18.4873 71.0712 17.9431C70.733 17.399 70.5693 16.7149 70.5798 15.8908V4.20288ZM81.8702 3.06182V19.2902H77.9954V3.06182H81.8702ZM83.444 19.2902V7.1189H87.3188V19.2902H83.444ZM85.3854 5.70052C84.8414 5.70052 84.3738 5.52091 83.9831 5.16171C83.5918 4.79718 83.3964 4.35872 83.3964 3.8463C83.3964 3.33916 83.5918 2.90598 83.9831 2.54676C84.3738 2.18225 84.8414 2 85.3854 2C85.9348 2 86.4024 2.18225 86.7882 2.54676C87.1789 2.90598 87.3743 3.33916 87.3743 3.8463C87.3743 4.35872 87.1789 4.79718 86.7882 5.16171C86.4024 5.52091 85.9348 5.70052 85.3854 5.70052ZM95.8105 7.1189V9.97158H87.9812V7.1189H95.8105ZM89.6136 19.2902V6.50085C89.6136 5.56053 89.7907 4.78133 90.1447 4.16326C90.4988 3.5399 90.9902 3.07503 91.6184 2.76863C92.2472 2.45695 92.9736 2.30111 93.7978 2.30111C94.3368 2.30111 94.8436 2.34337 95.3191 2.4279C95.8001 2.50714 96.1566 2.57845 96.3887 2.64185L95.7708 5.47867C95.628 5.43111 95.454 5.39149 95.2477 5.35981C95.0469 5.32807 94.8569 5.31225 94.6774 5.31225C94.2227 5.31225 93.9113 5.41262 93.7422 5.61334C93.5731 5.81412 93.4888 6.08878 93.4888 6.43748V19.2902H89.6136ZM99.1511 23.8544C98.6865 23.8544 98.2477 23.8175 97.8356 23.7435C97.4241 23.6748 97.07 23.5824 96.774 23.4662L97.6298 20.6532C98.0102 20.78 98.3538 20.8539 98.6597 20.875C98.9716 20.8961 99.2384 20.846 99.4601 20.7245C99.6877 20.6082 99.8617 20.3996 99.9832 20.0985L100.134 19.734L95.8075 7.1189H99.8642L102.107 15.8037H102.233L104.508 7.1189H108.589L104.001 20.4551C103.779 21.1207 103.465 21.707 103.058 22.2142C102.656 22.7266 102.136 23.1281 101.497 23.4186C100.863 23.7092 100.081 23.8544 99.1511 23.8544Z" fill="currentcolor"/> <mask id="mask0_4238_40" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="1" y="0" width="24" height="24"> <path d="M24.6348 0H1V23.6348H24.6348V0Z" fill="white"/> </mask> <g mask="url(#mask0_4238_40)"> <path d="M7.22763 8.62342C7.24415 6.37269 8.13673 4.21692 9.71609 2.61328H9.71318L3.61572 8.71074H3.61863C3.59593 8.7286 3.57453 8.74804 3.55459 8.76894C2.0717 10.2499 1.17264 12.216 1.02241 14.3063C0.872184 16.3967 1.48087 18.4711 2.73675 20.149L8.89533 13.9903L8.95936 13.9292C7.81152 12.4007 7.20254 10.5348 7.22763 8.62342Z" fill="#0C8C5E"/> <path d="M22.0327 14.9336C20.8657 16.0773 19.4008 16.8701 17.805 17.2216C16.2093 17.573 14.5469 17.469 13.0074 16.9215C12.1865 16.63 11.415 16.2149 10.7197 15.6904L10.6556 15.7544L4.49707 21.91C6.17554 23.1628 8.24884 23.7695 10.3379 23.6194C12.427 23.4692 14.3921 22.5721 15.8741 21.0921L15.9353 21.031L22.0327 14.9336Z" fill="#0C8C5E"/> <path d="M24.6467 8.71108V4.35893e-06H15.9356C14.7916 -0.00114182 13.6586 0.223763 12.6016 0.661799C11.5448 1.09984 10.5848 1.74238 9.77701 2.5525L9.71589 2.61362C8.6511 3.6946 7.88927 5.03658 7.50684 6.50493C8.19913 6.32565 8.91058 6.23087 9.62567 6.22262C11.5371 6.20012 13.4024 6.80995 14.9315 7.95726C16.3057 8.98207 17.3457 10.3908 17.9206 12.0058C18.5064 13.6564 18.5834 15.4449 18.1417 17.1398C19.6104 16.7581 20.9525 15.9961 22.033 14.9308L22.0942 14.8726C22.9046 14.0644 23.5474 13.104 23.9854 12.0466C24.4234 10.9892 24.6482 9.85563 24.6467 8.71108Z" fill="#18E299"/> </g> </svg></div></a><nav role="navigation" id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e936-1c96e931" class="navbar_menu is-page-height-tablet w-nav-menu"><div data-hover="true" data-delay="0" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e965" class="dd-menu-wrap hide-tablet w-dropdown"><div class="dropdown-toggle w-dropdown-toggle"><a href="https://mintlify.com/docs" class="navbar_link w-inline-block"><div>Documentation</div></a></div><nav class="dd-menu-content w-dropdown-list"><div class="dd-content"><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e96b-1c96e931" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e96b" href="https://mintlify.com/docs" class="nav-link-card with-image guides w-inline-block"><img class="nav-card-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eaabfa0d26093561a2128e_Getting%20started.svg" alt="Feature set UI" data-light-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Getting%20started.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Getting%20started-dark.png" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Getting%20started-dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Getting%20started.png" loading="lazy"/><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Guides</div></div><div class="text-style-muted">Start building modern documentation in under five minutes<br/></div></div></a><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e973-1c96e931" href="https://mintlify.com/docs/content/components/" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5469_21884)"> <path d="M6.25 2.50195H3.75C2.7835 2.50195 2 3.28545 2 4.25195V6.75195C2 7.71845 2.7835 8.50195 3.75 8.50195H6.25C7.2165 8.50195 8 7.71845 8 6.75195V4.25195C8 3.28545 7.2165 2.50195 6.25 2.50195Z" fill="currentColor"/> <path d="M5 16.752C6.79493 16.752 8.25 15.2969 8.25 13.502C8.25 11.707 6.79493 10.252 5 10.252C3.20507 10.252 1.75 11.707 1.75 13.502C1.75 15.2969 3.20507 16.752 5 16.752Z" fill="currentColor"/> <path d="M15.5 12.752H13.75V11.002C13.75 10.588 13.414 10.252 13 10.252C12.586 10.252 12.25 10.588 12.25 11.002V12.752H10.5C10.086 12.752 9.75 13.088 9.75 13.502C9.75 13.916 10.086 14.252 10.5 14.252H12.25V16.002C12.25 16.416 12.586 16.752 13 16.752C13.414 16.752 13.75 16.416 13.75 16.002V14.252H15.5C15.914 14.252 16.25 13.916 16.25 13.502C16.25 13.088 15.914 12.752 15.5 12.752Z" fill="currentColor"/> <path d="M14.0829 2.70211C13.6319 1.92011 12.3689 1.91911 11.9179 2.70211L9.65192 6.62611C9.42592 7.01811 9.42592 7.48511 9.65192 7.87611C9.87792 8.26811 10.2829 8.50111 10.7349 8.50111H15.2659C15.7179 8.50111 16.1219 8.26811 16.3489 7.87611C16.5749 7.48511 16.5749 7.01811 16.3489 6.62611L14.0829 2.70211Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5469_21884"> <rect width="18" height="18" fill="white" transform="translate(0 0.5)"/> </clipPath> </defs> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Components</div></div><div class="text-style-muted">Explore the variety of components available</div></div></a><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e97b-1c96e931" href="https://mintlify.com/docs/api-playground" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5469_21895)"> <path d="M15.0459 2.5H4.5459C3.0289 2.5 1.7959 3.733 1.7959 5.25V13.75C1.7959 15.267 3.0289 16.5 4.5459 16.5H15.0459C16.5629 16.5 17.7959 15.267 17.7959 13.75V5.25C17.7959 3.733 16.5629 2.5 15.0459 2.5ZM7.7959 4.5C8.3479 4.5 8.7959 4.948 8.7959 5.5C8.7959 6.052 8.3479 6.5 7.7959 6.5C7.2439 6.5 6.7959 6.052 6.7959 5.5C6.7959 4.948 7.2439 4.5 7.7959 4.5ZM3.7959 5.5C3.7959 4.948 4.2439 4.5 4.7959 4.5C5.3479 4.5 5.7959 4.948 5.7959 5.5C5.7959 6.052 5.3479 6.5 4.7959 6.5C4.2439 6.5 3.7959 6.052 3.7959 5.5ZM8.5759 12.22C8.8689 12.513 8.8689 12.988 8.5759 13.281C8.4299 13.427 8.2379 13.501 8.0459 13.501C7.8539 13.501 7.6619 13.428 7.5159 13.281L5.2659 11.031C4.9729 10.738 4.9729 10.263 5.2659 9.97L7.5159 7.72C7.8089 7.427 8.2839 7.427 8.5769 7.72C8.8699 8.013 8.8699 8.488 8.5769 8.781L6.8569 10.501L8.5769 12.221L8.5759 12.22ZM14.3259 11.03L12.0759 13.28C11.9299 13.426 11.7379 13.5 11.5459 13.5C11.3539 13.5 11.1619 13.427 11.0159 13.28C10.7229 12.987 10.7229 12.512 11.0159 12.219L12.7359 10.499L11.0159 8.779C10.7229 8.486 10.7229 8.011 11.0159 7.718C11.3089 7.425 11.7839 7.425 12.0769 7.718L14.3269 9.968C14.6199 10.261 14.6199 10.736 14.3269 11.029L14.3259 11.03Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5469_21895"> <rect width="18" height="18" fill="white" transform="translate(0.795898 0.5)"/> </clipPath> </defs> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">API playground</div></div><div class="text-style-muted">Enable users to interact with your API<br/></div></div></a></div></nav></div><div data-hover="true" data-delay="0" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e983" class="dd-menu-wrap hide-tablet w-dropdown"><div class="dropdown-toggle w-dropdown-toggle"><a href="/customers" class="navbar_link w-inline-block"><div>Resources</div></a></div><nav class="dd-menu-content w-dropdown-list"><div class="dd-content resources"><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e989-1c96e931" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e989" href="/customers" class="nav-link-card with-image w-inline-block"><img class="nav-card-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66fb266513745ada050da046_CX3-Light.png" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/CX3-Light.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/CX3-Dark.png" sizes="100vw" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/CX3-Dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/CX3-Light.png" loading="lazy" srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66fb266513745ada050da046_CX3-Light-p-500.png 500w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66fb266513745ada050da046_CX3-Light-p-800.png 800w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66fb266513745ada050da046_CX3-Light.png 972w"/><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Customers</div></div><div class="text-style-muted">Discover how we help our customers win</div></div></a><link rel="prefetch" href="/customers"/><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e991-1c96e931" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e991" href="/enterprise" class="nav-link-card with-image w-inline-block"><img class="nav-card-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66fb1f61e959ed44eea75a0f_ENT-New-Light.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/enterprise/Ent-Nav-Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/enterprise/Ent-Nav-Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/enterprise/Ent-Nav-Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/enterprise/Ent-Nav-Light.svg" loading="lazy"/><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Enterprise</div></div><div class="text-style-muted">For organizations with custom needs<br/></div></div></a><link rel="prefetch" href="/enterprise"/><a id="w-node-_8c387d58-9737-ace0-1ec1-d0cf06bbf9e7-1c96e931" data-w-id="8c387d58-9737-ace0-1ec1-d0cf06bbf9e7" href="/blog" class="nav-link-card with-image w-inline-block"><img class="nav-card-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eaabf98655455a7fb6b139_Blog.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Blog.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Blog-dark.png" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Blog-dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Blog.png" loading="lazy"/><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Blog</div></div><div class="text-style-muted">Discover and stay updated on what鈥檚 happening</div></div></a><link rel="prefetch" href="/blog"/><div id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e999-1c96e931" class="_2x2-grid"><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e99a-1c96e931" href="https://mintlify.com/security/responsible-disclosure" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"> <title>shield-check</title> <g fill="currentColor"> <path d="M14.783,2.813l-5.25-1.68c-.349-.112-.718-.111-1.066,0L3.216,2.813c-.728,.233-1.216,.903-1.216,1.667v6.52c0,3.508,4.946,5.379,6.46,5.869,.177,.057,.358,.086,.54,.086s.362-.028,.538-.085c1.516-.49,6.462-2.361,6.462-5.869V4.48c0-.764-.489-1.434-1.217-1.667Zm-2.681,4.389l-3.397,4.5c-.128,.169-.322,.276-.534,.295-.021,.002-.043,.003-.065,.003-.189,0-.372-.071-.511-.201l-1.609-1.5c-.303-.283-.32-.757-.038-1.06,.284-.303,.758-.319,1.06-.038l1.001,.933,2.896-3.836c.25-.33,.72-.396,1.051-.146,.331,.25,.396,.72,.146,1.051Z"></path> </g> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Security</div></div></div></a><a href="https://github.com/mintlify/themes" target="_blank" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg width="19" height="18" viewBox="0 0 19 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4055_135)"> <path d="M7.04401 2H4.54401C3.57901 2 2.79401 2.785 2.79401 3.75V13C2.79401 14.654 4.14001 16 5.79401 16C7.44801 16 8.79401 14.654 8.79401 13V3.75C8.79401 2.785 8.00901 2 7.04401 2ZM5.79401 13.75C5.38001 13.75 5.04401 13.414 5.04401 13C5.04401 12.586 5.38001 12.25 5.79401 12.25C6.20801 12.25 6.54401 12.586 6.54401 13C6.54401 13.414 6.20801 13.75 5.79401 13.75Z" fill="currentColor"/> <path d="M14.456 6.10415L12.688 4.33615C12.053 3.70015 10.965 3.68215 10.293 4.27115V12.7402L14.455 8.57815C14.786 8.24715 14.968 7.80815 14.968 7.34115C14.968 6.87415 14.787 6.43415 14.456 6.10415Z" fill="currentColor"/> <path d="M15.1467 10.0078L9.15674 15.9978H15.0437C16.0087 15.9978 16.7937 15.2128 16.7937 14.2478V11.7478C16.7937 10.8188 16.0627 10.0628 15.1467 10.0078Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_4055_135"> <rect width="18" height="18" fill="white" transform="translate(0.793945)"/> </clipPath> </defs> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Templates</div></div></div></a><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e9a6-1c96e931" href="https://mintlify.com/docs/integrations/analytics/overview" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5469_22859)"> <path d="M9.58987 7C10.7099 7 11.6719 6.325 12.1009 5.362C13.5389 6.104 14.6079 7.458 14.9599 9.058C15.0369 9.408 15.3479 9.646 15.6909 9.646C15.7449 9.646 15.7989 9.641 15.8539 9.628C16.2579 9.539 16.5129 9.138 16.4239 8.734C15.9349 6.522 14.3699 4.683 12.2939 3.809C12.0809 2.503 10.9539 1.5 9.58887 1.5C8.07187 1.5 6.83887 2.733 6.83887 4.25C6.83887 5.767 8.07187 7 9.58887 7H9.58987Z" fill="currentColor"/> <path d="M6.77681 11.8733C6.21681 10.9043 5.15081 10.4073 4.10281 10.5183C4.02581 8.90126 4.66381 7.29926 5.87181 6.19426C6.17781 5.91526 6.19881 5.44026 5.91981 5.13426C5.63981 4.82926 5.16581 4.80726 4.85981 5.08726C3.18781 6.61626 2.37781 8.89126 2.65881 11.1253C2.21381 11.4873 1.88981 11.9723 1.73781 12.5373C1.54881 13.2463 1.64581 13.9883 2.01281 14.6233C2.37981 15.2593 2.97281 15.7153 3.68281 15.9053C3.91881 15.9683 4.15981 16.0003 4.39881 16.0003C4.87581 16.0003 5.34481 15.8753 5.76881 15.6303C7.08081 14.8733 7.53381 13.1883 6.77581 11.8743L6.77681 11.8733Z" fill="currentColor"/> <path d="M17.443 12.5381C17.253 11.8291 16.797 11.2351 16.162 10.8681C14.85 10.1091 13.163 10.5621 12.405 11.8751C11.845 12.8451 11.949 14.0151 12.569 14.8671C11.209 15.7421 9.50404 15.9901 7.93804 15.4961C7.54104 15.3721 7.12204 15.5911 6.99804 15.9851C6.87304 16.3801 7.09204 16.8011 7.48704 16.9261C8.17004 17.1421 8.87504 17.2471 9.57704 17.2471C11.102 17.2471 12.609 16.7461 13.84 15.8071C14.145 15.9211 14.46 15.9991 14.783 15.9991C15.022 15.9991 15.262 15.9681 15.499 15.9041C16.209 15.7141 16.802 15.2581 17.169 14.6231C17.536 13.9881 17.634 13.2461 17.444 12.5371L17.443 12.5381Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5469_22859"> <rect width="18" height="18" fill="white" transform="translate(0.59082 0.5)"/> </clipPath> </defs> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Integrations</div></div></div></a><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e9ac-1c96e931" href="/love" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5469_22851)"> <path d="M15.9988 13.49L14.7358 13.069L14.3148 11.806C14.1778 11.398 13.5028 11.398 13.3658 11.806L12.9448 13.069L11.6818 13.49C11.4778 13.558 11.3398 13.749 11.3398 13.964C11.3398 14.179 11.4778 14.37 11.6818 14.438L12.9448 14.859L13.3658 16.122C13.4338 16.326 13.6258 16.464 13.8408 16.464C14.0558 16.464 14.2468 16.326 14.3158 16.122L14.7368 14.859L15.9998 14.438C16.2038 14.37 16.3418 14.179 16.3418 13.964C16.3418 13.749 16.2038 13.558 15.9998 13.49H15.9988Z" fill="currentColor"/> <path d="M12.5049 2.5C11.3099 2.515 10.1809 2.99 9.34086 3.806C8.50086 2.991 7.36886 2.515 6.16286 2.5C3.63286 2.515 1.58086 4.584 1.59086 7.109C1.59086 12.362 6.89686 15.538 8.52286 16.387C8.77886 16.52 9.05986 16.587 9.34086 16.587C9.62186 16.587 9.90286 16.52 10.1579 16.387C10.4079 16.257 10.7499 16.065 11.1399 15.827C10.3629 15.535 9.83986 14.802 9.83986 13.965C9.83986 13.102 10.3899 12.34 11.2089 12.068L11.7589 11.884L11.9429 11.333C12.2099 10.535 12.9719 10.001 13.8399 10.001C14.7079 10.001 15.4699 10.535 15.7369 11.331L15.7809 11.463C16.5579 10.225 17.0899 8.774 17.0899 7.114C17.0989 4.586 15.0479 2.517 12.5039 2.502L12.5049 2.5ZM9.08386 8.981L8.13786 9.296L7.82186 10.243C7.77086 10.396 7.62786 10.499 7.46686 10.499C7.30586 10.499 7.16186 10.395 7.11186 10.243L6.79586 9.296L5.84986 8.981C5.69686 8.93 5.59286 8.787 5.59286 8.625C5.59286 8.463 5.69686 8.32 5.84986 8.269L6.79586 7.954L7.11186 7.007C7.21386 6.701 7.72086 6.701 7.82286 7.007L8.13886 7.954L9.08486 8.269C9.23786 8.32 9.34186 8.463 9.34186 8.625C9.34186 8.787 9.23786 8.93 9.08486 8.981H9.08386ZM12.5909 7.5C12.1769 7.5 11.8409 7.164 11.8409 6.75C11.8409 6.336 12.1769 6 12.5909 6C13.0049 6 13.3409 6.336 13.3409 6.75C13.3409 7.164 13.0049 7.5 12.5909 7.5Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5469_22851"> <rect width="18" height="18" fill="white" transform="translate(0.34082 0.5)"/> </clipPath> </defs> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Wall of Love</div></div></div></a><link rel="prefetch" href="/love"/></div></div></nav></div><a href="/preview" class="navbar_link hide-tablet sing-p w-nav-link">Request Preview</a><a href="/careers" aria-current="page" class="navbar_link hide-tablet sing-p w-nav-link w--current">Careers</a><a href="/pricing" class="navbar_link hide-tablet sing-p w-nav-link">Pricing</a><div class="responsive-nav"><div id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e9f0-1c96e931" class="link-group"><div class="text-style-muted text-size-small">Documentation</div><a href="https://mintlify.com/docs" class="nav-link-block w-inline-block"><div>Getting Started</div></a><a href="https://mintlify.com/docs/content/components" class="nav-link-block w-inline-block"><div>Components</div></a><a href="https://mintlify.com/docs/api-playground/" class="nav-link-block w-inline-block"><div>API Playground</div></a><a href="/pricing" class="nav-link-block w-inline-block"><div>Pricing</div></a></div><div id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e9fc-1c96e931" class="link-group"><div class="text-style-muted text-size-small">Resources</div><a href="/customers" class="nav-link-block w-inline-block"><div>Customers</div></a><a href="/enterprise" class="nav-link-block w-inline-block"><div>Enterprise</div></a><a href="/preview" class="nav-link-block w-inline-block"><div>Request Preview</div></a><a href="https://mintlify.com/docs/integrations/analytics/overview" class="nav-link-block w-inline-block"><div>Integrations</div></a><a href="https://github.com/mintlify/themes" target="_blank" class="nav-link-block w-inline-block"><div>Templates</div></a><a href="/love" class="nav-link-block w-inline-block"><div>Wall of Love</div></a></div><div id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96ea11-1c96e931" class="link-group"><div class="text-style-muted text-size-small">Company</div><a href="/blog" class="nav-link-block w-inline-block"><div>Blog</div></a><a href="/careers" aria-current="page" class="nav-link-block w-inline-block w--current"><div>Careers</div></a><a href="https://feedback.mintlify.com/roadmap" class="nav-link-block w-inline-block"><div>Public Roadmap</div></a><a href="https://mintlify.com/security/responsible-disclosure" class="nav-link-block w-inline-block"><div>Security</div></a></div></div><div class="hide-desktop flex"><a href="https://dashboard.mintlify.com/login" class="button is-secondary is-small mobile-only w-button">Login</a><a data-cal-namespace="demo-with-mintlify" data-cal-link="team/mintlify/demo-with-mintlify" href="#" class="button is-small mobile-only w-button">Book a demo</a></div></nav><div id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96ea25-1c96e931" class="navbar_button-wrapper"><a href="https://dashboard.mintlify.com/login" class="button is-secondary is-small ghost hide-mobile-landscape w-button">Login</a><a data-cal-namespace="demo-with-mintlify" data-cal-link="team/mintlify/demo-with-mintlify" href="#" class="button is-secondary is-small hide-mobile-portrait w-button">Get a demo</a><a href="https://dashboard.mintlify.com/signup" class="button is-small w-button">Sign up</a><div class="navbar_menu-button w-nav-button"><div class="menu-icon"><div class="menu-icon_line-top"></div><div class="menu-icon_line-middle"><div class="menu-icon_line-middle-inner"></div></div><div class="menu-icon_line-bottom"></div></div></div></div></div></div><div class="glass-bg"></div></nav><main class="main-wrapper"><section class="page-title page-hero careers"><div class="background-image"><img class="background-image-asset theme-asset hero-image" src="https://cdn.prod.website-files.com/plugins/Basic/assets/placeholder.60f9b1840c.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/careers/Career%20hero%20Light.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/careers/Career%20hero%20Dark.png" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/careers/Career%20hero%20Dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/careers/Career%20hero%20Light.png" loading="lazy"/></div><div class="padding-global"><div class="container-large"><div class="padding-section-large"><div class="text-align-center"><div class="max-width-medium align-center"><div class="margin-bottom margin-xsmall"><p class="description align-center text-weight-medium">Careers</p></div><div class="margin-bottom margin-small"><h1 blocks-non-deletable="true" class="heading-style-h2 text-weight-semibold">Join us in our mission to empower builders</h1></div></div></div><div class="margin-top margin-large"><div data-w-id="cbba9469-2c5e-4ecd-5cb6-e5ce005515ab" style="opacity:0" class="button-group is-center"><a href="#open-roles" class="button w-button">See open positions</a></div></div></div></div></div></section><section class="customers"><div class="padding-global"><div class="container-large"><div class="padding-section-small padding-0"><div class="text-align-center"><div class="margin-bottom margin-medium"><h1 blocks-non-deletable="true" class="heading-style-h4 max-width-medium align-center">Our work impacts thousands of <span class="text-style-muted">next-gen companies and millions of developers</span></h1></div></div><div class="carousel-component"><div class="code-block-hidden w-embed"><style> .logo-carousel { animation: scroll 30s linear infinite; } @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-90%); } } </style></div><div class="carousel-wrapper"><div class="logo-carousel"><div class="logo-wrap no-red w-embed"><svg width="120" height="30" viewBox="0 0 120 30" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M29.3666 11.4089H33.7401V21.8142H36.5316V11.4089H40.9053V8.92272H29.3666V11.4089Z" fill="currentColor"/> <path d="M24.4365 17.9467L18.5741 8.92272H15.4103V21.8142H18.1089V12.7902L23.9712 21.8142H27.1349V8.92272H24.4365V17.9467Z" fill="currentColor"/> <path d="M52.0714 14.0609H45.9299V8.92272H43.1384V21.8142H45.9299V16.5471H52.0714V21.8142H54.8629V8.92272H52.0714V14.0609Z" fill="currentColor"/> <path d="M5.19233 8.92272L0 21.8142H2.90325L3.96516 19.107H9.39741L10.4592 21.8142H13.3624L8.17005 8.92272H5.19233ZM4.90424 16.7129L6.68119 12.1824L8.45817 16.7129H4.90424Z" fill="currentColor"/> <path d="M77.997 8.69702C74.2374 8.69702 71.5763 11.4595 71.5763 15.3822C71.5763 19.268 74.2374 22.0305 77.997 22.0305C81.7376 22.0305 84.3805 19.268 84.3805 15.3822C84.3805 11.4595 81.7376 8.69702 77.997 8.69702ZM77.997 19.4522C75.8006 19.4522 74.4608 17.9052 74.4608 15.3822C74.4608 12.8223 75.8006 11.2753 77.997 11.2753C80.1744 11.2753 81.4956 12.8223 81.4956 15.3822C81.4956 17.9052 80.1744 19.4522 77.997 19.4522Z" fill="currentColor"/> <path d="M117.022 17.4816C116.538 18.734 115.57 19.4522 114.249 19.4522C112.053 19.4522 110.713 17.9052 110.713 15.3822C110.713 12.8223 112.053 11.2753 114.249 11.2753C115.57 11.2753 116.538 11.9935 117.022 13.2459H119.981C119.256 10.4834 117.078 8.69702 114.249 8.69702C110.49 8.69702 107.829 11.4595 107.829 15.3822C107.829 19.268 110.49 22.0305 114.249 22.0305C117.097 22.0305 119.274 20.2256 120 17.4816H117.022Z" fill="currentColor"/> <path d="M99.2326 8.92272L104.425 21.8142H107.272L102.08 8.92272H99.2326Z" fill="currentColor"/> <path d="M93.3491 8.92272H86.9842V21.8142H89.7758V17.1364H93.3491C96.3079 17.1364 98.1132 15.5895 98.1132 13.0296C98.1132 10.4697 96.3079 8.92272 93.3491 8.92272ZM93.2186 14.6502H89.7758V11.4089H93.2186C94.596 11.4089 95.3217 11.9614 95.3217 13.0296C95.3217 14.0977 94.596 14.6502 93.2186 14.6502Z" fill="currentColor"/> <path d="M69.4372 12.8454C69.4372 10.4144 67.6319 8.92272 64.6727 8.92272H58.3078V21.8142H61.0993V16.7681H64.2072L66.9992 21.8142H70.0885L66.9971 16.3837C68.5487 15.7935 69.4372 14.5506 69.4372 12.8454ZM61.0993 11.4089H64.5426C65.9196 11.4089 66.6452 11.9061 66.6452 12.8454C66.6452 13.7847 65.9196 14.2819 64.5426 14.2819H61.0993V11.4089Z" fill="currentColor"/> </svg></div><div class="logo-wrap w-embed"><svg width="116" height="28" viewBox="0 0 116 28" fill="none" xmlns="http://www.w3.org/2000/svg"> <path opacity="0.2" d="M28.3691 8.63599H8.5979L18.5151 14.3802L28.3691 8.63599Z" fill="currentColor"/> <path opacity="0.9" d="M28.3682 8.63561L18.5142 2.95337V8.63561H28.3682Z" fill="currentColor"/> <path opacity="0.8" d="M8.61841 8.63561L18.5137 2.95337V8.63561H8.61841Z" fill="currentColor"/> <path opacity="0.7" d="M8.5979 20.0484V8.63599L18.5151 14.3802L8.5979 20.0484Z" fill="currentColor"/> <path opacity="0.3" d="M18.4954 25.7743L28.3592 8.64209L18.5111 14.3808L18.4954 25.7743Z" fill="currentColor"/> <path opacity="0.6" d="M18.4951 25.774L8.60425 20.0535L18.5109 14.3806L18.4951 25.774Z" fill="currentColor"/> <path opacity="0.8" d="M28.358 20.0619L28.3587 8.64209L23.438 17.209L28.358 20.0619Z" fill="currentColor"/> <path opacity="0.6" d="M28.3578 20.0616L18.4963 25.7684L23.4378 17.2087L28.3578 20.0616Z" fill="currentColor"/> <path d="M34.3691 14.3641C34.3691 10.6114 36.7546 8.50956 40.2448 8.50956H44.4339V10.7452H40.3786C38.2419 10.7452 36.7902 11.9619 36.7902 14.3641C36.7902 16.7663 38.2419 17.9837 40.3786 17.9837H44.4339V20.2194H40.2455C36.7575 20.2194 34.3691 18.0834 34.3691 14.3641ZM46.6019 16.4819V8.50956H48.9371V15.9997C48.9371 17.4506 49.6877 17.9685 50.9226 17.9685H52.324C53.5437 17.9685 54.311 17.4506 54.311 15.9997V8.50883H56.6317V16.4994C56.6317 19.0186 54.9626 20.2194 52.7102 20.2194H50.5408C48.2702 20.2194 46.6011 19.0179 46.6011 16.4841L46.6019 16.4819ZM59.1517 8.50883H66.079C68.4477 8.50883 69.6339 9.77647 69.6339 11.8128C69.6339 13.1146 69.0157 14.1648 68.0324 14.4477C69.0506 14.5641 69.535 15.2986 69.535 16.1815V20.2179H67.1815V16.7321C67.1815 16.1139 66.9975 15.6819 66.1633 15.6819H61.5073V20.2201H59.1546V8.50883H59.1517ZM65.7604 13.4965C66.8295 13.4965 67.263 12.9292 67.263 12.0957C67.263 11.1946 66.8288 10.7103 65.7284 10.7103H61.5051V13.4965H65.7604ZM71.7182 18.0012H78.1779C78.9633 18.0012 79.463 17.567 79.463 16.7845C79.463 16.0019 78.9451 15.6506 78.127 15.583L74.8724 15.3328C72.8193 15.1837 71.4179 14.1495 71.4179 11.9466C71.4179 9.74374 72.9706 8.50883 75.0062 8.50883H81.3975V10.727H75.14C74.2382 10.727 73.7713 11.1612 73.7713 11.9285C73.7713 12.6957 74.271 13.0615 75.1575 13.1452L78.4622 13.3794C80.4826 13.5285 81.8186 14.5961 81.8186 16.7488C81.8186 18.9015 80.399 20.2186 78.3459 20.2186H71.7204V18.0005L71.7182 18.0012ZM83.0011 14.3466C83.0011 10.7939 85.5713 8.30811 89.0084 8.30811H89.0419C92.4804 8.30811 95.0666 10.7939 95.0666 14.3466C95.0666 17.8994 92.4811 20.4194 89.0419 20.4194H89.0084C85.5713 20.4194 83.0011 17.9175 83.0011 14.3466ZM89.0259 18.1503C91.1451 18.1503 92.6979 16.6485 92.6979 14.3641C92.6979 12.0805 91.1451 10.5786 89.0259 10.5786C86.9073 10.5786 85.372 12.0957 85.372 14.3641C85.372 16.6325 86.9248 18.1503 89.0259 18.1503ZM96.9204 8.50883H103.847C106.216 8.50883 107.402 9.77647 107.402 11.8128C107.402 13.1146 106.784 14.1648 105.801 14.4477C106.819 14.5641 107.304 15.2986 107.304 16.1815V20.2179H104.95V16.7321C104.95 16.1139 104.765 15.6819 103.932 15.6819H99.2753V20.2201H96.9219V8.50883H96.9204ZM103.529 13.4965C104.597 13.4965 105.032 12.9292 105.032 12.0957C105.032 11.1946 104.597 10.7103 103.496 10.7103H99.2739V13.4965H103.529Z" fill="currentColor"/> </svg></div><div class="logo-wrap w-embed"><svg width="130" height="28" viewBox="0 0 130 28" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M120.046 13.9758L117.019 14.0567C116.988 13.841 116.902 13.65 116.763 13.4837C116.624 13.3129 116.442 13.1804 116.217 13.086C115.997 12.9871 115.741 12.9377 115.449 12.9377C115.067 12.9377 114.741 13.0141 114.471 13.1669C114.206 13.3197 114.076 13.5264 114.08 13.787C114.076 13.9893 114.157 14.1645 114.323 14.3128C114.494 14.4611 114.797 14.5802 115.233 14.6701L117.228 15.0476C118.262 15.2453 119.03 15.5734 119.534 16.0317C120.041 16.4901 120.298 17.0968 120.302 17.8518C120.298 18.5618 120.086 19.1797 119.668 19.7055C119.255 20.2313 118.689 20.6403 117.97 20.9324C117.251 21.22 116.428 21.3638 115.503 21.3638C114.024 21.3638 112.858 21.0604 112.004 20.4538C111.155 19.8426 110.669 19.0247 110.548 18.0001L113.804 17.9192C113.876 18.2967 114.062 18.5843 114.363 18.782C114.664 18.9797 115.049 19.0786 115.516 19.0786C115.939 19.0786 116.282 19 116.547 18.8427C116.813 18.6854 116.947 18.4764 116.952 18.2158C116.947 17.9821 116.844 17.7956 116.642 17.6563C116.44 17.5125 116.123 17.4001 115.691 17.3192L113.885 16.9755C112.847 16.7867 112.074 16.4384 111.566 15.9306C111.058 15.4183 110.806 14.7667 110.811 13.9758C110.806 13.2837 110.991 12.6928 111.364 12.2029C111.737 11.7086 112.267 11.3311 112.955 11.0705C113.642 10.8098 114.453 10.6795 115.388 10.6795C116.79 10.6795 117.896 10.9738 118.705 11.5625C119.513 12.1467 119.961 12.9512 120.046 13.9758Z" fill="currentColor"/> <path d="M99.4337 21.1688V7.36353H102.73V12.5877H102.797C102.932 12.2731 103.123 11.9698 103.37 11.6777C103.622 11.3856 103.941 11.1474 104.328 10.9632C104.719 10.7744 105.186 10.68 105.73 10.68C106.449 10.68 107.121 10.8688 107.745 11.2463C108.374 11.6238 108.882 12.2057 109.269 12.9922C109.655 13.7786 109.848 14.7807 109.848 15.9986C109.848 17.1715 109.662 18.1534 109.289 18.9443C108.92 19.7353 108.421 20.3285 107.792 20.7239C107.168 21.1194 106.473 21.3171 105.709 21.3171C105.188 21.3171 104.736 21.2318 104.354 21.061C103.973 20.8902 103.651 20.6655 103.391 20.3869C103.134 20.1083 102.937 19.8094 102.797 19.4904H102.696V21.1688H99.4337ZM102.663 15.9918C102.663 16.5491 102.737 17.0344 102.885 17.4479C103.038 17.8613 103.256 18.1826 103.539 18.4118C103.826 18.6365 104.17 18.7489 104.57 18.7489C104.975 18.7489 105.318 18.6365 105.602 18.4118C105.885 18.1826 106.098 17.8613 106.242 17.4479C106.39 17.0344 106.464 16.5491 106.464 15.9918C106.464 15.4346 106.39 14.9515 106.242 14.5426C106.098 14.1336 105.885 13.8168 105.602 13.5921C105.323 13.3674 104.979 13.2551 104.57 13.2551C104.166 13.2551 103.822 13.3652 103.539 13.5854C103.256 13.8056 103.038 14.1201 102.885 14.5291C102.737 14.938 102.663 15.4256 102.663 15.9918Z" fill="currentColor"/> <path d="M91.7999 21.3435C91.1393 21.3435 90.5528 21.2334 90.0405 21.0132C89.5327 20.7886 89.1305 20.4515 88.8339 20.0021C88.5418 19.5482 88.3958 18.9798 88.3958 18.2967C88.3958 17.7215 88.4969 17.2361 88.6991 16.8406C88.9013 16.4452 89.1799 16.1239 89.535 15.8767C89.89 15.6295 90.2989 15.443 90.7618 15.3172C91.2247 15.1869 91.719 15.0993 92.2448 15.0543C92.8335 15.0004 93.3076 14.9442 93.6671 14.8858C94.0266 14.8229 94.2873 14.7352 94.4491 14.6229C94.6153 14.5061 94.6985 14.342 94.6985 14.1308V14.0971C94.6985 13.7511 94.5794 13.4837 94.3412 13.2949C94.103 13.1062 93.7817 13.0118 93.3773 13.0118C92.9414 13.0118 92.5908 13.1062 92.3257 13.2949C92.0606 13.4837 91.892 13.7443 91.8201 14.0769L88.78 13.969C88.8699 13.3399 89.1013 12.7781 89.4743 12.2838C89.8518 11.785 90.3686 11.394 91.0247 11.1109C91.6853 10.8233 92.4785 10.6795 93.4042 10.6795C94.0648 10.6795 94.6738 10.7581 95.231 10.9154C95.7882 11.0682 96.2736 11.2929 96.687 11.5895C97.1005 11.8816 97.4195 12.2411 97.6442 12.668C97.8734 13.095 97.988 13.5826 97.988 14.1308V21.1683H94.8872V19.7257H94.8063C94.6221 20.0763 94.3862 20.3729 94.0985 20.6155C93.8154 20.8582 93.4806 21.0402 93.0941 21.1615C92.7122 21.2829 92.2808 21.3435 91.7999 21.3435ZM92.8178 19.1865C93.1728 19.1865 93.4919 19.1146 93.775 18.9708C94.0626 18.827 94.2918 18.6292 94.4625 18.3776C94.6333 18.1214 94.7187 17.8248 94.7187 17.4878V16.5036C94.6243 16.553 94.5097 16.598 94.3749 16.6384C94.2446 16.6789 94.1008 16.7171 93.9435 16.753C93.7862 16.789 93.6244 16.8204 93.4582 16.8474C93.2919 16.8744 93.1323 16.8991 92.9796 16.9215C92.6695 16.971 92.4043 17.0474 92.1841 17.1507C91.9684 17.2541 91.8022 17.3889 91.6853 17.5552C91.573 17.717 91.5168 17.9102 91.5168 18.1349C91.5168 18.4764 91.6381 18.7371 91.8808 18.9168C92.128 19.0966 92.4403 19.1865 92.8178 19.1865Z" fill="currentColor"/> <path d="M78.6436 21.1688V7.36353H81.9804V18.459H87.7236V21.1688H78.6436Z" fill="currentColor"/> <path d="M70.4781 15.2633V21.1683H67.1818V10.8143H70.3163V12.7152H70.4309C70.6601 12.0816 71.0511 11.585 71.6038 11.2255C72.1566 10.8615 72.8149 10.6795 73.5789 10.6795C74.3069 10.6795 74.9383 10.8435 75.4731 11.1716C76.0123 11.4951 76.4303 11.949 76.7269 12.5332C77.028 13.1129 77.1763 13.7915 77.1718 14.569V21.1683H73.8755V15.2161C73.88 14.6409 73.7339 14.1915 73.4373 13.8679C73.1452 13.5444 72.7385 13.3826 72.2172 13.3826C71.8712 13.3826 71.5656 13.459 71.3005 13.6118C71.0398 13.7601 70.8376 13.9735 70.6938 14.2522C70.5545 14.5308 70.4826 14.8678 70.4781 15.2633Z" fill="currentColor"/> <path d="M61.1538 21.3638C60.0708 21.3638 59.1361 21.1503 58.3496 20.7234C57.5677 20.292 56.9655 19.6786 56.5431 18.8831C56.1251 18.0832 55.9162 17.1328 55.9162 16.0317C55.9162 14.9622 56.1274 14.0275 56.5498 13.2275C56.9722 12.4231 57.5677 11.7985 58.3362 11.3536C59.1046 10.9042 60.0101 10.6795 61.0527 10.6795C61.7897 10.6795 62.4638 10.7941 63.075 11.0233C63.6862 11.2525 64.2142 11.5918 64.6591 12.0411C65.104 12.4905 65.45 13.0455 65.6972 13.7061C65.9443 14.3623 66.0679 15.115 66.0679 15.9643V16.7867H57.0689V14.8723H63.0008C62.9963 14.5218 62.9132 14.2095 62.7514 13.9353C62.5896 13.6612 62.3672 13.4477 62.0841 13.2949C61.8055 13.1377 61.4841 13.059 61.1201 13.059C60.7516 13.059 60.4213 13.1422 60.1292 13.3084C59.8371 13.4702 59.6057 13.6927 59.4349 13.9758C59.2641 14.2544 59.1743 14.5712 59.1653 14.9262V16.8744C59.1653 17.2968 59.2484 17.6675 59.4147 17.9866C59.581 18.3012 59.8169 18.5461 60.1225 18.7213C60.4281 18.8966 60.7921 18.9842 61.2145 18.9842C61.5066 18.9842 61.7717 18.9438 62.0099 18.8629C62.2481 18.782 62.4526 18.6629 62.6233 18.5056C62.7941 18.3484 62.9222 18.1551 63.0076 17.9259L66.0342 18.0136C65.9084 18.6921 65.632 19.2831 65.2051 19.7864C64.7827 20.2852 64.2277 20.674 63.5401 20.9526C62.8525 21.2267 62.0571 21.3638 61.1538 21.3638Z" fill="currentColor"/> <path d="M55.9529 10.8145L52.4005 21.1685H48.6256L45.0799 10.8145H48.5514L50.4591 17.9463H50.567L52.4814 10.8145H55.9529Z" fill="currentColor"/> <path d="M40.1586 21.3638C39.0756 21.3638 38.1408 21.1503 37.3544 20.7234C36.5724 20.292 35.9703 19.6786 35.5478 18.8831C35.1299 18.0832 34.9209 17.1328 34.9209 16.0317C34.9209 14.9622 35.1321 14.0275 35.5546 13.2275C35.977 12.4231 36.5724 11.7985 37.3409 11.3536C38.1094 10.9042 39.0149 10.6795 40.0575 10.6795C40.7945 10.6795 41.4686 10.7941 42.0797 11.0233C42.6909 11.2525 43.219 11.5918 43.6638 12.0411C44.1087 12.4905 44.4548 13.0455 44.7019 13.7061C44.9491 14.3623 45.0727 15.115 45.0727 15.9643V16.7867H36.0736V14.8723H42.0056C42.0011 14.5218 41.918 14.2095 41.7562 13.9353C41.5944 13.6612 41.372 13.4477 41.0888 13.2949C40.8102 13.1377 40.4889 13.059 40.1249 13.059C39.7564 13.059 39.4261 13.1422 39.134 13.3084C38.8419 13.4702 38.6104 13.6927 38.4397 13.9758C38.2689 14.2544 38.179 14.5712 38.17 14.9262V16.8744C38.17 17.2968 38.2532 17.6675 38.4194 17.9866C38.5857 18.3012 38.8217 18.5461 39.1272 18.7213C39.4328 18.8966 39.7968 18.9842 40.2193 18.9842C40.5114 18.9842 40.7765 18.9438 41.0147 18.8629C41.2529 18.782 41.4573 18.6629 41.6281 18.5056C41.7989 18.3484 41.927 18.1551 42.0123 17.9259L45.039 18.0136C44.9132 18.6921 44.6368 19.2831 44.2099 19.7864C43.7874 20.2852 43.2324 20.674 42.5449 20.9526C41.8573 21.2267 41.0619 21.3638 40.1586 21.3638Z" fill="currentColor"/> <path d="M33.7905 7.36353V21.1688H30.4943V7.36353H33.7905Z" fill="currentColor"/> <path d="M19.3479 21.1688V7.36353H28.9739V10.0734H22.6846V12.9045H28.4818V15.6211H22.6846V18.459H28.9739V21.1688H19.3479Z" fill="currentColor"/> <path d="M17.8192 7.36353V21.1688H14.5229V7.36353H17.8192Z" fill="currentColor"/> <path d="M12.9942 7.36353V21.1688H9.69794V7.36353H12.9942Z" fill="currentColor"/> </svg></div><div class="logo-wrap w-embed"><svg width="114" height="32" viewBox="0 0 114 32" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M35.757 20.3058L35.7457 20.2695L42.868 13.6612V10.4771H31.4415V13.6612H38.2665L38.2778 13.6916L31.2251 20.3058V23.4899H42.9827V20.3058H35.757Z" fill="currentColor"/> <path d="M49.9954 10.1724C48.6774 10.1724 47.6032 10.3738 46.773 10.7768C45.9996 11.1279 45.3481 11.7065 44.9031 12.4374C44.4773 13.1732 44.2099 13.9919 44.1186 14.8398L47.5856 15.3336C47.7111 14.5849 47.9619 14.0543 48.3381 13.7416C48.7658 13.4145 49.2929 13.2493 49.828 13.2744C50.5318 13.2744 51.0422 13.4651 51.3593 13.8464C51.6737 14.2278 51.8335 14.7559 51.8335 15.4518V15.7989H48.4999C46.8031 15.7989 45.584 16.1802 44.8429 16.9429C44.1017 17.7055 43.7317 18.7122 43.7329 19.963C43.7329 21.2442 44.1029 22.1975 44.8429 22.8229C45.5828 23.4483 46.5134 23.759 47.6346 23.7552C49.0254 23.7552 50.0953 23.2703 50.8439 22.3005C51.2863 21.7044 51.602 21.0222 51.7714 20.2966H51.8973L52.3752 23.4806H55.5167V15.4175C55.5167 13.7511 55.0836 12.4603 54.217 11.5451C53.3504 10.6299 51.9431 10.1724 49.9954 10.1724ZM51.0942 20.1116C50.5956 20.533 49.9427 20.7427 49.1301 20.7427C48.4604 20.7427 47.9952 20.6239 47.7343 20.3862C47.6072 20.2737 47.5061 20.1343 47.4381 19.9778C47.3702 19.8212 47.337 19.6515 47.3411 19.4806C47.3337 19.3193 47.3587 19.1583 47.4146 19.0072C47.4706 18.8561 47.5563 18.7181 47.6665 18.6016C47.7858 18.4883 47.9265 18.4006 48.08 18.3439C48.2336 18.2872 48.3969 18.2627 48.5601 18.2717H51.8391V18.491C51.8457 18.801 51.7819 19.1083 51.653 19.3893C51.5237 19.6702 51.3326 19.9174 51.0942 20.1116Z" fill="currentColor"/> <path d="M74.5146 10.4771H70.8032V23.4918H74.5146V10.4771Z" fill="currentColor"/> <path d="M96.4293 10.4771C95.3805 10.4771 94.5543 10.852 93.9499 11.602C93.5161 12.1409 93.1861 12.9373 92.9603 13.991H92.851L92.3659 10.4771H89.1958V23.4899H92.9079V16.8166C92.9079 15.9752 93.1019 15.3301 93.491 14.8814C93.8796 14.4327 94.5972 14.2084 95.6426 14.2084H97.052V10.4771H96.4293Z" fill="currentColor"/> <path d="M85.5121 10.8994C84.6463 10.377 83.553 10.1164 82.2338 10.1177C80.1565 10.1177 78.5313 10.717 77.3577 11.9156C76.1835 13.1143 75.5964 14.7667 75.5964 16.8729C75.5668 18.1463 75.8412 19.4081 76.3965 20.5508C76.9044 21.5691 77.6955 22.4142 78.6723 22.9818C79.6552 23.5576 80.825 23.8461 82.1809 23.8474C83.3534 23.8474 84.333 23.6644 85.1191 23.2983C85.8589 22.9695 86.5023 22.4542 86.9896 21.8016C87.4529 21.1609 87.7969 20.4398 88.0049 19.6737L84.8074 18.7662C84.6725 19.2643 84.4132 19.7188 84.0547 20.0856C83.6935 20.4516 83.088 20.6347 82.2394 20.6347C81.2297 20.6347 80.4771 20.3417 79.982 19.7557C79.6224 19.3325 79.3966 18.7281 79.2968 17.9445H88.0539C88.0896 17.5784 88.1086 17.2714 88.1086 17.0235V16.2132C88.1298 15.1246 87.9079 14.0452 87.4596 13.0558C87.0398 12.1545 86.3613 11.4028 85.5121 10.8994ZM82.1262 13.2198C83.6316 13.2198 84.4846 13.9704 84.6864 15.4715H79.3625C79.4473 14.9706 79.6525 14.4985 79.9591 14.0968C80.4469 13.5109 81.1695 13.2185 82.1262 13.2198Z" fill="currentColor"/> <path d="M72.7002 5.22827C72.4209 5.21865 72.1427 5.26601 71.882 5.36755C71.6212 5.46908 71.3834 5.62272 71.1821 5.81932C70.9841 6.01782 70.8285 6.25591 70.7259 6.51849C70.6233 6.78106 70.5756 7.06239 70.5858 7.34464C70.576 7.62871 70.6236 7.91183 70.7266 8.17632C70.8292 8.44082 70.9847 8.68102 71.1831 8.88192C71.3814 9.08282 71.6185 9.24012 71.8796 9.34402C72.141 9.44792 72.4198 9.49618 72.7002 9.48578C72.979 9.49645 73.2566 9.44822 73.5153 9.34419C73.7746 9.24012 74.0093 9.08252 74.205 8.88139C74.3996 8.67819 74.5507 8.43731 74.651 8.17321C74.7508 7.90912 74.7971 7.62727 74.7865 7.34464C74.7993 7.06367 74.7547 6.78307 74.6544 6.52077C74.554 6.25846 74.4007 6.02022 74.205 5.82124C74.0087 5.62227 73.7735 5.46693 73.5148 5.36516C73.2566 5.26339 72.9795 5.21742 72.7024 5.23018L72.7002 5.22827Z" fill="currentColor"/> <path d="M65.0317 10.1177C63.7675 10.1177 62.7515 10.52 61.9842 11.3246C61.4159 11.9207 60.9989 12.8105 60.7331 13.9939H60.6147L60.1293 10.4799H56.9595V27.2278H60.671V20.3297H60.8065C60.9196 20.7896 61.0785 21.2367 61.2804 21.6643C61.5945 22.3607 62.1095 22.9444 62.7574 23.3383C63.429 23.7098 64.1858 23.8947 64.9508 23.8741C66.5048 23.8741 67.6878 23.2608 68.5005 22.0342C69.3132 20.8076 69.7197 19.096 69.7197 16.8996C69.7197 14.7782 69.3263 13.1175 68.5403 11.9175C67.7539 10.7176 66.5844 10.1177 65.0317 10.1177ZM65.408 19.5479C64.9751 20.1834 64.298 20.5012 63.3761 20.5012C62.9962 20.519 62.6173 20.4447 62.2713 20.2846C61.925 20.1244 61.6215 19.8831 61.386 19.5803C60.9055 18.9689 60.666 18.1319 60.6674 17.0693V16.8214C60.6674 15.7423 60.9068 14.916 61.386 14.3428C61.8648 13.7695 62.5285 13.4861 63.3761 13.4924C64.3144 13.4924 64.9958 13.7943 65.4211 14.3981C65.8463 15.0018 66.0588 15.8439 66.0588 16.9244C66.0614 18.0417 65.8457 18.9162 65.4116 19.5479H65.408Z" fill="currentColor"/> <path d="M29.7889 20.3052H16.9478V23.4931H29.7889V20.3052Z" fill="currentColor"/> </svg></div><div class="logo-wrap w-embed"><svg width="140" height="31" viewBox="0 0 140 31" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M30.0802 17.0661H33.6726L34.722 17.7356H29.9217L27.7673 24.2871C25.3872 23.3789 23.1845 21.2752 22.2605 18.9108C21.2755 16.6193 21.2755 13.7405 22.2821 11.4394C23.2257 9.07411 25.4921 6.93791 27.9043 6.06038C29.8026 5.28686 32.3428 5.20495 34.3558 5.81377C36.666 6.46468 38.8472 8.09362 40.1152 10.2202C41.5336 12.5521 41.9321 15.5155 41.0698 18.1769C40.5253 19.9432 39.4033 21.6346 37.8587 22.8441L35.2073 18.4975L38.8982 20.5228C38.9189 20.5228 38.9296 20.4999 38.9189 20.4789L34.0844 16.3727L40.3372 17.3109C40.3588 17.3109 40.3676 17.3013 40.3676 17.2906L40.3265 17.2597L34.431 15.2257L40.5575 13.7704C40.5781 13.7704 40.5781 13.7512 40.5673 13.7405L34.2823 14.143L39.2035 10.4775C39.2142 10.4571 39.1712 10.4475 39.1614 10.4687L33.633 13.226L36.6847 7.92892C36.6847 7.92103 36.6847 7.89893 36.666 7.90945L32.6786 12.5134L33.4442 6.46485C33.4442 6.45345 33.4217 6.44293 33.4012 6.45345L31.5674 12.3266L29.962 6.27717C29.9513 6.26752 29.9297 6.25682 29.9181 6.27717L30.3605 12.5521L26.5737 7.70335C26.5621 7.69195 26.5521 7.70335 26.5414 7.713L29.4059 13.0789L23.9913 10.1683C23.9815 10.1683 23.9599 10.1797 23.9599 10.1893L28.7755 14.0797L22.6285 13.4409C22.6069 13.4523 22.6069 13.4709 22.6285 13.4805L28.5885 15.1958L22.6607 16.9093C22.6492 16.918 22.6492 16.9393 22.6607 16.9489L28.7755 16.2477L23.9706 20.2629C23.9599 20.2629 23.9499 20.2833 23.9706 20.2947L24.0351 20.2743L27.8828 18.2921L28.7864 16.8782H29.8135L29.1014 16.3833L31.4815 12.6242L30.0775 17.0632L30.0802 17.0661ZM47.8097 22.0131H43.0129L46.8543 8.52317H56.6859L55.7494 11.7246H50.7323L50.0885 14.0211H55.1065L54.2602 16.9678H49.2433L47.8097 22.0131ZM58.9095 22.0132H54.1682L56.9799 12.1582H61.7221L58.9095 22.0132ZM61.979 11.2182H57.2377L58.0095 8.52335H62.7508L61.979 11.2182ZM71.2112 22.0129H66.5612L66.8915 20.91C65.954 21.6879 64.9987 22.2472 63.4737 22.2472C61.929 22.2472 60.9558 21.5239 60.9558 19.9875C60.9558 18.2883 61.6363 15.7564 62.6463 13.9848C63.3814 12.6642 64.7049 11.9781 66.2674 11.9781C67.6079 11.9781 68.6009 12.556 68.9867 13.2792L70.3102 8.52388H75.0514L71.2112 22.0129ZM67.6456 15.0868C67.222 15.0868 66.8003 15.2145 66.5612 15.7925C66.212 16.624 65.8994 17.4381 65.8994 18.2512C65.8994 18.6319 66.1752 18.9569 66.6345 18.9569C67.0016 18.9569 67.2406 18.8485 67.443 18.7225L68.3993 15.485C68.2339 15.25 67.9393 15.0868 67.6456 15.0868ZM84.5988 17.7096H78.0569C77.928 18.2328 77.8 18.595 77.8 19.0107C77.8 19.2098 77.8367 19.7164 78.4975 19.7164C79.1593 19.7164 79.4537 19.4626 79.7286 18.505H84.3786C83.7906 21.3073 80.4092 22.2649 78.3327 22.2649C75.5201 22.2649 73.3337 21.8677 73.3337 19.2098C73.3337 17.7449 74.0867 15.3222 75.0797 14.0386C76.2743 12.5014 78.3507 11.9235 80.2625 11.9235C83.2032 11.9235 85.1136 12.5199 85.1136 14.9786C85.1136 15.5758 84.8568 16.8956 84.5988 17.7096ZM79.8576 14.4007C79.2692 14.4007 78.8654 14.7979 78.6076 15.7927H80.5561C80.6116 15.5936 80.685 15.2861 80.685 15.1045C80.685 14.5627 80.3537 14.4007 79.8576 14.4007ZM89.3646 22.0131H84.6228L88.464 8.52317H93.2064L89.3646 22.0131ZM95.6298 22.0132H90.8874L93.6996 12.1582H98.4414L95.6298 22.0132ZM98.6982 11.2182H93.957L94.7286 8.52335H99.4704L98.6982 11.2182ZM107.223 12.1582L107.636 14.3826H104.006L102.941 18.1248C102.848 18.4147 102.775 18.7759 102.775 19.0111C102.775 19.4445 102.959 19.5899 103.601 19.5899H104.612L103.914 22.0134H99.687C98.2902 22.0134 97.7574 21.3439 97.7574 20.3308C97.7574 19.9158 97.8126 19.4631 97.9602 18.9565L100.533 9.97006H105.274L104.649 12.1584L107.223 12.1582ZM42.9158 23.5282L44.0979 23.5273L43.3448 25.9534H42.1664L42.9158 23.5282ZM47.0411 23.5301L48.7702 23.5293L49.2134 25.1466H49.2251L49.7256 23.5284L50.7518 23.5275L49.9934 25.9483L48.3385 25.9536L47.8595 24.2252H47.8514L47.3268 25.9501L46.3006 25.951L47.0411 23.5301ZM52.9926 23.5312L54.2935 23.5303L54.5219 25.0552L55.712 23.5285L56.9162 23.5276L54.9311 25.9494L53.4859 25.9512L52.9926 23.5312ZM59.1821 23.532L61.8711 23.5294L61.7197 24.0211L60.1733 24.0219L60.0239 24.5196L61.4735 24.5187L61.3284 24.9856L59.8788 24.9865L59.7292 25.4667L61.2917 25.4656L61.1341 25.9564L58.4309 25.9582L59.1821 23.532ZM70.7296 24.1226L69.8092 24.1237L69.991 23.535L73.0129 23.5324L72.8312 24.121L71.9108 24.1218L71.3467 25.9471L70.1656 25.948L70.7296 24.1226ZM75.4583 23.5289L77.2491 23.5271L77.335 25.1464H77.3431L78.4114 23.5263L80.2093 23.5245L79.4625 25.9515L78.3675 25.9524L78.9289 24.1252H78.9209L77.5901 25.9533L76.4486 25.9542L76.2866 24.1272H76.2748L75.7143 25.9489L74.7114 25.9498L75.4583 23.5289ZM87.7332 23.5301L89.4606 23.5293L89.9058 25.1466H89.9172L90.4176 23.5275H91.443L90.693 25.9536L89.0166 25.9492L88.5516 24.2252H88.5438L88.0074 25.9501L86.9802 25.951L87.7332 23.5301ZM94.2768 24.1189L93.3552 24.1198L93.537 23.5305L96.5598 23.5287L96.378 24.1172L95.457 24.118L94.8936 25.9496L93.7116 25.9504L94.2768 24.1189ZM114.808 20.0308C114.098 20.0308 113.519 20.5999 113.519 21.2994C113.519 21.998 114.098 22.5679 114.808 22.5679C115.519 22.5679 116.098 21.9978 116.098 21.2994C116.098 20.5999 115.519 20.0308 114.808 20.0308ZM114.808 22.3425C114.527 22.3425 114.257 22.2326 114.059 22.037C113.86 21.8414 113.748 21.5761 113.748 21.2995C113.748 21.0228 113.86 20.7575 114.059 20.5619C114.257 20.3663 114.527 20.2564 114.808 20.2564C115.09 20.2564 115.359 20.3663 115.558 20.5619C115.757 20.7575 115.868 21.0228 115.868 21.2995C115.868 21.5761 115.757 21.8414 115.558 22.037C115.359 22.2326 115.09 22.3425 114.808 22.3425Z" fill="currentColor"/> <path d="M115.325 21.0362C115.325 20.7844 115.175 20.6425 114.857 20.6425H114.355V21.9497H114.587V21.4149H114.766L115.097 21.9497H115.354L115.006 21.3965C115.187 21.3746 115.325 21.2636 115.325 21.0362ZM114.587 21.2115V20.8451H114.766C114.915 20.8424 115.082 20.8512 115.082 21.0266C115.082 21.2029 114.915 21.2117 114.766 21.2117L114.587 21.2115ZM65.4936 24.2648C65.4676 24.2376 65.4658 24.1917 65.4776 24.1547C65.5161 24.0314 65.6719 23.9504 65.9217 23.9504C66.0686 23.9495 66.295 23.9661 66.3595 24.0174C66.3913 24.0381 66.4152 24.0687 66.4274 24.1043C66.4396 24.1398 66.4393 24.1783 66.4268 24.2138H67.4734C67.597 23.7804 67.3194 23.5011 66.1374 23.5029C65.0146 23.5038 64.3779 23.7407 64.2141 24.2694C64.172 24.4069 64.1667 24.5769 64.2831 24.6905C64.5723 24.9741 65.8779 25.0869 65.988 25.2402C65.9998 25.2558 66.0075 25.274 66.0105 25.2932C66.0135 25.3125 66.0115 25.3321 66.0049 25.3504C65.9449 25.5451 65.6646 25.5953 65.4202 25.5953C65.2644 25.5953 65.062 25.5626 65.0039 25.4993C64.9494 25.436 64.9494 25.3381 64.9806 25.2755L63.8847 25.2773C63.7753 25.6535 63.7279 26.0445 65.251 26.0438C66.5287 26.042 67.1144 25.7345 67.2612 25.2562C67.3337 25.0219 67.262 24.8916 67.1788 24.8088C66.8949 24.5211 65.6305 24.4155 65.4936 24.2648ZM82.6153 23.5322L85.3039 23.5296L85.1527 24.0212L83.6065 24.0221L83.4565 24.5199L84.9055 24.519L84.7603 24.9859L83.3119 24.9866L83.1625 25.4678L84.7237 25.466L84.5665 25.9566L81.8641 25.9583L82.6153 23.5322ZM113.624 12.1578L111.05 17.6187L111.124 12.1578H106.328L107.246 22.0129C107.129 22.5899 106.935 22.9149 106.567 23.0753C106.164 23.2515 105.254 23.2198 104.934 23.2021L104.876 23.2056L104.119 25.8836L107.356 25.8863C109.268 25.8863 110.205 24.941 111.566 22.8443L118.475 12.1575L113.624 12.1578ZM99.6259 24.2589C99.5995 24.2317 99.5989 24.1848 99.6097 24.1487C99.6481 24.0254 99.8047 23.9444 100.054 23.9444C100.201 23.9435 100.427 23.9602 100.492 24.0114C100.523 24.0321 100.547 24.0627 100.559 24.0982C100.571 24.1338 100.571 24.1724 100.559 24.2078H101.606C101.729 23.7744 101.452 23.4952 100.27 23.4969C99.1477 23.4978 98.5099 23.7348 98.3473 24.2634C98.3041 24.401 98.2987 24.5709 98.4151 24.6846C98.7043 24.9682 100.01 25.081 100.12 25.2343C100.132 25.2498 100.139 25.2681 100.142 25.2873C100.145 25.3065 100.144 25.3261 100.137 25.3445C100.078 25.5391 99.7969 25.5893 99.5521 25.5893C99.3967 25.5893 99.1939 25.5567 99.1357 25.4934C99.0811 25.43 99.0811 25.3322 99.1123 25.2695L98.0167 25.2713C97.9075 25.6475 97.8601 26.0385 99.3829 26.0378C100.661 26.036 101.246 25.7286 101.394 25.2503C101.465 25.0159 101.394 24.8856 101.311 24.8028C101.028 24.5153 99.7627 24.4095 99.6259 24.2589Z" fill="currentColor"/> </svg></div><div class="logo-wrap w-embed"><svg width="110" height="48" viewBox="0 0 110 48" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M30.9951 40.5057C28.7147 40.5057 26.555 40.0496 24.5831 39.2313C21.6319 37.9972 19.11 35.9314 17.3259 33.3291C15.5418 30.7267 14.5089 27.6011 14.5089 24.2207C14.5089 21.9671 14.965 19.8343 15.8101 17.8758C17.0576 14.9515 19.1503 12.4698 21.7795 10.7125C24.4087 8.95526 27.5744 7.93578 30.9951 7.93578V5.48096C28.3793 5.48096 25.8842 6.00411 23.6038 6.95653C20.1966 8.37845 17.2991 10.7528 15.2601 13.7442C13.2077 16.7356 12.0139 20.344 12.0139 24.2207C12.0139 26.8097 12.5504 29.2779 13.5028 31.5181C14.9382 34.8851 17.3527 37.7424 20.371 39.7679C23.4026 41.7935 27.0513 42.9739 30.9817 42.9739V40.5057H30.9951Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M22.5441 34.2144C21.0014 32.9266 19.8478 31.3705 19.0698 29.6669C18.2918 27.9633 17.8893 26.1255 17.8893 24.2744C17.8893 22.7988 18.1442 21.3232 18.6405 19.9147C19.1503 18.5062 19.9015 17.1648 20.9344 15.9441C22.2221 14.4148 23.7916 13.2612 25.4952 12.4832C27.1989 11.7052 29.0634 11.3161 30.9146 11.3161C32.3902 11.3161 33.8792 11.571 35.2877 12.0673C36.7096 12.5771 38.051 13.3283 39.2717 14.3478L40.868 12.4564C39.4193 11.2491 37.8096 10.3369 36.1194 9.74667C34.4292 9.14302 32.6719 8.84791 30.9146 8.84791C28.7013 8.84791 26.5013 9.31741 24.4623 10.243C22.4234 11.1686 20.5588 12.5503 19.0295 14.3612C17.8088 15.8099 16.9101 17.4062 16.3064 19.083C15.7028 20.7598 15.4077 22.5171 15.4077 24.2744C15.4077 26.4743 15.8772 28.6743 16.8028 30.6998C17.7284 32.7254 19.1234 34.59 20.9478 36.1058L22.5441 34.2144Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M26.3671 32.6181C24.744 31.7596 23.4697 30.512 22.5977 29.0499C21.7258 27.5877 21.2697 25.8975 21.2697 24.1939C21.2697 22.6915 21.6185 21.1757 22.3831 19.7672C23.2416 18.144 24.5026 16.8831 25.9781 16.0246C27.4537 15.1527 29.1439 14.6966 30.8609 14.6966C32.3633 14.6966 33.8926 15.0453 35.3145 15.7965L36.4681 13.61C34.684 12.671 32.7524 12.2149 30.8475 12.2283C28.6878 12.2283 26.5549 12.8052 24.7038 13.8917C22.8526 14.9783 21.2563 16.588 20.1832 18.6135C19.2441 20.3977 18.7881 22.3159 18.7881 24.1939C18.7881 26.3402 19.3649 28.4596 20.4648 30.2974C21.5648 32.1486 23.1745 33.7181 25.2135 34.7912L26.3671 32.6181Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M31.0085 30.2571C30.1634 30.2571 29.3586 30.0827 28.6342 29.7742C27.5342 29.3181 26.6086 28.5401 25.9513 27.5609C25.294 26.5816 24.905 25.4146 24.905 24.1536C24.905 23.3085 25.0794 22.5037 25.3879 21.7793C25.844 20.6927 26.622 19.7537 27.6013 19.0964C28.5805 18.4391 29.7476 18.0501 31.0085 18.0501V15.5819C29.8281 15.5819 28.7013 15.8233 27.6684 16.2526C26.1257 16.9099 24.8245 17.983 23.8989 19.3513C22.9599 20.733 22.4234 22.3963 22.4234 24.167C22.4234 25.3475 22.6648 26.4743 23.0941 27.5072C23.7514 29.0498 24.8379 30.351 26.2062 31.2766C27.5745 32.1888 29.2244 32.7254 31.0085 32.7254V30.2571Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M33.0207 22.2085C32.739 21.9134 32.4304 21.672 32.1219 21.4976C31.8134 21.3232 31.4914 21.2293 31.1561 21.2293C30.7 21.2293 30.311 21.3098 29.9488 21.4707C29.6 21.6317 29.2915 21.8463 29.0366 22.128C28.7817 22.3963 28.5939 22.7183 28.4598 23.067C28.3256 23.4158 28.272 23.7914 28.272 24.167C28.272 24.5426 28.3391 24.9182 28.4598 25.267C28.5939 25.6158 28.7817 25.9377 29.0366 26.206C29.2915 26.4743 29.5866 26.7023 29.9488 26.8633C30.2975 27.0243 30.7 27.1048 31.1561 27.1048C31.5317 27.1048 31.8939 27.0243 32.2158 26.8767C32.5377 26.7157 32.8194 26.4877 33.0475 26.1926L34.684 27.9499C34.4426 28.1913 34.1609 28.4059 33.8389 28.5803C33.517 28.7547 33.195 28.9023 32.8731 29.0096C32.5511 29.1169 32.2292 29.1974 31.9341 29.2376C31.639 29.2913 31.3707 29.3047 31.1561 29.3047C30.4183 29.3047 29.7207 29.184 29.0768 28.9425C28.4195 28.7011 27.8561 28.3523 27.3866 27.8962C26.9037 27.4535 26.5281 26.9035 26.2464 26.2731C25.9647 25.6426 25.8306 24.9316 25.8306 24.167C25.8306 23.389 25.9647 22.6914 26.2464 22.061C26.5281 21.4305 26.9037 20.8939 27.3866 20.4378C27.8696 19.9952 28.433 19.6464 29.0768 19.3915C29.7341 19.1501 30.4317 19.0293 31.1561 19.0293C31.7865 19.0293 32.417 19.1501 33.0475 19.3915C33.678 19.633 34.2414 20.0086 34.7109 20.5183L33.0207 22.2085Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M41.9277 23.1877C41.9143 22.4633 41.6863 21.8999 41.257 21.4841C40.8143 21.0682 40.2107 20.867 39.4327 20.867C38.6949 20.867 38.1181 21.0817 37.6888 21.4975C37.2596 21.9133 36.9913 22.4902 36.8974 23.1877H41.9277ZM36.9108 25.0255C36.9913 25.7633 37.273 26.3267 37.7693 26.7425C38.2656 27.1449 38.8559 27.3596 39.5534 27.3596C40.1705 27.3596 40.6802 27.2388 41.0961 26.984C41.5119 26.7291 41.8741 26.4206 42.196 26.0315L43.9533 27.3596C43.3765 28.0705 42.746 28.5668 42.0351 28.8754C41.3241 29.1705 40.5863 29.318 39.8083 29.318C39.0705 29.318 38.3729 29.1973 37.7291 28.9559C37.0718 28.7144 36.5084 28.3656 36.0389 27.9095C35.5559 27.4669 35.1803 26.9169 34.8986 26.2864C34.6169 25.6559 34.4828 24.945 34.4828 24.1804C34.4828 23.4023 34.6169 22.7048 34.8986 22.0743C35.1803 21.4438 35.5559 20.9073 36.0389 20.4512C36.5218 20.0085 37.0852 19.6597 37.7291 19.4049C38.3864 19.1634 39.0839 19.0427 39.8083 19.0427C40.4924 19.0427 41.1095 19.1634 41.6729 19.4049C42.2363 19.6463 42.7192 19.9817 43.1216 20.4378C43.524 20.8804 43.8326 21.4438 44.0606 22.1011C44.2887 22.7584 44.396 23.5231 44.396 24.3816V25.0523H36.9108V25.0255Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M45.4289 19.2709H47.8837V20.8135H47.9239C48.1922 20.2367 48.5812 19.8074 49.091 19.4855C49.6007 19.177 50.1775 19.016 50.8214 19.016C50.969 19.016 51.1165 19.0294 51.2641 19.0562C51.4117 19.0831 51.5592 19.1233 51.7068 19.1635V21.5245C51.5056 21.4708 51.3043 21.4306 51.1031 21.3903C50.9019 21.3501 50.7141 21.3367 50.5263 21.3367C49.9495 21.3367 49.4934 21.444 49.1446 21.6586C48.7959 21.8732 48.5276 22.1147 48.3532 22.383C48.1654 22.6513 48.0447 22.933 47.991 23.2013C47.9239 23.4695 47.8971 23.6708 47.8971 23.8183V29.0499H45.4423V19.2709H45.4289Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M59.1786 23.1877C59.1652 22.4633 58.9371 21.8999 58.5079 21.4841C58.0652 21.0682 57.4615 20.867 56.6835 20.867C55.9457 20.867 55.3689 21.0817 54.9396 21.4975C54.5104 21.9133 54.2421 22.4902 54.1482 23.1877H59.1786ZM54.1616 25.0255C54.2421 25.7633 54.5238 26.3267 55.0201 26.7425C55.5165 27.1449 56.1067 27.3596 56.8042 27.3596C57.4213 27.3596 57.931 27.2388 58.3469 26.984C58.7627 26.7291 59.1249 26.4206 59.4469 26.0315L61.2041 27.3596C60.6273 28.0705 59.9968 28.5668 59.2859 28.8754C58.5749 29.1705 57.8371 29.318 57.0591 29.318C56.3213 29.318 55.6238 29.1973 54.9799 28.9559C54.3226 28.7144 53.7592 28.3656 53.2897 27.9095C52.8068 27.4669 52.4312 26.9169 52.1495 26.2864C51.8678 25.6559 51.7336 24.945 51.7336 24.1804C51.7336 23.4023 51.8678 22.7048 52.1495 22.0743C52.4312 21.4438 52.8068 20.9073 53.2897 20.4512C53.7726 20.0085 54.336 19.6597 54.9799 19.4049C55.6372 19.1634 56.3347 19.0427 57.0591 19.0427C57.7432 19.0427 58.3603 19.1634 58.9237 19.4049C59.4871 19.6463 59.97 19.9817 60.3724 20.4378C60.7749 20.8804 61.0834 21.4438 61.3114 22.1011C61.5395 22.7584 61.6468 23.5231 61.6468 24.3816V25.0523H54.1616V25.0255Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M70.6612 24.167C70.6612 23.7914 70.5941 23.4158 70.46 23.0671C70.3259 22.7183 70.1381 22.3964 69.8832 22.1281C69.6283 21.8598 69.3198 21.6317 68.9576 21.4708C68.5954 21.3098 68.193 21.2293 67.7369 21.2293C67.2808 21.2293 66.8784 21.3098 66.5162 21.4708C66.154 21.6317 65.8455 21.8464 65.5906 22.1281C65.3357 22.3964 65.1479 22.7183 65.0138 23.0671C64.8797 23.4158 64.8126 23.7914 64.8126 24.167C64.8126 24.5426 64.8797 24.9182 65.0138 25.267C65.1479 25.6158 65.3357 25.9377 65.5906 26.206C65.8455 26.4743 66.154 26.7023 66.5162 26.8633C66.8784 27.0243 67.2808 27.1048 67.7369 27.1048C68.193 27.1048 68.5954 27.0243 68.9576 26.8633C69.3198 26.7023 69.6283 26.4877 69.8832 26.206C70.1381 25.9377 70.3259 25.6158 70.46 25.267C70.5941 24.9182 70.6612 24.5426 70.6612 24.167ZM64.9065 13.6234V20.5049H64.9736C65.0943 20.344 65.2553 20.1696 65.4431 20.0086C65.6309 19.8342 65.8723 19.6733 66.1406 19.5257C66.4223 19.3781 66.7308 19.2574 67.093 19.1635C67.4552 19.0696 67.871 19.0159 68.3405 19.0159C69.0381 19.0159 69.6954 19.1501 70.2856 19.4184C70.8758 19.6867 71.3856 20.0488 71.8014 20.5049C72.2173 20.9744 72.5526 21.511 72.7807 22.1415C73.0087 22.772 73.1295 23.4427 73.1295 24.167C73.1295 24.8914 73.0221 25.5621 72.7941 26.1926C72.5795 26.8231 72.2441 27.3596 71.8283 27.8291C71.399 28.2986 70.8893 28.6608 70.2722 28.9157C69.6686 29.184 68.9844 29.3181 68.2198 29.3181C67.5223 29.3181 66.865 29.184 66.2479 28.9157C65.6443 28.6474 65.1614 28.2047 64.7992 27.6145H64.7589V29.0901H62.398V13.6234H64.9065Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M74.1892 19.2709H76.644V20.8135H76.6842C76.9525 20.2367 77.3415 19.8074 77.8513 19.4855C78.361 19.177 78.9378 19.016 79.5817 19.016C79.7293 19.016 79.8768 19.0294 80.0244 19.0562C80.172 19.0831 80.3195 19.1233 80.4671 19.1635V21.5245C80.2659 21.4708 80.0646 21.4306 79.8634 21.3903C79.6622 21.3501 79.4744 21.3367 79.2866 21.3367C78.7098 21.3367 78.2537 21.444 77.9049 21.6586C77.5562 21.8732 77.2879 22.1147 77.1135 22.383C76.9257 22.6513 76.805 22.933 76.7513 23.2013C76.6842 23.4695 76.6574 23.6708 76.6574 23.8183V29.0499H74.2026V19.2709H74.1892Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M86.9462 24.6767H86.423C86.0742 24.6767 85.6852 24.6901 85.256 24.7169C84.8267 24.7438 84.4243 24.8108 84.0353 24.9047C83.6597 25.0121 83.3377 25.1596 83.0694 25.3474C82.8011 25.5486 82.6804 25.8169 82.6804 26.1791C82.6804 26.4071 82.7341 26.6084 82.8414 26.7559C82.9487 26.9169 83.0829 27.051 83.2438 27.1583C83.4048 27.2657 83.5926 27.3461 83.8072 27.3998C84.0084 27.4535 84.2231 27.4669 84.4243 27.4669C85.2828 27.4669 85.9133 27.2657 86.3291 26.8632C86.7315 26.4608 86.9462 25.9108 86.9462 25.2267V24.6767ZM87.0267 27.7217C86.6645 28.2851 86.2084 28.6876 85.6584 28.9424C85.1084 29.1973 84.4914 29.318 83.8341 29.318C83.378 29.318 82.9353 29.251 82.4926 29.1302C82.05 29.0095 81.6743 28.8217 81.3256 28.5803C80.9902 28.3388 80.7085 28.0303 80.5073 27.6681C80.3061 27.3059 80.1988 26.8766 80.1988 26.3803C80.1988 25.8437 80.2927 25.4011 80.4939 25.0255C80.6817 24.6499 80.95 24.3413 81.2719 24.0865C81.5939 23.8316 81.9695 23.6304 82.3987 23.4828C82.828 23.3353 83.2706 23.2145 83.7402 23.1475C84.2097 23.067 84.6657 23.0267 85.1487 22.9999C85.6182 22.9731 86.0608 22.9731 86.4767 22.9731H87.0937V22.7048C87.0937 22.0877 86.8791 21.6316 86.4498 21.3231C86.0206 21.0146 85.4706 20.867 84.8133 20.867C84.2901 20.867 83.7938 20.9609 83.3377 21.1487C82.8816 21.3365 82.4792 21.578 82.1573 21.8999L80.8427 20.6122C81.3926 20.0488 82.0499 19.6597 82.7877 19.4049C83.5255 19.1634 84.2901 19.0427 85.0816 19.0427C85.7925 19.0427 86.3828 19.1232 86.8657 19.2707C87.3486 19.4317 87.751 19.6329 88.073 19.8744C88.3949 20.1158 88.6364 20.3975 88.8108 20.7195C88.9851 21.0414 89.1059 21.3634 89.1864 21.6853C89.2668 22.0072 89.3071 22.3292 89.3205 22.6377C89.3339 22.9462 89.3473 23.2145 89.3473 23.4426V29.0766H87.1071V27.7217H87.0267Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M96.0142 21.9804C95.5313 21.3097 94.8874 20.9744 94.0826 20.9744C93.7472 20.9744 93.4253 21.0548 93.1168 21.2158C92.7948 21.3768 92.6473 21.6451 92.6473 22.0073C92.6473 22.3024 92.7814 22.5304 93.0363 22.6646C93.2911 22.7987 93.6265 22.9194 94.0289 23.0133C94.4314 23.1072 94.8606 23.2011 95.3167 23.3084C95.7728 23.4158 96.202 23.5633 96.6045 23.7779C97.0069 23.9926 97.3289 24.2743 97.5971 24.6499C97.852 25.0121 97.9861 25.5218 97.9861 26.1657C97.9861 26.7559 97.8654 27.2388 97.6105 27.6413C97.3557 28.0437 97.0337 28.3656 96.6179 28.6071C96.2155 28.8486 95.7594 29.0229 95.2496 29.1437C94.7399 29.251 94.2301 29.3046 93.7338 29.3046C92.9692 29.3046 92.2582 29.1973 91.6143 28.9827C90.9705 28.7681 90.3937 28.3656 89.8839 27.8022L91.5339 26.273C91.8558 26.6218 92.1912 26.9169 92.5534 27.1449C92.9155 27.373 93.3582 27.4803 93.8814 27.4803C94.0558 27.4803 94.2436 27.4535 94.4314 27.4132C94.6192 27.373 94.807 27.3059 94.9679 27.212C95.1289 27.1181 95.263 26.9974 95.3704 26.8498C95.4777 26.7023 95.5179 26.5413 95.5179 26.3535C95.5179 26.0181 95.3838 25.7633 95.1289 25.6023C94.874 25.4413 94.5387 25.3072 94.1362 25.1999C93.7338 25.0925 93.3046 24.9986 92.8485 24.9182C92.3924 24.8243 91.9631 24.6901 91.5607 24.4889C91.1583 24.2877 90.8363 24.0194 90.568 23.6572C90.3132 23.3084 90.179 22.8121 90.179 22.1816C90.179 21.6317 90.2863 21.1622 90.5144 20.7597C90.7424 20.3573 91.0375 20.0354 91.4131 19.7671C91.7887 19.5122 92.2046 19.3244 92.6875 19.1903C93.1704 19.0695 93.6533 19.0024 94.1497 19.0024C94.807 19.0024 95.4643 19.1098 96.1081 19.3378C96.752 19.5659 97.2752 19.9415 97.6776 20.4914L96.0142 21.9804Z" fill="currentColor"/> </svg></div><div class="logo-wrap w-embed"><svg width="120" height="38" viewBox="0 0 120 38" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M19.0937 13.6757V7.22754H19.7604V13.7049L26.105 7.35426V14.1609H28.821V23.8742H26.105V30.7188L19.7604 24.3681V31.2275H19.0937V24.3974L12.7777 30.7188V23.8742H10.061V14.1609H12.777V7.35438L19.0937 13.6757ZM18.636 14.1609L13.4437 8.9647V14.1609H18.636ZM12.777 14.8275H10.7277V23.2075H12.7771L12.7777 20.6922L18.6361 14.8289H12.777V14.8275ZM19.0937 15.3141L13.4444 20.9682V29.1083L19.0937 23.4542V15.3141ZM19.775 15.2995V23.4396L25.4384 29.1083L25.4383 20.9682L19.775 15.2995ZM26.105 23.2075V20.6922L20.2472 14.8289H26.105V14.8275H28.1544V23.2075H26.105ZM25.4384 14.1609V8.96482L20.2472 14.1609H25.4384Z" fill="currentColor"/> <path d="M47.0331 15.9102C47.4284 15.1708 47.9811 14.6015 48.6938 14.2008C49.4051 13.8015 50.2398 13.6015 51.1971 13.6015C52.1545 13.6015 52.9471 13.7982 53.6104 14.1922C54.2744 14.5862 54.7711 15.1082 55.0998 15.7582C55.4284 16.4088 55.5931 17.1215 55.5931 17.8962V18.9695H48.1458C48.2058 19.9002 48.5198 20.6402 49.0878 21.1888C49.6558 21.7382 50.4184 22.0122 51.3764 22.0122C52.1538 22.0122 52.7498 21.8542 53.1618 21.5382C53.5751 21.2222 53.8765 20.7842 54.0685 20.2228H55.7738C55.5464 21.0935 55.0831 21.8488 54.3831 22.4868C53.6838 23.1255 52.6811 23.4442 51.3771 23.4442C50.3958 23.4442 49.5311 23.2442 48.7831 22.8448C48.0358 22.4455 47.4578 21.8755 47.0511 21.1355C46.6445 20.3955 46.4411 19.5248 46.4411 18.5222C46.4411 17.5195 46.6378 16.6502 47.0331 15.9102ZM53.7991 17.6275C53.7991 16.8162 53.5898 16.1815 53.1711 15.7215C52.7524 15.2622 52.0944 15.0328 51.1964 15.0328C50.3591 15.0328 49.6738 15.2562 49.1418 15.7035C48.6091 16.1508 48.2831 16.7928 48.1638 17.6275H53.7991ZM57.8304 13.8695V15.3548C57.8304 15.4388 57.8725 15.4802 57.9565 15.4802C58.0045 15.4802 58.0398 15.4682 58.0645 15.4442C58.0891 15.4202 58.1124 15.3728 58.1358 15.3015C58.4464 14.3235 59.2184 13.8342 60.4511 13.8342H61.2405V15.4442H60.2171C59.4151 15.4442 58.8171 15.6348 58.4218 16.0168C58.0265 16.3988 57.8291 17.0248 57.8291 17.8962V23.1755H56.2138V13.8688L57.8304 13.8695ZM70.7251 21.2155C70.3005 21.9608 69.7498 22.5188 69.0738 22.8882C68.3978 23.2575 67.6704 23.4428 66.8931 23.4428C65.3618 23.4428 64.2844 22.8348 63.6624 21.6175C63.6144 21.5228 63.5544 21.4748 63.4831 21.4748C63.4118 21.4748 63.3751 21.5108 63.3751 21.5822V26.5748H61.7598V13.8702H63.3751V15.4628C63.3751 15.5342 63.4111 15.5702 63.4831 15.5702C63.5551 15.5702 63.6144 15.5222 63.6624 15.4275C64.2844 14.2102 65.3618 13.6022 66.8931 13.6022C67.6704 13.6022 68.3978 13.7875 69.0738 14.1568C69.7498 14.5262 70.2998 15.0842 70.7251 15.8302C71.1498 16.5755 71.3624 17.4742 71.3624 18.5228C71.3624 19.5715 71.1498 20.4695 70.7251 21.2155ZM68.8584 15.9542C68.2658 15.3395 67.4851 15.0322 66.5164 15.0322C65.5478 15.0322 64.7664 15.3395 64.1744 15.9542C63.5818 16.5688 63.3644 17.4248 63.3644 18.5222C63.3644 19.6195 63.5818 20.4762 64.1744 21.0902C64.7671 21.7048 65.5478 22.0122 66.5164 22.0122C67.4851 22.0122 68.2664 21.7055 68.8584 21.0902C69.4511 20.4755 69.7471 19.6195 69.7471 18.5222C69.7471 17.4248 69.4511 16.5688 68.8584 15.9542ZM73.7064 10.2902V23.1748H72.0911V10.2915H73.7064V10.2902ZM75.0364 15.9095C75.4311 15.1702 75.9844 14.6008 76.6971 14.2002C77.4084 13.8008 78.2431 13.6008 79.1998 13.6008C80.1564 13.6008 80.9505 13.7975 81.6138 14.1915C82.2778 14.5855 82.7745 15.1075 83.1031 15.7575C83.4325 16.4082 83.5965 17.1208 83.5965 17.8955V18.9688H76.1491C76.2091 19.8995 76.5231 20.6395 77.0911 21.1882C77.6591 21.7375 78.4218 22.0115 79.3798 22.0115C80.1571 22.0115 80.7524 21.8535 81.1651 21.5375C81.5784 21.2215 81.8798 20.7835 82.0718 20.2222H83.7771C83.5498 21.0928 83.0858 21.8482 82.3864 22.4862C81.6871 23.1248 80.6844 23.4435 79.3804 23.4435C78.3991 23.4435 77.5344 23.2435 76.7864 22.8442C76.0391 22.4448 75.4611 21.8748 75.0544 21.1348C74.6478 20.3948 74.4445 19.5242 74.4445 18.5215C74.4445 17.5188 74.6411 16.6495 75.0364 15.9095ZM81.8024 17.6268C81.8024 16.8155 81.5931 16.1808 81.1744 15.7208C80.7558 15.2615 80.0978 15.0322 79.1998 15.0322C78.3631 15.0322 77.6771 15.2555 77.1451 15.7028C76.6124 16.1502 76.2871 16.7922 76.1671 17.6268H81.8024ZM82.8778 22.8168L86.5744 18.2528L83.5418 14.2268V13.8688H85.3185L87.8498 17.3402L90.5778 13.8688H92.3898V14.2448L88.9084 18.5222L92.1211 22.8168V23.1748H90.3804L87.6344 19.4348L84.6918 23.1748H82.8791V22.8168H82.8778ZM94.7351 10.8402V12.8542H92.8484V10.8402H94.7351ZM94.6371 23.1755H93.0211V13.8695H94.6371V23.1755ZM95.1464 13.8695H96.9038V11.3642H98.5198V13.8695H100.369L100.823 15.2335H98.5198V19.6855C98.5198 20.2935 98.5044 20.7442 98.4744 21.0368C98.4444 21.3295 98.4298 21.5055 98.4298 21.5648C98.4298 21.6488 98.4531 21.7142 98.5011 21.7615C98.5491 21.8095 98.6144 21.8328 98.6991 21.8328C98.7584 21.8328 98.9351 21.8182 99.2285 21.7882C99.5211 21.7582 99.9731 21.7435 100.584 21.7435H101.212V23.1748H99.9558C98.9264 23.1748 98.1604 22.9248 97.6584 22.4228C97.1564 21.9215 96.9044 21.1588 96.9044 20.1322V15.2328H95.1478V13.8688L95.1464 13.8695ZM100.856 13.8695H102.502L105.176 21.6768C105.213 21.7728 105.27 21.8988 105.453 21.8988C105.636 21.8988 105.693 21.7722 105.729 21.6768L108.403 13.8695H109.939V14.2275L106.594 24.2668C106.306 25.1262 105.903 25.7255 105.383 26.0655C104.862 26.4055 104.258 26.5755 103.252 26.5755H101.529V25.1442H102.84C103.258 25.1442 103.599 25.1588 103.862 25.1888C104.125 25.2188 104.293 25.2335 104.365 25.2335C104.568 25.2335 104.706 25.1442 104.778 24.9655L105.281 23.6055C105.341 23.4628 105.346 23.3555 105.299 23.2828C105.275 23.2348 105.246 23.2048 105.21 23.1935C105.174 23.1815 105.12 23.1755 105.048 23.1755H103.954L100.857 13.8702L100.856 13.8695ZM45.4145 21.2308C44.9898 21.9762 44.4391 22.5342 43.7631 22.9035C43.0871 23.2728 42.3598 23.4582 41.5825 23.4582C40.0511 23.4582 38.9738 22.8502 38.3518 21.6328C38.3038 21.5382 38.2438 21.4902 38.1724 21.4902C38.1011 21.4902 38.0645 21.5262 38.0645 21.5975V26.5902H36.4491V13.8855H38.0645V15.4782C38.0645 15.5495 38.1004 15.5855 38.1724 15.5855C38.2444 15.5855 38.3038 15.5375 38.3518 15.4428C38.9731 14.2255 40.0511 13.6175 41.5825 13.6175C42.3598 13.6175 43.0871 13.8028 43.7631 14.1722C44.4391 14.5415 44.9891 15.0995 45.4145 15.8448C45.8391 16.5902 46.0518 17.4888 46.0518 18.5382C46.0518 19.5875 45.8391 20.4855 45.4145 21.2308ZM43.5478 15.9695C42.9551 15.3548 42.1745 15.0475 41.2058 15.0475C40.2371 15.0475 39.4558 15.3548 38.8638 15.9695C38.2711 16.5842 38.0538 17.4402 38.0538 18.5375C38.0538 19.6348 38.2711 20.4915 38.8638 21.1055C39.4565 21.7202 40.2371 22.0275 41.2058 22.0275C42.1745 22.0275 42.9558 21.7208 43.5478 21.1055C44.1404 20.4908 44.4365 19.6348 44.4365 18.5375C44.4365 17.4402 44.1404 16.5842 43.5478 15.9695Z" fill="currentColor"/> </svg></div><div class="logo-wrap w-embed"><svg width="112" height="23" viewBox="0 0 112 23" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M13.8257 10.0684C14.0533 9.93757 14.3112 9.86871 14.5737 9.86871C14.8362 9.86871 15.0941 9.93757 15.3217 10.0684L16.5166 10.758C16.5547 10.7794 16.5953 10.796 16.6376 10.8075L16.663 10.8143C16.7042 10.8246 16.7455 10.8308 16.7874 10.8315L16.7936 10.8322C16.7984 10.8322 16.8026 10.8308 16.8074 10.8301C16.846 10.8293 16.8845 10.8245 16.9222 10.8157L16.9414 10.8109C16.9821 10.7995 17.0214 10.7833 17.0583 10.7628L17.0707 10.758L19.4597 9.37884C19.5437 9.33017 19.6135 9.26029 19.662 9.1762C19.7105 9.0921 19.7361 8.99673 19.7361 8.89965V6.14072C19.7361 6.04362 19.7106 5.94823 19.6621 5.86412C19.6136 5.78001 19.5438 5.71014 19.4597 5.66153L17.0707 4.28241C16.9865 4.23383 16.8911 4.20826 16.794 4.20826C16.6968 4.20826 16.6014 4.23383 16.5172 4.28241L14.1275 5.66153C14.1234 5.66359 14.1206 5.66703 14.1179 5.66909C14.0813 5.69094 14.0473 5.71701 14.0168 5.74678C14.0127 5.75159 14.0086 5.75709 14.0037 5.76122C13.9769 5.78951 13.9531 5.82063 13.9329 5.85403C13.9302 5.85953 13.9261 5.86434 13.9226 5.86984C13.9022 5.90638 13.8861 5.94513 13.8745 5.98534L13.8676 6.01216C13.8567 6.05438 13.8509 6.09778 13.8504 6.14141V7.52053C13.8504 8.05334 13.5644 8.54971 13.1031 8.81577C12.8755 8.94661 12.6176 9.01546 12.3551 9.01546C12.0926 9.01546 11.8347 8.94661 11.6071 8.81577L10.4123 8.12621C10.3665 8.10005 10.3172 8.08082 10.2658 8.06915C10.2253 8.05907 10.1838 8.05376 10.1421 8.05334L10.1228 8.05403C10.0839 8.05503 10.0452 8.0601 10.0073 8.06915C10.0004 8.07053 9.99425 8.07121 9.98806 8.07328C9.94738 8.08476 9.90816 8.1009 9.87119 8.1214C9.86707 8.12415 9.86294 8.12484 9.8595 8.1269L7.47044 9.50602C7.38644 9.55469 7.31669 9.62456 7.26819 9.70866C7.21968 9.79276 7.19412 9.88813 7.19407 9.98521V12.7441C7.19407 12.9421 7.29926 13.1243 7.47044 13.2233L9.8595 14.6025L9.8705 14.6073C9.90831 14.6279 9.9475 14.6444 9.98738 14.6554L10.008 14.6595C10.0458 14.6691 10.0836 14.674 10.1221 14.6746C10.1269 14.6746 10.1311 14.6767 10.1359 14.6767L10.1421 14.676C10.1833 14.676 10.2246 14.6691 10.2658 14.6595L10.2926 14.652C10.3339 14.6396 10.3751 14.6245 10.4136 14.6025L11.6085 13.9129C11.836 13.7821 12.0938 13.7133 12.3562 13.7133C12.6185 13.7133 12.8763 13.7821 13.1038 13.9129C13.3309 14.0444 13.5196 14.2333 13.6508 14.4606C13.7821 14.6879 13.8514 14.9457 13.8518 15.2081V16.5873C13.8518 16.6319 13.8587 16.6753 13.869 16.7165L13.8759 16.7426C13.8874 16.7831 13.9035 16.8221 13.924 16.8588L13.9343 16.8746C13.9545 16.9078 13.9783 16.9387 14.0051 16.9668C14.0092 16.9716 14.0134 16.9771 14.0182 16.9812C14.0484 17.0108 14.0821 17.0362 14.1186 17.0596C14.122 17.0609 14.1254 17.0644 14.1282 17.0664L16.5172 18.4463C16.6014 18.4947 16.6968 18.5202 16.794 18.5202C16.8911 18.5202 16.9865 18.4947 17.0707 18.4463L19.4597 17.0671C19.5438 17.0185 19.6136 16.9487 19.6621 16.8645C19.7106 16.7804 19.7361 16.685 19.7361 16.5879V13.829C19.7361 13.7319 19.7106 13.6365 19.6621 13.5524C19.6136 13.4683 19.5438 13.3984 19.4597 13.3498L17.0707 11.97L17.059 11.9659C17.022 11.9452 16.9828 11.9288 16.9421 11.9171L16.9236 11.913C16.8853 11.9034 16.8461 11.8981 16.8067 11.8971L16.7888 11.8965C16.7466 11.8968 16.7046 11.9023 16.6637 11.913C16.6124 11.9249 16.5631 11.9441 16.5172 11.97L15.3231 12.6596C15.0956 12.7905 14.8378 12.8594 14.5754 12.8594C14.313 12.8594 14.0552 12.7905 13.8277 12.6596C13.6006 12.5281 13.4119 12.3392 13.2806 12.1119C13.1494 11.8846 13.0801 11.6268 13.0797 11.3643C13.0802 11.102 13.1495 10.8443 13.2808 10.6171C13.4121 10.3899 13.6007 10.2012 13.8277 10.0698L13.8257 10.0684ZM0.812019 9.37815L3.20108 10.758C3.28526 10.8064 3.38067 10.8319 3.4778 10.8319C3.57492 10.8319 3.67034 10.8064 3.75451 10.758L6.14357 9.37815C6.14701 9.37677 6.14976 9.37334 6.1532 9.37127C6.18958 9.34913 6.22327 9.32283 6.25357 9.2929C6.25838 9.28877 6.26182 9.28327 6.26732 9.27915C6.29396 9.25081 6.31747 9.2197 6.33745 9.18634L6.34776 9.17052C6.36821 9.13377 6.38436 9.09479 6.39588 9.05434L6.40276 9.02821C6.4137 8.98598 6.41948 8.94258 6.41995 8.89896V7.51915C6.4204 7.25678 6.48973 6.99912 6.62099 6.77194C6.75226 6.54476 6.94086 6.35602 7.16795 6.22459C7.3955 6.09369 7.65342 6.0248 7.91594 6.0248C8.17846 6.0248 8.43639 6.09369 8.66394 6.22459L9.85882 6.91415C9.90456 6.94026 9.9539 6.95949 10.0053 6.97122C10.0458 6.98134 10.0873 6.98687 10.129 6.98772H10.1359L10.1489 6.98634C10.1876 6.98531 10.2261 6.98024 10.2638 6.97122C10.2706 6.96984 10.2768 6.96915 10.283 6.96709C10.3239 6.95566 10.3634 6.93951 10.4006 6.91897L10.4116 6.91415L12.8006 5.53366C12.8848 5.48513 12.9547 5.4153 13.0034 5.33119C13.052 5.24707 13.0776 5.15163 13.0777 5.05447V2.29622C13.0776 2.19906 13.052 2.10362 13.0034 2.01951C12.9547 1.93539 12.8848 1.86556 12.8006 1.81704L10.4116 0.437916C10.3274 0.389342 10.232 0.36377 10.1348 0.36377C10.0377 0.36377 9.94226 0.389342 9.85813 0.437916L7.46907 1.81704L7.45944 1.8246C7.42307 1.8465 7.38939 1.87257 7.35907 1.90229C7.35426 1.9071 7.35082 1.9126 7.34532 1.91741C7.31872 1.94553 7.29522 1.97642 7.2752 2.00954L7.26488 2.02535C7.24443 2.0621 7.22829 2.10109 7.21676 2.14154L7.20988 2.16766C7.19893 2.20989 7.19316 2.25329 7.19269 2.29691V3.67603C7.19269 4.20885 6.90601 4.70522 6.4447 4.97128C6.21722 5.10205 5.95943 5.17087 5.69704 5.17087C5.43466 5.17087 5.17686 5.10205 4.94939 4.97128L3.75451 4.28241C3.70859 4.25615 3.659 4.23692 3.60739 4.22535C3.56688 4.21526 3.52537 4.20972 3.48364 4.20885L3.46508 4.21022C3.42595 4.21102 3.38702 4.21586 3.34889 4.22466L3.33033 4.22947C3.2894 4.24089 3.24995 4.25705 3.21276 4.2776L3.20108 4.28241L0.812019 5.66153C0.727965 5.71014 0.658179 5.78001 0.609668 5.86412C0.561157 5.94823 0.535628 6.04362 0.535645 6.14072V8.89965C0.535645 9.09696 0.640832 9.27984 0.812019 9.37815ZM12.802 17.1923L10.4129 15.8124L10.4013 15.8083C10.3643 15.7878 10.3251 15.7717 10.2844 15.7602L10.2644 15.7554C10.2266 15.7464 10.1879 15.7413 10.1489 15.7403L10.1304 15.7396C10.0884 15.74 10.0466 15.7455 10.0059 15.7561L9.9805 15.7629C9.93828 15.7747 9.89765 15.7916 9.8595 15.8131L8.66463 16.5034C8.4372 16.6343 8.17939 16.7032 7.91697 16.7032C7.65456 16.7032 7.39675 16.6343 7.16932 16.5034C6.94223 16.3718 6.75363 16.1829 6.62238 15.9556C6.49112 15.7283 6.42179 15.4706 6.42132 15.2081V13.8283C6.42085 13.7847 6.41508 13.7413 6.40413 13.6991L6.39726 13.673C6.38572 13.6327 6.36957 13.594 6.34913 13.5575C6.34638 13.5513 6.34226 13.5471 6.33882 13.541C6.31858 13.5078 6.29484 13.4769 6.26801 13.4488L6.25495 13.4344C6.22439 13.4049 6.19074 13.3789 6.15457 13.3567L6.14495 13.3491L3.75589 11.9693C3.67176 11.9208 3.57632 11.8952 3.47917 11.8952C3.38202 11.8952 3.28659 11.9208 3.20245 11.9693L0.813394 13.3491C0.729259 13.3977 0.659374 13.4676 0.610745 13.5517C0.562117 13.6358 0.536455 13.7312 0.536332 13.8283V16.5873C0.536332 16.7846 0.642207 16.9674 0.813394 17.0658L3.20245 18.4456L3.21414 18.4504C3.25109 18.4709 3.29032 18.4871 3.33101 18.4985L3.35164 18.5026C3.38876 18.5116 3.42726 18.5164 3.46508 18.5178C3.46989 18.5178 3.4747 18.5198 3.47883 18.5198L3.4857 18.5184C3.52695 18.5184 3.5682 18.5123 3.60945 18.5026L3.63558 18.4958C3.67683 18.4834 3.71808 18.4676 3.75589 18.4456L4.95076 17.756C5.17826 17.6253 5.43605 17.5565 5.69842 17.5565C5.96079 17.5565 6.21857 17.6253 6.44607 17.756C6.67321 17.8875 6.86184 18.0764 6.9931 18.3037C7.12437 18.531 7.19367 18.7888 7.19407 19.0513V20.4304C7.19407 20.4751 7.20094 20.5184 7.21126 20.5603L7.21813 20.5864C7.22982 20.6263 7.24563 20.6655 7.26626 20.7019L7.27657 20.7178C7.29719 20.7514 7.32057 20.7824 7.34738 20.8106L7.36044 20.8243C7.39069 20.8546 7.42438 20.88 7.46151 20.9027L7.47044 20.9096L9.8595 22.2894C9.94366 22.3379 10.0391 22.3634 10.1362 22.3634C10.2334 22.3634 10.3288 22.3379 10.4129 22.2894L12.802 20.9103C12.886 20.8616 12.9558 20.7917 13.0043 20.7076C13.0528 20.6235 13.0783 20.5281 13.0784 20.4311V17.6721C13.0784 17.575 13.0529 17.4796 13.0043 17.3955C12.9558 17.3114 12.8861 17.2409 12.802 17.1923Z" fill="currentColor"/> <path d="M104.669 18.2058H102.398V8.0033H104.226L104.419 9.5048C105.054 8.44605 106.344 7.6953 107.865 7.6953C110.04 7.6953 111.464 9.1583 111.464 11.449V18.2058H109.193V11.5645C109.193 10.4288 108.442 9.67805 107.172 9.67805C105.689 9.67805 104.688 10.6983 104.669 12.0265V18.2058Z" fill="currentColor"/> <path d="M95.7863 18.4945C92.4753 18.4945 90.5503 16.1653 90.5503 13.0083C90.5503 9.67805 92.8025 7.6953 95.7863 7.6953C99.078 7.6953 101.003 10.0053 101.003 13.0083C101.003 16.454 98.8278 18.4945 95.7863 18.4945ZM95.7863 16.5503C97.615 16.5503 98.693 15.0488 98.693 13.0083C98.693 10.987 97.5573 9.63954 95.7863 9.63954C94.0153 9.63954 92.8603 10.987 92.8603 13.0083C92.8603 15.2413 94.1115 16.5503 95.7863 16.5503Z" fill="currentColor"/> <path d="M88.0233 6.6364C87.1955 6.6364 86.5603 5.9819 86.5603 5.15415C86.5603 4.3264 87.1955 3.69116 88.0233 3.69116C88.8703 3.69116 89.4863 4.3264 89.4863 5.15415C89.4863 5.9819 88.8703 6.6364 88.0233 6.6364ZM89.159 18.2056H86.8875V8.00315H89.159V18.2056Z" fill="currentColor"/> <path d="M85.417 18.205H84.108C81.8942 18.205 80.7008 17.1078 80.7008 15.0865V9.92754H78.9105V8.00255H80.7008V4.5183H82.9722V8.00255H85.6095V9.92754H82.9722V14.9325C82.9722 15.7988 83.415 16.28 84.262 16.28H85.417V18.205Z" fill="currentColor"/> <path d="M76.4989 6.6364C75.6712 6.6364 75.0359 5.9819 75.0359 5.15415C75.0359 4.3264 75.6712 3.69116 76.4989 3.69116C77.3459 3.69116 77.9619 4.3264 77.9619 5.15415C77.9619 5.9819 77.3459 6.6364 76.4989 6.6364ZM77.6347 18.2056H75.3632V8.00315H77.6347V18.2056Z" fill="currentColor"/> <path d="M66.7781 18.2058H64.5066V8.0033H66.3353L66.5278 9.5048C67.1631 8.44605 68.4528 7.6953 69.9736 7.6953C72.1488 7.6953 73.5733 9.1583 73.5733 11.449V18.2058H71.3018V11.5645C71.3018 10.4288 70.5511 9.67805 69.2806 9.67805C67.7983 9.67805 66.7973 10.6983 66.7781 12.0265V18.2058Z" fill="currentColor"/> <path d="M57.5936 22.3638C54.7446 22.3638 52.7811 20.9778 52.7811 18.7833H55.0526C55.0526 19.7458 56.0729 20.5158 57.5936 20.5158C59.4031 20.5158 60.3464 19.4378 60.3464 17.8978V16.454C59.6919 17.4358 58.5561 18.0518 57.0931 18.0518C54.3596 18.0518 52.3961 15.9343 52.3961 12.8928C52.3961 9.83204 54.3596 7.6953 57.0739 7.6953C58.6716 7.6953 59.9614 8.44605 60.5966 9.58179L60.7891 8.0033H62.5986V17.8978C62.5986 20.5928 60.6929 22.3638 57.5936 22.3638ZM57.5359 16.146C59.1914 16.146 60.3464 14.7985 60.3464 12.8735C60.3464 10.9485 59.1914 9.6203 57.5359 9.6203C55.8804 9.6203 54.7446 10.9485 54.7446 12.8928C54.7446 14.8178 55.8804 16.146 57.5359 16.146Z" fill="currentColor"/> <path d="M46.3247 18.4945C43.0137 18.4945 41.0887 16.1653 41.0887 13.0083C41.0887 9.67805 43.3409 7.6953 46.3247 7.6953C49.6164 7.6953 51.5414 10.0053 51.5414 13.0083C51.5414 16.454 49.3662 18.4945 46.3247 18.4945ZM46.3247 16.5503C48.1534 16.5503 49.2314 15.0488 49.2314 13.0083C49.2314 10.987 48.0957 9.63954 46.3247 9.63954C44.5537 9.63954 43.3987 10.987 43.3987 13.0083C43.3987 15.2413 44.6499 16.5503 46.3247 16.5503Z" fill="currentColor"/> <path d="M33.5715 18.4942C29.4328 18.4942 26.7955 15.6452 26.7955 11.4295C26.7955 7.34851 29.375 4.44176 33.5715 4.44176C37.075 4.44176 39.4813 6.48226 40.0588 9.92801H37.691C37.2675 7.81051 35.7083 6.52076 33.5715 6.52076C30.8573 6.52076 29.1633 8.42651 29.1633 11.4295C29.1633 14.5095 30.8573 16.396 33.5715 16.396C35.7468 16.396 37.2675 15.1447 37.691 13.008H40.0588C39.4428 16.5115 37.0943 18.4942 33.5715 18.4942Z" fill="currentColor"/> </svg></div><div class="logo-wrap w-embed"><svg width="94" height="15" viewBox="0 0 94 15" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M25.0662 9.16663C25.0244 9.12351 25.0544 9.05166 25.1145 9.05166H25.3705C25.3705 9.05166 25.3823 9.05166 25.3888 9.05166C27.6211 8.82439 29.4863 7.38237 29.4863 4.82358C29.4863 1.87553 27.1077 0.513184 24.383 0.513184H11.6216C11.4505 0.513184 11.3108 0.651639 11.3108 0.824054V13.9054C11.3108 14.0766 11.4492 14.2163 11.6216 14.2163H15.697C15.868 14.2163 16.0078 14.0778 16.0078 13.9054V9.7283C16.0078 9.55718 16.1463 9.41739 16.3187 9.41739H18.9676C19.3347 9.41739 19.6847 9.57549 19.929 9.84978L23.7025 14.1105C23.7835 14.1471 23.8541 14.1785 23.935 14.215H29.3138C29.5895 14.215 29.7279 13.8832 29.5346 13.686L25.0675 9.16663H25.0662ZM23.3668 6.34786H16.3174C16.1463 6.34786 16.0065 6.20943 16.0065 6.03702V4.05554C16.0065 3.88443 16.145 3.74467 16.3174 3.74467H23.265C24.2616 3.74467 24.912 4.23318 24.912 5.00513C24.912 5.89987 24.3021 6.34658 23.3668 6.34658V6.34786Z" fill="currentColor"/> <path d="M76.5737 0.513184H72.4997C72.3282 0.513184 72.1887 0.652365 72.1887 0.824054V9.50754C72.1887 9.67924 72.3282 9.81839 72.4997 9.81839H76.5737C76.7451 9.81839 76.8846 9.67924 76.8846 9.50754V0.824054C76.8846 0.652365 76.7451 0.513184 76.5737 0.513184Z" fill="currentColor"/> <path d="M76.5737 11.6675H72.4997C72.3282 11.6675 72.1887 11.8066 72.1887 11.9783V13.9049C72.1887 14.0766 72.3282 14.2158 72.4997 14.2158H76.5737C76.7451 14.2158 76.8846 14.0766 76.8846 13.9049V11.9783C76.8846 11.8066 76.7451 11.6675 76.5737 11.6675Z" fill="currentColor"/> <path d="M93.3546 13.8062L88.1117 6.86384C87.9937 6.70841 88.0042 6.49288 88.135 6.3492L93.0867 0.918099C93.2279 0.762664 93.1181 0.513184 92.9076 0.513184H88.6232C88.5099 0.513184 88.4012 0.561513 88.3256 0.645108L83.5449 5.89987H83.5425C83.5268 5.91685 83.5059 5.92991 83.4798 5.92991H83.3071C83.2618 5.92991 83.2263 5.89334 83.2252 5.84892V0.799236C83.2252 0.641189 83.0973 0.513184 82.9392 0.513184H79.0216C78.8635 0.513184 78.7356 0.641189 78.7356 0.799236V13.9133C78.7356 14.0583 78.853 14.1758 78.9983 14.1758H82.9613C83.106 14.1758 83.224 14.0583 83.224 13.9133V11.472C83.224 11.3702 83.263 11.2709 83.3321 11.1964L85.0718 9.33514C85.0718 9.33514 85.0875 9.3116 85.1229 9.3116H85.3578C85.3868 9.3116 85.4037 9.33514 85.4037 9.33514L88.9098 14.0139C88.9854 14.1157 89.1057 14.1758 89.2324 14.1758H93.1692C93.3598 14.1758 93.4697 13.9577 93.3535 13.8049L93.3546 13.8062Z" fill="currentColor"/> <path d="M35.8251 3.64345H39.8103C39.9814 3.64345 40.1211 3.50499 40.1211 3.33258V0.822102C40.1211 0.650991 39.9827 0.51123 39.8103 0.51123H31.567C31.3959 0.51123 31.2561 0.649685 31.2561 0.822102V13.9035C31.2561 14.0746 31.3946 14.2144 31.567 14.2144H39.8103C39.9814 14.2144 40.1211 14.0759 40.1211 13.9035V11.393C40.1211 11.2219 39.9827 11.0821 39.8103 11.0821H35.7964C35.6253 11.0821 35.4856 10.9437 35.4856 10.7713V9.14378C35.4856 8.95697 35.637 8.80416 35.8251 8.80416H39.8103C39.9814 8.80416 40.1211 8.6657 40.1211 8.4933V6.04421C40.1211 5.8731 39.9827 5.73334 39.8103 5.73334H35.8251C35.6384 5.73334 35.4856 5.58182 35.4856 5.39373V3.97783C35.4856 3.79105 35.637 3.63823 35.8251 3.63823V3.64345Z" fill="currentColor"/> <path d="M46.539 3.64345H50.5241C50.6952 3.64345 50.835 3.50499 50.835 3.33258V0.822102C50.835 0.650991 50.6966 0.51123 50.5241 0.51123H42.2808C42.1097 0.51123 41.97 0.649685 41.97 0.822102V13.9035C41.97 14.0746 42.1084 14.2144 42.2808 14.2144H50.5241C50.6952 14.2144 50.835 14.0759 50.835 13.9035V11.393C50.835 11.2219 50.6966 11.0821 50.5241 11.0821H46.5102C46.3391 11.0821 46.1994 10.9437 46.1994 10.7713V9.14378C46.1994 8.95697 46.3509 8.80416 46.539 8.80416H50.5241C50.6952 8.80416 50.835 8.6657 50.835 8.4933V6.04421C50.835 5.8731 50.6966 5.73334 50.5241 5.73334H46.539C46.3522 5.73334 46.1994 5.58182 46.1994 5.39373V3.97783C46.1994 3.79105 46.3509 3.63823 46.539 3.63823V3.64345Z" fill="currentColor"/> <path d="M5.16789 3.64345H9.15307C9.32414 3.64345 9.46393 3.50499 9.46393 3.33258V0.822102C9.46393 0.650991 9.32547 0.51123 9.15307 0.51123H0.909747C0.738637 0.51123 0.598877 0.649685 0.598877 0.822102V13.9035C0.598877 14.0746 0.737331 14.2144 0.909747 14.2144H4.51611C4.68721 14.2144 4.82698 14.0759 4.82698 13.9035L4.82959 9.14506C4.82959 8.9583 4.98111 8.80549 5.1692 8.80549H9.15435C9.32547 8.80549 9.46521 8.66704 9.46521 8.49458V6.04551C9.46521 5.87441 9.32675 5.73464 9.15435 5.73464H5.1692C4.98241 5.73464 4.82959 5.58312 4.82959 5.39504V3.97914C4.82959 3.79235 4.98111 3.63953 5.1692 3.63953L5.16789 3.64345Z" fill="currentColor"/> <path d="M52.9947 0.513184C52.8236 0.513184 52.6838 0.651639 52.6838 0.824054V13.9054C52.6838 14.0766 52.8223 14.2163 52.9947 14.2163H57.07C57.2411 14.2163 57.3809 14.0778 57.3809 13.9054V9.57549C57.3809 9.48795 57.4514 9.41739 57.5389 9.41739H65.354C68.4858 9.41739 70.8596 7.78471 70.8596 4.90195C70.8596 2.01921 68.4858 0.513184 65.3342 0.513184H52.9947ZM64.7396 6.34786H57.6904C57.5193 6.34786 57.3795 6.20943 57.3795 6.03702V4.05554C57.3795 3.88443 57.518 3.74598 57.6904 3.74598H64.6379C65.6347 3.74598 66.2851 4.23318 66.2851 5.00644C66.2851 5.90117 65.6748 6.34786 64.7396 6.34786Z" fill="currentColor"/> </svg></div><div class="logo-wrap w-embed"><svg width="72" height="23" viewBox="0 0 72 23" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M51.5867 22.3428C51.4426 22.3428 51.2998 22.3153 51.1667 22.2619C51.0335 22.2085 50.9125 22.1303 50.8106 22.0316C50.7087 21.933 50.6279 21.8158 50.5727 21.6869C50.5176 21.558 50.4892 21.4198 50.4892 21.2803V1.44697C50.4892 1.30744 50.5176 1.16928 50.5727 1.04037C50.6279 0.911455 50.7087 0.794325 50.8106 0.695664C50.9125 0.597003 51.0335 0.518744 51.1667 0.465358C51.2998 0.411972 51.4426 0.384503 51.5867 0.384522C51.7308 0.384485 51.8736 0.41194 52.0068 0.465318C52.1399 0.518696 52.2609 0.596951 52.3629 0.695614C52.4648 0.794277 52.5457 0.911413 52.6008 1.04033C52.656 1.16925 52.6843 1.30743 52.6843 1.44697V21.2803C52.6843 21.4199 52.656 21.558 52.6008 21.687C52.5457 21.8159 52.4648 21.933 52.3629 22.0317C52.2609 22.1303 52.1399 22.2086 52.0068 22.262C51.8736 22.3153 51.7308 22.3428 51.5867 22.3428ZM70.357 19.5597C70.4503 19.4534 70.521 19.3303 70.5652 19.1975C70.6094 19.0646 70.6261 18.9247 70.6144 18.7856C70.6027 18.6466 70.5628 18.5111 70.497 18.387C70.4312 18.2628 70.3408 18.1525 70.2309 18.0622C70.121 17.9718 69.9939 17.9033 69.8567 17.8606C69.7195 17.8178 69.575 17.8016 69.4313 17.813C69.2877 17.8243 69.1477 17.8629 69.0195 17.9266C68.8913 17.9903 68.7772 18.0778 68.684 18.1842C67.5498 19.4766 65.8522 20.2179 64.0256 20.2179C60.9998 20.2179 58.538 17.8347 58.538 14.9055C58.538 11.9763 60.9998 9.59327 64.0256 9.59327C66.4843 9.59327 68.5385 11.3034 68.9843 13.5597H62.2692C62.1251 13.5597 61.9823 13.5872 61.8492 13.6406C61.716 13.694 61.595 13.7722 61.4931 13.8709C61.3912 13.9696 61.3103 14.0867 61.2552 14.2157C61.2001 14.3446 61.1717 14.4828 61.1717 14.6223C61.1717 14.7618 61.2001 14.9 61.2552 15.0289C61.3104 15.1578 61.3912 15.2749 61.4931 15.3736C61.5951 15.4723 61.716 15.5505 61.8492 15.6039C61.9824 15.6573 62.1251 15.6848 62.2692 15.6848H70.1715C70.3157 15.6848 70.4584 15.6573 70.5916 15.604C70.7248 15.5506 70.8458 15.4723 70.9477 15.3737C71.0496 15.275 71.1304 15.1578 71.1856 15.0289C71.2407 14.9 71.2691 14.7618 71.269 14.6223V14.4805C71.269 10.6137 68.0197 7.46796 64.0252 7.46796C59.7888 7.46796 56.3423 10.8044 56.3423 14.9055C56.3423 19.0066 59.7894 22.3428 64.0256 22.3428C66.4974 22.3428 68.8051 21.3282 70.357 19.5597ZM46.8308 21.2803V14.4801C46.8308 10.6133 43.5815 7.46768 39.5871 7.46768C35.3506 7.46768 31.9041 10.8041 31.9041 14.9052C31.9041 19.0063 35.3506 22.3428 39.5871 22.3428C39.7312 22.3428 39.8739 22.3153 40.0071 22.2619C40.1403 22.2085 40.2613 22.1303 40.3632 22.0316C40.4651 21.933 40.5459 21.8158 40.6011 21.6869C40.6562 21.558 40.6846 21.4198 40.6846 21.2803C40.6846 21.1408 40.6563 21.0026 40.6011 20.8737C40.546 20.7448 40.4651 20.6276 40.3632 20.529C40.2613 20.4303 40.1403 20.3521 40.0071 20.2987C39.874 20.2453 39.7312 20.2178 39.5871 20.2179C36.5612 20.2179 34.0995 17.8347 34.0995 14.9055C34.0995 11.9763 36.5612 9.59327 39.5871 9.59327C42.3708 9.59327 44.6358 11.7856 44.6358 14.4808V21.2806C44.6358 21.4201 44.6641 21.5583 44.7193 21.6872C44.7744 21.8161 44.8553 21.9333 44.9572 22.0319C45.0591 22.1306 45.1801 22.2089 45.3133 22.2622C45.4464 22.3156 45.5892 22.3431 45.7333 22.343C46.0244 22.3429 46.3035 22.2309 46.5093 22.0316C46.7151 21.8324 46.8308 21.5621 46.8308 21.2803ZM13.6084 18.0928C13.6084 17.0559 13.215 15.6415 11.3405 14.7916C10.2158 14.2815 8.80448 14.072 7.43963 13.8694C4.24211 13.3948 3.10669 12.9982 3.10669 11.7177C3.10669 10.3228 5.10496 9.59285 7.07906 9.59285C8.32304 9.59285 10.1107 9.83569 11.5643 10.9929C11.6756 11.0815 11.8039 11.1481 11.9418 11.1887C12.0797 11.2294 12.2246 11.2433 12.3681 11.2298C12.5115 11.2163 12.6509 11.1755 12.7781 11.1099C12.9053 11.0442 13.0179 10.9549 13.1095 10.8471C13.2011 10.7393 13.2698 10.6152 13.3118 10.4816C13.3538 10.3481 13.3682 10.2079 13.3542 10.069C13.3402 9.93012 13.2981 9.79524 13.2303 9.67209C13.1625 9.54894 13.0703 9.43992 12.9589 9.35127C11.0034 7.79418 8.68202 7.46726 7.07935 7.46726C2.84195 7.46726 0.911998 9.67034 0.911998 11.7172C0.911998 12.7611 1.30702 14.185 3.18862 15.041C4.31955 15.5554 5.73694 15.7656 7.10757 15.9692C10.2854 16.441 11.4137 16.8325 11.4137 18.0923C11.4137 19.3634 9.84624 20.2172 7.51389 20.2172C5.1261 20.2172 3.3063 19.2799 2.43433 18.7209C2.19157 18.5654 1.89497 18.5096 1.60974 18.5658C1.32451 18.622 1.074 18.7855 0.9133 19.0205C0.833739 19.1368 0.778632 19.2672 0.751126 19.4042C0.72362 19.5412 0.724254 19.682 0.752992 19.8188C0.78173 19.9555 0.838009 20.0854 0.918615 20.2011C0.999221 20.3168 1.10257 20.4159 1.22278 20.4929C3.08339 21.6858 5.3176 22.3428 7.51316 22.3428C11.7238 22.3428 13.6084 20.2081 13.6084 18.0928ZM29.5221 19.2069C29.6832 18.9721 29.7414 18.6851 29.6839 18.4089C29.6264 18.1326 29.458 17.8898 29.2156 17.7337C28.9732 17.5777 28.6766 17.5214 28.3913 17.577C28.1059 17.6327 27.855 17.7958 27.6939 18.0305C26.7539 19.4001 25.1807 20.2175 23.4863 20.2175C20.4604 20.2175 17.9987 17.8344 17.9987 14.9052C17.9987 11.976 20.4604 9.59299 23.4863 9.59299C25.181 9.59299 26.7539 10.4104 27.6939 11.78C27.7737 11.8962 27.8763 11.9961 27.996 12.0739C28.1156 12.1517 28.25 12.2059 28.3913 12.2334C28.5326 12.261 28.6781 12.2613 28.8196 12.2344C28.961 12.2075 29.0956 12.1539 29.2156 12.0766C29.3357 11.9994 29.4388 11.9 29.5192 11.7842C29.5996 11.6684 29.6556 11.5383 29.6841 11.4016C29.7125 11.2648 29.7129 11.1239 29.6851 10.987C29.6573 10.8501 29.6019 10.7198 29.5221 10.6036C28.1742 8.63985 25.9175 7.46754 23.4863 7.46754C19.2499 7.46754 15.8034 10.804 15.8034 14.9052C15.8034 19.0063 19.2499 22.3428 23.4863 22.3428C25.9178 22.3428 28.1742 21.1705 29.5221 19.2069Z" fill="currentColor"/> </svg></div><div class="logo-wrap w-embed"><svg width="108" height="22" viewBox="0 0 108 22" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M24.3953 5.60716H29.9739C34.0062 5.60716 35.037 7.95718 35.037 9.86719C35.037 11.7771 33.9961 14.1271 29.9739 14.1271H26.5277V20.8472H24.3953V5.60716ZM26.5379 12.3271H29.3574C31.0553 12.3271 32.743 11.9472 32.743 9.87714C32.743 7.80717 31.0451 7.42715 29.3574 7.42715H26.5379V12.3271Z" fill="currentColor"/> <path d="M37.8364 5.53803C38.6448 5.53803 39.3018 6.16803 39.3119 6.93804C39.322 7.71806 38.6853 8.35803 37.8768 8.37806C37.0683 8.39803 36.4013 7.78805 36.371 7.00804C36.3609 6.61806 36.5125 6.24804 36.7854 5.96803C37.0481 5.69804 37.4321 5.53803 37.8364 5.53803ZM36.846 10.6481H38.8268V20.858H36.846V10.6481Z" fill="currentColor"/> <path d="M41.1307 10.6473H43.1418V12.2273H43.1924C43.8897 11.0273 45.2439 10.3073 46.6688 10.3973C48.7204 10.3973 50.489 11.5873 50.489 14.2973V20.8674H48.5082V14.8473C48.5082 12.9273 47.3662 12.2174 46.0928 12.2174C44.4253 12.2174 43.152 13.2474 43.152 15.6173V20.8674H41.1307V10.6473Z" fill="currentColor"/> <path d="M54.1572 16.4671C54.1572 18.2471 55.8752 19.4171 57.7247 19.4171C58.8867 19.3871 59.9681 18.8171 60.6253 17.8971L62.1514 19.0171C61.0392 20.4271 59.2809 21.2171 57.452 21.1271C54.0966 21.1271 52.0147 18.8071 52.0147 15.7671C51.9541 14.3471 52.5099 12.9671 53.5407 11.9571C54.5715 10.9471 55.9864 10.3871 57.4619 10.4071C61.1909 10.4071 62.6162 13.1571 62.6162 15.7871V16.4771H54.1572V16.4671ZM60.5037 14.9171C60.4533 13.2171 59.4731 11.9671 57.452 11.9671C55.7237 11.9571 54.2785 13.2471 54.1673 14.9171H60.5037Z" fill="currentColor"/> <path d="M71.7119 13.3677C71.0548 12.6177 70.0949 12.1977 69.0742 12.2277C66.891 12.2277 65.7696 13.9277 65.7696 15.8477C65.7187 16.7577 66.0527 17.6377 66.6994 18.2977C67.3461 18.9577 68.2452 19.3277 69.1854 19.3177C70.176 19.3477 71.1254 18.9277 71.7524 18.1777L73.1772 19.5377C72.1363 20.5977 70.671 21.1678 69.1651 21.1077C67.6796 21.1777 66.2345 20.6477 65.1831 19.6278C64.1323 18.6177 63.5661 17.2177 63.6373 15.7877C63.5661 14.3478 64.1323 12.9477 65.1831 11.9278C66.2345 10.9077 67.6796 10.3577 69.175 10.4077C70.7011 10.3677 72.1768 10.9577 73.238 12.0177L71.7119 13.3677Z" fill="currentColor"/> <path d="M79.1197 10.3884C82.1719 10.4384 84.6174 12.8584 84.5873 15.8084C84.5566 18.7584 82.0608 21.1284 78.9987 21.1084C75.9465 21.0884 73.4703 18.6984 73.4703 15.7484C73.4703 14.3084 74.0667 12.9384 75.1279 11.9284C76.1989 10.9184 77.6341 10.3684 79.1197 10.3884ZM79.1197 19.3084C81.252 19.3084 82.5963 17.8384 82.5963 15.7484C82.5963 13.6684 81.252 12.1984 79.1197 12.1984C76.9874 12.1984 75.6333 13.6684 75.6333 15.7484C75.6333 17.8284 76.977 19.3084 79.1197 19.3084Z" fill="currentColor"/> <path d="M86.3759 10.6474H88.3872V12.2274C89.0848 11.0174 90.4488 10.3074 91.8736 10.3974C93.9254 10.3974 95.6941 11.5874 95.6941 14.2974V20.8674H93.6828V14.8474C93.6828 12.9274 92.5405 12.2174 91.2773 12.2174C89.6001 12.2174 88.3368 13.2474 88.3368 15.6174V20.8674H86.3863V10.6474H86.3759Z" fill="currentColor"/> <path d="M99.423 16.4679C99.423 18.2479 101.141 19.4179 102.99 19.4179C104.152 19.3779 105.234 18.8179 105.891 17.8979L107.417 19.0179C106.305 20.4179 104.557 21.1979 102.728 21.0979C99.3825 21.0979 97.2907 18.7779 97.2907 15.7379C97.23 14.3179 97.7857 12.9279 98.8168 11.9179C99.8474 10.8979 101.272 10.3479 102.748 10.3779C106.477 10.3779 107.902 13.1279 107.902 15.7579V16.4479L99.423 16.4679ZM105.76 14.9079C105.709 13.2079 104.739 11.9579 102.707 11.9579C100.979 11.9479 99.5342 13.2379 99.423 14.9079H105.76Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M12.329 1.10816C12.1168 0.858157 11.7631 0.798156 11.4801 0.958156L11.2173 1.09815L8.35732 2.70815L9.02432 3.86816L10.8838 2.81815L10.4291 5.27815L11.753 5.51816L12.2179 3.04816L13.5923 4.66816L14.6231 3.80815L12.5413 1.34816H12.5311L12.329 1.10816ZM8.31691 21.8581C9.00412 21.8581 9.55997 21.3182 9.55997 20.6582C9.55997 19.9982 9.00412 19.4582 8.31691 19.4582C7.6297 19.4582 7.07385 19.9982 7.07385 20.6582C7.06378 21.3182 7.6297 21.8581 8.31691 21.8581ZM9.98439 15.2682L9.53976 17.7382L8.20575 17.4981L8.65038 15.0381L6.79092 16.0981L6.11378 14.9382L8.95358 13.3282L9.21636 13.1782C9.49929 13.0181 9.85303 13.0782 10.0653 13.3282L10.2674 13.5681L12.3796 16.0182L11.3487 16.8882L9.98439 15.2682ZM11.0658 9.36816L10.6211 11.8382L9.28711 11.5982L9.73174 9.14816L7.88235 10.1981L7.21535 9.03816L10.0451 7.43818V7.41815H10.0653L10.328 7.26815C10.611 7.10818 10.9647 7.16816 11.1769 7.41815L11.379 7.64817L13.4811 10.1082L12.4503 10.9782L11.0658 9.36816ZM2.34423 19.1282H2.33413L2.06127 19.0482C1.76819 18.9682 1.57617 18.6882 1.59639 18.3882L1.83893 15.0482L3.1224 15.1382L2.97081 17.1681L4.9617 15.8282L5.67922 16.8782L3.72876 18.1881L5.71964 18.7582L5.36596 19.9782L2.34423 19.1282ZM15.5528 20.5082L15.4619 20.7981C15.3709 21.0782 15.1082 21.2681 14.805 21.2482L14.522 21.2281L14.5018 21.2381L14.4917 21.2281L11.3588 21.0181L11.4397 19.7482L13.5215 19.8882L12.1572 17.9982L13.1981 17.2582L14.5928 19.1982L15.1991 17.2381L16.4219 17.6081L15.5528 20.5082ZM19.2315 13.6282L19.383 13.8981C19.5346 14.1682 19.474 14.5082 19.2315 14.7081L19.0091 14.8982V14.9082H18.999L16.5634 16.9481L15.7145 15.9581L17.3113 14.6182L14.9162 14.1981L15.1486 12.9182L17.5639 13.3382L16.5534 11.5382L17.6953 10.9082L19.2315 13.6282ZM16.7555 8.04816L14.5928 9.19818L13.9662 8.05818L16.0985 6.92813L14.1481 6.13816L14.6433 4.93816L17.6145 6.12816L17.6246 6.11815L17.6347 6.13816L17.9075 6.24816C18.2006 6.36817 18.3623 6.66818 18.3118 6.96814L18.2613 7.26815L17.7054 10.3182L16.4119 10.0881L16.7555 8.04816ZM2.24317 10.7282L4.64841 11.1282L4.42608 12.4082L2.00063 11.9981L3.03144 13.7982L1.88946 14.4382L0.333131 11.7282L0.18154 11.4682C0.0299494 11.1982 0.0905872 10.8581 0.323023 10.6582L0.545356 10.4682V10.4581H0.555465L2.9607 8.40815L3.81971 9.39815L2.24317 10.7282ZM5.87126 5.18816L7.468 6.94816L6.48772 7.81815L4.85053 6.01816L4.47661 8.06814L3.18303 7.83818L3.74897 4.79815L3.80961 4.48816C3.86014 4.18816 4.1229 3.96816 4.42608 3.95815L4.70905 3.94816L4.71916 3.93816L4.72926 3.94816L7.94297 3.81816L7.99351 5.11816L5.87126 5.18816Z" fill="currentColor"/> </svg></div><div class="logo-wrap w-embed"><svg width="82" height="21" viewBox="0 0 82 21" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M0.66095 19.9433V1.56836H8.46241C9.55294 1.56836 10.5428 1.83086 11.432 2.35586C12.3211 2.86336 13.0175 3.55461 13.5208 4.42961C14.0409 5.30461 14.301 6.30211 14.301 7.42211C14.301 8.52461 14.0409 9.53086 13.5208 10.4409C13.0175 11.3334 12.3211 12.0421 11.432 12.5671C10.5428 13.0921 9.55294 13.3546 8.46241 13.3546H4.31002V19.9433H0.66095ZM10.6519 19.9433L6.1723 11.6484L10.0479 10.9921L15.0308 19.9696L10.6519 19.9433ZM4.31002 10.1521H8.28625C8.73924 10.1521 9.1335 10.0471 9.46905 9.83711C9.82137 9.60961 10.0898 9.30336 10.2744 8.91836C10.4589 8.51587 10.5512 8.06962 10.5512 7.57961C10.5512 7.05461 10.4421 6.59962 10.224 6.21461C10.0059 5.82961 9.68715 5.53211 9.26772 5.32211C8.84829 5.09461 8.36175 4.98086 7.80809 4.98086H4.31002V10.1521Z" fill="currentColor"/> <path d="M22.3449 20.2079C20.902 20.2079 19.6353 19.9017 18.5447 19.2891C17.471 18.6766 16.6322 17.8366 16.0281 16.7691C15.441 15.7017 15.1473 14.4766 15.1473 13.0941C15.1473 12.0092 15.3151 11.0204 15.6506 10.1279C15.9862 9.23539 16.4559 8.4654 17.0599 7.81789C17.6639 7.1529 18.377 6.64539 19.1991 6.29539C20.0379 5.92789 20.9439 5.74414 21.9171 5.74414C22.823 5.74414 23.6618 5.91915 24.4337 6.26914C25.2054 6.61915 25.8681 7.10914 26.4218 7.73914C26.9922 8.35164 27.4284 9.08665 27.7304 9.94414C28.0324 10.7841 28.1665 11.6941 28.1331 12.6741L28.1079 13.8291H17.4123L16.8334 11.5454H25.1635L24.7608 12.0179V11.4404C24.7272 10.9679 24.5762 10.5479 24.3077 10.1804C24.0562 9.7954 23.729 9.49789 23.3264 9.28789C22.9237 9.0604 22.4706 8.94664 21.9673 8.94664C21.2291 8.94664 20.6 9.0954 20.0798 9.39289C19.5765 9.6904 19.1907 10.1279 18.9222 10.7054C18.6538 11.2829 18.5195 11.9829 18.5195 12.8054C18.5195 13.6454 18.6874 14.3716 19.023 14.9841C19.3753 15.5967 19.8618 16.0778 20.4826 16.4279C21.1201 16.7603 21.8666 16.9266 22.7222 16.9266C23.3095 16.9266 23.8464 16.8304 24.333 16.6379C24.8195 16.4453 25.3395 16.1129 25.8933 15.6404L27.6046 18.1341C27.118 18.5892 26.5811 18.9741 25.9939 19.2891C25.4067 19.5867 24.8027 19.8141 24.1819 19.9716C23.5612 20.1291 22.9489 20.2079 22.3449 20.2079Z" fill="currentColor"/> <path d="M33.9954 20.207C32.7538 20.207 31.6465 19.997 30.6735 19.577C29.7172 19.1396 28.9455 18.5445 28.3582 17.792L30.598 15.797C31.1013 16.3745 31.6717 16.7945 32.3093 17.057C32.9469 17.3021 33.5843 17.4245 34.2219 17.4245C34.4735 17.4245 34.7 17.3983 34.9014 17.3458C35.1194 17.2758 35.304 17.1883 35.455 17.0833C35.606 16.9608 35.7151 16.8208 35.7822 16.6633C35.8661 16.4883 35.908 16.3046 35.908 16.112C35.908 15.7271 35.757 15.4295 35.455 15.2195C35.2873 15.1145 35.0272 15.0007 34.6749 14.8783C34.3226 14.7382 33.8696 14.5895 33.3159 14.432C32.4603 14.2046 31.7305 13.9421 31.1265 13.6445C30.5392 13.3295 30.0695 12.9795 29.7172 12.5945C29.4152 12.227 29.1803 11.8333 29.0125 11.4133C28.8615 10.9758 28.786 10.4945 28.786 9.96953C28.786 9.33953 28.9203 8.77079 29.1887 8.26328C29.4571 7.73828 29.8263 7.29203 30.296 6.92453C30.7826 6.55703 31.3362 6.27704 31.957 6.08453C32.5777 5.87453 33.232 5.76953 33.9199 5.76953C34.6078 5.76953 35.2789 5.85704 35.9332 6.03203C36.5875 6.20704 37.1915 6.46079 37.7451 6.79328C38.3155 7.10828 38.8105 7.48454 39.2299 7.92203L37.3173 10.127C37.0153 9.82953 36.6714 9.55828 36.2855 9.31328C35.9164 9.06829 35.5305 8.87579 35.1279 8.73578C34.7252 8.59579 34.3645 8.52578 34.0457 8.52578C33.7605 8.52578 33.5005 8.55203 33.2656 8.60453C33.0475 8.65703 32.8629 8.74454 32.7119 8.86703C32.5609 8.97203 32.4435 9.10328 32.3596 9.26078C32.2925 9.41828 32.2589 9.59328 32.2589 9.78578C32.2589 9.97828 32.3008 10.162 32.3848 10.337C32.4854 10.512 32.6197 10.6608 32.7874 10.7833C32.972 10.8883 33.2404 11.0108 33.5927 11.1508C33.9618 11.2908 34.4568 11.4483 35.0775 11.6233C35.8828 11.8508 36.5623 12.1045 37.116 12.3845C37.6864 12.6645 38.1394 12.9883 38.4749 13.3558C38.7602 13.6708 38.9698 14.0295 39.1041 14.432C39.2384 14.8346 39.3054 15.2808 39.3054 15.7708C39.3054 16.6282 39.0705 17.3895 38.6008 18.0545C38.1478 18.7196 37.5186 19.2446 36.7133 19.6295C35.908 20.0145 35.002 20.207 33.9954 20.207Z" fill="currentColor"/> <path d="M46.9112 20.2079C45.4683 20.2079 44.2017 19.9017 43.1111 19.2891C42.0374 18.6766 41.1985 17.8366 40.5945 16.7691C40.0072 15.7017 39.7137 14.4766 39.7137 13.0941C39.7137 12.0092 39.8814 11.0204 40.217 10.1279C40.5526 9.23539 41.0223 8.4654 41.6263 7.81789C42.2303 7.1529 42.9434 6.64539 43.7654 6.29539C44.6043 5.92789 45.5103 5.74414 46.4833 5.74414C47.3893 5.74414 48.2282 5.91915 48.9999 6.26914C49.7717 6.61915 50.4344 7.10914 50.988 7.73914C51.5584 8.35164 51.9947 9.08665 52.2967 9.94414C52.5987 10.7841 52.7329 11.6941 52.6993 12.6741L52.6742 13.8291H41.9786L41.3998 11.5454H49.7297L49.3271 12.0179V11.4404C49.2935 10.9679 49.1425 10.5479 48.8741 10.1804C48.6224 9.7954 48.2953 9.49789 47.8926 9.28789C47.49 9.0604 47.037 8.94664 46.5337 8.94664C45.7954 8.94664 45.1663 9.0954 44.6462 9.39289C44.1429 9.6904 43.757 10.1279 43.4886 10.7054C43.2202 11.2829 43.0859 11.9829 43.0859 12.8054C43.0859 13.6454 43.2537 14.3716 43.5892 14.9841C43.9416 15.5967 44.4282 16.0778 45.0489 16.4279C45.6865 16.7603 46.433 16.9266 47.2886 16.9266C47.8759 16.9266 48.4127 16.8304 48.8993 16.6379C49.3859 16.4453 49.9059 16.1129 50.4596 15.6404L52.1709 18.1341C51.6843 18.5892 51.1475 18.9741 50.5602 19.2891C49.973 19.5867 49.369 19.8141 48.7483 19.9716C48.1276 20.1291 47.5151 20.2079 46.9112 20.2079Z" fill="currentColor"/> <path d="M54.0828 19.9445V6.05828H57.5054L57.6061 8.89328L56.9014 9.20828C57.086 8.57828 57.4132 8.00954 57.8829 7.50203C58.3695 6.97703 58.9483 6.55703 59.6193 6.24203C60.2905 5.92703 60.9952 5.76953 61.7333 5.76953C62.7399 5.76953 63.5788 5.97953 64.2499 6.39953C64.9378 6.81953 65.4495 7.45829 65.785 8.31578C66.1373 9.15578 66.3135 10.197 66.3135 11.4395V19.9445H62.7399V11.7283C62.7399 11.0983 62.6561 10.5733 62.4883 10.1533C62.3205 9.73328 62.0604 9.42704 61.7081 9.23453C61.3727 9.04203 60.9531 8.95454 60.4498 8.97203C60.0472 8.97203 59.6697 9.04204 59.3174 9.18203C58.9819 9.30453 58.6882 9.48829 58.4365 9.73328C58.2017 9.97829 58.0087 10.2583 57.8577 10.5733C57.7236 10.8883 57.6564 11.2295 57.6564 11.597V19.9445H55.8948C55.509 19.9445 55.165 19.9445 54.863 19.9445C54.561 19.9445 54.301 19.9445 54.0828 19.9445Z" fill="currentColor"/> <path d="M73.6886 20.207C72.5143 20.207 71.4657 19.9008 70.5429 19.2883C69.6369 18.6583 68.9155 17.8095 68.3786 16.742C67.8585 15.657 67.5984 14.4058 67.5984 12.9883C67.5984 11.6058 67.8585 10.372 68.3786 9.28703C68.9155 8.18453 69.6369 7.32703 70.5429 6.71453C71.4657 6.08453 72.5143 5.76953 73.6886 5.76953C74.3095 5.76953 74.905 5.87453 75.4754 6.08453C76.0627 6.27703 76.5827 6.54829 77.0357 6.89828C77.5055 7.24828 77.883 7.64203 78.1682 8.07953C78.4534 8.49953 78.6129 8.93704 78.6463 9.39203L77.7403 9.57578V0.519531H81.3391V19.9445H77.9417L77.7907 16.742L78.4953 16.8208C78.4619 17.2582 78.3109 17.6782 78.0423 18.0808C77.7739 18.4833 77.4132 18.8508 76.9602 19.1833C76.5241 19.4983 76.0208 19.752 75.4502 19.9445C74.8966 20.1195 74.3095 20.207 73.6886 20.207ZM74.4939 17.1095C75.1651 17.1095 75.7522 16.9346 76.2556 16.5845C76.7589 16.2345 77.1532 15.7533 77.4384 15.1408C77.7236 14.5282 77.8662 13.8108 77.8662 12.9883C77.8662 12.1833 77.7236 11.4745 77.4384 10.862C77.1532 10.2495 76.7589 9.76828 76.2556 9.41828C75.7522 9.06829 75.1651 8.89328 74.4939 8.89328C73.8229 8.89328 73.2356 9.06829 72.7323 9.41828C72.2459 9.76828 71.8599 10.2495 71.5747 10.862C71.3063 11.4745 71.172 12.1833 71.172 12.9883C71.172 13.8108 71.3063 14.5282 71.5747 15.1408C71.8599 15.7533 72.2459 16.2345 72.7323 16.5845C73.2356 16.9346 73.8229 17.1095 74.4939 17.1095Z" fill="currentColor"/> </svg></div><div class="logo-wrap w-embed"><svg width="102" height="25" viewBox="0 0 102 25" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M28.7745 17.625V13.6849H30.9634C31.7764 13.6849 32.48 13.5599 33.0585 13.2941C33.637 13.0283 34.0904 12.653 34.3875 12.1527C34.6846 11.6524 34.8409 11.0582 34.8409 10.3703C34.8409 9.71361 34.6846 9.11947 34.3875 8.60351C34.0748 8.08755 33.637 7.68103 33.0429 7.3996C32.4487 7.11817 31.7608 6.96181 30.9477 6.96181H26.867V17.6094H28.7745V17.625ZM30.9634 12.1683H28.7745V8.5097H30.9634C31.4168 8.5097 31.792 8.60351 32.0891 8.7755C32.3862 8.94748 32.6051 9.18201 32.7458 9.46344C32.8865 9.74488 32.9647 10.0576 32.9647 10.4016C32.9647 10.9488 32.8083 11.3866 32.48 11.6993C32.1517 12.012 31.6513 12.1683 30.9634 12.1683ZM39.5627 17.7657C40.3132 17.7657 40.9699 17.5937 41.5328 17.2498C42.0956 16.9058 42.5178 16.4211 42.8148 15.8113C43.1119 15.2016 43.2526 14.5136 43.2526 13.7475V13.5911C43.2526 12.825 43.1119 12.1371 42.8148 11.5273C42.5178 10.9175 42.0956 10.4328 41.5328 10.0888C40.9699 9.74488 40.3132 9.57289 39.5471 9.57289C38.7966 9.57289 38.1399 9.74488 37.5927 10.0888C37.0298 10.4328 36.6077 10.9175 36.3106 11.5273C36.0135 12.1371 35.8728 12.825 35.8728 13.5911V13.7475C35.8728 14.5136 36.0135 15.2016 36.3106 15.8113C36.6077 16.4211 37.0298 16.9058 37.5927 17.2498C38.1556 17.5937 38.8122 17.7657 39.5627 17.7657ZM39.5627 16.296C38.9373 16.296 38.4683 16.0615 38.1556 15.5768C37.8429 15.0921 37.6865 14.4823 37.6865 13.7318V13.5755C37.6865 13.0908 37.749 12.6687 37.8898 12.2778C38.0305 11.8869 38.2337 11.5742 38.5152 11.3553C38.7966 11.1208 39.1406 11.0113 39.5471 11.0113C39.9692 11.0113 40.3132 11.1208 40.5947 11.3553C40.8761 11.5898 41.0793 11.8869 41.2201 12.2778C41.3608 12.6687 41.4233 13.0908 41.4233 13.5755V13.7318C41.4233 14.2165 41.3608 14.6543 41.2201 15.0296C41.0793 15.4204 40.8761 15.7175 40.5947 15.952C40.3289 16.1866 39.9692 16.296 39.5627 16.296ZM46.6611 17.625V6.38331H44.8474V17.625H46.6611ZM49.2722 20.8146C49.9601 20.8146 50.4917 20.6113 50.867 20.2204C51.2422 19.8296 51.5236 19.3605 51.7269 18.8133L54.8852 9.69797H52.9464L51.3516 15.0139L49.71 9.69797H47.7399L50.523 17.5781L50.2728 18.2504C50.1477 18.6413 49.9601 18.9071 49.7412 19.0634C49.5067 19.2198 49.1784 19.298 48.7562 19.298L48.4122 19.2823V20.6739C48.7562 20.7677 49.0376 20.8146 49.2722 20.8146ZM57.6995 11.9025C57.9966 11.3397 58.4813 11.0426 59.1849 11.0426C59.6383 11.0426 59.9979 11.152 60.2324 11.3866C60.467 11.6211 60.592 11.9963 60.592 12.5279V17.6406H62.4057V12.1996C62.5152 11.8556 62.6872 11.5742 62.953 11.3709C63.2031 11.1677 63.5315 11.0582 63.9067 11.0582C64.3758 11.0582 64.7197 11.1677 64.9543 11.3709C65.1888 11.5898 65.2982 11.9651 65.2982 12.4967V17.625H67.1119V12.5123C67.1119 11.496 66.893 10.7455 66.4396 10.2765C66.0018 9.80742 65.3608 9.57289 64.5165 9.57289C63.9849 9.57289 63.5158 9.68234 63.1093 9.88559C62.7028 10.1045 62.3588 10.4016 62.093 10.7768C61.8898 10.3703 61.6083 10.0576 61.2331 9.86996C60.8578 9.6667 60.4357 9.57289 59.9354 9.57289C59.4507 9.57289 59.0129 9.65107 58.622 9.82305C58.2468 9.99504 57.9184 10.2296 57.6526 10.5579L57.5901 9.72924H55.8858V17.6406H57.6995V11.9025ZM71.349 17.7657C71.7868 17.7657 72.1777 17.6875 72.5217 17.5312C72.8657 17.3748 73.1627 17.1559 73.4129 16.8902C73.4754 17.2185 73.538 17.453 73.6161 17.625H75.4767V17.4999C75.2735 17.0778 75.1797 16.4993 75.1797 15.7801V12.2934C75.1797 11.6993 75.0546 11.1989 74.7888 10.7924C74.523 10.3859 74.1634 10.0732 73.7099 9.86996C73.2409 9.6667 72.7093 9.55725 72.1152 9.55725C71.4741 9.55725 70.8956 9.6667 70.3953 9.90123C69.895 10.1358 69.5041 10.4328 69.2383 10.8081C68.9725 11.1833 68.8318 11.5742 68.8318 11.9963H70.6455C70.6455 11.7931 70.708 11.6211 70.8174 11.4491C70.9269 11.2928 71.0832 11.1677 71.2865 11.0739C71.4898 10.9801 71.7243 10.9331 71.9901 10.9331C72.4435 10.9331 72.7718 11.0582 73.0064 11.2928C73.2409 11.5273 73.3503 11.8556 73.3503 12.2778V12.7937H72.2559C71.0989 12.7937 70.2233 13.0126 69.5823 13.466C68.9569 13.9195 68.6442 14.5605 68.6442 15.4048C68.6442 15.8582 68.7536 16.2647 68.9881 16.6244C69.2227 16.984 69.5354 17.2654 69.9419 17.4687C70.364 17.6719 70.8175 17.7657 71.349 17.7657ZM71.693 16.3117C71.3021 16.3117 71.0051 16.2178 70.7862 16.0146C70.5673 15.8113 70.4578 15.5455 70.4578 15.2328C70.4578 14.8107 70.6142 14.498 70.9425 14.2634C71.2709 14.0289 71.7556 13.9195 72.381 13.9195H73.3347V15.3892C73.194 15.6393 72.9751 15.8582 72.6937 16.0459C72.4122 16.2335 72.0683 16.3117 71.693 16.3117ZM78.8227 17.625V12.2309C79.1041 11.6211 79.6513 11.324 80.4643 11.324C80.6989 11.324 80.949 11.3397 81.1836 11.3866L81.1992 9.6667C81.1367 9.63543 81.0429 9.61979 80.9178 9.60416C80.7927 9.58852 80.6676 9.57289 80.5738 9.57289C80.1829 9.57289 79.8389 9.6667 79.5419 9.83869C79.2448 10.0263 78.9946 10.2765 78.7914 10.6048L78.7445 9.71361H77.009V17.625H78.8227ZM84.123 17.625V15.0608L84.9204 14.2478L87.2188 17.625H89.3295L86.093 12.997L89.0324 9.69797H86.8435L84.6859 12.1527L84.1386 12.825V6.38331H82.3249V17.625H84.123ZM93.6292 17.7657C94.3484 17.7657 94.9738 17.625 95.4897 17.3436C96.0057 17.0621 96.3966 16.7025 96.6937 16.2804L95.7243 15.3423C95.2239 15.9833 94.5673 16.3117 93.7543 16.3117C93.3477 16.3117 93.0038 16.2178 92.7067 16.0459C92.4096 15.8739 92.1751 15.6237 91.9875 15.311C91.8155 14.9983 91.706 14.6387 91.6748 14.2322H96.8344V13.466C96.8344 12.6843 96.7093 12.012 96.4591 11.4178C96.209 10.8237 95.8337 10.3703 95.3178 10.0419C94.8174 9.71361 94.1764 9.55725 93.4415 9.55725C92.7536 9.55725 92.1438 9.72924 91.5966 10.0576C91.0494 10.4016 90.6272 10.8706 90.3145 11.4804C90.0018 12.0902 89.8455 12.8094 89.8455 13.6224V13.9195C89.8455 14.6387 90.0018 15.2954 90.2989 15.8739C90.6116 16.4524 91.0494 16.9058 91.6279 17.2498C92.1907 17.5937 92.863 17.7657 93.6292 17.7657ZM91.706 12.9188C91.7842 12.3247 91.9718 11.8556 92.2689 11.5273C92.566 11.1989 92.9412 11.027 93.4259 11.027C93.9575 11.027 94.364 11.1989 94.6142 11.5273C94.8643 11.8556 95.0051 12.2778 95.0363 12.7937V12.9188H91.706ZM100.696 17.7657C101.134 17.7657 101.525 17.7032 101.885 17.5937V16.1866C101.666 16.2335 101.462 16.2647 101.259 16.2647C100.993 16.2647 100.774 16.2022 100.649 16.0928C100.509 15.9677 100.446 15.7488 100.446 15.4204V11.0739H101.838V9.72924H100.446V7.80611H98.6324V9.72924H97.3503V11.0739H98.6324V15.5455C98.6324 16.3273 98.82 16.8902 99.1953 17.2498C99.5549 17.5937 100.055 17.7657 100.696 17.7657Z" fill="currentColor"/> <path d="M19.2058 24.3638L0.115234 18.9071V5.82045L19.2058 0.36377V24.3638ZM17.3608 13.8882L3.32045 17.8908L17.3608 21.8934V13.8882ZM1.96019 8.35334V16.3742L16.0006 12.3716L1.96019 8.35334ZM17.3608 2.80286L3.32045 6.8211L17.3608 10.8237V2.80286Z" fill="currentColor"/> </svg></div><div class="logo-wrap w-embed"><svg width="94" height="24" viewBox="0 0 94 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M38.2544 17.6319C37.0958 17.6319 36.1351 17.3734 35.3723 16.8566C34.6095 16.3397 34.1397 15.5592 33.9681 14.5123L35.7418 14.0877C35.8394 14.5914 36.0058 14.9922 36.2406 15.2876C36.4755 15.5829 36.7685 15.7913 37.1195 15.9151C37.4706 16.0391 37.8479 16.0998 38.2544 16.0998C38.8589 16.0998 39.3234 15.9837 39.648 15.7491C39.9753 15.5144 40.1362 15.2137 40.1362 14.8446C40.1362 14.4753 39.9832 14.2038 39.6744 14.0324C39.3655 13.8609 38.9116 13.7186 38.3072 13.6078L37.6791 13.497C37.0641 13.3863 36.5019 13.2255 35.9978 13.0171C35.4937 12.8088 35.0925 12.5187 34.7969 12.1496C34.5013 11.7803 34.3535 11.3057 34.3535 10.7282C34.3535 9.8659 34.6729 9.19874 35.3142 8.7267C35.9556 8.25203 36.8028 8.01733 37.8638 8.01733C38.9248 8.01733 39.7272 8.24676 40.3844 8.71087C41.0442 9.17237 41.4717 9.79731 41.6671 10.5832L39.8934 11.0815C39.7826 10.5278 39.5477 10.1375 39.1914 9.91067C38.8351 9.68396 38.3917 9.56789 37.8612 9.56789C37.3306 9.56789 36.9374 9.66284 36.6418 9.85268C36.3462 10.0426 36.1984 10.3115 36.1984 10.6543C36.1984 11.0235 36.3436 11.2951 36.6312 11.4665C36.9215 11.638 37.3122 11.7672 37.8031 11.8542L38.4498 11.965C39.1016 12.0757 39.7008 12.2287 40.2419 12.4264C40.7829 12.6242 41.2105 12.9063 41.5246 13.2756C41.8387 13.6447 41.9944 14.1378 41.9944 14.7523C41.9944 15.6621 41.6566 16.3714 40.9782 16.8751C40.2999 17.3787 39.3893 17.6319 38.2439 17.6319H38.2544Z" fill="currentColor"/> <path d="M46.233 17.6312C45.5812 17.6312 44.9978 17.5205 44.4884 17.2989C43.9764 17.0774 43.5699 16.7505 43.2691 16.3206C42.9682 15.8907 42.8177 15.366 42.8177 14.7516C42.8177 14.1372 42.9682 13.6045 43.2691 13.1931C43.5699 12.7817 43.9843 12.4706 44.5069 12.2623C45.0295 12.0539 45.6233 11.9485 46.2885 11.9485H49.0598V11.3578C49.0598 10.8277 48.8988 10.4031 48.5794 10.0841C48.26 9.76495 47.7665 9.60411 47.1014 9.60411C46.4363 9.60411 45.9506 9.75706 45.6049 10.0656C45.2591 10.3741 45.0321 10.7723 44.9213 11.2654L43.1477 10.6932C43.2955 10.2001 43.533 9.75443 43.8576 9.35629C44.1849 8.95542 44.6178 8.63371 45.1588 8.38847C45.6999 8.14322 46.3545 8.01929 47.1172 8.01929C48.2996 8.01929 49.2287 8.31991 49.907 8.92378C50.5853 9.52764 50.9231 10.3821 50.9231 11.4896V15.2368C50.9231 15.606 51.0947 15.7905 51.4405 15.7905H52.2164V17.378H50.7937C50.3636 17.378 50.0125 17.2673 49.7407 17.0458C49.4689 16.8242 49.3343 16.5237 49.3343 16.1413V16.0859H49.0571C48.9594 16.2705 48.8116 16.4867 48.6137 16.732C48.4158 16.9772 48.1281 17.1908 47.7454 17.3675C47.3627 17.5468 46.8585 17.6338 46.2304 17.6338L46.233 17.6312ZM46.5102 16.0622C47.2729 16.0622 47.8905 15.8433 48.3577 15.4055C48.8249 14.9678 49.0598 14.3692 49.0598 13.6071V13.4225H46.3993C45.8952 13.4225 45.4887 13.5306 45.18 13.7442C44.8712 13.9605 44.7181 14.2769 44.7181 14.6935C44.7181 15.1102 44.879 15.4451 45.1984 15.6903C45.5178 15.9356 45.9559 16.0596 46.5102 16.0596V16.0622Z" fill="currentColor"/> <path d="M53.3272 17.3727V8.27496H55.1932V9.34557H55.4888C55.6366 8.96322 55.8742 8.68369 56.1988 8.50701C56.5261 8.3277 56.9272 8.23804 57.4076 8.23804H58.4977V9.95474H57.3337C56.7187 9.95474 56.2121 10.1235 55.8187 10.4611C55.4255 10.7986 55.2275 11.3181 55.2275 12.0195V17.3727H53.3246H53.3272Z" fill="currentColor"/> <path d="M63.172 17.6319C62.4198 17.6319 61.7257 17.4474 61.0843 17.0782C60.443 16.7091 59.9309 16.1764 59.543 15.4828C59.155 14.7867 58.9623 13.9481 58.9623 12.9645V12.6876C58.9623 11.7145 59.1523 10.8786 59.535 10.1771C59.9177 9.47573 60.4271 8.94039 61.0685 8.57121C61.7098 8.20203 62.4119 8.01744 63.1746 8.01744C63.7659 8.01744 64.262 8.09127 64.6606 8.23895C65.0617 8.38662 65.389 8.57385 65.6477 8.80063C65.9063 9.02741 66.1043 9.26478 66.2389 9.50998H66.5345V4.45483H68.4375V17.3735H66.5714V16.0814H66.2759C66.041 16.4743 65.6873 16.8329 65.2148 17.1521C64.7398 17.4711 64.0615 17.6319 63.1746 17.6319H63.172ZM63.7078 15.9707C64.5339 15.9707 65.2122 15.7069 65.748 15.1769C66.2838 14.6469 66.5503 13.8901 66.5503 12.9064V12.7403C66.5503 11.7699 66.2864 11.0184 65.7559 10.4883C65.2254 9.95832 64.5418 9.69455 63.7052 9.69455C62.8685 9.69455 62.2192 9.95832 61.6834 10.4883C61.1476 11.0184 60.8811 11.7673 60.8811 12.7403V12.9064C60.8811 13.8901 61.1476 14.6469 61.6834 15.1769C62.2192 15.7069 62.8922 15.9707 63.7052 15.9707H63.7078Z" fill="currentColor"/> <path d="M71.4677 7.03969C71.0982 7.03969 70.7868 6.91839 70.536 6.68106C70.2826 6.44109 70.1586 6.12992 70.1586 5.7502C70.1586 5.37047 70.2853 5.05929 70.536 4.81933C70.7894 4.57936 71.0982 4.46069 71.4677 4.46069C71.8372 4.46069 72.1644 4.57936 72.4099 4.81933C72.6554 5.05929 72.7794 5.37047 72.7794 5.7502C72.7794 6.12992 72.6554 6.44373 72.4099 6.68106C72.1644 6.92103 71.8504 7.03969 71.4677 7.03969ZM70.507 17.3742V8.27645H72.4099V17.3742H70.507Z" fill="currentColor"/> <path d="M74.4945 8.27633H76.3605V9.64228H76.6562C76.8277 9.27313 77.1365 8.92767 77.5799 8.6086C78.0233 8.28952 78.6831 8.12866 79.5567 8.12866C80.2456 8.12866 80.8579 8.2816 81.3937 8.59014C81.9295 8.89867 82.3518 9.33112 82.6577 9.89018C82.9668 10.4492 83.1198 11.1243 83.1198 11.9102V17.3741H81.2169V12.0578C81.2169 11.2694 81.0189 10.6892 80.6257 10.3148C80.2324 9.94029 79.6888 9.75309 78.9999 9.75309C78.2107 9.75309 77.5799 10.0115 77.1075 10.5284C76.6324 11.0452 76.3975 11.7967 76.3975 12.7804V17.3767H74.4945V8.27633Z" fill="currentColor"/> <path d="M89.2915 17.6312C88.3674 17.6312 87.5601 17.4386 86.8711 17.051C86.1822 16.6634 85.6437 16.1149 85.2556 15.4082C84.8676 14.7015 84.6752 13.8787 84.6752 12.9452V12.7237C84.6752 11.777 84.8651 10.949 85.2482 10.2423C85.6305 9.5356 86.1608 8.98707 86.8448 8.59943C87.528 8.21179 88.3198 8.01929 89.2175 8.01929C90.1145 8.01929 90.8594 8.21179 91.5163 8.59943C92.1765 8.98707 92.6878 9.52501 93.0578 10.2133C93.427 10.9016 93.6119 11.7084 93.6119 12.6314V13.3513H86.6097C86.6335 14.1503 86.9024 14.7885 87.4121 15.2605C87.9243 15.7352 88.5606 15.9699 89.3228 15.9699C90.038 15.9699 90.5766 15.809 90.9383 15.49C91.3025 15.1708 91.582 14.8017 91.7777 14.3824L93.348 15.1946C93.1762 15.54 92.9254 15.9013 92.6007 16.2836C92.2735 16.666 91.846 16.9851 91.3181 17.2436C90.7879 17.502 90.112 17.6312 89.2858 17.6312H89.2915ZM86.6311 11.8904H91.6749C91.6248 11.2021 91.379 10.6642 90.9358 10.2765C90.4919 9.8889 89.9139 9.69644 89.1986 9.69644C88.4834 9.69644 87.9029 9.8889 87.454 10.2765C87.006 10.6642 86.7314 11.2021 86.6335 11.8904H86.6311Z" fill="currentColor"/> <path d="M29.4813 12.7829L18.5624 23.6922C18.3355 23.919 17.9369 23.919 17.7099 23.6922L10.4122 16.3983C10.0717 16.0608 9.88701 15.6098 9.88701 15.1325C9.88701 14.6552 10.0744 14.2043 10.4122 13.8668L10.7263 13.5529C10.75 13.5266 10.7844 13.5134 10.816 13.5134C10.8503 13.5134 10.882 13.5266 10.9057 13.5503L17.8023 20.4435C17.9818 20.6202 18.2906 20.6202 18.4701 20.4435L26.2271 12.6907C26.4092 12.5087 26.4092 12.2081 26.2271 12.0261L18.4701 4.27333C18.2906 4.09665 17.9818 4.09401 17.805 4.27333L1.13763 20.9207C1.0083 21.0499 0.828829 21.0843 0.659912 21.0157C0.490995 20.9445 0.388062 20.7889 0.388062 20.607V4.10456C0.388062 3.9226 0.490995 3.76702 0.659912 3.69846C0.826189 3.62726 1.01094 3.66417 1.14027 3.79339L5.66407 8.31322C6.0019 8.65076 6.18929 9.10169 6.18929 9.57903C6.18929 10.0563 6.0019 10.5099 5.66407 10.8474L5.35263 11.1586C5.30776 11.2034 5.22066 11.2034 5.17315 11.1586L3.18574 9.17291C3.09865 9.08584 2.98516 9.08584 2.91125 9.11755C2.83471 9.14917 2.75289 9.22827 2.75289 9.35223V15.3567C2.75289 15.4806 2.83471 15.5598 2.91125 15.5914C2.98516 15.6204 3.09865 15.623 3.18574 15.536L17.7099 1.02717C17.9264 0.810931 18.346 0.810931 18.5624 1.02717L29.4813 11.9364C29.7163 12.1685 29.7163 12.5509 29.4813 12.7856V12.7829Z" fill="currentColor"/> </svg></div><div class="logo-wrap w-embed"><svg width="106" height="25" viewBox="0 0 106 25" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M14.1884 0.375733H10.9584C5.23243 0.382733 0.592433 5.01373 0.587433 10.7277C0.594433 16.4407 5.23343 21.0697 10.9584 21.0767H14.2004C19.9264 21.0717 24.5674 16.4417 24.5744 10.7277C24.5684 5.00773 19.9204 0.374733 14.1884 0.375733ZM1.87143 10.7277C1.87143 5.72273 5.93643 1.66673 10.9514 1.66673C11.4584 1.66673 11.9654 1.70773 12.4654 1.79173C16.8414 2.51373 20.0454 6.29673 20.0294 10.7227C20.0244 13.5637 17.9694 15.9877 15.1624 16.4627C16.9994 15.1247 18.0844 12.9917 18.0824 10.7227C18.0884 7.47573 15.8874 4.63873 12.7354 3.83173C12.1524 3.68073 11.5534 3.60573 10.9514 3.60573C7.01943 3.61773 3.83843 6.79973 3.83443 10.7227C3.82443 14.2777 5.64843 17.5867 8.66143 19.4827C4.67243 18.4377 1.88743 14.8437 1.87843 10.7277H1.87143ZM12.5684 5.13673C15.0654 5.85373 16.7844 8.13473 16.7824 10.7277C16.7834 13.3197 15.0644 15.5987 12.5684 16.3157C10.0724 15.5987 8.35443 13.3197 8.35443 10.7277C8.35243 8.13473 10.0714 5.85373 12.5684 5.13673ZM14.1884 19.7837H14.1514C13.6584 19.7807 13.1654 19.7397 12.6784 19.6587C8.41843 18.9537 5.25343 15.3387 5.12543 11.0317V10.7277C5.12843 7.88573 7.18443 5.46073 9.99143 4.98673C8.15443 6.32473 7.06843 8.45773 7.06843 10.7277C7.06443 13.9737 9.26543 16.8097 12.4164 17.6167C12.9984 17.7677 13.5984 17.8437 14.2004 17.8417C18.1364 17.8377 21.3264 14.6557 21.3324 10.7277C21.3434 7.17273 19.5194 3.86273 16.5044 1.96773C20.4934 3.01473 23.2744 6.61173 23.2754 10.7277C23.2744 13.1307 22.3164 15.4357 20.6114 17.1337C18.9074 18.8327 16.5964 19.7857 14.1884 19.7837Z" fill="currentColor"/> <path d="M45.3384 19.2717H30.5674V17.6087C32.3884 17.3027 32.7464 16.6637 32.7464 16.0487V5.63373C32.7464 4.45773 32.3884 3.97073 30.5674 3.84373V2.18073H39.8514V3.84373C38.0304 3.97073 37.6714 4.45773 37.6714 5.63373V16.6537C37.6714 17.2667 37.8504 17.7027 39.3894 17.7027H41.0564C42.0034 17.7027 43.1324 17.2417 43.9274 14.7337H45.5934L45.3384 19.2717ZM46.6714 13.0027C46.6714 8.85873 49.6724 5.78773 53.9274 5.78773C58.4164 5.78773 61.0054 8.80773 61.0054 12.4907C61.0054 16.6127 57.9554 19.6317 53.7754 19.6317C49.2114 19.6317 46.6714 16.6887 46.6714 13.0027ZM56.1854 13.9507C56.1854 9.88273 54.7744 7.45073 53.3904 7.45073C52.0824 7.45073 51.5454 9.08873 51.5454 11.4427C51.5454 15.5887 52.9804 17.9687 54.3374 17.9687C55.6234 17.9687 56.1854 16.3557 56.1854 13.9507ZM62.5954 13.0027C62.5954 8.85873 65.5974 5.78773 69.8524 5.78773C74.3414 5.78773 76.9304 8.80773 76.9304 12.4907C76.9304 16.6127 73.8804 19.6317 69.6984 19.6317C65.1354 19.6317 62.5954 16.6887 62.5954 13.0027ZM72.1104 13.9507C72.1104 9.88273 70.6994 7.45073 69.3154 7.45073C68.0074 7.45073 67.4674 9.08873 67.4674 11.4427C67.4674 15.5887 68.9054 17.9687 70.2624 17.9687C71.5464 17.9687 72.1104 16.3557 72.1104 13.9507ZM92.7594 12.2877C92.7594 16.7647 90.0424 19.6347 86.1184 19.6347C85.3274 19.6487 84.5414 19.5007 83.8094 19.1987V21.0917C83.8094 22.0397 84.1944 22.4237 85.9394 22.6787V24.3517H77.5534V22.6887C78.8864 22.3827 79.0414 22.0487 79.0414 21.1017V9.83573C79.0414 9.16973 78.8104 8.78573 77.9634 8.40373L77.5534 8.22473V6.89273L82.7834 5.79273H83.8094V7.43173C84.4684 6.38873 85.6274 5.76673 86.8624 5.79273C90.9384 5.78773 92.7594 8.92273 92.7594 12.2877ZM87.8364 13.2087C87.8364 10.5467 87.1004 8.24473 85.3234 8.24473C84.5534 8.24473 84.4254 8.19273 83.8094 8.65373V13.7957C83.8094 16.8427 84.3004 17.7387 85.6304 17.7387C86.8624 17.7387 87.8364 16.2277 87.8364 13.2087ZM105.153 7.29673L102.794 10.5217C101.665 8.26873 100.585 7.32373 99.3074 7.32373C98.5364 7.32373 97.5374 7.78373 97.5374 8.57773C97.5374 11.2717 105.562 9.52273 105.41 15.4617C105.332 17.6087 103.255 19.6247 99.6654 19.6247C96.5364 19.6247 93.9224 18.0627 93.2844 17.4987L96.0554 14.6087C97.5944 17.0137 98.8504 18.0887 100.08 18.0887C100.72 18.0887 101.849 17.8077 101.876 16.5537C101.876 13.6617 93.9524 15.9907 93.9764 10.1867C93.9764 7.44873 96.2594 5.77773 99.9014 5.77773C102.767 5.78773 104.615 6.78473 105.153 7.29673Z" fill="currentColor"/> </svg></div><div class="logo-wrap w-embed"><svg width="136" height="15" viewBox="0 0 136 15" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M136 0.729996H131.974L127.151 6.13347V0.729996H123.77L123.787 14.0314H127.151V8.97679L131.725 14.0314H136L129.836 7.46412L136 0.729996ZM118.32 6.20005L115.237 5.85117C113.431 5.65144 112.984 5.20228 112.984 4.5871C112.984 3.90534 113.912 3.29016 115.718 3.29016C117.458 3.29016 118.369 3.93905 118.535 4.91997H121.849C121.681 2.10952 119.329 0.364258 115.9 0.364258C111.824 0.364258 109.769 1.99322 109.769 4.8694C109.769 7.21383 111.128 8.31189 113.945 8.61105L117.077 8.94308C118.27 9.07623 118.817 9.54225 118.817 10.1406C118.817 10.8223 118.021 11.4375 116.099 11.4375C113.878 11.4375 112.984 10.8721 112.834 9.74113H109.586C109.736 12.801 111.724 14.3634 115.983 14.3634C119.877 14.3634 122.048 12.651 122.048 10.074C122.048 7.82901 120.755 6.48236 118.32 6.20005ZM97.4233 14.0314H108.095V11.1552H100.804V8.7442H106.67V5.85117H100.804V3.60618H108.095V0.729996H97.4233V14.0314ZM89.4696 0.729996H83.272V14.0314H89.4696C94.2258 14.0314 95.5344 12.2524 95.5344 7.28041C95.5344 2.6084 94.2754 0.729996 89.4696 0.729996ZM89.3335 11.156H86.6459V3.60618H89.3335C91.455 3.60618 92.0841 4.18849 92.0841 7.28041C92.0875 10.1069 91.3753 11.156 89.3335 11.156ZM74.0921 0.364258C69.2695 0.364258 66.7675 3.33988 66.7675 7.34698C66.7675 11.3709 69.2695 14.3634 74.0921 14.3634C78.9307 14.3634 81.4327 11.3709 81.4327 7.34698C81.4327 3.33988 78.9307 0.364258 74.0921 0.364258ZM74.0921 11.3709C71.5901 11.3709 70.2144 9.84141 70.2144 7.34698C70.2144 4.90311 71.5901 3.35673 74.0921 3.35673C76.6118 3.35673 77.9699 4.90311 77.9699 7.34698C77.9699 9.84141 76.6109 11.3709 74.0921 11.3709ZM54.3061 3.60618H58.5811V14.0314H61.9617V3.60618H66.2207V0.729996H54.3061V3.60618ZM49.3852 8.94308C49.3852 10.6723 48.3244 11.3709 46.5178 11.3709C44.7617 11.3709 43.6186 10.6395 43.6186 8.94308V0.729996H40.238V9.32567C40.238 13.1668 43.6513 14.3634 46.5178 14.3634C49.3684 14.3634 52.7649 13.1668 52.7649 9.32567V0.729996H49.3852V8.94308ZM30.345 0.729996L25.2579 14.0314H28.7543L29.642 11.537H35.3213L36.1948 14.0314H39.8063L34.657 0.729996H30.345ZM30.6482 8.71049L32.5052 3.49662L34.3311 8.71218L30.6482 8.71049ZM0.104146 14.0322L11.9751 6.62309H18.1331C18.1804 6.62309 18.2272 6.63245 18.2709 6.65063C18.3145 6.66881 18.3542 6.69545 18.3876 6.72903C18.421 6.76261 18.4474 6.80247 18.4655 6.84633C18.4835 6.89019 18.4927 6.93718 18.4926 6.98462C18.4975 7.04616 18.4841 7.10778 18.4543 7.16175C18.4244 7.21573 18.3793 7.25964 18.3246 7.28799L12.4941 10.7954C12.1153 11.0229 11.9826 11.4797 11.9826 11.8218L11.9768 14.0322H19.3862V1.1859C19.3864 1.1243 19.3741 1.06329 19.3501 1.00658C19.3261 0.949863 19.291 0.898614 19.2467 0.855925C19.2024 0.813237 19.15 0.779994 19.0925 0.758205C19.0351 0.736416 18.9739 0.726533 18.9125 0.729153H11.8424L0 8.10627V14.0322H0.104146Z" fill="currentColor"/> </svg></div><div class="logo-wrap w-embed"><svg width="56" height="19" viewBox="0 0 56 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M2.14914 18.3532L0.221436 0.374268H3.74159L4.74735 11.7184L5.75312 0.374268H9.10564L10.0695 11.7184L11.0333 0.374268H14.5954L12.6258 18.3532H8.30943L7.40845 9.68814L6.54934 18.3532H2.14914Z" fill="currentColor"/> <path d="M15.6169 0.374268H21.1487C22.0287 0.374268 22.7062 0.576592 23.1811 0.981238C23.67 1.37194 23.9983 1.93007 24.1659 2.65564C24.3335 3.36727 24.4173 4.28122 24.4173 5.39749C24.4173 6.4161 24.2847 7.21144 24.0192 7.78353C23.7538 8.35562 23.2929 8.75327 22.6363 8.97652C23.1811 9.08817 23.5722 9.36023 23.8097 9.7928C24.0612 10.2254 24.1868 10.8114 24.1868 11.5509L24.145 18.3532H20.6248V11.3207C20.6248 10.8184 20.527 10.4975 20.3315 10.3579C20.1359 10.2184 19.7797 10.1486 19.2628 10.1486V18.3532H15.6169V0.374268ZM20.1429 7.03005C20.6458 7.03005 20.8972 6.48584 20.8972 5.39749C20.8972 4.92307 20.8762 4.56726 20.8343 4.33006C20.7925 4.09285 20.7156 3.93239 20.6039 3.84866C20.4921 3.75099 20.3315 3.70215 20.1219 3.70215H19.2838V7.03005H20.1429Z" fill="currentColor"/> <path d="M25.4352 18.3532V0.374268H28.9135V18.3532H25.4352Z" fill="currentColor"/> <path d="M31.9007 18.3532V3.82773H29.7635V0.374268H37.6419V3.82773H35.5046V18.3532H31.9007Z" fill="currentColor"/> <path d="M38.6578 18.3532V0.374268H45.8658V3.84866H42.3246V7.34397H45.7191V10.7347H42.3246V14.8579H46.0962V18.3532H38.6578Z" fill="currentColor"/> <path d="M46.9783 0.374268H52.5099C53.3898 0.374268 54.0676 0.576592 54.5423 0.981238C55.0314 1.37194 55.3595 1.93007 55.5272 2.65564C55.6948 3.36727 55.7787 4.28122 55.7787 5.39749C55.7787 6.4161 55.646 7.21144 55.3806 7.78353C55.1152 8.35562 54.6544 8.75327 53.9977 8.97652C54.5423 9.08817 54.9337 9.36023 55.1713 9.7928C55.4223 10.2254 55.5483 10.8114 55.5483 11.5509L55.5061 18.3532H51.9863V11.3207C51.9863 10.8184 51.8886 10.4975 51.6927 10.3579C51.4972 10.2184 51.1408 10.1486 50.6241 10.1486V18.3532H46.9783V0.374268ZM51.5044 7.03005C52.0069 7.03005 52.2584 6.48584 52.2584 5.39749C52.2584 4.92307 52.2378 4.56726 52.1956 4.33006C52.154 4.09285 52.0768 3.93239 51.9652 3.84866C51.8536 3.75099 51.6927 3.70215 51.4834 3.70215H50.6451V7.03005H51.5044Z" fill="currentColor"/> </svg></div><div class="logo-wrap w-embed"><svg width="68" height="22" viewBox="0 0 68 22" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M67.5 0.863525H0.5V21.8635H67.5V0.863525Z" fill="transparent"/> <path d="M67.5 0.863525H0.5V21.8635H67.5V0.863525Z" fill="transparent"/> <path d="M6.35435 6.64153H18.7949C18.7949 3.45366 16.1523 0.903374 12.9405 0.863525H0.5C0.5 4.05138 3.1426 6.64153 6.35435 6.64153Z" fill="currentColor"/> <path d="M0.5 13.8946V21.8635L0.540655 21.8643C4.03701 21.8643 6.8829 19.0351 6.8829 15.6081V13.9345H7.93995C11.1923 13.9345 13.8349 11.3443 13.8349 8.15649H6.395C3.1426 8.15649 0.5 10.7068 0.5 13.8946Z" fill="currentColor"/> <path d="M32.4551 9.78943V20.4687H29.9751V10.5066H26.7634V20.4687H24.2834V10.5066H22.8604V8.39473H24.2834V7.00003C24.2834 4.76852 25.6657 3.33399 27.8611 3.33399H32.2925V5.44593H27.8204C27.2106 5.44593 26.7634 6.00383 26.7634 6.96018V8.39473H31.0321C31.8046 8.39473 32.4551 9.03228 32.4551 9.78943Z" fill="currentColor"/> <path d="M33.2686 8.39517H35.7079V10.1485H35.7485C36.3584 9.15232 37.4967 8.07642 39.4888 8.07642C42.172 8.07642 43.8389 9.94932 43.8389 12.898V20.5091H41.3589V13.0575C41.3589 10.9854 40.2612 10.1884 38.8383 10.1884C37.1308 10.1884 35.7485 11.3839 35.7485 13.6552V20.4692H33.2686V8.39517Z" fill="currentColor"/> <path d="M44.4072 14.4111C44.4072 10.6654 46.7246 8.0354 50.5866 8.0354C54.1236 8.0354 56.0751 10.2669 56.3601 13.0164H53.7986C53.6766 11.4623 52.5791 10.1474 50.5866 10.1474C48.3508 10.1474 46.9685 11.9405 46.9685 14.451C46.9685 17.1208 48.5541 18.7944 50.5866 18.7944C52.5381 18.7944 53.5951 17.3599 53.7986 16.1645H56.3601C56.0346 18.635 54.0426 20.9064 50.5866 20.9064C46.8873 20.8267 44.4072 18.2764 44.4072 14.4111Z" fill="currentColor"/> <path d="M56.9287 2.89478H59.4087V8.35397C59.4087 8.91182 59.4087 9.31037 59.3682 10.1472H59.4087C60.0187 9.15092 61.1572 8.07502 63.1492 8.07502C65.8322 8.07502 67.4992 9.94787 67.4992 12.8967V20.5077H65.0192V13.0561C65.0192 10.984 63.9217 10.187 62.4987 10.187C60.7912 10.187 59.4087 11.3825 59.4087 13.6538V20.4678H56.9287V2.89478Z" fill="currentColor"/> </svg></div></div><div class="overlay"></div><div class="overlay right"></div></div></div></div></div></div></section><section class="section-generic"><div class="padding-global"><div class="container-medium semi"><div class="padding-section-medium padding-top"><div class="margin-bottom margin-large"><div class="text-align-center"><div class="max-width-medium align-center"><div class="margin-bottom margin-small"><h1 blocks-non-deletable="true" class="heading-style-h2">Join our team of builders</h1></div><p class="description align-center">The values that define us as a company</p></div></div></div><div class="feature-frid"><div class="grid-item inner line-bottom line-right"><div class="margin-bottom margin-xsmall"><div class="w-layout-hflex flex-center text-color-primary"><div class="icon-flex w-embed"><svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M4.645 10.908L6.347 7.883C6.462 7.678 6.666 7.54 6.899 7.508C7.133 7.479 7.365 7.555 7.531 7.721L9.44 9.63L10.537 8.266C10.36 7.967 10.251 7.623 10.251 7.251C10.251 6.414 10.769 5.697 11.501 5.4V2H3.75C2.233 2 1 3.233 1 4.75V6.302L4.645 10.908Z" fill="currentColor"/> <path d="M14.25 2H13V5.399C13.732 5.697 14.25 6.413 14.25 7.25C14.25 8.087 13.732 8.804 13 9.101V16H14.25C15.767 16 17 14.767 17 13.25V4.75C17 3.233 15.767 2 14.25 2Z" fill="currentColor"/> <path d="M11.5 9.46002L10.084 11.22C9.95102 11.386 9.75302 11.487 9.54002 11.499C9.32802 11.508 9.12002 11.431 8.96902 11.28L7.16802 9.47902L5.40302 12.617C5.28002 12.835 5.05702 12.977 4.80802 12.997C4.78802 12.998 4.76902 12.999 4.74902 12.999C4.52102 12.999 4.30402 12.895 4.16102 12.714L0.999023 8.71802V13.248C0.999023 14.765 2.23202 15.998 3.74902 15.998H11.499V9.45802L11.5 9.46002Z" fill="currentColor"/> </svg></div><p class="description _30ch text-weight-medium">Goal oriented</p></div></div><p class="description">Slope y intercept. Investing in people, fostering growth as the company evolves dynamically.</p></div><div id="w-node-_7889c379-f34e-15d5-02a3-1f4202cedea6-321bd5ec" class="grid-item inner line-bottom"><div class="margin-bottom margin-xsmall"><div class="w-layout-hflex flex-center text-color-primary"><div class="icon-flex w-embed"><svg width="19" height="18" viewBox="0 0 19 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6281_14525)"> <path d="M9.11327 16.087C8.83327 16.087 8.55227 16.02 8.29727 15.887C6.67127 15.038 1.36527 11.86 1.36527 6.609C1.35527 4.085 3.40627 2.016 5.93627 2C7.47327 2.02 8.88927 2.787 9.73727 4.053C9.96727 4.397 9.87627 4.863 9.53127 5.094C9.18727 5.325 8.72127 5.232 8.49127 4.888C7.91827 4.032 6.96127 3.513 5.93127 3.5C4.24127 3.511 2.85927 4.904 2.86527 6.606C2.86527 11.018 7.55427 13.808 8.99127 14.557C9.07127 14.599 9.15727 14.598 9.23727 14.557C10.0443 14.136 12.0843 12.96 13.5853 11.141C13.8493 10.821 14.3233 10.778 14.6413 11.04C14.9603 11.304 15.0053 11.776 14.7423 12.096C13.1273 14.054 11.0353 15.311 9.93127 15.887C9.67527 16.02 9.39527 16.087 9.11427 16.087H9.11327Z" fill="currentColor"/> <path d="M12.2772 2.00002C10.7592 2.01902 9.34918 2.78002 8.50118 4.03802L5.67918 7.84502C5.44218 8.16502 5.49618 8.61502 5.80318 8.86902C6.86518 9.75002 8.41718 9.63002 9.33118 8.58902L10.2092 7.58902L13.5632 12.068C13.7012 12.252 13.9172 12.363 14.1462 12.368H14.1642C14.3882 12.368 14.6012 12.268 14.7432 12.095C16.1502 10.387 16.8642 8.54002 16.8642 6.61102C16.8742 4.08402 14.8232 2.01502 12.2782 1.99902L12.2772 2.00002Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_6281_14525"> <rect width="18" height="18" fill="white" transform="translate(0.114258)"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">Humility</p></div></div><p class="description">Everyone has much to give and learn. Egos not allowed, fostering a collaborative environment.</p></div><div id="w-node-_7889c379-f34e-15d5-02a3-1f4202cedeb6-321bd5ec" class="grid-item inner line-bottom line-right"><div class="margin-bottom margin-xsmall"><div class="w-layout-hflex flex-center text-color-primary"><div class="icon-flex w-embed"><svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6281_14566)"> <path d="M15.3522 6.39901C15.6942 5.91201 15.6702 5.24301 15.2352 4.80801L13.1922 2.76501C12.7572 2.33001 12.0882 2.30601 11.6012 2.64801C8.6662 0.989011 5.6992 1.29001 5.1092 1.37301C4.8082 1.41501 4.5632 1.63401 4.4862 1.92801C4.4092 2.22201 4.5192 2.53301 4.7612 2.71601C6.0802 3.70801 7.3542 4.77901 8.5742 5.88901C8.4702 6.30201 8.5582 6.75401 8.8812 7.07701L10.9242 9.12001C11.1682 9.36401 11.4872 9.48601 11.8082 9.48601C11.9112 9.48601 12.0112 9.45201 12.1122 9.42701C13.2222 10.647 14.2932 11.921 15.2852 13.24C15.4292 13.431 15.6532 13.539 15.8852 13.539C15.9472 13.539 16.0102 13.531 16.0732 13.515C16.3672 13.439 16.5862 13.193 16.6282 12.892C16.7112 12.301 17.0112 9.33401 15.3532 6.40001L15.3522 6.39901ZM10.1192 6.19201L12.3082 4.00301L13.9972 5.69201L11.8082 7.88101L10.1192 6.19201Z" fill="currentColor"/> <path d="M9.863 10.18L7.82 8.13705C7.737 8.05405 7.667 7.96405 7.597 7.87305L2.149 13.321C1.811 13.659 1.625 14.108 1.625 14.586C1.625 15.064 1.811 15.513 2.149 15.851C2.487 16.189 2.936 16.375 3.414 16.375C3.892 16.375 4.341 16.189 4.679 15.851L10.127 10.403C10.036 10.332 9.946 10.262 9.863 10.18Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_6281_14566"> <rect width="18" height="18" fill="white"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">Hackiness over perfection</p></div></div><p class="description">We move fast and take big swings, crafting solutions that addresses 80% of the problem in 20% of the time.</p></div><div id="w-node-_7889c379-f34e-15d5-02a3-1f4202cedeae-321bd5ec" class="grid-item inner line-bottom"><div class="margin-bottom margin-xsmall"><div class="w-layout-hflex flex-center text-color-primary"><div class="icon-flex w-embed"><svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6281_14534)"> <path d="M12.0001 1.75C11.5001 1.75 11.0351 1.885 10.6201 2.102C11.1671 2.847 11.5001 3.757 11.5001 4.75C11.5001 5.743 11.1671 6.653 10.6201 7.398C11.0351 7.615 11.5001 7.75 12.0001 7.75C13.6541 7.75 15.0001 6.404 15.0001 4.75C15.0001 3.096 13.6541 1.75 12.0001 1.75Z" fill="currentColor"/> <path d="M7 7.75C8.65685 7.75 10 6.40685 10 4.75C10 3.09315 8.65685 1.75 7 1.75C5.34315 1.75 4 3.09315 4 4.75C4 6.40685 5.34315 7.75 7 7.75Z" fill="currentColor"/> <path d="M8.49994 11.722C8.49594 10.773 8.86194 9.91198 9.44994 9.25198C8.68994 8.92898 7.86194 8.75098 6.99994 8.75098C4.63094 8.75098 2.49494 10.066 1.42494 12.183C1.14294 12.74 1.11794 13.396 1.35594 13.984C1.60194 14.591 2.09694 15.063 2.71394 15.277C4.09794 15.757 5.53994 16.001 6.99994 16.001C8.02294 16.001 9.03694 15.874 10.0289 15.637C9.17994 14.631 8.49994 13.326 8.49994 11.722Z" fill="currentColor"/> <path d="M13.731 16.683C13.901 16.772 14.099 16.772 14.269 16.683C15.166 16.211 18 14.502 18 11.722C18.004 10.501 17.026 9.507 15.813 9.5C15.083 9.509 14.405 9.88 14 10.491C13.595 9.88 12.916 9.51 12.187 9.5C10.974 9.507 9.99601 10.502 10 11.722C10 14.502 12.834 16.211 13.731 16.683Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_6281_14534"> <rect width="18" height="18" fill="white"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">Customer-obsessed</p></div></div><p class="description">We love our customers. We make decisions by focusing relentlessly on them.</p></div><div id="w-node-af18e80a-87c1-aa43-3b0c-5a98218c2a73-321bd5ec" class="grid-item inner line-right mobile-line-bottom"><div class="margin-bottom margin-xsmall"><div class="w-layout-hflex flex-center text-color-primary"><div class="icon-flex w-embed"><svg width="19" height="18" viewBox="0 0 19 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6281_14545)"> <path d="M9.11426 2.5C8.70026 2.5 8.36426 2.164 8.36426 1.75V0.75C8.36426 0.336 8.70026 0 9.11426 0C9.52826 0 9.86426 0.336 9.86426 0.75V1.75C9.86426 2.164 9.52826 2.5 9.11426 2.5Z" fill="currentColor"/> <path d="M14.2405 4.62401C14.0485 4.62401 13.8565 4.55101 13.7105 4.40401C13.4175 4.11101 13.4175 3.63601 13.7105 3.34301L14.4175 2.63601C14.7105 2.34301 15.1855 2.34301 15.4785 2.63601C15.7715 2.92901 15.7715 3.40401 15.4785 3.69701L14.7715 4.40401C14.6255 4.55001 14.4325 4.62401 14.2405 4.62401Z" fill="currentColor"/> <path d="M17.3643 9.75H16.3643C15.9503 9.75 15.6143 9.414 15.6143 9C15.6143 8.586 15.9503 8.25 16.3643 8.25H17.3643C17.7783 8.25 18.1143 8.586 18.1143 9C18.1143 9.414 17.7783 9.75 17.3643 9.75Z" fill="currentColor"/> <path d="M3.98849 4.62401C3.79649 4.62401 3.60449 4.55101 3.45849 4.40401L2.75149 3.69701C2.45849 3.40401 2.45849 2.92901 2.75149 2.63601C3.04449 2.34301 3.51949 2.34301 3.81249 2.63601L4.51949 3.34301C4.81249 3.63601 4.81249 4.11101 4.51949 4.40401C4.37349 4.55001 4.18049 4.62401 3.98849 4.62401Z" fill="currentColor"/> <path d="M1.86426 9.75H0.864258C0.450258 9.75 0.114258 9.414 0.114258 9C0.114258 8.586 0.450258 8.25 0.864258 8.25H1.86426C2.27826 8.25 2.61426 8.586 2.61426 9C2.61426 9.414 2.27826 9.75 1.86426 9.75Z" fill="currentColor"/> <path d="M12.5802 4.72902C11.2872 3.67902 9.5932 3.27502 7.9332 3.62402C5.7552 4.08002 4.0492 5.87102 3.6892 8.08202C3.2962 10.493 4.4862 12.81 6.6142 13.891V15.75C6.6142 16.715 7.3992 17.5 8.3642 17.5H9.8642C10.8292 17.5 11.6142 16.715 11.6142 15.75V13.891C13.4522 12.957 14.6142 11.089 14.6142 9.00002C14.6142 7.33602 13.8722 5.77902 12.5802 4.72902ZM9.8642 16H8.3642C8.2262 16 8.1142 15.888 8.1142 15.75V14H10.1142V15.75C10.1142 15.888 10.0022 16 9.8642 16Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_6281_14545"> <rect width="18" height="18" fill="white" transform="translate(0.114258)"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">Intellectual honesty</p></div></div><p class="description">We believe in creating an environment where the best ideas win and acknowledging when we are wrong.</p></div><div id="w-node-_4f1587e5-1749-d67e-79da-b3344a50e370-321bd5ec" class="grid-item inner"><div class="margin-bottom margin-xsmall"><div class="w-layout-hflex flex-center text-color-primary"><div class="icon-flex w-embed"><svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6281_14558)"> <path d="M13.1799 5.30198C13.0019 5.15198 12.7629 5.09398 12.5379 5.14298C12.3099 5.19098 12.1179 5.34398 12.0169 5.55298C12.0129 5.56198 11.7339 6.13498 11.1989 6.68498C10.6669 2.27498 7.7389 0.66098 7.6029 0.58798C7.3749 0.46598 7.1009 0.47098 6.8769 0.59898C6.6529 0.72698 6.5109 0.96098 6.5009 1.21898C6.3899 3.94898 5.5129 5.16298 4.5849 6.44798C3.7919 7.54598 2.9729 8.68098 2.7549 10.65C2.5759 12.263 3.0569 13.793 4.1089 14.959C5.2819 16.258 7.0439 17 8.9499 17H9.0069C11.6949 16.979 13.8769 15.939 14.9919 14.146C16.6909 11.415 15.9119 7.61298 13.1799 5.30198ZM11.2469 14.42C10.7899 15.092 9.9949 15.496 9.1209 15.5H9.0999C7.7739 15.5 6.7489 14.876 6.2869 13.786C5.6549 12.297 6.1849 10.202 7.5489 8.80398C7.7539 8.59398 8.0639 8.52298 8.3389 8.62098C8.6149 8.71998 8.8089 8.97098 8.8329 9.26298C8.9309 10.408 9.2639 10.556 9.8669 10.825C10.3809 11.054 11.0829 11.367 11.4529 12.314C11.7369 13.041 11.6629 13.808 11.2469 14.419V14.42Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_6281_14558"> <rect width="18" height="18" fill="white"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">Having fun</p></div></div><p class="description">Be unapologetically you! We love our game-nights, ping pong tournaments, bufo emojis, and cow jokes.</p></div></div></div></div></div></section><section class="section-generic"><div class="padding-global"><div class="container-medium semi"><div class="padding-section-large padding-top"><div class="margin-bottom margin-large"><div class="text-align-center"><div class="max-width-medium align-center"><div class="margin-bottom margin-small"><h1 blocks-non-deletable="true" class="heading-style-h2">Perks &amp; benefits</h1></div><p class="description align-center">Not sold yet? Check out some benefits you鈥檒l have access to as well</p></div></div></div><div class="feature-frid perks"><div class="w-layout-hflex flex-center text-color-primary perk-ft"><div class="icon-flex w-embed"><svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6281_13825)"> <path d="M14.25 3.87415H3.75C2.233 3.87415 1 5.10715 1 6.62415V13.1241C1 14.6411 2.233 15.8741 3.75 15.8741H14.25C15.767 15.8741 17 14.6411 17 13.1241V6.62415C17 5.10715 15.767 3.87415 14.25 3.87415ZM4.25 10.6241C3.836 10.6241 3.5 10.2881 3.5 9.87415C3.5 9.46015 3.836 9.12415 4.25 9.12415C4.664 9.12415 5 9.46015 5 9.87415C5 10.2881 4.664 10.6241 4.25 10.6241ZM9 12.1241C7.757 12.1241 6.75 11.1171 6.75 9.87415C6.75 8.63115 7.757 7.62415 9 7.62415C10.243 7.62415 11.25 8.63115 11.25 9.87415C11.25 11.1171 10.243 12.1241 9 12.1241ZM13.75 10.6241C13.336 10.6241 13 10.2881 13 9.87415C13 9.46015 13.336 9.12415 13.75 9.12415C14.164 9.12415 14.5 9.46015 14.5 9.87415C14.5 10.2881 14.164 10.6241 13.75 10.6241Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_6281_13825"> <rect width="18" height="18" fill="white" transform="translate(0 0.874146)"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">Competitive salary and equity</p></div><div id="w-node-_7e7e0e0f-7ee7-ca6e-fce9-b531f321ad07-321bd5ec" class="w-layout-hflex flex-center text-color-primary perk-ft"><div class="icon-flex w-embed"><svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6281_13840)"> <path d="M8 9.87418V6.85718L1.598 9.42618C0.931 9.69418 0.5 10.3322 0.5 11.0502V12.1242C0.5 12.3422 0.595 12.5492 0.76 12.6922C0.897 12.8102 1.071 12.8742 1.25 12.8742C1.287 12.8742 1.324 12.8712 1.36 12.8662L7.36 11.9742C7.77 11.9132 7.977 11.5362 7.991 11.1222C7.999 10.8742 8 9.87418 8 9.87418Z" fill="currentColor"/> <path d="M10 9.87418V6.85718L16.402 9.42618C17.069 9.69418 17.5 10.3322 17.5 11.0502V12.1242C17.5 12.3422 17.405 12.5492 17.24 12.6922C17.103 12.8102 16.929 12.8742 16.75 12.8742C16.713 12.8742 16.676 12.8712 16.64 12.8662L10.64 11.9742C10.23 11.9132 10.023 11.5362 10.009 11.1222C10.001 10.8742 10.001 9.87418 10.001 9.87418H10Z" fill="currentColor"/> <path d="M13.415 15.7071L10.822 14.5171L10.875 14.1841C10.958 13.6571 11 13.1191 11 12.5851V3.87415C11 2.77115 10.103 1.87415 9 1.87415C7.897 1.87415 7 2.77115 7 3.87415V12.5861C7 13.1201 7.042 13.6571 7.125 14.1851L7.178 14.5181L4.585 15.7081C4.228 15.8721 4 16.2281 4 16.6201V17.3761C4 17.6721 4.256 17.9021 4.55 17.8721L7.725 17.5401C7.952 18.0331 8.432 18.3711 9 18.3711C9.568 18.3711 10.049 18.0331 10.275 17.5401L13.45 17.8721C13.744 17.9031 14 17.6721 14 17.3761V16.6201C14 16.2281 13.771 15.8701 13.415 15.7071Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_6281_13840"> <rect width="18" height="18" fill="white" transform="translate(0 0.874146)"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">Flexible work culture</p></div><div id="w-node-_27b46264-ea9a-b3d1-7ff4-92d2f685466d-321bd5ec" class="w-layout-hflex flex-center text-color-primary perk-ft"><div class="icon-flex w-embed"><svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6281_13969)"> <path d="M14.7329 7.43412C14.3499 5.62012 13.2829 4.06412 11.7289 3.05212C10.1739 2.04112 8.31994 1.69712 6.50594 2.07812C2.76294 2.87012 0.358937 6.56112 1.15094 10.3061C1.21694 10.6231 1.48194 10.8621 1.80394 10.8961C1.83094 10.8991 1.85794 10.9001 1.88394 10.9001C2.17694 10.9001 2.44594 10.7291 2.56894 10.4571C2.60694 10.3721 2.96794 9.61512 3.81794 9.41612C4.73294 9.20212 5.42494 9.81812 5.45394 9.84412C5.63594 10.0081 5.88694 10.0731 6.12094 10.0201C6.35794 9.96712 6.55594 9.80212 6.64894 9.57812C6.66394 9.54412 7.00794 8.74212 7.87694 8.55812C8.74894 8.37112 9.38394 8.96812 9.41094 8.99312C9.58694 9.16012 9.82994 9.23012 10.0719 9.18412C10.3099 9.13712 10.5099 8.97712 10.6099 8.75612C10.6269 8.72012 11.0169 7.87412 11.9339 7.69912C12.7949 7.53112 13.4259 8.07912 13.4949 8.14212C13.7359 8.36012 14.0909 8.39912 14.3729 8.23712C14.6549 8.07512 14.8009 7.75012 14.7329 7.43112V7.43412ZM3.47794 7.95612C3.11094 8.04112 2.79394 8.18112 2.52494 8.34712C2.68394 6.70812 3.59594 5.23412 4.96194 4.33412C4.77994 5.37612 4.80394 6.66512 4.97594 7.97712C4.54194 7.86912 4.04194 7.82412 3.47894 7.95612H3.47794ZM11.6549 6.22712C11.0859 6.33512 10.6459 6.57612 10.2929 6.84912C9.91794 5.57612 9.41594 4.38312 8.82494 3.50412C9.55894 3.62512 10.2679 3.89112 10.9109 4.31012C11.6579 4.79612 12.2619 5.44312 12.6849 6.19912C12.3709 6.15712 12.0259 6.15712 11.6549 6.22712Z" fill="currentColor"/> <path d="M14.5188 15.9681C13.0278 15.3951 11.4588 15.0791 9.87784 14.9891L8.94284 10.1221C8.86584 9.7151 8.47284 9.4461 8.06484 9.5271C7.65884 9.6051 7.39184 9.9981 7.46984 10.4051L8.34784 14.9781C6.69084 15.0481 5.04284 15.3671 3.47984 15.9671C3.09284 16.1151 2.89984 16.5501 3.04784 16.9361C3.19584 17.3231 3.63284 17.5151 4.01684 17.3671C7.20784 16.1411 10.7878 16.1411 13.9798 17.3671C14.0678 17.4011 14.1588 17.4171 14.2488 17.4171C14.5508 17.4171 14.8348 17.2341 14.9488 16.9361C15.0968 16.5491 14.9038 16.1151 14.5168 15.9671L14.5188 15.9681Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_6281_13969"> <rect width="18" height="18" fill="white" transform="translate(0 0.918091)"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">20 days paid time off every year</p></div><div id="w-node-_86f75846-7f57-f348-8d7e-d39273ff254e-321bd5ec" class="w-layout-hflex flex-center text-color-primary perk-ft"><div class="icon-flex w-embed"><svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6281_13873)"> <path d="M1.487 9.41809H0.75C0.336 9.41809 0 9.75409 0 10.1681C0 10.5821 0.336 10.9181 0.75 10.9181H2.037C1.812 10.4431 1.621 9.94609 1.487 9.41809Z" fill="currentColor"/> <path d="M17.2501 8.91809H16.6101C16.5131 9.44209 16.3721 9.94309 16.1821 10.4181H17.2501C17.6641 10.4181 18.0001 10.0821 18.0001 9.66809C18.0001 9.25409 17.6641 8.91809 17.2501 8.91809Z" fill="currentColor"/> <path d="M5.28701 9.41811L6.57901 6.83211C6.70201 6.58611 6.94901 6.42811 7.22401 6.41811C7.50201 6.40611 7.75601 6.55011 7.89601 6.78611L10.446 11.1011L11.33 9.33211C11.457 9.07811 11.717 8.91711 12.001 8.91711H16.611C16.694 8.47011 16.751 8.01111 16.751 7.52911C16.76 5.00111 14.709 2.93211 12.165 2.91711C10.97 2.93211 9.84101 3.40711 9.00101 4.22311C8.16101 3.40811 7.02901 2.93211 5.82301 2.91711C3.29301 2.93211 1.24101 5.00111 1.25101 7.52611C1.25101 8.19011 1.33701 8.82011 1.48801 9.41711H5.28701V9.41811Z" fill="currentColor"/> <path d="M12.4631 10.4181L11.1711 13.0041C11.0481 13.2501 10.8011 13.4081 10.5261 13.4181C10.5171 13.4181 10.5081 13.4181 10.5001 13.4181C10.2351 13.4181 9.99011 13.2781 9.85411 13.0491L7.30411 8.73413L6.42011 10.5031C6.29311 10.7571 6.03311 10.9181 5.74911 10.9181H2.03711C3.57411 14.1561 6.94311 16.1581 8.18211 16.8051C8.43811 16.9381 8.71911 17.0051 9.00011 17.0051C9.28111 17.0051 9.56211 16.9381 9.81711 16.8051C11.1191 16.1261 14.7731 13.9511 16.1821 10.4181H12.4631Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_6281_13873"> <rect width="18" height="18" fill="white" transform="translate(0 0.918091)"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">Health, dental, and vision insurance</p></div><div id="w-node-cd977526-4720-7bbf-2fc8-2152c4807520-321bd5ec" class="w-layout-hflex flex-center text-color-primary perk-ft"><div class="icon-flex w-embed"><svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6281_13890)"> <path d="M13.75 10.462C10.855 10.462 8.49998 8.10704 8.49998 5.21204C8.49998 4.52004 8.64198 3.86104 8.88698 3.25604C8.30998 3.29904 7.74598 3.38204 7.21298 3.53604C6.97498 3.31704 6.70598 3.10804 6.38098 2.93004C5.13798 2.24904 3.93798 2.35904 3.33498 2.48304C3.09898 2.53204 2.90098 2.69104 2.80298 2.91104C2.70498 3.13104 2.71798 3.38404 2.83798 3.59304L3.92098 5.46804C3.38598 6.00504 2.94198 6.61604 2.61898 7.28604L1.15798 7.46904C0.782977 7.51604 0.500977 7.83504 0.500977 8.21304V11.713C0.500977 12.091 0.782977 12.41 1.15798 12.457L2.61898 12.64C3.04898 13.532 3.69098 14.321 4.48098 14.964L4.75598 17.3C4.79998 17.678 5.11998 17.963 5.50098 17.963H7.25098C7.64798 17.963 7.97698 17.653 7.99998 17.257L8.03998 16.582C8.51298 16.666 9.00098 16.713 9.50198 16.713C10.003 16.713 10.491 16.667 10.964 16.582L11.004 17.257C11.027 17.653 11.356 17.963 11.753 17.963H13.503C13.883 17.963 14.203 17.678 14.248 17.3L14.523 14.964C16.042 13.728 17.004 11.947 17.004 9.96304C17.004 9.75004 16.99 9.54104 16.969 9.33304C16.078 10.03 14.971 10.463 13.754 10.463L13.75 10.462ZM6.24998 8.96204C5.83598 8.96204 5.49998 8.62604 5.49998 8.21204C5.49998 7.79804 5.83598 7.46204 6.24998 7.46204C6.66398 7.46204 6.99998 7.79804 6.99998 8.21204C6.99998 8.62604 6.66398 8.96204 6.24998 8.96204Z" fill="currentColor"/> <path d="M13.75 1.46204C11.682 1.46204 10 3.14404 10 5.21204C10 7.28004 11.682 8.96204 13.75 8.96204C15.818 8.96204 17.5 7.28004 17.5 5.21204C17.5 3.14404 15.818 1.46204 13.75 1.46204ZM14.5 5.96204C14.5 6.37604 14.164 6.71204 13.75 6.71204C13.336 6.71204 13 6.37604 13 5.96204V4.46204C13 4.04804 13.336 3.71204 13.75 3.71204C14.164 3.71204 14.5 4.04804 14.5 4.46204V5.96204Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_6281_13890"> <rect width="18" height="18" fill="white" transform="translate(0 0.962036)"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">401k or RRSP</p></div><div id="w-node-d4e555ad-26f2-82ef-1ab1-bd76424cefcc-321bd5ec" class="w-layout-hflex flex-center text-color-primary perk-ft"><div class="icon-flex w-embed"><svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6281_13904)"> <path d="M15.406 7.47404C15.281 6.04204 14.104 4.96204 12.667 4.96204H12V3.96204C12 2.30804 10.654 0.962036 9.00001 0.962036C7.34601 0.962036 6.00001 2.30804 6.00001 3.96204V4.96204H5.33301C3.89601 4.96204 2.71801 6.04204 2.59401 7.47404L1.94201 14.974C1.87501 15.74 2.13501 16.504 2.65401 17.071C3.17301 17.638 3.91201 17.963 4.68101 17.963H13.318C14.087 17.963 14.826 17.638 15.345 17.071C15.864 16.504 16.124 15.74 16.057 14.974L15.405 7.47404H15.406ZM7.50001 3.96204C7.50001 3.13504 8.17301 2.46204 9.00001 2.46204C9.82701 2.46204 10.5 3.13504 10.5 3.96204V4.96204H7.50001V3.96204ZM7.50001 12.285V14.462C7.50001 14.876 7.16401 15.212 6.75001 15.212C6.33601 15.212 6.00001 14.876 6.00001 14.462V12.285C5.26801 11.932 4.75001 11.081 4.75001 10.087C4.75001 8.77704 5.64701 7.71204 6.75001 7.71204C7.85301 7.71204 8.75001 8.77704 8.75001 10.087C8.75001 11.081 8.23201 11.932 7.50001 12.285ZM12.5 12.718V14.462C12.5 14.876 12.164 15.212 11.75 15.212C11.336 15.212 11 14.876 11 14.462V13.02L10.248 12.228C10.103 12.076 10.029 11.87 10.043 11.661C10.097 10.865 10.277 10.092 10.577 9.36304C10.726 9.00104 10.906 8.65004 11.111 8.31804C11.287 8.03304 11.63 7.90104 11.954 7.99004C12.276 8.08204 12.499 8.37604 12.499 8.71204V12.718H12.5Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_6281_13904"> <rect width="18" height="18" fill="white" transform="translate(0 0.962036)"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">Free lunch and dinners</p></div><div id="w-node-eda2fc2d-23a8-d427-1cca-76a3cb216950-321bd5ec" class="w-layout-hflex flex-center text-color-primary perk-ft"><div class="icon-flex w-embed"><svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6281_13919)"> <path d="M5.25 11.506H2.75C1.785 11.506 1 10.721 1 9.75598V5.25598C1 4.29098 1.785 3.50598 2.75 3.50598H5.25C5.664 3.50598 6 3.84198 6 4.25598C6 4.66998 5.664 5.00598 5.25 5.00598H2.75C2.612 5.00598 2.5 5.11798 2.5 5.25598V9.75598C2.5 9.89398 2.612 10.006 2.75 10.006H5.25C5.664 10.006 6 10.342 6 10.756C6 11.17 5.664 11.506 5.25 11.506Z" fill="currentColor"/> <path d="M2.75277 14.753C2.52677 14.753 2.30577 14.653 2.15777 14.461C1.90677 14.135 1.96377 13.669 2.28777 13.416C2.33477 13.378 3.46977 12.506 5.24977 12.506C5.66377 12.506 5.99977 12.842 5.99977 13.256C5.99977 13.67 5.66377 14.006 5.24977 14.006C4.00777 14.006 3.21477 14.594 3.20677 14.6C3.07077 14.703 2.91077 14.753 2.75277 14.753Z" fill="currentColor"/> <path d="M14.75 2.00598H9.25C8.01 2.00598 7 3.01498 7 4.25598V13.756C7 14.997 8.01 16.006 9.25 16.006H14.75C15.99 16.006 17 14.997 17 13.756V4.25598C17 3.01498 15.99 2.00598 14.75 2.00598ZM12 13.006C11.448 13.006 11 12.558 11 12.006C11 11.454 11.448 11.006 12 11.006C12.552 11.006 13 11.454 13 12.006C13 12.558 12.552 13.006 12 13.006ZM13.25 9.00598H10.75C10.336 9.00598 10 8.66998 10 8.25598C10 7.84198 10.336 7.50598 10.75 7.50598H13.25C13.664 7.50598 14 7.84198 14 8.25598C14 8.66998 13.664 9.00598 13.25 9.00598ZM13.25 6.50598H10.75C10.336 6.50598 10 6.16998 10 5.75598C10 5.34198 10.336 5.00598 10.75 5.00598H13.25C13.664 5.00598 14 5.34198 14 5.75598C14 6.16998 13.664 6.50598 13.25 6.50598Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_6281_13919"> <rect width="18" height="18" fill="white" transform="translate(0 0.00598145)"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">Work setup stipend</p></div><div id="w-node-_3c45abc8-581e-b58c-60db-7b015298975e-321bd5ec" class="w-layout-hflex flex-center text-color-primary perk-ft"><div class="icon-flex w-embed"><svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6281_13937)"> <path d="M9 4.63098C10.1046 4.63098 11 3.73555 11 2.63098C11 1.52641 10.1046 0.630981 9 0.630981C7.89543 0.630981 7 1.52641 7 2.63098C7 3.73555 7.89543 4.63098 9 4.63098Z" fill="currentColor"/> <path d="M12.8482 7.98898C13.5032 8.20498 14.1842 8.37498 14.8712 8.49498C15.2812 8.56798 15.6682 8.29298 15.7392 7.88498C15.8092 7.47698 15.5372 7.08898 15.1292 7.01698C14.5132 6.90998 13.9032 6.75698 13.3172 6.56398C12.7042 6.36198 12.1012 6.11098 11.5252 5.81798C11.1172 5.61098 10.6892 5.50598 10.2552 5.50598H7.74522C7.31122 5.50598 6.88422 5.61098 6.47422 5.81798C5.89922 6.10998 5.29622 6.36098 4.68322 6.56398C4.09322 6.75798 3.48422 6.91098 2.87122 7.01698C2.46322 7.08798 2.18922 7.47598 2.26022 7.88398C2.32322 8.24898 2.64122 8.50598 2.99822 8.50598C3.04122 8.50598 3.08422 8.50298 3.12722 8.49498C3.81222 8.37598 4.49222 8.20598 5.15122 7.98898C5.61022 7.83798 6.05822 7.65498 6.49922 7.45798V13.256C6.49922 13.67 6.83522 14.006 7.24922 14.006C7.66322 14.006 7.99922 13.67 7.99922 13.256V12.006H9.99922V16.881C9.99922 17.295 10.3352 17.631 10.7492 17.631C11.1632 17.631 11.4992 17.295 11.4992 16.881V7.45798C11.9402 7.65498 12.3892 7.83798 12.8482 7.98898Z" fill="currentColor"/> <path d="M8.337 15.462C5.864 15.135 4 13.004 4 10.506V10.006C4 9.59198 3.664 9.25598 3.25 9.25598C2.836 9.25598 2.5 9.59198 2.5 10.006V10.506C2.5 13.754 4.925 16.524 8.14 16.949C8.173 16.953 8.206 16.955 8.24 16.955C8.61 16.955 8.932 16.681 8.982 16.304C9.037 15.893 8.748 15.516 8.337 15.462Z" fill="currentColor"/> <path d="M14.7501 9.25598C14.3361 9.25598 14.0001 9.59198 14.0001 10.006V10.506C14.0001 11.741 13.5461 12.927 12.7231 13.845C12.4461 14.153 12.4711 14.627 12.7801 14.904C12.9241 15.032 13.1021 15.096 13.2811 15.096C13.4861 15.096 13.6911 15.012 13.8391 14.847C14.9111 13.654 15.5011 12.112 15.5011 10.506V10.006C15.5011 9.59198 15.1651 9.25598 14.7511 9.25598H14.7501Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_6281_13937"> <rect width="18" height="18" fill="white" transform="translate(0 0.00598145)"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">Monthly wellness stipend</p></div><div id="w-node-_77cbd0ac-534b-e729-b850-a89f4be27ea5-321bd5ec" class="w-layout-hflex flex-center text-color-primary perk-ft lc"><div class="icon-flex w-embed"><svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6281_13954)"> <path d="M8.95322 10.8719C9.29822 10.8279 9.64622 10.7999 10.0002 10.7999C10.1562 10.7999 10.3072 10.8229 10.4622 10.8319L9.96022 7.05992L16.1692 11.1059C16.2932 11.1869 16.4362 11.2279 16.5792 11.2279C16.6952 11.2279 16.8122 11.2009 16.9192 11.1459C17.1582 11.0239 17.3142 10.7849 17.3282 10.5169C17.4402 8.38992 16.4052 6.34892 14.6262 5.18992C14.1982 4.91092 13.7392 4.69492 13.2642 4.53692L16.0502 3.34892C16.2972 3.24392 16.4682 3.01492 16.5012 2.74792C16.5332 2.48192 16.4202 2.21892 16.2062 2.05792C14.7822 0.991918 12.8842 0.761918 11.2522 1.45692C10.3082 1.85992 9.53522 2.54592 9.00222 3.39092C8.46922 2.54592 7.69522 1.85992 6.75122 1.45692C5.12122 0.761918 3.22222 0.991918 1.79822 2.05792C1.58322 2.21892 1.47022 2.48192 1.50322 2.74792C1.53522 3.01492 1.70722 3.24292 1.95422 3.34892L4.74022 4.53692C4.26522 4.69492 3.80622 4.91092 3.37822 5.18992C1.59922 6.34892 0.564219 8.38992 0.676219 10.5169C0.690219 10.7849 0.846219 11.0239 1.08522 11.1459C1.19222 11.2009 1.30922 11.2279 1.42522 11.2279C1.56822 11.2279 1.71122 11.1869 1.83522 11.1059L8.41722 6.81692L8.95722 10.8729L8.95322 10.8719Z" fill="currentColor"/> <path d="M15.9952 15.9559C14.8292 13.7009 12.5322 12.2999 10.0002 12.2999C7.46822 12.2999 5.17122 13.7009 4.00522 15.9559C3.88422 16.1879 3.89422 16.4669 4.03022 16.6899C4.16622 16.9129 4.40922 17.0499 4.67122 17.0499H15.3292C15.5912 17.0499 15.8332 16.9139 15.9702 16.6899C16.1072 16.4659 16.1162 16.1879 15.9952 15.9559Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_6281_13954"> <rect width="18" height="18" fill="white" transform="translate(0 0.0499268)"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">Annual team offsite</p></div><div id="w-node-_2cef4b6c-35d3-6f30-6b12-bbb9a1a86712-321bd5ec" class="w-layout-hflex flex-center text-color-primary perk-ft lc"><div class="icon-flex w-embed"><svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6281_13985)"> <path d="M16.835 5.19589C16.091 3.18489 14.74 1.83689 12.82 1.19089C12.518 1.08889 12.181 1.13989 11.92 1.32789C11.657 1.51689 11.5 1.82189 11.5 2.14389V4.63789C11.796 4.85789 12.097 5.11089 12.41 5.41889L12.583 5.58889C12.917 5.91889 13.184 6.23589 13.418 6.54889H15.892C16.218 6.54889 16.526 6.38789 16.714 6.11789C16.902 5.84789 16.948 5.50489 16.835 5.19589Z" fill="currentColor"/> <path d="M5.14596 16.8849C3.13496 16.1409 1.78696 14.7899 1.14096 12.8699C1.03896 12.5679 1.08996 12.2309 1.27796 11.9699C1.46696 11.7069 1.77196 11.5499 2.09396 11.5499H4.58796C4.80796 11.8459 5.06096 12.1469 5.36896 12.4599L5.53896 12.6329C5.86896 12.9669 6.18596 13.2339 6.49896 13.4679V15.9419C6.49896 16.2679 6.33796 16.5759 6.06796 16.7639C5.79796 16.9519 5.45496 16.9979 5.14596 16.8849Z" fill="currentColor"/> <path d="M13.1081 5.05588L12.9351 4.88588C11.6531 3.62088 10.5071 3.02088 9.32808 3.04488C8.14908 3.05288 7.01208 3.65388 5.74708 4.93588L4.84108 5.85488C3.57708 7.13688 2.99208 8.28288 3.00008 9.46188C3.00808 10.6419 3.60908 11.7799 4.89208 13.0439L5.06508 13.2139C6.33708 14.4689 7.47708 15.0549 8.64708 15.0549H8.67208C9.85108 15.0469 10.9881 14.4459 12.2531 13.1639L13.1591 12.2449C14.4231 10.9629 15.0081 9.81688 15.0001 8.63788C14.9921 7.45788 14.3911 6.31988 13.1081 5.05588ZM5.94408 11.9759C4.96408 11.0099 4.50508 10.2069 4.50008 9.45188C4.49508 8.69688 4.94208 7.88888 5.90908 6.90888L6.50008 6.30988V12.4919C6.37308 12.3789 6.25108 12.2799 6.11708 12.1479L5.94408 11.9779V11.9759ZM8.66108 13.5559C8.44108 13.5579 8.22108 13.5169 8.00008 13.4469V5.00988C8.47408 4.70988 8.91608 4.54688 9.33908 4.54388H9.35308C9.56308 4.54388 9.77908 4.58788 10.0001 4.65988V13.0899C9.52608 13.3899 9.08408 13.5529 8.66108 13.5559ZM12.0911 11.1919L11.5001 11.7909V5.61188C11.6271 5.72388 11.7501 5.82188 11.8831 5.95388L12.0561 6.12388C13.0361 7.08988 13.4951 7.89288 13.5001 8.64788C13.5051 9.40288 13.0581 10.2109 12.0911 11.1909V11.1919Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_6281_13985"> <rect width="18" height="18" fill="white" transform="translate(0 0.0499268)"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">Unlimited free mints</p></div></div></div></div></div></section><section id="open-roles" class="section-generic"><div class="padding-global"><div class="container-medium semi"><div class="padding-section-large"><div class="margin-bottom margin-large"><div class="text-align-center"><div class="max-width-medium align-center"><div class="margin-bottom margin-small"><h1 blocks-non-deletable="true" class="heading-style-h2">Open positions</h1></div><p class="description align-center">If you build software for the next-generation of companies, we鈥檇 love to talk to you.</p></div></div></div><div id="job-list" class="job-list"><div id="department" class="department"><h1 class="heading-style-h4 text-style-muted department-title">Department</h1><div class="jobs-wrapper"><a href="#" class="job-link w-inline-block"><div class="job-text"><h1 class="heading-style-h4">Your job title at Mintlify</h1><div class="text-style-muted">San Francisco</div></div><div class="icon-flex w-embed"><svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6281_12832)"> <path d="M5.77783 2.72217L11.3334 8.27772L5.77783 13.8333" stroke="currentColor" stroke-opacity="0.6" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_6281_12832"> <rect width="16" height="16" fill="white" transform="translate(0 0.277832)"/> </clipPath> </defs> </svg></div></a><a href="#" class="job-link w-inline-block"><div class="job-text"><h1 class="heading-style-h4">Your job title at Mintlify</h1><div class="text-style-muted">San Francisco</div></div><div class="icon-flex w-embed"><svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6281_12832)"> <path d="M5.77783 2.72217L11.3334 8.27772L5.77783 13.8333" stroke="currentColor" stroke-opacity="0.6" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_6281_12832"> <rect width="16" height="16" fill="white" transform="translate(0 0.277832)"/> </clipPath> </defs> </svg></div></a></div></div></div></div></div></div></section></main><footer class="footer"><div class="padding-global"><div class="container-large lines"><div class="padding-section-medium"><div class="padding-bottom padding-section-medium"><div class="w-layout-grid footer_top-wrapper"><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a442-3cb3a43c" class="footer_left-wrapper"><a href="#" aria-label="Footer link" class="footer_logo-link w-nav-brand"><div class="brand-logo w-embed"><svg width="110" height="24" viewBox="0 0 110 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M31.3809 3.06182H36.2383L40.3588 13.1095H40.549L44.6695 3.06182H49.5269V19.2902H45.7075V9.32179H45.5728L41.6742 19.1872H39.2336L35.335 9.26635H35.2003V19.2902H31.3809V3.06182ZM51.0807 19.2902V7.1189H54.9559V19.2902H51.0807ZM53.0221 5.70052C52.4781 5.70052 52.0105 5.52091 51.6198 5.16171C51.229 4.79718 51.0331 4.35872 51.0331 3.8463C51.0331 3.33916 51.229 2.90598 51.6198 2.54676C52.0105 2.18225 52.4781 2 53.0221 2C53.5715 2 54.0391 2.18225 54.4249 2.54676C54.8156 2.90598 55.011 3.33916 55.011 3.8463C55.011 4.35872 54.8156 4.79718 54.4249 5.16171C54.0391 5.52091 53.5715 5.70052 53.0221 5.70052ZM60.4045 12.3488V19.2902H56.5293V7.1189H60.2141V9.35348H60.349C60.6183 8.60863 61.0779 8.0249 61.7275 7.60227C62.3776 7.17438 63.1512 6.96042 64.0492 6.96042C64.905 6.96042 65.6474 7.15326 66.2761 7.5389C66.9098 7.91923 67.4012 8.45278 67.7498 9.13956C68.1039 9.82103 68.2784 10.6187 68.273 11.5326V19.2902H64.3983V12.2933C64.4032 11.6171 64.2317 11.0889 63.8831 10.7085C63.5394 10.3282 63.0614 10.138 62.4485 10.138C62.0419 10.138 61.6829 10.2278 61.371 10.4074C61.0645 10.5817 60.827 10.8326 60.6579 11.1602C60.4943 11.4877 60.4095 11.8839 60.4045 12.3488ZM76.6497 7.1189V9.97158H68.9712V7.1189H76.6497ZM70.5798 4.20288H74.4545V15.4629C74.4545 15.7006 74.4917 15.8935 74.5655 16.0414C74.6449 16.184 74.7584 16.287 74.9062 16.3504C75.054 16.4085 75.231 16.4376 75.4373 16.4376C75.585 16.4376 75.7407 16.4244 75.9044 16.398C76.0735 16.3662 76.2004 16.3399 76.2852 16.3187L76.8713 19.1159C76.6864 19.1687 76.425 19.2347 76.0869 19.314C75.7541 19.3932 75.3554 19.4434 74.8903 19.4646C73.9819 19.5068 73.2024 19.4011 72.5528 19.1476C71.9082 18.8887 71.4143 18.4873 71.0712 17.9431C70.733 17.399 70.5693 16.7149 70.5798 15.8908V4.20288ZM81.8702 3.06182V19.2902H77.9954V3.06182H81.8702ZM83.444 19.2902V7.1189H87.3188V19.2902H83.444ZM85.3854 5.70052C84.8414 5.70052 84.3738 5.52091 83.9831 5.16171C83.5918 4.79718 83.3964 4.35872 83.3964 3.8463C83.3964 3.33916 83.5918 2.90598 83.9831 2.54676C84.3738 2.18225 84.8414 2 85.3854 2C85.9348 2 86.4024 2.18225 86.7882 2.54676C87.1789 2.90598 87.3743 3.33916 87.3743 3.8463C87.3743 4.35872 87.1789 4.79718 86.7882 5.16171C86.4024 5.52091 85.9348 5.70052 85.3854 5.70052ZM95.8105 7.1189V9.97158H87.9812V7.1189H95.8105ZM89.6136 19.2902V6.50085C89.6136 5.56053 89.7907 4.78133 90.1447 4.16326C90.4988 3.5399 90.9902 3.07503 91.6184 2.76863C92.2472 2.45695 92.9736 2.30111 93.7978 2.30111C94.3368 2.30111 94.8436 2.34337 95.3191 2.4279C95.8001 2.50714 96.1566 2.57845 96.3887 2.64185L95.7708 5.47867C95.628 5.43111 95.454 5.39149 95.2477 5.35981C95.0469 5.32807 94.8569 5.31225 94.6774 5.31225C94.2227 5.31225 93.9113 5.41262 93.7422 5.61334C93.5731 5.81412 93.4888 6.08878 93.4888 6.43748V19.2902H89.6136ZM99.1511 23.8544C98.6865 23.8544 98.2477 23.8175 97.8356 23.7435C97.4241 23.6748 97.07 23.5824 96.774 23.4662L97.6298 20.6532C98.0102 20.78 98.3538 20.8539 98.6597 20.875C98.9716 20.8961 99.2384 20.846 99.4601 20.7245C99.6877 20.6082 99.8617 20.3996 99.9832 20.0985L100.134 19.734L95.8075 7.1189H99.8642L102.107 15.8037H102.233L104.508 7.1189H108.589L104.001 20.4551C103.779 21.1207 103.465 21.707 103.058 22.2142C102.656 22.7266 102.136 23.1281 101.497 23.4186C100.863 23.7092 100.081 23.8544 99.1511 23.8544Z" fill="currentcolor"/> <mask id="mask0_4238_40" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="1" y="0" width="24" height="24"> <path d="M24.6348 0H1V23.6348H24.6348V0Z" fill="white"/> </mask> <g mask="url(#mask0_4238_40)"> <path d="M7.22763 8.62342C7.24415 6.37269 8.13673 4.21692 9.71609 2.61328H9.71318L3.61572 8.71074H3.61863C3.59593 8.7286 3.57453 8.74804 3.55459 8.76894C2.0717 10.2499 1.17264 12.216 1.02241 14.3063C0.872184 16.3967 1.48087 18.4711 2.73675 20.149L8.89533 13.9903L8.95936 13.9292C7.81152 12.4007 7.20254 10.5348 7.22763 8.62342Z" fill="#0C8C5E"/> <path d="M22.0327 14.9336C20.8657 16.0773 19.4008 16.8701 17.805 17.2216C16.2093 17.573 14.5469 17.469 13.0074 16.9215C12.1865 16.63 11.415 16.2149 10.7197 15.6904L10.6556 15.7544L4.49707 21.91C6.17554 23.1628 8.24884 23.7695 10.3379 23.6194C12.427 23.4692 14.3921 22.5721 15.8741 21.0921L15.9353 21.031L22.0327 14.9336Z" fill="#0C8C5E"/> <path d="M24.6467 8.71108V4.35893e-06H15.9356C14.7916 -0.00114182 13.6586 0.223763 12.6016 0.661799C11.5448 1.09984 10.5848 1.74238 9.77701 2.5525L9.71589 2.61362C8.6511 3.6946 7.88927 5.03658 7.50684 6.50493C8.19913 6.32565 8.91058 6.23087 9.62567 6.22262C11.5371 6.20012 13.4024 6.80995 14.9315 7.95726C16.3057 8.98207 17.3457 10.3908 17.9206 12.0058C18.5064 13.6564 18.5834 15.4449 18.1417 17.1398C19.6104 16.7581 20.9525 15.9961 22.033 14.9308L22.0942 14.8726C22.9046 14.0644 23.5474 13.104 23.9854 12.0466C24.4234 10.9892 24.6482 9.85563 24.6467 8.71108Z" fill="#18E299"/> </g> </svg></div></a><div class="w-layout-grid footer_social-list"><a aria-label="social twitter" href="https://x.com/mintlify" target="_blank" class="footer_social-link w-inline-block"><div class="icon-embed-xsmall w-embed"><svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4281_704)"> <path d="M12.0125 8.75562L17.9319 1.875H16.5294L11.3894 7.84938L7.28436 1.875H2.54999L8.75749 10.9094L2.54999 18.125H3.95249L9.37999 11.8156L13.715 18.125H18.45L12.0125 8.75562ZM10.0912 10.9888L9.46249 10.0894L4.45811 2.93125H6.61249L10.6512 8.70812L11.28 9.6075L16.53 17.1169H14.3756L10.0919 10.9894L10.0912 10.9888Z" fill="currentcolor" fill-opacity="1"/> </g> <defs> <clipPath id="clip0_4281_704"> <rect width="20" height="20" fill="white" transform="translate(0.5)"/> </clipPath> </defs> </svg></div></a><a aria-label="social twitter" id="w-node-_2a678e1a-5e6c-fcb8-46d2-53b52fe4bc65-3cb3a43c" href="https://www.linkedin.com/company/mintlify/" target="_blank" class="footer_social-link w-inline-block"><div class="icon-embed-xsmall w-embed"><svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M10.854 11.5719V18.8895H7.46094V6.24477H10.6617L10.7183 9.40031H10.5147C10.8465 8.34469 11.3479 7.53036 12.0189 6.95731C12.6976 6.37672 13.5722 6.08643 14.6429 6.08643C15.5176 6.08643 16.2791 6.2787 16.9276 6.66324C17.5835 7.04025 18.0887 7.58691 18.4431 8.30322C18.805 9.01199 18.986 9.86026 18.986 10.848V18.8895H15.593V11.4361C15.593 10.652 15.3894 10.0374 14.9822 9.59258C14.5826 9.14771 14.0246 8.92528 13.3083 8.92528C12.8333 8.92528 12.4073 9.03084 12.0303 9.24197C11.6608 9.44555 11.3705 9.74338 11.1594 10.1355C10.9558 10.5276 10.854 11.0064 10.854 11.5719Z" fill="currentColor"/> <path d="M1.1725 18.89V6.24517H4.56556V18.89H1.1725ZM2.86903 4.59389C2.3563 4.59389 1.91897 4.42423 1.55705 4.08493C1.19512 3.74562 1.01416 3.33469 1.01416 2.85212C1.01416 2.36955 1.19512 1.95862 1.55705 1.61931C1.91897 1.28 2.3563 1.11035 2.86903 1.11035C3.38176 1.11035 3.81908 1.28 4.18101 1.61931C4.55048 1.95107 4.73521 2.36201 4.73521 2.85212C4.73521 3.33469 4.55048 3.74562 4.18101 4.08493C3.81908 4.42423 3.38176 4.59389 2.86903 4.59389Z" fill="currentColor"/> </svg></div></a><a aria-label="social github" href="https://github.com/mintlify" target="_blank" class="footer_social-link w-inline-block"><div class="icon-embed-xsmall w-embed"><svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4281_683)"> <path d="M10.5 1.46547C15.3344 1.46547 19.25 5.38109 19.25 10.2155C19.2488 13.9748 16.8506 17.3148 13.2894 18.5167C12.8519 18.6042 12.6875 18.3305 12.6875 18.1011C12.6875 17.8055 12.6988 16.8648 12.6988 15.6948C12.6988 14.8748 12.4256 14.3498 12.1081 14.0761C14.055 13.8573 16.1006 13.1136 16.1006 9.75609C16.1006 8.79359 15.7613 8.01672 15.2038 7.40484C15.2913 7.18609 15.5975 6.28922 15.1163 5.08609C15.1163 5.08609 14.3831 4.84547 12.71 5.98297C12.01 5.78609 11.2663 5.68797 10.5225 5.68797C9.77875 5.68797 9.035 5.78609 8.335 5.98297C6.66188 4.85672 5.92875 5.08609 5.92875 5.08609C5.4475 6.28922 5.75375 7.18609 5.84125 7.40484C5.28375 8.01734 4.94438 8.80484 4.94438 9.75609C4.94438 13.103 6.97875 13.858 8.92563 14.0767C8.67375 14.2955 8.44438 14.6786 8.3675 15.2467C7.86438 15.4767 6.60625 15.8486 5.81938 14.5248C5.655 14.2623 5.16313 13.6173 4.47438 13.628C3.74125 13.6392 4.17938 14.0436 4.485 14.2073C4.85688 14.4148 5.28313 15.1917 5.38188 15.4436C5.55688 15.9355 6.12563 16.8767 8.32375 16.4717C8.32375 17.2048 8.335 17.8936 8.335 18.1011C8.335 18.3311 8.17063 18.593 7.73313 18.5167C4.15875 17.3267 1.74813 13.9823 1.75 10.2148C1.75 5.38047 5.66563 1.46547 10.5 1.46547Z" fill="currentcolor" fill-opacity="1"/> </g> <defs> <clipPath id="clip0_4281_683"> <rect width="20" height="20" fill="white" transform="translate(0.5)"/> </clipPath> </defs> </svg></div></a><a aria-label="social slack community" href="https://mintlify.com/community" target="_blank" class="footer_social-link w-inline-block"><div class="icon-embed-xsmall w-embed"><svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4281_723)"> <path d="M5.78948 12.1385C5.78948 13.0779 5.02198 13.8454 4.08261 13.8454C3.14323 13.8454 2.37573 13.0779 2.37573 12.1385C2.37573 11.1991 3.14323 10.4316 4.08261 10.4316H5.78948V12.1385Z" fill="currentcolor" fill-opacity="1"/> <path d="M6.64954 12.1385C6.64954 11.1991 7.41704 10.4316 8.35641 10.4316C9.29579 10.4316 10.0633 11.1991 10.0633 12.1385V16.4129C10.0633 17.3523 9.29579 18.1198 8.35641 18.1198C7.41704 18.1198 6.64954 17.3523 6.64954 16.4129V12.1385Z" fill="currentcolor" fill-opacity="1"/> <path d="M8.35641 5.2868C7.41704 5.2868 6.64954 4.5193 6.64954 3.57992C6.64954 2.64055 7.41704 1.87305 8.35641 1.87305C9.29579 1.87305 10.0633 2.64055 10.0633 3.57992V5.2868H8.35641Z" fill="currentcolor" fill-opacity="1"/> <path d="M8.35637 6.14453C9.29575 6.14453 10.0632 6.91203 10.0632 7.85141C10.0632 8.79078 9.29575 9.55828 8.35637 9.55828H4.082C3.14262 9.55828 2.37512 8.79078 2.37512 7.85141C2.37512 6.91203 3.14262 6.14453 4.082 6.14453H8.35637Z" fill="currentcolor" fill-opacity="1"/> <path d="M15.2107 7.85141C15.2107 6.91203 15.9782 6.14453 16.9176 6.14453C17.8569 6.14453 18.6244 6.91203 18.6244 7.85141C18.6244 8.79078 17.8569 9.55828 16.9176 9.55828H15.2107V7.85141Z" fill="currentcolor" fill-opacity="1"/> <path d="M14.3508 7.85234C14.3508 8.79172 13.5833 9.55922 12.6439 9.55922C11.7045 9.55922 10.937 8.79172 10.937 7.85234V3.57797C10.937 2.63859 11.7045 1.87109 12.6439 1.87109C13.5833 1.87109 14.3508 2.63859 14.3508 3.57797V7.85234Z" fill="currentcolor" fill-opacity="1"/> <path d="M12.6439 14.707C13.5833 14.707 14.3508 15.4745 14.3508 16.4139C14.3508 17.3533 13.5833 18.1208 12.6439 18.1208C11.7045 18.1208 10.937 17.3533 10.937 16.4139V14.707H12.6439Z" fill="currentcolor" fill-opacity="1"/> <path d="M12.6439 13.8454C11.7045 13.8454 10.937 13.0779 10.937 12.1385C10.937 11.1991 11.7045 10.4316 12.6439 10.4316H16.9183C17.8576 10.4316 18.6251 11.1991 18.6251 12.1385C18.6251 13.0779 17.8576 13.8454 16.9183 13.8454H12.6439Z" fill="currentcolor" fill-opacity="1"/> </g> <defs> <clipPath id="clip0_4281_723"> <rect width="20" height="20" fill="white" transform="translate(0.5)"/> </clipPath> </defs> </svg></div></a></div></div><div class="w-layout-grid footer_menu-wrapper"><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a45c-3cb3a43c" class="footer_link-list"><p class="footer_menu-header">Documentation</p><a href="https://mintlify.com/docs/" class="footer_link">Getting Started</a><a href="https://mintlify.com/docs/content/components" class="footer_link">Components</a><a href="https://mintlify.com/docs/api-playground/" class="footer_link">API playground</a><a href="/pricing" class="footer_link">Pricing</a><link rel="prefetch" href="/pricing"/></div><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a465-3cb3a43c" class="footer_link-list"><p class="footer_menu-header">Resources</p><a href="/customers" class="footer_link">Customers</a><link rel="prefetch" href="/customers"/><a href="/enterprise" class="footer_link">Enterprise</a><link rel="prefetch" href="/enterprise"/><a href="/preview" class="footer_link">Request Preview</a><link rel="prefetch" href="/preview"/><a href="https://mintlify.com/docs/integrations/analytics/overview" class="footer_link">Integrations</a><a href="https://github.com/mintlify/themes" target="_blank" class="footer_link">Templates</a><a href="/love" class="footer_link">Wall of Love</a><link rel="prefetch" href="/love"/></div><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a470-3cb3a43c" class="footer_link-list"><p class="footer_menu-header">Company</p><a href="/careers" aria-current="page" class="footer_link w--current">Careers</a><a href="/blog" class="footer_link">Blog</a><link rel="prefetch" href="/blog"/><a href="https://feedback.mintlify.com/roadmap" class="footer_link">Public Roadmap</a><a href="https://mintlify.com/security/responsible-disclosure" class="footer_link">Security</a></div><div id="w-node-bb4edd60-b98b-a009-1d55-2aebeaf325d3-3cb3a43c" class="footer_link-list"><p class="footer_menu-header">Legal</p><a href="https://mintlify.com/legal/privacy" class="footer_link">Privacy Policy</a><a href="https://mintlify.com/legal/terms" class="footer_link">Terms of Service</a></div></div></div></div><div class="padding-section-small padding-0"><div class="footer-bottom"><a id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a47e-3cb3a43c" href="https://status.mintlify.com/" target="_blank" class="status w-inline-block"><div class="status-color"></div><div class="status-text">Status-text</div></a><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a482-3cb3a43c" class="footer_credit-text">漏 <span class="current-year">currentYear</span> Mintlify, Inc.</div><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a487-3cb3a43c" class="theme-switch-wrap"><a aria-label="theme light switch" tr-color-light="" id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a48a-3cb3a43c" href="#" class="theme-toggle w-inline-block"><div class="icon-flex w-embed"><svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4326_1878)"> <path d="M7 1.4375V2.60417" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M11.5376 3.31641L10.7124 4.14163" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M13.4167 7.85352H12.25" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M11.5376 12.3916L10.7124 11.5664" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M7 14.2702V13.1035" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M2.46252 12.3916L3.28775 11.5664" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M0.583374 7.85352H1.75004" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M2.46252 3.31641L3.28775 4.14163" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M7.00001 11.1599C8.82562 11.1599 10.3056 9.67999 10.3056 7.85438C10.3056 6.02878 8.82562 4.54883 7.00001 4.54883C5.17441 4.54883 3.69446 6.02878 3.69446 7.85438C3.69446 9.67999 5.17441 11.1599 7.00001 11.1599Z" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_4326_1878"> <rect width="14" height="14" fill="white" transform="translate(0 0.853516)"/> </clipPath> </defs> </svg></div></a><a aria-label="theme dark switch" tr-color-dark="" id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a48c-3cb3a43c" href="#" class="theme-toggle w-inline-block"><div class="icon-flex w-embed"><svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4326_1858)"> <path d="M10.1111 9.99267C7.42621 9.99267 5.24999 7.81645 5.24999 5.13156C5.24999 4.08001 5.58676 3.11012 6.15376 2.31445C3.53732 2.8029 1.55554 5.09501 1.55554 7.85379C1.55554 10.968 4.08021 13.4927 7.19443 13.4927C9.8171 13.4927 12.0151 11.6991 12.6459 9.27401C11.907 9.72745 11.0413 9.99267 10.1111 9.99267Z" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_4326_1858"> <rect width="14" height="14" fill="white" transform="translate(0 0.853516)"/> </clipPath> </defs> </svg></div></a></div><div id="w-node-_43bf6cdd-526c-279b-9ac7-86fd5c62ee35-3cb3a43c" class="footer-status w-embed w-script"><script> // Function to fetch and update the status function updateStatus() { fetch('https://status.mintlify.com/proxy/status.mintlify.com/incidents') .then(response => response.json()) .then(data => { const status = data.incidents[0]?.status; let statusText, statusColor; switch (status) { case 'resolved': statusText = 'All systems normal'; statusColor = '#00C853'; break; case 'partial_outage': statusText = 'Partial outage'; statusColor = '#FFD600'; break; case 'full_outage': statusText = 'Full outage'; statusColor = '#D50000'; break; default: statusText = 'Status unavailable'; statusColor = '#9E9E9E'; } // Update the status text const statusTextElement = document.querySelector('.status-text'); if (statusTextElement) { statusTextElement.textContent = statusText; } // Update the status color const statusColorElement = document.querySelector('.status-color'); if (statusColorElement) { statusColorElement.style.backgroundColor = statusColor; statusColorElement.style.outlineColor = `${statusColor}26`; // 26 is 15% opacity in hex } }) .catch(error => { console.error('Error fetching status:', error); }); } // Run the update function when the DOM is fully loaded document.addEventListener('DOMContentLoaded', updateStatus); // Optionally, update the status every 5 minutes setInterval(updateStatus, 300000); </script></div></div></div></div></div></div></footer></div><script src="https://d3e54v103j8qbb.cloudfront.net/js/jquery-3.5.1.min.dc5e7f18c8.js?site=66cc2bd703ccf308a49a6188" type="text/javascript" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script><script src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/js/mintlify-lander.de0eeabc2.js" type="text/javascript"></script><script> document.addEventListener('DOMContentLoaded', function() { const currentYear = new Date().getFullYear(); const elements = document.getElementsByClassName('current-year'); for (let element of elements) { element.textContent = currentYear; } }); </script> <script> document.addEventListener('DOMContentLoaded', () => { const dropdowns = document.querySelectorAll('.dd-menu-wrap'); const glassOverlay = document.querySelector('.glass-bg'); const navbarContainer = document.querySelector('.navbar_container'); function activateDropdownState() { glassOverlay.classList.add('active'); navbarContainer.classList.add('dropdown-active'); } function deactivateDropdownState() { glassOverlay.classList.remove('active'); navbarContainer.classList.remove('dropdown-active'); } dropdowns.forEach(dropdown => { dropdown.addEventListener('mouseenter', activateDropdownState); dropdown.addEventListener('mouseleave', deactivateDropdownState); }); // Handle focus events for accessibility dropdowns.forEach(dropdown => { const focusableElements = dropdown.querySelectorAll('a, button, input, select, textarea, [tabindex]:not([tabindex="-1"])'); focusableElements.forEach(element => { element.addEventListener('focus', activateDropdownState); element.addEventListener('blur', (event) => { // Delay deactivation to check if focus moved to another element within the dropdown setTimeout(() => { if (!dropdown.contains(document.activeElement)) { deactivateDropdownState(); } }, 0); }); }); }); }); </script> <!-- LinkedIn Insight Tag --> <script type="text/javascript"> _linkedin_partner_id = "6729188"; window._linkedin_data_partner_ids = window._linkedin_data_partner_ids || []; window._linkedin_data_partner_ids.push(_linkedin_partner_id); </script><script type="text/javascript"> (function(l) { if (!l){window.lintrk = function(a,b){window.lintrk.q.push([a,b])}; window.lintrk.q=[]} var s = document.getElementsByTagName("script")[0]; var b = document.createElement("script"); b.type = "text/javascript";b.async = true; b.src = "https://snap.licdn.com/li.lms-analytics/insight.min.js"; s.parentNode.insertBefore(b, s);})(window.lintrk); </script> <noscript> <img height="1" width="1" style="display:none;" alt="" src="https://px.ads.linkedin.com/collect/?pid=6729188&fmt=gif" /> </noscript><script> // Configuration const API_URL = 'https://api.ashbyhq.com/posting-api/job-board/Mintlify'; const JOB_LIST_ID = 'job-list'; // Function to fetch jobs from Ashby API async function fetchJobs() { try { const response = await fetch(API_URL); if (!response.ok) { throw new Error(`HTTP error! status: ${response.status}`); } const data = await response.json(); return data.jobs || []; // Ensure we always return an array } catch (error) { console.error("Could not fetch jobs:", error); return []; } } // Function to group jobs by department function groupJobsByDepartment(jobs) { return jobs.reduce((acc, job) => { if (job.isListed) { // Only include listed jobs const department = job.department || 'Other'; if (!acc[department]) { acc[department] = []; } acc[department].push(job); } return acc; }, {}); } // SVG icon for job links const svgIcon = ` <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6281_12832)"> <path d="M5.77783 2.72217L11.3334 8.27772L5.77783 13.8333" stroke="currentColor" stroke-opacity="0.4" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_6281_12832"> <rect width="16" height="16" fill="white" transform="translate(0 0.277832)"/> </clipPath> </defs> </svg> `; // Function to create a job element function createJobElement(job) { const jobElement = document.createElement('a'); jobElement.href = job.jobUrl; jobElement.className = 'job-link'; jobElement.target = '_blank'; // Open in new tab jobElement.rel = 'noopener noreferrer'; // Security best practice for links opening in new tabs jobElement.innerHTML = ` <div class="job-text"> <h4 class="heading-style-h4">${job.title}</h4> <div class="text-style-muted">${job.location}</div> </div> <div class="icon-flex"> ${svgIcon} </div> `; return jobElement; } // Function to create a department element function createDepartmentElement(department, jobs) { const departmentElement = document.createElement('div'); departmentElement.className = 'department'; departmentElement.innerHTML = `<h4 class="heading-style-h4 text-style-muted department-title">${department}</h4>`; const jobsWrapper = document.createElement('div'); jobsWrapper.className = 'jobs-wrapper'; jobs.forEach(job => { jobsWrapper.appendChild(createJobElement(job)); }); departmentElement.appendChild(jobsWrapper); return departmentElement; } // Function to render jobs in the UI function renderJobs(groupedJobs) { const jobListElement = document.getElementById(JOB_LIST_ID); if (!jobListElement) { console.error(`Element with id "${JOB_LIST_ID}" not found`); return; } jobListElement.innerHTML = ''; for (const [department, jobs] of Object.entries(groupedJobs)) { jobListElement.appendChild(createDepartmentElement(department, jobs)); } } // Main function to fetch and display jobs async function displayJobs() { const jobs = await fetchJobs(); const groupedJobs = groupJobsByDepartment(jobs); renderJobs(groupedJobs); } // Call the main function when the page loads window.addEventListener('load', displayJobs); </script></body></html>

Pages: 1 2 3 4 5 6 7 8 9 10