CINXE.COM
Customer Data Platform, CDP | Twilio
<!DOCTYPE HTML> <html lang="en-US"> <head> <meta charset="UTF-8"/> <title>Customer Data Platform, CDP | Twilio</title> <meta name="keywords" content="Customer data platform"/> <meta name="description" content="Twilio Segment’s customer data platform gathers customer data across engagement channels into a unified profile to activate more precise customer experiences."/> <meta name="template" content="base-page"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <meta name="robots" content="index"/> <meta property="og:url" content="https://www.twilio.com/en-us/customer-data-platform"/> <meta name="twitter:url" content="https://www.twilio.com/en-us/customer-data-platform"/> <script defer="defer" type="text/javascript" src="https://rum.hlx.page/.rum/@adobe/helix-rum-js@%5E2/dist/rum-standalone.js" data-routing="program=62254,environment=555373,tier=publish"></script> <link rel="canonical" href="https://www.twilio.com/en-us/customer-data-platform"/> <link rel="alternate" href="https://www.twilio.com/en-us/customer-data-platform" hreflang="en-us"/> <link rel="alternate" href="https://www.twilio.com/pt-br/customer-data-platform" hreflang="pt-br"/> <link rel="alternate" href="https://www.twilio.com/es-mx/customer-data-platform" hreflang="es-mx"/> <link rel="alternate" href="https://www.twilio.com/ja-jp/customer-data-platform" hreflang="ja-jp"/> <link rel="alternate" href="https://www.twilio.com/fr-fr/customer-data-platform" hreflang="fr-fr"/> <link rel="alternate" href="https://www.twilio.com/de-de/customer-data-platform" hreflang="de-de"/> <link rel="alternate" href="https://www.twilio.com/en-us/customer-data-platform" hreflang="en"/> <!-- Based on path identifying if GTM ID should be twilio.com's or cusomter's --> <!-- 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; j.onerror=function(){if(w.disableAF){w.disableAF()}};f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-5JLZ694');</script> <!-- End Google Tag Manager --> <script> (function(win, doc, style, timeout) { var STYLE_ID = 'at-body-style'; function getParent() { return doc.getElementsByTagName('head')[0]; } function addStyle(parent, id, def) { if (!parent) { return; } var style = doc.createElement('style'); style.id = id; style.innerHTML = def; parent.appendChild(style); } function removeStyle(parent, id) { if (!parent) { return; } var style = doc.getElementById(id); if (!style) { return; } parent.removeChild(style); } addStyle(getParent(), STYLE_ID, style); setTimeout(function() { removeStyle(getParent(), STYLE_ID); }, timeout); }(window, document, "body {opacity: 0 !important}", 1000)); </script> <!-- End Pre-Hiding Script --> <!-- Adobe Launch Script --> <script src="https://assets.adobedtm.com/a62564f453ce/b1b9d7ec982b/launch-29605e749a31.min.js" async></script> <!-- End Adobe Launch Script --> <!-- Segment Script --> <script> var segmentKey = "tdqj3S9J338oMnJLXqI49jDMX8ZEPhgM"; !function(){var analytics=window.analytics=window.analytics||[];if(!analytics.initialize)if(analytics.invoked)window.console&&console.error&&console.error("Segment snippet included twice.");else{analytics.invoked=!0;analytics.methods=["trackSubmit","trackClick","trackLink","trackForm","pageview","identify","reset","group","track","ready","alias","debug","page","once","off","on","addSourceMiddleware","addIntegrationMiddleware","setAnonymousId","addDestinationMiddleware"];analytics.factory=function(e){return function(){var t=Array.prototype.slice.call(arguments);t.unshift(e);analytics.push(t);return analytics}};for(var e=0;e<analytics.methods.length;e++){var key=analytics.methods[e];analytics[key]=analytics.factory(key)}analytics.load=function(key,e){var t=document.createElement("script");t.type="text/javascript";t.async=!0;t.src="https://cdn.segment.com/analytics.js/v1/" + key + "/analytics.min.js";var n=document.getElementsByTagName("script")[0];n.parentNode.insertBefore(t,n);analytics._loadOptions=e};analytics._writeKey=segmentKey;;analytics.SNIPPET_VERSION="4.16.1"; analytics.page(); }}(); </script> <!-- End Segment Script --> <!-- Segment Consent Manager Script --> <script async> var segmentKey = "tdqj3S9J338oMnJLXqI49jDMX8ZEPhgM"; const isConsentRequired = true; const consentDecision = getCookieValue("cmapi_cookie_privacy"); fetchDestinations(segmentKey).then(destinations => { const destinationPreferences = destinations .map(function(dest) { if (consentDecision.includes("1") && consentDecision.includes("2") && consentDecision.includes("3")) return { [dest.id]: true }; if (consentDecision.includes("1") && consentDecision.includes("2")) return { [dest.id]: dest.category !== "Advertising" }; if (consentDecision.includes("1") && consentDecision.includes("3")) return { [dest.id]: dest.category === "Advertising" }; if (consentDecision.includes("1")) return { [dest.id]: false }; }) .reduce( (acc, val) => { return {...val, ...acc};}, { "Segment.io": !!consentDecision.includes("2") } ); conditionallyLoadAnalytics({ writeKey: segmentKey, destinations, destinationPreferences, isConsentRequired: isConsentRequired }); }); function getCookieValue(cookieName) { var name = cookieName + "="; let decodedCookie = decodeURIComponent(document.cookie); let cookieArray = decodedCookie.split(';'); for(const cookie of cookieArray) { let trimmedCookie = cookie.trim(); if (trimmedCookie.indexOf(name) == 0){ return trimmedCookie.substring(name.length); } } return "permit 1,2,3"; } function conditionallyLoadAnalytics({ writeKey, destinations, destinationPreferences, isConsentRequired }) { let isAnythingEnabled = false; if (!destinationPreferences) { if (isConsentRequired) { return; } if (!window.analytics.initialized) { window.analytics.load(writeKey); } return; } for (const destination of Object.keys(destinationPreferences) ) { const isEnabled = destinationPreferences[destination]; if (isEnabled) { isAnythingEnabled = true; } } if (isAnythingEnabled) { window.analytics.load(writeKey, { integrations: destinationPreferences }); } } async function fetchDestinationForWriteKey(writeKey) { const res = await window.fetch( "https://cdn.segment.com/v1/projects/"+writeKey+"/integrations" ); if (!res.ok) { throw new Error( "Failed to fetch integrations for write key "+writeKey+": HTTP+"+res.status+res.statusText ); } const destinations = await res.json(); for (const destination of destinations) { destination.id = destination.creationName; delete destination.creationName; } return destinations; } async function fetchDestinations(writeKey) { const destinationsRequests = []; destinationsRequests.push(fetchDestinationForWriteKey(writeKey)); let destinations = await Promise.all(destinationsRequests); destinations = [ ...destinations .reduce((a, b) => a.concat(b), []) .filter(d => d.id !== "Repeater") .reduce((map, item) => { map.has(item["id"]) || map.set(item["id"], item); return map; }, new Map()) .values() ]; return destinations; } </script> <!-- End Segment Consent Manager Script --> <!-- OG data --> <meta property="og:type" content="website"/> <meta property="og:site_name" content="Twilio"/> <meta property="og:url" content="https://www.twilio.com/en-us/customer-data-platform"/> <meta property="og:title" content="Customer Data Platform, CDP | Twilio"/> <meta property="og:description" content="Twilio Segment’s customer data platform gathers customer data across engagement channels into a unified profile to activate more precise customer experiences."/> <meta property="og:image" content="https://www.twilio.com/content/dam/twilio-com/core-assets/social/twilio-com-default-ogimage.png"/> <!-- OG data --> <meta name="twitter:site" content="@twilio"/> <meta name="twitter:url" content="https://www.twilio.com/en-us/customer-data-platform"/> <meta name="twitter:title" content="Customer Data Platform, CDP | Twilio"/> <meta name="twitter:description" content="Twilio Segment’s customer data platform gathers customer data across engagement channels into a unified profile to activate more precise customer experiences."/> <meta name="twitter:image" content="https://www.twilio.com/content/dam/twilio-com/core-assets/social/twilio-com-default-ogimage.png"/> <meta name="twitter:card" content="summary_large_image"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <link rel="stylesheet" href="/etc.clientlibs/twilio-foundation/clientlibs/clientlib-dependencies.lc-d41d8cd98f00b204e9800998ecf8427e-lc.min.css" type="text/css"> <link rel="stylesheet" href="/etc.clientlibs/twilio-foundation/clientlibs/clientlib-site.lc-18ca746af5d8b3849c3a5a167b793256-lc.min.css" type="text/css"> <link rel="stylesheet" href="/etc.clientlibs/twilio-com/clientlibs/clientlib-dependencies.lc-d41d8cd98f00b204e9800998ecf8427e-lc.min.css" type="text/css"> <link rel="stylesheet" href="/etc.clientlibs/twilio-com/clientlibs/clientlib-site.lc-b914adb166fa58f15d72dd0d25e1257c-lc.min.css" type="text/css"> <link rel="apple-touch-icon" sizes="180x180" href="/content/dam/twilio-com/core-assets/social/apple-touch-icon.png"/> <link rel="icon" type="image/png" sizes="32x32" href="/content/dam/twilio-com/core-assets/social/favicon-32x32.png"/> <link rel="icon" type="image/png" sizes="16x16" href="/content/dam/twilio-com/core-assets/social/favicon-16x16.png"/> <link rel="manifest" href="/content/dam/twilio-com/core-assets/social/site.webmanifest"/> <link rel="mask-icon" href="/content/dam/twilio-com/core-assets/social/safari-pinned-tab.svg" color="#f22f46"/> <meta name="msapplication-TileColor" content="#f22f46"/> <meta name="theme-color" content="#ffffff"/> <script>window.dataLayer = window.dataLayer || [];</script> <script> var _C = { REDACTION_COPY: { EMAIL: "EMAIL_REDACTED" } }; function extractParams() { for ( var b = [], a, c = /([^&=]+)=?([^&]*)/g, d = window.location.search.substring(1); (a = c.exec(d)); ) b.push([a[1], a[2]]); return b; } var urlParams = extractParams(), emailRegex = /(([^<>()\[\]\\.,;:\s@"%]+(\.[^<>()\[\]\\.,;:\s@"%]+)*)|(".+"))(@|%40)((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))/g; urlParams = urlParams.map(function (b) { return b.map(function (a) { _redactedValue = decodeURIComponent(a).replace( emailRegex, _C.REDACTION_COPY.EMAIL ); return _redactedValue === _C.REDACTION_COPY.EMAIL ? _redactedValue : a; }); }); function rewriteURL(b) { if (0 === b.length) return ( window.location.protocol + "//" + window.location.host + window.location.pathname + window.location.hash ); for (var a = "?", c = 0; c < b.length; c++) 0 < c && (a = a.concat("\x26")), (a = a.concat(b[c][0] + "\x3d" + b[c][1])); return ( window.location.protocol + "//" + window.location.host + window.location.pathname + a + window.location.hash ); } var newURL = rewriteURL(urlParams); newURL !== window.location.href && window.history.replaceState({}, document.title, newURL); var newTitle = document.title.replace(emailRegex, _C.REDACTION_COPY.EMAIL); newTitle !== document.title && (document.title = newTitle); dataLayer.push({ event: "piiRedacted" }); </script> <style> #teconsent { position: fixed; z-index: 1000; bottom: 0; right: 0; } </style> </head> <body class="base-page page basicpage " id="base-page-35ad6e4b2c"> <!-- Based on path identifying if GTM ID should be twilio.com's or cusomter's --> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5JLZ694" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <div id="teconsent" style="display: none;"></div> <header class="experiencefragment global-header"> <div class="xfpage page basicpage"> <nav role="navigation" class="navigation" data-maxmind-enabled="false" data-phone-endpoint="/content/twilio-com/global/en-us/customer-data-platform.phonenumber.json" data-lang="en_US"> <header class="top-navigation"> <ul class="top-navigation-menu"> <li> <div class="language-selector select"> <button class="language-selector-button select-toggle" type="button" aria-expanded="false" aria-controls="language-selector" id="language-selector-button"> <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_2849_179)"> <path d="M0.5 8C0.5 9.98912 1.29018 11.8968 2.6967 13.3033C4.10322 14.7098 6.01088 15.5 8 15.5C9.98912 15.5 11.8968 14.7098 13.3033 13.3033C14.7098 11.8968 15.5 9.98912 15.5 8C15.5 6.01088 14.7098 4.10322 13.3033 2.6967C11.8968 1.29018 9.98912 0.5 8 0.5C6.01088 0.5 4.10322 1.29018 2.6967 2.6967C1.29018 4.10322 0.5 6.01088 0.5 8V8Z" stroke="#030B5D" stroke-linecap="round" stroke-linejoin="round"/> <path d="M6.19267 15.2806C5.178 13.7926 4.5 11.0886 4.5 7.99997C4.5 4.9113 5.178 2.2073 6.19267 0.719299" stroke="#030B5D" stroke-linecap="round" stroke-linejoin="round"/> <path d="M0.5 8H15.5" stroke="#030B5D" stroke-linecap="round" stroke-linejoin="round"/> <path d="M1.6543 12H14.345" stroke="#030B5D" stroke-linecap="round" stroke-linejoin="round"/> <path d="M2 4H14" stroke="#030B5D" stroke-linecap="round" stroke-linejoin="round"/> <path d="M9.80762 0.719299C10.8223 2.2073 11.5003 4.9113 11.5003 7.99997C11.5003 11.0886 10.8223 13.7926 9.80762 15.2806" stroke="#030B5D" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_2849_179"> <rect width="16" height="16" fill="white"/> </clipPath> </defs> </svg> <span>English</span> <div class="select-arrow"> <svg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M0.183058 0.719435C0.427136 0.475358 0.822864 0.475358 1.06694 0.719435L5 4.65249L8.93306 0.719435C9.17714 0.475358 9.57286 0.475358 9.81694 0.719435C10.061 0.963513 10.061 1.35924 9.81694 1.60332L5.68077 5.73949C5.6807 5.73956 5.68063 5.73963 5.68055 5.73971C5.50018 5.92042 5.25533 6.02198 5 6.02198C4.74473 6.02198 4.49995 5.92048 4.31959 5.73985C4.31947 5.73973 4.31935 5.73961 4.31923 5.73949L0.183058 1.60332C-0.0610194 1.35924 -0.0610194 0.963513 0.183058 0.719435Z" fill="#030B5D"/> </svg> </div> </button> <ul class="select-menu language-menu" role="menu" id="language-selector" inert aria-hidden="true" aria-labelledby="language-selector-button"> <li role="menuitem"> <a class href="/ja-jp/customer-data-platform" data-lang-code="ja-jp"> <span>日本語</span> </a> </li> <li role="menuitem"> <a class href="/de-de/customer-data-platform" data-lang-code="de-de"> <span>Deutsch</span> </a> </li> <li role="menuitem"> <a class href="/en-us/customer-data-platform" data-lang-code="en-us"> <span>English</span> <img src="/content/dam/twilio-com/core-assets/design-ops/component-svgs/check-black.svg" alt="Selected language icon" loading="lazy" class="selected-lang"/> </a> </li> <li role="menuitem"> <a class href="/es-mx/customer-data-platform" data-lang-code="es-mx"> <span>Español (México)</span> </a> </li> <li role="menuitem"> <a class href="/fr-fr/customer-data-platform" data-lang-code="fr-fr"> <span>Français</span> </a> </li> <li role="menuitem"> <a class href="/pt-br/customer-data-platform" data-lang-code="pt-br"> <span>Português (Brasil)</span> </a> </li> </ul> </div> </li> <li class="hide-md-down"> <div class="support-selector select"> <button class="support-selector-button select-toggle" aria-expanded="false" aria-controls="support-selector" id="support-selector-button" type="button"> <span>Support</span> <div class="select-arrow"> <svg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M0.183058 0.719435C0.427136 0.475358 0.822864 0.475358 1.06694 0.719435L5 4.65249L8.93306 0.719435C9.17714 0.475358 9.57286 0.475358 9.81694 0.719435C10.061 0.963513 10.061 1.35924 9.81694 1.60332L5.68077 5.73949C5.6807 5.73956 5.68063 5.73963 5.68055 5.73971C5.50018 5.92042 5.25533 6.02198 5 6.02198C4.74473 6.02198 4.49995 5.92048 4.31959 5.73985C4.31947 5.73973 4.31935 5.73961 4.31923 5.73949L0.183058 1.60332C-0.0610194 1.35924 -0.0610194 0.963513 0.183058 0.719435Z" fill="#030B5D"/> </svg> </div> </button> <ul class="select-menu support-menu" role="menu" id="support-selector" inert aria-hidden="true" aria-labelledby="support-selector-button"> <li role="menuitem"> <a class target="_blank" href="https://help.twilio.com/"> <span>Help Center</span> </a> </li> <li role="menuitem"> <a class target="_self" href="https://help.twilio.com/"> <span>Talk to Support</span> </a> </li> <li role="menuitem"> <a class target="_blank" href="https://www.twiliotraining.com/store"> <span>Training</span> </a> </li> <hr/> <li role="menuitem"> <a class target="_blank" href="/en-us/support-plans"> <span>Support Plans</span> </a> </li> <li role="menuitem"> <a class target="_blank" href="/en-us/partners"> <span>Partner Solutions</span> </a> </li> </ul> </div> </li> <li class="hide-md-down"> <a class="login-link" href="https://www.twilio.com/login" data-uuid="43983c73-3a17-3fe1-b1fd-27f42de677ca">Login</a> </li> <li class="hide-md-down hide-up"> <a class="console-link" href="https://www.twilio.com/console" data-uuid="8ccb73b7-e8fa-3129-8959-37edc4c44418">Console</a> </li> </ul> </header> <div class="navigation-sections"> <div class="navigation-logo"> <a href="https://www.twilio.com/en-us" data-uuid="" aria-label="Twilio.com"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 133 48" class="customer-logo"> <title>Twilio logo</title> <g class="twilio"> <g class="path-fill logo-fill"> <path d="M15 32.8462C17.1242 32.8462 18.8461 31.1242 18.8461 29C18.8461 26.8758 17.1242 25.1539 15 25.1539C12.8758 25.1539 11.1538 26.8758 11.1538 29C11.1538 31.1242 12.8758 32.8462 15 32.8462ZM15 22.8462C17.1242 22.8462 18.8461 21.1242 18.8461 19C18.8461 16.8758 17.1242 15.1538 15 15.1538C12.8758 15.1538 11.1538 16.8758 11.1538 19C11.1538 21.1242 12.8758 22.8462 15 22.8462ZM25 32.8462C27.1242 32.8462 28.8462 31.1242 28.8462 29C28.8462 26.8758 27.1242 25.1539 25 25.1539C22.8758 25.1539 21.1538 26.8758 21.1538 29C21.1538 31.1242 22.8758 32.8462 25 32.8462ZM25 22.8462C27.1242 22.8462 28.8462 21.1242 28.8462 19C28.8462 16.8758 27.1242 15.1538 25 15.1538C22.8758 15.1538 21.1538 16.8758 21.1538 19C21.1538 21.1242 22.8758 22.8462 25 22.8462ZM20 4C30.8333 4 40 13.1667 40 24C40 34.8333 30.8333 44 20 44C9.16668 44 0 34.8333 0 24C0 13.1668 9.16673 4 20 4ZM20 9.38461C11.9512 9.38461 5.38462 15.7238 5.38462 23.7315C5.38462 31.7392 11.9512 38.6154 20 38.6154C28.0488 38.6154 34.6154 31.7392 34.6154 23.7315C34.6154 15.7238 28.0488 9.38461 20 9.38461ZM62.6848 35.9231H68.9693C69.1955 35.9231 69.2924 35.8262 69.357 35.6L71.4382 27.9166L73.4572 35.6C73.5218 35.8262 73.6187 35.9231 73.8449 35.9231H80.1268C80.3852 35.9231 80.5468 35.8262 80.6114 35.6L85.0011 19.3077V35.5354C85.0011 35.7615 85.1626 35.9231 85.3888 35.9231H92.3026C92.5287 35.9231 92.6903 35.7615 92.6903 35.5354V18.6185C92.6903 18.3923 92.5287 18.2308 92.3026 18.2308L78.8307 18.2321C78.6046 18.2321 78.4753 18.3291 78.4107 18.5875L76.8848 26.4076L75.3482 18.5875C75.3159 18.3614 75.1544 18.2321 74.9282 18.2321H68.0901C67.8639 18.2321 67.7024 18.3614 67.6701 18.5875L66.1738 26.4076L64.6823 18.5875C64.6177 18.3291 64.4885 18.2321 64.2623 18.2321L54.0538 18.2308V12.4678C54.0538 12.177 53.8536 12.0478 53.5306 12.1447L47.1123 14.215C46.8861 14.2796 46.7569 14.4735 46.7569 14.6996L46.7494 17.4155C46.7494 18.094 46.394 18.3847 45.7155 18.3847H44.0563C43.8301 18.3847 43.6685 18.5462 43.6685 18.7724V23.6139C43.6685 23.8401 43.8301 24.0016 44.0563 24.0016H46.5385V29.8815C46.5385 34.0492 48.1785 36.4046 53.1861 36.4046C55.1246 36.4046 56.7092 36.1555 57.5493 35.7678C57.8077 35.6386 57.9 35.477 57.9 35.2186V30.6413C57.9 30.3828 57.6462 30.2536 57.3231 30.4151C56.9031 30.609 56.4169 30.6413 55.9323 30.6413C54.64 30.6413 54.2276 30.1567 54.2276 28.5413V24.0016H57.238C57.4642 24.0016 57.6149 23.8518 57.6149 23.6257V19.3077L62.2002 35.6C62.2648 35.8262 62.4263 35.9231 62.6848 35.9231ZM85.0011 16.3053C85.0011 16.5315 85.1626 16.6931 85.3888 16.6931H92.3026C92.5287 16.6931 92.6903 16.5315 92.6903 16.3053V12.4678C92.6903 12.2416 92.5287 12.0801 92.3026 12.0801H85.3888C85.1626 12.0801 85.0011 12.2416 85.0011 12.4678V16.3053ZM94.2299 35.5354C94.2299 35.7615 94.3914 35.9231 94.6176 35.9231H101.539C101.765 35.9231 101.926 35.7615 101.926 35.5354V12.4678C101.926 12.2416 101.765 12.0801 101.539 12.0801H94.6176C94.3914 12.0801 94.2299 12.2416 94.2299 12.4678V35.5354ZM103.465 35.5354C103.465 35.7615 103.627 35.9231 103.853 35.9231H110.755C110.982 35.9231 111.143 35.7615 111.143 35.5354L111.139 18.6185C111.139 18.3923 110.978 18.2308 110.752 18.2308H103.849C103.623 18.2308 103.462 18.3923 103.462 18.6185L103.465 35.5354ZM103.462 16.3053C103.462 16.5315 103.623 16.6931 103.849 16.6931H110.755C110.982 16.6931 111.143 16.5315 111.143 16.3053L111.139 12.4678C111.139 12.2416 110.978 12.0801 110.752 12.0801H103.849C103.623 12.0801 103.462 12.2416 103.462 12.4678V16.3053ZM112.352 27.2323C112.352 32.4985 116.395 36.4615 122.308 36.4615C128.22 36.4615 132.228 32.4985 132.228 27.2323V26.8123C132.228 21.5462 128.22 17.6923 122.308 17.6923C116.395 17.6923 112.352 21.5462 112.352 26.8123V27.2323ZM119.769 27.2462V26.9307C119.769 24.5077 120.886 23.56 122.308 23.56C123.729 23.56 124.852 24.5077 124.852 26.9307V27.2462C124.852 29.637 123.729 30.6369 122.308 30.6369C120.886 30.6369 119.769 29.637 119.769 27.2462Z" fill="#F22F46"/> </g> </g> </svg> </a> </div> <ul class="navigation-links" role="list"> <li> <button aria-expanded="false" aria-controls="navigation-dropdown-0" data-nav-id="0" class="navigation-link" id="navigation-link-0"> Products </button> <div data-nav-id="0" aria-labelledby="navigation-link-0" id="navigation-dropdown-0" class="navigation-dropdown four-columns"> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Communications</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/messaging" target="_self" data-uuid="c65ba57f-0180-378b-a5a5-4f81c8d14373"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Messaging logo</title> <g class="twilio_messaging"> <path d="M18.511 66.441a3.586 3.586 0 0 1-1.551-.34c-1.339-.616-2.189-1.912-2.168-3.4l.064-9.201H7.313A5.314 5.314 0 0 1 2 48.187V16.314A5.314 5.314 0 0 1 7.313 11h57.374A5.314 5.314 0 0 1 70 16.313v31.875a5.314 5.314 0 0 1-5.313 5.312H34.683L20.955 65.528a3.665 3.665 0 0 1-2.444.934v-.02ZM7.313 15.25c-.595 0-1.063.467-1.063 1.063v31.875c0 .594.468 1.062 1.063 1.062h9.647c.574 0 1.105.234 1.509.616.403.404.616.935.616 1.509l-.064 10.157L32.472 49.76c.383-.34.893-.531 1.403-.531h30.813c.594 0 1.062-.468 1.062-1.063V16.313c0-.595-.468-1.063-1.063-1.063H7.313Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Messaging</strong> </span> <p class="navigation-dropdown-link-description"> Send and receive multichannel text and media messages in 180+ countries </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/messaging/channels/sms" target="_self" data-uuid="f2c3345d-3fa1-33d2-ac50-e682e778a0d8">SMS</a> <a href="/en-us/messaging/channels/whatsapp" target="_self" data-uuid="afe9c931-96ed-3c7a-895b-671a04507508">WhatsApp</a> <a href="/en-us/messaging/conversations-api" target="_self" data-uuid="4dc05265-7e3a-37f8-85bb-5f6587fdc22f">Conversations</a> <a href="/en-us/messaging/channels/rcs" target="_self" data-uuid="9e18930c-b023-39e8-b333-75606e8d9231">RCS</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/voice" target="_self" data-uuid="fbdaf169-d9be-33ff-9a3b-edc7ad68de86"> <svg width="72" height="72" viewBox="0 0 72 72" fill="none" xmlns="http://www.w3.org/2000/svg"> <path class="path-fill logo-fill" fill-rule="evenodd" clip-rule="evenodd" d="M25.6264 34.6385L25.659 34.5419L35.4121 7.04017C36.622 3.6285 41.698 4.49252 41.698 8.11013L41.6978 29.4478L44.4808 29.4481C46.6711 29.4481 48.218 31.5627 47.5692 33.6229L47.5372 33.7194L36.7466 64.6588C35.5514 68.0857 30.4551 67.2318 30.4551 63.6046L30.4548 38.8287L28.7099 38.8289C26.5126 38.8289 24.965 36.7018 25.6264 34.6385ZM38.4629 32.6652V8.11013L28.7099 35.6118H33.6902V63.6046L44.4808 32.6652H38.4629ZM16.7287 15.2802C16.693 14.4288 15.9908 13.7464 15.1246 13.74C14.2313 13.7334 13.5018 14.4483 13.4951 15.3366L13.1918 56.0007L13.1932 56.081C13.2289 56.9324 13.9311 57.6147 14.7973 57.6212C15.6906 57.6277 16.4202 56.9129 16.4268 56.0246L16.7301 15.3605L16.7287 15.2802ZM1.61752 23.7446C2.48379 23.7446 3.191 24.4218 3.23307 25.2729L3.23505 25.3531V47.9701C3.23505 48.8585 2.51086 49.5787 1.61752 49.5787C0.75126 49.5787 0.0440456 48.9015 0.00197953 48.0504L0 47.9701V25.3531C0 24.4648 0.72419 23.7446 1.61752 23.7446ZM70.3825 23.7446C71.2487 23.7446 71.9559 24.4218 71.998 25.2729L72 25.3531V47.9701C72 48.8585 71.2758 49.5787 70.3825 49.5787C69.5162 49.5787 68.809 48.9015 68.7669 48.0504L68.7649 47.9701V25.3531C68.7649 24.4648 69.4891 23.7446 70.3825 23.7446ZM58.0305 13.74C58.8967 13.7465 59.5989 14.4288 59.6346 15.2802L59.636 15.3605L59.3327 56.0246C59.3261 56.9129 58.5965 57.6277 57.7032 57.6212C56.837 57.6148 56.1348 56.9324 56.0991 56.081L56.0977 56.0007L56.401 15.3366C56.4076 14.4483 57.1372 13.7335 58.0305 13.74Z" fill="#121C2D"/> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Voice</strong> </span> <p class="navigation-dropdown-link-description"> Make, receive, and monitor calls around the world </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/voice" target="_self" data-uuid="85a51b0c-4d53-387b-a7ae-907acf893d72">PSTN</a> <a href="/en-us/sip-trunking" target="_self" data-uuid="9bc860ef-c600-35c7-8472-aba61c48de31">SIP Trunking</a> <a href="/en-us/voice-sdk" target="_self" data-uuid="eaa2af1d-a6c5-313d-ba19-d1c7ab1ee858">SDK</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/user-authentication-identity/verify" target="_self" data-uuid="09ea660c-4bb0-3472-9b1c-62d7726f31f7"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Verify logo</title> <g class="twilio_verify"> <g class="path-fill"> <path d="M36 68.558a5.287 5.287 0 0 1-3.761-1.552L3.87 38.616A6.317 6.317 0 0 1 2 34.111V9.313A5.314 5.314 0 0 1 7.313 4h57.374A5.314 5.314 0 0 1 70 9.313v1.423a6.28 6.28 0 0 1-1.87 4.505L39.761 43.61c-2.061 2.061-5.44 2.061-7.522 0L21.74 33.112a2.116 2.116 0 0 1 0-2.996 2.116 2.116 0 0 1 2.997 0l10.497 10.498c.276.276.595.319.744.319.148 0 .489-.043.743-.32l28.412-28.368c.403-.404.616-.935.616-1.509V9.312c0-.595-.468-1.062-1.063-1.062H7.313c-.595 0-1.063.467-1.063 1.063V34.11c0 .574.213 1.105.616 1.509l28.369 28.369a1.091 1.091 0 0 0 1.509 0l16.872-16.873a2.116 2.116 0 0 1 2.996 0 2.116 2.116 0 0 1 0 2.996L39.74 66.986a5.288 5.288 0 0 1-3.761 1.551l.021.022Z"/> <path d="M63.625 46.118a6.375 6.375 0 1 0 0-12.75 6.375 6.375 0 0 0 0 12.75Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Verify</strong> </span> <p class="navigation-dropdown-link-description"> Globally-managed multichannel 2FA and passwordless authentication </p> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/user-authentication-identity/lookup" target="_self" data-uuid="9ddfe08b-e121-3904-99a3-e29de8ba0d43"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Lookup logo</title> <g class="twilio_lookup"> <g class="path-fill"> <path d="M27.498 33.873a6.375 6.375 0 1 0 0-12.75 6.375 6.375 0 0 0 0 12.75Z"/> <path d="M69.379 66.361 46.96 43.944c3.761-4.44 6.056-10.178 6.056-16.446C52.996 13.432 41.564 2 27.498 2S2 13.432 2 27.498s11.432 25.498 25.498 25.498a25.267 25.267 0 0 0 16.446-6.056l22.417 22.417c.425.425.956.616 1.509.616.552 0 1.084-.212 1.508-.616a2.116 2.116 0 0 0 0-2.996ZM6.248 27.498C6.25 15.79 15.79 6.25 27.499 6.25c11.708 0 21.248 9.54 21.248 21.248 0 11.708-9.54 21.248-21.248 21.248-11.708 0-21.248-9.54-21.248-21.248Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Lookup</strong> </span> <p class="navigation-dropdown-link-description"> Know your customer and assess identity risk with real-time phone intelligence </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span></span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/sendgrid/email-api" target="_self" data-uuid="ae4a1f31-bb99-3afc-a76e-3d73bfd77527"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio SendGrid Email API logo</title> <g class="twilio_sendgrid-email-api"> <path fill-rule="evenodd" clip-rule="evenodd" d="M29.25 6.25C29.1249 6.25 29.0031 6.29755 28.9003 6.4003C28.7975 6.50306 28.75 6.62494 28.75 6.75V20.25C28.75 20.3751 28.7975 20.4969 28.9003 20.5997C29.0031 20.7025 29.1249 20.75 29.25 20.75H42.75C47.4341 20.75 51.25 24.5659 51.25 29.25V42.75C51.25 42.8751 51.2975 42.9969 51.4003 43.0997C51.5031 43.2025 51.6249 43.25 51.75 43.25H65.25C65.3751 43.25 65.4969 43.2025 65.5997 43.0997C65.7025 42.9969 65.75 42.8751 65.75 42.75V6.25H29.25ZM29.25 2.25H67.5C68.7375 2.25 69.75 3.2625 69.75 4.5V42.75C69.75 45.225 67.725 47.25 65.25 47.25H51.75C49.275 47.25 47.25 45.225 47.25 42.75V29.25C47.25 26.775 45.225 24.75 42.75 24.75H29.25C26.775 24.75 24.75 22.725 24.75 20.25V6.75C24.75 4.275 26.775 2.25 29.25 2.25Z" class="path-fill"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M42.75 65.75C42.8751 65.75 42.9969 65.7025 43.0997 65.5997C43.2025 65.4969 43.25 65.3751 43.25 65.25V51.75C43.25 51.6249 43.2025 51.5031 43.0997 51.4003C42.9969 51.2975 42.8751 51.25 42.75 51.25H29.25C24.5659 51.25 20.75 47.4341 20.75 42.75V29.25C20.75 29.1249 20.7025 29.0031 20.5997 28.9003C20.4969 28.7975 20.3751 28.75 20.25 28.75H6.75C6.62494 28.75 6.50306 28.7975 6.4003 28.9003C6.29755 29.0031 6.25 29.1249 6.25 29.25V65.75H42.75ZM42.75 69.75H4.5C3.2625 69.75 2.25 68.7375 2.25 67.5V29.25C2.25 26.775 4.275 24.75 6.75 24.75H20.25C22.725 24.75 24.75 26.775 24.75 29.25V42.75C24.75 45.225 26.775 47.25 29.25 47.25H42.75C45.225 47.25 47.25 49.275 47.25 51.75V65.25C47.25 67.725 45.225 69.75 42.75 69.75Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Email</strong> </span> <p class="navigation-dropdown-link-description"> Deliver email messages reliably at scale with SendGrid </p> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/serverless" target="_self" data-uuid="ac64ad4a-b6e1-3b67-bc3f-9c582536609c"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Task Router logo</title> <g class="twilio_task-router"> <path d="M57.25 27.75 70 21.375 57.25 15v12.75ZM53 51.125A2.131 2.131 0 0 0 50.875 49H48.75c-6.8 0-10.625-5.95-14.45-12.75 3.825-6.8 7.65-12.75 14.45-12.75h2.125A2.131 2.131 0 0 0 53 21.375a2.131 2.131 0 0 0-2.125-2.125H48.75c-8.288 0-13.175 6.163-17 12.75-3.825-6.587-8.712-12.75-17-12.75H4.125A2.131 2.131 0 0 0 2 21.375 2.13 2.13 0 0 0 4.125 23.5H14.75c6.8 0 10.625 5.95 14.45 12.75C25.375 43.05 21.55 49 14.75 49H4.125A2.131 2.131 0 0 0 2 51.125a2.13 2.13 0 0 0 2.125 2.125H14.75c8.288 0 13.175-6.163 17-12.75 3.825 6.587 8.712 12.75 17 12.75h2.125A2.131 2.131 0 0 0 53 51.125Zm4.25 6.375L70 51.125 57.25 44.75V57.5Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Serverless</strong> </span> <p class="navigation-dropdown-link-description"> Build, deploy, and run apps with Twilio’s serverless environment and visual builder </p> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/phone-numbers" target="_self" data-uuid="bc7654e5-0721-3c82-91e0-a3cbe7e25011"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Phone Numbers logo</title> <g class="twilio_phone-numbers"> <g class="path-fill"> <path d="M61.233 22.531H50.402L52.923 4.64a2.304 2.304 0 0 0-1.967-2.615c-1.296-.186-2.43.694-2.615 1.967L45.726 22.53h-13.84l2.522-17.89a2.304 2.304 0 0 0-1.967-2.615c-1.296-.186-2.43.694-2.615 1.967L27.21 22.53H12.63a2.321 2.321 0 0 0-2.314 2.315 2.321 2.321 0 0 0 2.314 2.314h13.933L24.295 43.36h-13.98A2.321 2.321 0 0 0 8 45.676a2.321 2.321 0 0 0 2.315 2.314h13.308l-2.685 19.05a2.304 2.304 0 0 0 1.967 2.615h.324c1.134 0 2.13-.833 2.292-1.99l2.777-19.697h30.62a2.321 2.321 0 0 0 2.315-2.314 2.321 2.321 0 0 0-2.314-2.315H47.462l2.268-16.201h11.48a2.321 2.321 0 0 0 2.315-2.315 2.321 2.321 0 0 0-2.315-2.314l.023.023Zm-18.446 20.83h-13.84l2.267-16.201h13.841l-2.268 16.201Z"/> <path d="M41.77 69.977h-.325a2.304 2.304 0 0 1-1.967-2.615l1.852-13.17c.185-1.273 1.32-2.153 2.615-1.967a2.304 2.304 0 0 1 1.968 2.615L44.06 68.01A2.315 2.315 0 0 1 41.77 70v-.023Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Phone Numbers</strong> </span> <p class="navigation-dropdown-link-description"> Access local, national, and toll-free phone numbers </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/phone-numbers/toll-free" target="_self" data-uuid="bcdfd127-e417-3f55-8d47-8c519354096c">Toll-Free</a> <a href="/en-us/a2p-10dlc" target="_self" data-uuid="a4625ef8-f987-3ceb-b706-0e20b72ec175">10DLC</a> <a href="/en-us/messaging/channels/sms/short-codes" target="_self" data-uuid="6a6c6b4f-bd9b-3032-89e9-f8878c6c6bca">Short Codes</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/video" target="_self" data-uuid="18154e03-2a6c-3e04-9d6a-fe839e1d0d88"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Video logo</title> <g class="twilio_video"> <path d="M43.438 57.5H7.312A5.314 5.314 0 0 1 2 52.187V20.314A5.314 5.314 0 0 1 7.313 15h36.124a5.314 5.314 0 0 1 5.313 5.313v8.245l13.557-6.78a5.264 5.264 0 0 1 5.164.235A5.295 5.295 0 0 1 70 26.538v19.465a5.266 5.266 0 0 1-2.507 4.505 5.321 5.321 0 0 1-5.164.255L48.75 44.049v8.16a5.314 5.314 0 0 1-5.313 5.312V57.5ZM7.312 19.25c-.595 0-1.062.468-1.062 1.063v31.875c0 .594.468 1.062 1.063 1.062h36.124c.596 0 1.063-.468 1.063-1.063v-11.58c0-.745.383-1.425.999-1.807a2.153 2.153 0 0 1 2.061-.106l16.639 8.245c.489.233.871.042 1.041-.043.149-.085.51-.361.51-.892V26.539c0-.532-.361-.808-.51-.914-.149-.085-.552-.297-1.041-.043l-16.639 8.31c-.659.318-1.445.297-2.061-.086A2.123 2.123 0 0 1 44.5 32V20.312c0-.595-.468-1.062-1.063-1.062H7.313Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Video</strong> </span> <p class="navigation-dropdown-link-description"> Connect virtually with secure, high-quality video calling at global scale </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Applications</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/flex" target="_self" data-uuid="01b27b9e-4068-385b-bad2-abbdac206df3"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Flex logo</title> <g class="twilio_flex"> <path d="M10.455 32.482C9.235 31.259 7 32.074 7 33.909v18.55c0 .612.203 1.02.61 1.428l17.476 17.531c1.22 1.223 3.455.408 3.455-1.427v-18.55c0-.612-.203-1.02-.61-1.427L10.456 32.482ZM9.032 7C8.016 7 7 8.02 7 9.039v13.454c0 .612.203 1.02.61 1.427l29.873 29.967c.406.407.813.611 1.422.611h20.729c1.828 0 2.641-2.242 1.422-3.465L43.58 33.297c-.406-.407-.813-.611-1.422-.611h-11.38c-1.017 0-2.033-.816-2.033-2.039 0-1.019.813-2.038 2.033-2.038h39.22c1.83 0 2.642-2.243 1.423-3.466L53.943 7.612C53.537 7.204 52.927 7 52.521 7H9.032Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Flex</strong> </span> <p class="navigation-dropdown-link-description"> Digital engagement center for customer service and sales </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/flex/use-cases/contact-center" target="_self" data-uuid="5c2d9c5a-08e1-39ea-b937-91b213ac174b">Contact center</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/engage" target="_self" data-uuid="8523f978-5f68-3011-aad2-8e0c25c78e27"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Engage logo</title> <g class="twilio_engage"> <g class="path-fill"> <path d="M36 51.96c8.815 0 15.96-7.145 15.96-15.96 0-8.814-7.145-15.96-15.96-15.96-8.814 0-15.96 7.146-15.96 15.96 0 8.815 7.146 15.96 15.96 15.96Z"/> <path d="M32.54 59.76c-10.42-1.48-18.82-9.88-20.3-20.3-.88-6.28.7-12.16 3.88-16.88.52-.78.38-1.82-.28-2.48l-2.88-2.88c-.88-.88-2.34-.76-3.06.26C6.18 22.7 4 29.1 4 36v29.42C4 66.84 5.16 68 6.58 68H36c6.9 0 13.3-2.18 18.52-5.9 1.02-.72 1.14-2.18.26-3.06l-2.88-2.88c-.66-.66-1.7-.8-2.48-.28-4.7 3.2-10.6 4.78-16.88 3.88Zm6.92-47.52c10.42 1.46 18.82 9.88 20.3 20.3.88 6.28-.7 12.16-3.88 16.88-.52.78-.38 1.82.28 2.48l2.88 2.88c.88.88 2.34.76 3.06-.26C65.82 49.3 68 42.9 68 36V6.58C68 5.16 66.84 4 65.42 4H36c-6.9 0-13.3 2.18-18.52 5.9a2.006 2.006 0 0 0-.26 3.06l2.88 2.88c.66.66 1.7.8 2.48.28 4.7-3.18 10.58-4.76 16.88-3.88Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Engage</strong> </span> <p class="navigation-dropdown-link-description"> Create multi-channel campaigns with a unified data-first platform </p> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/sendgrid/marketing-campaigns" target="_self" data-uuid="b4a7bbcb-e911-309b-99a4-553796478f8a"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Marketing Campaigns logo</title> <g class="twilio_marketing-campaigns"> <path d="M22.71 41.007a2.26 2.26 0 0 1-1.87.501L.993 37.976c-1.28-.444-1.34-2.22-.08-2.72L62.169 7.018S62.247 7 62.286 7h.059a.78.78 0 0 1 .295.039s.04 0 .06.038a.573.573 0 0 1 .196.174c0 .02.02.058.04.077.04.097.078.212.059.328l-5.69 51.956c-.217.945-1.3 1.39-2.127.907L32.89 47.569c-.965-.56-2.166.115-2.166 1.215 0 .54.315 1.023.787 1.255l3.367 1.968c.768.386.985 1.39.492 2.085l-6.458 9.283c-.787 1.158-2.618.598-2.618-.791V44.905c0-.502.196-1.004.55-1.37l28.59-29.413c.315-.31-.138-.792-.492-.502L22.71 41.007Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Marketing Campaigns </strong> </span> <p class="navigation-dropdown-link-description"> Create and manage email marketing campaigns with SendGrid </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section has-border"> <h5 class="navigation-dropdown-title"> <span>Customer Data</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://segment.com/" target="_blank" data-uuid="9a6fde8b-0d94-3c2e-8437-c8659a43ba63"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Segment logo</title> <g class="segment"> <path d="M65.64 23.242H31.876a2.254 2.254 0 0 0-2.254 2.254v3.998a2.254 2.254 0 0 0 2.254 2.253H65.64a2.254 2.254 0 0 0 2.254-2.253v-3.998a2.254 2.254 0 0 0-2.254-2.254ZM40.125 40.253H6.359a2.254 2.254 0 0 0-2.254 2.254v3.997a2.254 2.254 0 0 0 2.254 2.254h33.766a2.254 2.254 0 0 0 2.254-2.254v-3.997a2.254 2.254 0 0 0-2.254-2.254ZM16.863 63.642a4.253 4.253 0 1 0 0-8.505 4.253 4.253 0 0 0 0 8.505Zm38.274-46.779a4.253 4.253 0 1 0 0-8.505 4.253 4.253 0 0 0 0 8.505ZM36 61.516c-2.382 0-4.7-.34-6.89-.978-1.041-.298-2.147.298-2.53 1.318l-1.446 3.998a2.137 2.137 0 0 0 1.425 2.785A33.775 33.775 0 0 0 35.999 70c13.886 0 25.772-8.335 31.066-20.243.51-1.148-.02-2.487-1.212-2.913l-3.997-1.467c-1.02-.383-2.19.085-2.637 1.063C55.222 55.286 46.313 61.473 36 61.473v.043Zm0-51.032c2.381 0 4.7.34 6.89.978 1.041.298 2.147-.297 2.53-1.318l1.445-3.998a2.137 2.137 0 0 0-1.424-2.785A33.776 33.776 0 0 0 36 2c-13.885-.021-25.771 8.314-31.066 20.221-.51 1.149.022 2.488 1.212 2.913l3.998 1.468c1.02.382 2.19-.085 2.636-1.064C16.778 16.694 25.687 10.505 36 10.505v-.02Z" class="path-fill fill-path"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Segment ↗</strong> </span> <p class="navigation-dropdown-link-description"> Unify your customer data with Segment CDP to power personalized engagement </p> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://segment.com/product/connections" target="_blank" data-uuid="80c6422a-7ea3-39a4-9952-06c6846c86e0"> <svg width="72" height="72" viewBox="0 0 72 72" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path class="path-fill logo-fill" fill-rule="evenodd" clip-rule="evenodd" d="M2 6.85714C2 4.17462 4.17462 2 6.85714 2H65.1429C67.8255 2 70 4.17462 70 6.85714V14.1429C70 16.8254 67.8255 19 65.1429 19H38.0242C35.3416 19 33.1671 21.1746 33.1671 23.8571V42.476C33.1671 45.1586 30.9923 47.3331 28.3097 47.3331H6.85714C4.17462 47.3331 2 45.1586 2 42.476V6.85714ZM38.8329 29.5242C38.8329 26.8416 41.0077 24.667 43.6903 24.667H65.1429C67.8255 24.667 70 26.8416 70 29.5242V65.1431C70 67.8254 67.8255 70.0002 65.1429 70.0002H6.85714C4.17462 70.0002 2 67.8254 2 65.1431V57.8573C2 55.1747 4.17462 53.0002 6.85714 53.0002H33.9758C36.6584 53.0002 38.8329 50.8254 38.8329 48.1431V29.5242Z"/> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Connections ↗</strong> </span> <p class="navigation-dropdown-link-description"> Integrate web and mobile app data with a single API </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="https://segment.com/product/reverse-etl" target="_blank" data-uuid="dd5d0700-bf87-33e5-aba1-83472ef7ffb7">Reverse ETL</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://segment.com/product/protocols" target="_blank" data-uuid="04efcd9f-8d7b-3df3-b1f4-b48e000751cc"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation"> <title>Cloud with an upload download symbol</title> <g class="networks_cloud-upload-download"> <path fill-rule="evenodd" d="M24.799 2.006A23.31 23.31 0 0 1 47.572 18.39a15.85 15.85 0 0 1 21.016 7.886 15.857 15.857 0 0 1-10.59 21.922 2 2 0 1 1-.971-3.88 11.852 11.852 0 0 0 8.972-11.354 11.857 11.857 0 0 0-13.828-11.836 11.85 11.85 0 0 0-4.767 1.94 2 2 0 0 1-3.105-1.28A19.318 19.318 0 0 0 33.672 7.904 19.309 19.309 0 0 0 6.188 22.628a19.32 19.32 0 0 0 5.667 16.542 2 2 0 1 1-2.787 2.87 23.317 23.317 0 0 1 15.73-40.034Zm.55 34.152a2 2 0 0 1 1.414.586l8.525 8.526a2 2 0 1 1-2.829 2.828l-5.11-5.111V68a2 2 0 1 1-4 0V42.987l-5.11 5.111a2 2 0 1 1-2.83-2.828l8.525-8.526a2 2 0 0 1 1.415-.586Zm21.312 0a2 2 0 0 1 2 2V63.17l5.11-5.111a2 2 0 1 1 2.829 2.828l-8.525 8.526a2 2 0 0 1-2.829 0l-8.525-8.526a2 2 0 1 1 2.83-2.828l5.11 5.11v-25.01a2 2 0 0 1 2-2Z" class="path-fill" clip-rule="evenodd"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Protocols ↗</strong> </span> <p class="navigation-dropdown-link-description"> Protect the integrity of your data </p> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://segment.com/product/unify" target="_blank" data-uuid="51b743b4-fbc4-3f37-bc58-92bb4d9cee95"> <svg width="72" height="72" viewBox="0 0 72 72" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path class="path-fill logo-fill" fill-rule="evenodd" clip-rule="evenodd" d="M15.6794 21.5625C15.6794 12.1391 23.3118 4.5 32.7269 4.5C33.4512 4.5 34.0382 5.08763 34.0382 5.8125V37.3126C34.0382 38.0375 33.4512 38.6249 32.7269 38.6249C23.3118 38.6249 15.6794 30.9858 15.6794 21.5625ZM39.2835 28.125C42.9048 28.125 45.8404 25.1868 45.8404 21.5625C45.8404 17.9381 42.9048 15 39.2835 15C39.0932 15.0013 38.9032 15.0144 38.7144 15.0394C38.527 15.0644 38.338 15.0071 38.1958 14.8824C38.0536 14.7577 37.9722 14.5776 37.9722 14.3884V5.8125C37.9722 5.08763 38.5594 4.5 39.2835 4.5C40.236 4.50822 41.1861 4.59603 42.124 4.7625C42.7565 4.86378 43.2234 5.40763 43.2281 6.04875V8.60813C43.2287 8.8851 43.4029 9.13194 43.6635 9.225C44.0922 9.37699 44.5125 9.55225 44.9224 9.75001C45.1741 9.86329 45.4699 9.80661 45.662 9.60826L47.4665 7.80488C47.9198 7.3517 48.6341 7.29287 49.1554 7.66575C50.7093 8.77081 52.0667 10.1293 53.1708 11.6846C53.5427 12.207 53.4827 12.922 53.0292 13.3751L51.2273 15.1785C51.031 15.3759 50.9805 15.6758 51.1014 15.9266C51.2956 16.3387 51.4712 16.7614 51.626 17.1892C51.719 17.4501 51.9656 17.6245 52.2423 17.625H54.7836C55.4238 17.6251 55.9703 18.0878 56.0767 18.7196C56.416 20.5997 56.416 22.5253 56.0767 24.4054C55.9703 25.0372 55.4238 25.4999 54.7836 25.5001H52.2423C51.9615 25.4951 51.7091 25.6708 51.6155 25.9357C51.4633 26.3628 51.2885 26.7827 51.091 27.1957C50.9701 27.4466 51.0206 27.7464 51.2169 27.9439L53.0239 29.7419C53.476 30.1947 53.5358 30.908 53.1655 31.4299C52.0614 32.9858 50.7042 34.3453 49.1501 35.4513C48.6282 35.8236 47.9139 35.7636 47.4611 35.3096L45.6567 33.5062C45.4595 33.3097 45.1599 33.2593 44.9092 33.3802C44.499 33.5769 44.0789 33.7521 43.6503 33.9053C43.3888 33.9986 43.2145 34.2468 43.2151 34.5248V37.0684C43.2149 37.7091 42.7526 38.2562 42.1214 38.3625C41.1835 38.5289 40.2334 38.6167 39.281 38.6249C38.5567 38.6249 37.9696 38.0375 37.9696 37.3126V28.6316C37.9694 28.4644 38.042 28.3051 38.1684 28.1959C38.2947 28.0864 38.4627 28.0376 38.6279 28.062C38.8448 28.0976 39.0639 28.1187 39.2835 28.125ZM32.7269 39.9375C18.2488 39.9534 6.5159 51.6966 6.5 66.1874C6.5 66.9123 7.08711 67.5 7.81134 67.5H32.7269C33.4512 67.5 34.0382 66.9123 34.0382 66.1874V41.2501C34.0382 40.5252 33.4512 39.9375 32.7269 39.9375ZM63.8582 60.9376C64.5029 60.9429 65.0506 61.4112 65.1564 62.0479C65.3806 63.4306 65.4955 64.8288 65.5 66.2296C65.4746 66.936 64.8949 67.4953 64.1886 67.4947H51.5998C51.2688 67.4917 50.9949 67.2368 50.9677 66.9068C50.3065 60.3387 45.1167 55.1445 38.5545 54.4826C38.2247 54.4555 37.97 54.1812 37.9671 53.8501V41.2501C37.9667 40.5392 38.5317 39.9574 39.2417 39.9375C41.1171 39.9371 42.9872 40.1367 44.8201 40.5334C45.4152 40.6716 45.8363 41.2028 45.8351 41.8143V45.7754C45.8349 46.0542 46.0105 46.3025 46.2731 46.395C47.2649 46.746 48.2293 47.1707 49.158 47.6654C49.4123 47.8017 49.7258 47.7546 49.9291 47.5501L52.6435 44.8619C53.0874 44.418 53.7834 44.3508 54.3038 44.7019C57.3678 46.8439 59.9373 49.6188 61.8387 52.8393C62.1303 53.352 62.0446 53.9961 61.629 54.4143L58.7439 57.3019C58.5531 57.4905 58.4969 57.7769 58.6023 58.0238C58.9423 58.8176 59.2322 59.6321 59.4704 60.4623C59.552 60.7438 59.8097 60.9374 60.1025 60.9376H63.8582Z"/> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Unify ↗</strong> </span> <p class="navigation-dropdown-link-description"> Unify customer data across every channel </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="https://segment.com/product/profiles-sync/" target="_blank" data-uuid="df9276fe-890c-3edc-a15e-2191450e6a5f">Profiles Sync</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://segment.com/product/twilio-engage/journeys" target="_blank" data-uuid="52a31c29-b4ce-3b9c-81ff-a3d8ceb9630a"> <svg width="72" height="74" viewBox="0 0 72 74" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path class="path-fill logo-fill" fill-rule="evenodd" clip-rule="evenodd" d="M2 15.3C2.00089 13.5952 2.46899 11.9235 3.35315 10.4675C4.23731 9.01146 5.5035 7.8272 7.01337 7.04411C8.52323 6.26102 10.2187 5.90922 11.9144 6.02716C13.6101 6.1451 15.2409 6.72825 16.6286 7.71287C18.0162 8.69749 19.1073 10.0457 19.7826 11.6102C20.4579 13.1746 20.6914 14.8952 20.4577 16.5838C20.2239 18.2724 19.5319 19.864 18.4572 21.1848C17.3825 22.5056 15.9664 23.5047 14.3638 24.073V52.5C14.3638 54.9665 15.3408 57.332 17.0798 59.0761C18.8188 60.8202 21.1774 61.8 23.6367 61.8C26.0961 61.8 28.4546 60.8202 30.1936 59.0761C31.9326 57.332 32.9096 54.9665 32.9096 52.5V45.773C31.0998 45.1325 29.5325 43.9448 28.424 42.3735C27.3154 40.8023 26.7201 38.9248 26.7201 37C26.7201 35.0752 27.3154 33.1977 28.424 31.6265C29.5325 30.0552 31.0998 28.8675 32.9096 28.227V21.5C32.9096 19.4645 33.3094 17.449 34.086 15.5684C34.8627 13.6879 36.0011 11.9792 37.4362 10.5398C38.8713 9.10054 40.5751 7.95882 42.4501 7.17987C44.3252 6.40092 46.3349 6 48.3644 6C50.394 6 52.4037 6.40092 54.2787 7.17987C56.1538 7.95882 57.8575 9.10054 59.2926 10.5398C60.7277 11.9792 61.8661 13.6879 62.6428 15.5684C63.4195 17.449 63.8192 19.4645 63.8192 21.5V49.927C65.8814 50.6591 67.6192 52.0985 68.7257 53.991C69.8322 55.8835 70.2363 58.1073 69.8665 60.2697C69.4967 62.432 68.3768 64.3936 66.7046 65.8082C65.0325 67.2227 62.9158 67.999 60.7283 68C58.5384 68.0033 56.418 67.2291 54.7427 65.8147C53.0674 64.4003 51.9453 62.4369 51.575 60.2722C51.2048 58.1076 51.6104 55.8813 52.72 53.9879C53.8296 52.0944 55.5715 50.6558 57.6373 49.927V21.5C57.6373 19.0335 56.6603 16.668 54.9213 14.9239C53.1823 13.1798 50.8237 12.2 48.3644 12.2C45.9051 12.2 43.5465 13.1798 41.8075 14.9239C40.0685 16.668 39.0915 19.0335 39.0915 21.5V28.227C40.9014 28.8675 42.4686 30.0552 43.5772 31.6265C44.6857 33.1977 45.281 35.0752 45.281 37C45.281 38.9248 44.6857 40.8023 43.5772 42.3735C42.4686 43.9448 40.9014 45.1325 39.0915 45.773V52.5C39.0915 56.6108 37.4633 60.5533 34.5649 63.4601C31.6666 66.367 27.7356 68 23.6367 68C19.5379 68 15.6069 66.367 12.7085 63.4601C9.81019 60.5533 8.18192 56.6108 8.18192 52.5V24.073C6.37348 23.4313 4.80789 22.243 3.70077 20.6718C2.59365 19.1007 1.99945 17.2239 2 15.3ZM11.2729 12.2C10.4531 12.2 9.66691 12.5266 9.08724 13.108C8.50758 13.6893 8.18192 14.4778 8.18192 15.3C8.18192 16.1222 8.50758 16.9107 9.08724 17.492C9.66691 18.0734 10.4531 18.4 11.2729 18.4C12.0927 18.4 12.8789 18.0734 13.4585 17.492C14.0382 16.9107 14.3638 16.1222 14.3638 15.3C14.3638 14.4778 14.0382 13.6893 13.4585 13.108C12.8789 12.5266 12.0927 12.2 11.2729 12.2ZM57.6373 58.7C57.6373 57.8778 57.963 57.0893 58.5426 56.508C59.1223 55.9266 59.9085 55.6 60.7283 55.6C61.548 55.6 62.3342 55.9266 62.9139 56.508C63.4936 57.0893 63.8192 57.8778 63.8192 58.7C63.8192 59.5222 63.4936 60.3107 62.9139 60.892C62.3342 61.4734 61.548 61.8 60.7283 61.8C59.9085 61.8 59.1223 61.4734 58.5426 60.892C57.963 60.3107 57.6373 59.5222 57.6373 58.7Z"/> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Journeys ↗</strong> </span> <p class="navigation-dropdown-link-description"> Orchestrate multichannel customer journeys </p> </div> </a> </li> </ul> <div class="button-container small "> <a href="/en-us/products" target="_self" class="button button-secondary">See all products</a> </div> </div> </div> </li> <li> <button aria-expanded="false" aria-controls="navigation-dropdown-1" data-nav-id="1" class="navigation-link" id="navigation-link-1"> Solutions </button> <div data-nav-id="1" aria-labelledby="navigation-link-1" id="navigation-dropdown-1" class="navigation-dropdown four-columns"> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Use Cases</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/use-cases/user-verification-identity" target="_self" data-uuid="8a61b858-319b-3379-abd3-566a6abdcb14"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Verification & identity</strong> </span> <p class="navigation-dropdown-link-description"> Add user verification to protect against fraud. </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/use-cases/fraud-prevention" target="_self" data-uuid="407b7bc2-53a5-3e33-9734-e199ad34fdd6">Fraud prevention</a> </div> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/use-cases/alerts-and-notifications" target="_self" data-uuid="80bd65b4-774c-34de-b134-036c4413b9c7"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Alerts & notifications</strong> </span> <p class="navigation-dropdown-link-description"> Deliver notifications across text, email, voice. </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/use-cases/appointment-reminders" target="_self" data-uuid="78e8fd81-c6d5-367a-813c-71bed7f19bdd">Appointment reminders</a> <a href="/en-us/use-cases/lead-alerts" target="_self" data-uuid="8f4e1e8a-42be-3fba-9020-8fa3379fbefa">Lead alerts</a> <a href="/en-us/use-cases/mass-texting" target="_self" data-uuid="183e2e30-f42a-327a-96fa-b5b6361f460e">Mass texting</a> </div> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/use-cases/marketing-and-promotions" target="_self" data-uuid="d6bfc75d-ccaa-3499-b691-87560532b852"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Marketing & promotions</strong> </span> <p class="navigation-dropdown-link-description"> Create multichannel marketing campaigns. </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/solutions/text-marketing" target="_self" data-uuid="20e53019-744c-3125-853c-5c23c67fad10">SMS marketing</a> <a href="/en-us/use-cases/automated-customer-surveys" target="_self" data-uuid="b19035be-c429-37ee-9444-7459d9f739f3">Customer surveys</a> </div> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/flex/use-cases/contact-center" target="_self" data-uuid="8164b46f-cfc8-3810-a421-ffb97109f50c"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Contact Center</strong> </span> <p class="navigation-dropdown-link-description"> Provide personalized, data-driven service. </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/use-cases/ivr" target="_self" data-uuid="51363291-2576-349e-a9d0-424155eda446"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>IVR & self-service</strong> </span> <p class="navigation-dropdown-link-description"> Set up a modern IVR with AI-enabled support. </p> </div> </a> <div class="navigation-dropdown-shortcut-links multiline"> <a href="/en-us/use-cases/call-tracking" target="_self" data-uuid="a708bb96-0908-3b37-a321-9aefff43b428">Call tracking</a> </div> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Teams</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/marketing" target="_self" data-uuid="13b41fbe-fd91-313f-84a9-66f96e8bea81"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong> Marketing</strong> </span> <p class="navigation-dropdown-link-description"> Keep customers engaged on any channel </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/product-and-engineering" target="_self" data-uuid="b00be778-d89d-3eb0-b749-8fdc42a670e1"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Product & Engineering</strong> </span> <p class="navigation-dropdown-link-description"> Connect with target users reliably and securely </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/customer-experience" target="_self" data-uuid="0a87b1a4-059c-3755-9c39-40596a306f51"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Customer Experience</strong> </span> <p class="navigation-dropdown-link-description"> Deliver personalized sales and support experiences at scale </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/ahoy" target="_self" data-uuid="17c80c23-dd41-30d2-af31-4cb01c9dbaf1"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Developers</strong> </span> <p class="navigation-dropdown-link-description"> Tutorials and docs to start building on Twilio </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Industries</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/financial-services" target="_self" data-uuid="7ae500c7-4ddc-331f-97c3-7466b653129b"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Financial Services</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/healthcare" target="_self" data-uuid="4b84119b-4e11-3715-92d0-afb0ac35dc70"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Healthcare</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/hospitality" target="_self" data-uuid="fa74729a-8a7a-3830-a313-6b67c9d6a7a4"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Hospitality</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/public-sector" target="_self" data-uuid="52d2134e-9eaf-3f01-994f-d98a9fdbebc1"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Public Sector</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/real-estate" target="_self" data-uuid="337d3dd2-b03c-3846-9f44-fcf9a88dc783"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Real Estate</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/retail" target="_self" data-uuid="4215e011-af2d-3e36-aaf1-cc991287c528"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Retail</strong> </span> </div> </a> </li> </ul> <div class="button-container small "> <a href="/en-us/solutions" target="_self" class="button button-secondary">See all solutions</a> </div> </div> <div class="navigation-dropdown-section gray"> <h5 class="navigation-dropdown-title"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation"> <title>People shaking hands</title> <g class="users_handshake--circle"> <path fill-rule="evenodd" d="M11.96 60.04C18.38 66.46 26.92 70 36 70c9.08 0 17.62-3.54 24.04-9.96C66.46 53.62 70 45.08 70 36c0-9.08-3.54-17.62-9.96-24.04C53.62 5.54 45.08 2 36 2c-9.08 0-17.62 3.54-24.04 9.96C5.54 18.38 2 26.92 2 36c0 9.08 3.54 17.62 9.96 24.04Zm2.83-45.25C20.45 9.12 27.99 6 36 6c8.01 0 15.54 3.12 21.21 8.79a29.947 29.947 0 0 1 6 8.54h-4.55a5.397 5.397 0 0 0-1.415.134L44.75 18.54c-1-.37-2.05-.54-3.12-.47-1.06.06-2.09.34-3.01.82l-6.072 3.031a7.01 7.01 0 0 0-2.968-1.091c-1.19-.15-2.41.01-3.57.47l-8.637 3.684a5.337 5.337 0 0 0-.323-.314c-1.02-.92-2.33-1.38-3.71-1.33H8.791a30.13 30.13 0 0 1 5.999-8.55ZM7.266 27.34A30.046 30.046 0 0 0 6 36c0 2.98.432 5.893 1.265 8.67H13.5a1.241 1.241 0 0 0 1.31-1.12V28.46c-.03-.31-.17-.6-.41-.81-.25-.22-.56-.33-.9-.31H7.266ZM8.79 48.67h4.78l-.01.01c1.29 0 2.52-.46 3.49-1.33a5.3 5.3 0 0 0 .737-.81h2.743l8 6.11a4.308 4.308 0 0 0 3.12 1.3l-.02.01c1.01 0 1.98-.35 2.77-1l8.094-6.685 10.743-2.145a5.24 5.24 0 0 0 5.193 4.54h4.778a30.038 30.038 0 0 1-5.998 8.54C51.55 62.88 44.01 66 36 66c-8.01 0-15.54-3.13-21.21-8.79a29.947 29.947 0 0 1-6-8.54Zm55.944-4A30.086 30.086 0 0 0 66 36c0-2.98-.432-5.893-1.266-8.67H58.5c-.096 0-.191.008-.284.024-.155.087-.32.154-.493.197a1.27 1.27 0 0 0-.533.909v13.048c.014.133.013.265 0 .395v1.647a1.241 1.241 0 0 0 1.31 1.12h6.234ZM34.96 34h-.09c-.82-.01-1.62-.19-2.38-.53a6.33 6.33 0 0 1-1.99-1.41c-.57-.6-1-1.3-1.29-2.07a6.34 6.34 0 0 1 .249-5.121A3.12 3.12 0 0 0 27.54 25l-8.75 3.73v13.81h2.41c.44 0 .86.14 1.21.41l8.67 6.62c.1.08.2.17.29.27.06.07.15.11.24.12.1.01.18-.02.26-.08l8.204-6.776c.142-.163.31-.303.501-.414l3.415-2.82c.08-.06.13-.16.14-.26 0-.09-.01-.18-.06-.25l-5.665-6.29-1.135.48c-.75.31-1.53.46-2.32.46l.01-.01Zm12.867 7.134 5.373-1.072V28.26c.039-.67.202-1.314.478-1.905L43.31 22.27c-.44-.17-.94-.24-1.44-.21s-.99.16-1.44.4l-6.45 3.22c-.46.25-.85.69-1.05 1.23-.2.54-.2 1.13.01 1.66.11.3.27.54.47.76.2.21.44.38.71.5.26.11.53.17.8.18.27 0 .55-.05.81-.15l6.41-2.71c1.02-.43 2.19.04 2.62 1.06.43 1.02-.05 2.19-1.06 2.62l-1.397.59 4.807 5.34s.06.07.09.11c.7.91 1.02 2.04.89 3.18-.043.376-.131.74-.263 1.084Z" class="path-fill fill-path" clip-rule="evenodd"/> </g> </svg> <span>Partners</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/partners" target="_self" data-uuid="524095c8-b918-3482-890c-5f32b5dd5392"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Find a partner</strong> </span> <p class="navigation-dropdown-link-description"> Work with a Twilio partner to buy or build the right solution </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/partners/become-a-partner" target="_self" data-uuid="e9e2abbd-08c9-3d71-a326-dea63713c4a5"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Partner with us</strong> </span> <p class="navigation-dropdown-link-description"> Join our Partner Program to build or sell Twilio solutions to your customers. </p> </div> </a> </li> </ul> </div> </div> </li> <li> <button aria-expanded="false" aria-controls="navigation-dropdown-2" data-nav-id="2" class="navigation-link" id="navigation-link-2"> Developers </button> <div data-nav-id="2" aria-labelledby="navigation-link-2" id="navigation-dropdown-2" class="navigation-dropdown three-columns"> <div class="navigation-dropdown-section blue"> <h5 class="navigation-dropdown-title"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation"> <title>An Open book</title> <g class="documents_book--open"> <path d="M35.995 67.5h-.029c-.263 0-.515-.058-.748-.164a1.946 1.946 0 0 1-.642-.454h-.01c-.146-.165-7.349-7.363-30.173-7.673-.943-.029-1.79-.396-2.42-1.053A3.412 3.412 0 0 1 1 55.75V7.95c0-.918.36-1.788 1.011-2.435.32-.329.71-.58 1.137-.754A3.32 3.32 0 0 1 4.49 4.5c19.305.251 28.297 5.276 31.505 7.672 3.208-2.396 12.2-7.42 31.506-7.672.495 0 .923.077 1.35.26.419.175.808.426 1.138.755A3.418 3.418 0 0 1 71 7.95v47.82c0 .889-.34 1.739-.962 2.396a3.435 3.435 0 0 1-2.392 1.053c-22.737.31-29.979 7.43-30.202 7.653-.03.039-.069.068-.107.106a.979.979 0 0 1-.156.126 1.973 1.973 0 0 1-.437.251 1.768 1.768 0 0 1-.603.135h-.136l-.01.01Zm1.944-51.927v46.168c4.287-2.541 13.123-6.107 29.163-6.387V8.374c-19.228.33-27.19 5.605-29.163 7.2ZM4.89 55.354c16.039.27 24.875 3.836 29.162 6.377V15.573c-1.944-1.575-9.906-6.87-29.163-7.198v46.98Zm39.923-7.807a1.933 1.933 0 0 1-.622-3.768 65.327 65.327 0 0 1 15.932-3.16 1.949 1.949 0 0 1 2.08 1.787 1.939 1.939 0 0 1-1.798 2.068 61.28 61.28 0 0 0-14.97 2.967 1.93 1.93 0 0 1-.612.096l-.01.01Zm-17.624 0c-.204 0-.408-.03-.612-.097a60.922 60.922 0 0 0-14.97-2.966 1.939 1.939 0 0 1-1.799-2.068c.078-1.063 1.02-1.855 2.08-1.788a65.422 65.422 0 0 1 15.933 3.16 1.925 1.925 0 0 1 1.225 2.445 1.945 1.945 0 0 1-1.847 1.323l-.01-.01Zm0-9.982c-.204 0-.408-.029-.612-.096a60.832 60.832 0 0 0-14.97-2.967 1.939 1.939 0 0 1-1.799-2.068c.078-1.062 1.02-1.845 2.08-1.787a65.327 65.327 0 0 1 15.933 3.16 1.925 1.925 0 0 1 1.225 2.444 1.945 1.945 0 0 1-1.847 1.324l-.01-.01Zm17.624 0a1.933 1.933 0 0 1-.622-3.768 65.331 65.331 0 0 1 15.932-3.16c1.06-.067 2.003.725 2.08 1.788a1.939 1.939 0 0 1-1.798 2.068 61.194 61.194 0 0 0-14.97 2.966 1.93 1.93 0 0 1-.612.097l-.01.01Z" class="path-fill fill-path"/> </g> </svg> <span>Documentation</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/flex" target="_self" data-uuid="202617e5-93a5-3f8d-a293-5fd07113423d"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Flex</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/sms" target="_self" data-uuid="4a7d38b6-987a-3434-819a-8315ad35aa69"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>SMS</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/voice" target="_self" data-uuid="276792df-f5d6-374a-b4ac-ce3760668b6c"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Voice</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://docs.sendgrid.com/" target="_self" data-uuid="3a701880-504d-3d84-a4d2-19da3883139d"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Email</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/whatsapp" target="_self" data-uuid="11717582-95ce-36a6-b33c-aa4968c7816a"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>WhatsApp API</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/sip-trunking" target="_self" data-uuid="9c18aca3-4bad-3cb7-b449-2fb09e0ee6de"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Elastic SIP Trunking</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/verify/api" target="_self" data-uuid="2216d993-093c-32a9-8311-c03d32122ee9"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Verify</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/serverless/functions-assets/functions" target="_self" data-uuid="cc54ec7e-db8f-3e55-a052-f3c6aa412514"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Functions</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/studio" target="_self" data-uuid="698bf00e-7d9d-36ee-9901-73eb234f7e79"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Studio</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/twilio-cli/quickstart" target="_self" data-uuid="bd2d1990-cd6c-3a5b-8fde-660fa31e84ee"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio CLI</strong> </span> </div> </a> </li> </ul> <div class="button-container small inverse"> <a href="https://www.twilio.com/docs" target="_self" class="button button-secondary">See all docs</a> </div> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation">> <title>Two users in a circle</title> <g class="users_user-group--circle"> <path fill-rule="evenodd" d="M15.7 42.495c2.59 2.59 6.02 4.01 9.68 4.01s7.09-1.43 9.68-4.01c2.59-2.59 4.01-6.02 4.01-9.68 0-.548-.032-1.09-.095-1.626a1.966 1.966 0 0 0-.064-.474 13.598 13.598 0 0 0-3.851-7.58 13.584 13.584 0 0 0-9.68-4.01c-3.66 0-7.1 1.42-9.68 4.01a13.584 13.584 0 0 0-4.01 9.68c0 3.66 1.42 7.09 4.01 9.68Zm18.945-12.531a9.648 9.648 0 0 0-2.415-3.999 9.622 9.622 0 0 0-6.85-2.84c-2.59 0-5.02 1.01-6.85 2.84-.206.206-.4.419-.586.639a17.338 17.338 0 0 0 7.916 3.861c2.951.592 5.952.419 8.785-.501Zm.35 4.065a21.222 21.222 0 0 1-5.685.776v.01c-1.41 0-2.83-.14-4.24-.42a21.25 21.25 0 0 1-9.031-4.17 9.728 9.728 0 0 0-.349 2.59c0 2.59 1.01 5.02 2.84 6.85a9.622 9.622 0 0 0 6.85 2.84c2.59 0 5.02-1.01 6.85-2.84a9.615 9.615 0 0 0 2.765-5.636Z" clip-rule="evenodd" class="fill-path path-fill"/> <path fill-rule="evenodd" d="M36 69.875c-9.05 0-17.55-3.52-23.95-9.92-6.4-6.4-9.92-14.91-9.92-23.95s3.52-17.56 9.92-23.96c6.4-6.4 14.91-9.92 23.95-9.92s17.56 3.52 23.95 9.92c6.39 6.4 9.92 14.9 9.92 23.95 0 6.87-2.029 13.424-5.806 18.983a1.98 1.98 0 0 1-.282.408 34.297 34.297 0 0 1-3.832 4.559c-6.4 6.4-14.91 9.92-23.95 9.92v.01Zm26.011-19.146c2.524-4.442 3.869-9.484 3.869-14.724 0-7.97-3.11-15.48-8.75-21.12-5.64-5.64-13.15-8.75-21.13-8.75v-.01c-7.98 0-15.48 3.11-21.12 8.75-5.64 5.64-8.75 13.14-8.75 21.13 0 5.916 1.705 11.558 4.88 16.378a21.122 21.122 0 0 1 29.107.308 14.615 14.615 0 0 1 3.373-3.266 14.737 14.737 0 0 1 3.936-1.954 9.454 9.454 0 0 1-2.156-1.616 9.46 9.46 0 0 1-2.05-3.06 9.341 9.341 0 0 1-.72-3.61c0-1.24.24-2.46.72-3.61a9.46 9.46 0 0 1 2.05-3.06c.88-.88 1.91-1.57 3.06-2.04 2.3-.95 4.92-.95 7.22 0a9.46 9.46 0 0 1 3.06 2.05 9.46 9.46 0 0 1 2.05 3.06c.48 1.15.72 2.37.72 3.61 0 1.24-.24 2.46-.72 3.61a9.304 9.304 0 0 1-2.05 3.06 9.454 9.454 0 0 1-2.137 1.606 14.713 14.713 0 0 1 5.539 3.258Zm-19.216 5.138a10.766 10.766 0 0 1 8.165-5.062c1.86-.17 3.74.15 5.44.92a10.901 10.901 0 0 1 3.359 2.401 30.305 30.305 0 0 1-2.629 2.999A29.857 29.857 0 0 1 46.185 64.1a20.954 20.954 0 0 0-3.39-8.233Zm-3.788 1.614a17.043 17.043 0 0 1 3.298 7.73c-2.05.439-4.16.664-6.305.664-7.97 0-15.48-3.11-21.12-8.75a30.609 30.609 0 0 1-1.435-1.536 17.088 17.088 0 0 1 7.335-4.224c3.3-.92 6.77-.84 10.03.25a17.101 17.101 0 0 1 7.887 5.471c.086.143.19.276.31.395ZM51.94 33.745a5.395 5.395 0 0 0-3.84 1.59c-.51.51-.9 1.1-1.18 1.76a5.47 5.47 0 0 0 0 4.16c.27.66.67 1.26 1.18 1.76.51.51 1.1.9 1.76 1.18 1.33.55 2.83.55 4.16 0 .66-.27 1.26-.67 1.76-1.18.51-.51.9-1.1 1.18-1.76a5.47 5.47 0 0 0 0-4.16c-.27-.66-.67-1.26-1.18-1.76-.51-.51-1.1-.9-1.76-1.18a5.47 5.47 0 0 0-2.08-.41Z" clip-rule="evenodd" class="fill-path path-fill"/> </g> </svg> <span>Community</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/ahoy" target="_self" data-uuid="44e0ac6f-a865-3570-9b75-6c2a200146b9"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Ahoy!</strong> </span> <p class="navigation-dropdown-link-description"> Get inspired by the latest from our developer community </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/blog/developers" target="_self" data-uuid="f39790d8-1e22-3926-8425-4854e425c140"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Developer Blog</strong> </span> <p class="navigation-dropdown-link-description"> Read tutorials, community projects, and product updates </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://stackoverflow.com/collectives/twilio" target="_self" data-uuid="50efaed5-3ef6-3f25-bdfe-cc3e5f66d63b"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Stack Overflow</strong> </span> <p class="navigation-dropdown-link-description"> Ask the Twilio community for help </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/champions" target="_self" data-uuid="517d626e-33c1-3931-8977-69ba8a6aa28f"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Champions</strong> </span> <p class="navigation-dropdown-link-description"> Become a Twilio community Champion </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation"> <title>Wrench and screwdriver</title> <g class="etc_wrench-screwdriver"> <path class="path-fill fill-path" fill-rule="evenodd" d="M57.847 20.266a6.292 6.292 0 0 1-2.909-.705l-23.96 24.07 3.32 3.334c.367.37.57.856.57 1.37a1.96 1.96 0 0 1-.57 1.382L15.596 68.482a8.45 8.45 0 0 1-6.04 2.508h-.01a8.46 8.46 0 0 1-6.04-2.518A8.553 8.553 0 0 1 1 62.405c0-2.285.89-4.453 2.507-6.067l18.7-18.765a1.933 1.933 0 0 1 2.74 0l3.296 3.31 23.96-24.078a6.348 6.348 0 0 1-.696-2.908c0-1.701.658-3.305 1.859-4.501l7.782-7.827a1.933 1.933 0 0 1 2.74 0L70.12 7.82a1.933 1.933 0 0 1 0 2.742l-7.792 7.826a6.275 6.275 0 0 1-4.482 1.867v.01Zm-2.478-6.369c0 .662.262 1.284.726 1.75l.004.004c.93.93 2.553.939 3.49-.003L66.008 9.2l-3.49-3.505-6.422 6.442a2.476 2.476 0 0 0-.726 1.76ZM6.237 59.09l17.335-17.395 6.611 6.64L12.857 65.73a4.662 4.662 0 0 1-3.31 1.371 4.623 4.623 0 0 1-3.3-1.37 4.673 4.673 0 0 1-1.375-3.326c0-1.254.484-2.43 1.365-3.316Z" clip-rule="evenodd"/> <path class="path-fill fill-path" d="M21.84 30.64c.377.38.87.574 1.365.574l.01.02c.493 0 .987-.195 1.364-.574a1.954 1.954 0 0 0 0-2.752l-4.627-4.647a1.925 1.925 0 0 0-2.08-.438 9.06 9.06 0 0 1-4.066.603 8.97 8.97 0 0 1-7.163-4.716 10.9 10.9 0 0 0 2.923.068 10.75 10.75 0 0 0 6.37-3.092 10.877 10.877 0 0 0 3.068-6.407c.106-.982.077-1.974-.078-2.946a8.952 8.952 0 0 1 2.081 1.536 9.01 9.01 0 0 1 2.469 4.58 9.144 9.144 0 0 1-.436 5.192c-.28.72-.107 1.536.436 2.08l6.727 6.777a1.933 1.933 0 0 0 2.74 0 1.954 1.954 0 0 0 0-2.751l-5.886-5.921a13.06 13.06 0 0 0 .213-6.175 12.989 12.989 0 0 0-3.523-6.543 12.86 12.86 0 0 0-7.754-3.675 1.928 1.928 0 0 0-1.839.904 1.933 1.933 0 0 0 0 2.061 6.99 6.99 0 0 1 .997 4.434 6.912 6.912 0 0 1-1.965 4.093A6.884 6.884 0 0 1 9.111 14.9a6.835 6.835 0 0 1-4.413-1.002 1.95 1.95 0 0 0-2.053 0 1.933 1.933 0 0 0-.9 1.848 13.172 13.172 0 0 0 1.936 5.58 12.953 12.953 0 0 0 4.201 4.133 12.905 12.905 0 0 0 5.595 1.828c1.53.126 3.097-.03 4.578-.447l3.785 3.801ZM58.04 71c-2.516 0-4.994-.739-7.104-2.13a13.061 13.061 0 0 1-5.246-6.932 13.076 13.076 0 0 1-.126-7.467l-4.365-4.385a1.954 1.954 0 0 1 0-2.752 1.933 1.933 0 0 1 2.739 0l5.217 5.231c.542.545.716 1.371.436 2.09a9.182 9.182 0 0 0-.204 6.107 9.123 9.123 0 0 0 3.679 4.861 9.053 9.053 0 0 0 5.904 1.44 9.08 9.08 0 0 0 5.488-2.626 9.153 9.153 0 0 0 2.614-5.513c.213-2.08-.3-4.18-1.433-5.93a9.055 9.055 0 0 0-10.918-3.491 1.91 1.91 0 0 1-2.072-.438l-7.375-7.409a1.954 1.954 0 0 1 0-2.751 1.933 1.933 0 0 1 2.739 0l6.534 6.563a12.99 12.99 0 0 1 7.433.126 13.015 13.015 0 0 1 6.902 5.27 13.128 13.128 0 0 1 2.052 8.459 13.042 13.042 0 0 1-3.727 7.866A12.936 12.936 0 0 1 58.06 71h-.02Z"/> <path class="path-fill fill-path" d="M60.286 58.069a2.425 2.425 0 0 1-2.42 2.43 2.425 2.425 0 0 1-2.42-2.43 2.425 2.425 0 0 1 2.42-2.431 2.425 2.425 0 0 1 2.42 2.43Z"/> </g> </svg> <span>Tools & Resources</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/code-exchange" target="_self" data-uuid="82f92ed1-c941-3e67-8f96-daa4bbbfa252"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>CodeExchange</strong> </span> <p class="navigation-dropdown-link-description"> Usable code samples for faster builds </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/changelog" target="_self" data-uuid="d406aef4-2fe8-3406-a0b4-d5e7d530f428"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Changelog</strong> </span> <p class="navigation-dropdown-link-description"> See updates and additions to Twilio products </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://status.twilio.com" target="_self" data-uuid="511e46da-8d07-3439-a9c2-60b8e1ff1392"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>API Status</strong> </span> <p class="navigation-dropdown-link-description"> Check real-time monitoring of APIs and all services </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/products/beta" target="_self" data-uuid="48e907ba-efae-30e7-bdcd-8beec988feab"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Beta Products and Features</strong> </span> <p class="navigation-dropdown-link-description"> Explore new launches and request access to early releases </p> </div> </a> </li> </ul> </div> </div> </li> <li> <button aria-expanded="false" aria-controls="navigation-dropdown-3" data-nav-id="3" class="navigation-link" id="navigation-link-3"> Why Twilio </button> <div data-nav-id="3" aria-labelledby="navigation-link-3" id="navigation-dropdown-3" class="navigation-dropdown three-columns"> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Company</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/why-twilio" target="_self" data-uuid="9a787b06-a28b-3280-9f6b-deea01bbc545"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Why Twilio</strong> </span> <p class="navigation-dropdown-link-description"> The trusted platform for data-driven customer engagement across any channel. </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/company" target="_self" data-uuid="a849a5d8-ff83-3d17-af32-7b9edfd56499"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>About Us</strong> </span> <p class="navigation-dropdown-link-description"> Twilio company page </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/company/values" target="_self" data-uuid="790c50bd-02f7-3684-9a34-dccc637c0787"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Magic</strong> </span> <p class="navigation-dropdown-link-description"> Twilio core values </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/company/diversity" target="_self" data-uuid="1bbd6dce-661a-3c54-81a1-d78659cb5b2c"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Diversity</strong> </span> <p class="navigation-dropdown-link-description"> Diversity, equity, and inclusion </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://investors.twilio.com" target="_self" data-uuid="f9b5d6ef-c537-36ee-afb7-46999b3632f1"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Investor Relations</strong> </span> <p class="navigation-dropdown-link-description"> Information for Twilio investors </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/press" target="_self" data-uuid="1b2fd53c-a7a5-32e0-8ad2-931a7dc28267"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Press & Media</strong> </span> <p class="navigation-dropdown-link-description"> Latest announcements and launches </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Our Platform</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/customer-engagement-platform" target="_self" data-uuid="2b371b66-c4de-36b6-96d3-3496bba1c99a"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Customer Engagement Platform</strong> </span> <p class="navigation-dropdown-link-description"> Build durable customer relationships with personalized, data-driven engagement </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/cpaas" target="_self" data-uuid="57942c20-35e2-348b-ae14-03e10e3fd1f8">Communication</a> <a href="/en-us/customer-data-platform" target="_self" data-uuid="2ffd8303-febf-374d-b9cd-21f8efc6cfbc">Customer Data</a> </div> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/trust-center" target="_self" data-uuid="8f381764-d1ce-3b8a-8474-a51f92736382"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Trust Center</strong> </span> <p class="navigation-dropdown-link-description"> Twilio’s security, data privacy, regulatory compliance, and resiliency policies. </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/super-network" target="_blank" data-uuid="9689eb37-400d-3cf8-8476-5b380363d2f6"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong> Super Network</strong> </span> <p class="navigation-dropdown-link-description"> Simplify, strengthen and unite carrier communication networks using software. </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section gray"> <h5 class="navigation-dropdown-title"> <span>Resources</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/resource-center" target="_self" data-uuid="cacae192-dd0a-37a1-83f9-3062a802ce39"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Resource Center</strong> </span> <p class="navigation-dropdown-link-description"> Browse our content library for more resources on how you can create lasting customer relationships </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://customers.twilio.com/en-us" target="_self" data-uuid="70f2a22e-4399-3d83-9677-76decb0dc8d9"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Customer Stories</strong> </span> <p class="navigation-dropdown-link-description"> See what customers are building with Twilio </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/blog" target="_self" data-uuid="d72bede0-4aad-3cb7-8892-91ed84e6b26f"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Blog</strong> </span> <p class="navigation-dropdown-link-description"> Explore the latest product updates, technical tutorials, and best practices </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/state-of-customer-engagement" target="_self" data-uuid="1084fc5e-4007-379e-9cff-44bd42fcc506"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>State of Customer Engagement</strong> </span> <p class="navigation-dropdown-link-description"> See the top trends shaping customer engagement in our annual report </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/events" target="_self" data-uuid="a6a76a7a-4d32-3482-bbd1-2ff679aad5f0"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Events</strong> </span> <p class="navigation-dropdown-link-description"> Join upcoming group events </p> </div> </a> </li> </ul> </div> </div> </li> <li> <button aria-expanded="false" aria-controls="navigation-dropdown-4" data-nav-id="4" class="navigation-link" id="navigation-link-4"> Pricing </button> <div data-nav-id="4" aria-labelledby="navigation-link-4" id="navigation-dropdown-4" class="navigation-dropdown three-columns"> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Communications</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/pricing/messaging" target="_self" data-uuid="96d65f20-32f4-3713-96fe-2cf821d8583f"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Messaging logo</title> <g class="twilio_messagingx"> <g class="path-fill"> <path d="M14.232 46.958c-.53 0-1.083-.127-1.592-.36a3.69 3.69 0 0 1-2.145-3.356V36H7.309A5.311 5.311 0 0 1 2 30.691V11.578c0-2.93 2.379-5.31 5.31-5.31h31.854c2.931 0 5.31 2.38 5.31 5.31v10.894a2.13 2.13 0 0 1-2.124 2.124 2.13 2.13 0 0 1-2.124-2.124V11.578c0-.595-.467-1.062-1.062-1.062H7.33c-.594 0-1.061.467-1.061 1.062V30.69c0 .595.467 1.062 1.061 1.062h5.31a2.13 2.13 0 0 1 2.123 2.123v8.22l9.26-7.731a2.126 2.126 0 1 1 2.718 3.27l-10.13 8.453c-.68.573-1.53.87-2.379.87Z"/> <path d="M59.891 65.732a3.743 3.743 0 0 1-2.081-.637l-9.918-7.858h-2.59c-8.644 0-15.673-6.668-15.673-14.866 0-8.197 7.03-14.866 15.672-14.866h9.026C62.971 27.505 70 34.174 70 42.371c0 4.417-2.421 8.814-6.371 11.744v7.922c0 1.38-.765 2.633-1.975 3.27a3.638 3.638 0 0 1-1.742.425h-.02ZM48.636 52.99c.488 0 .934.17 1.316.467l9.408 7.454V52.99c0-.722.361-1.402.977-1.784 3.313-2.124 5.394-5.5 5.394-8.835 0-5.861-5.118-10.618-11.425-10.618H45.28c-6.286 0-11.425 4.757-11.425 10.618 0 5.862 5.118 10.619 11.425 10.619h3.356Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Messaging</strong> </span> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/sms/pricing/us" target="_self" data-uuid="cd19858a-b596-31db-9a4a-dc77079ca25d">SMS</a> <a href="/en-us/whatsapp/pricing" target="_self" data-uuid="33e93917-7fa5-30a6-8a19-d4217e896bfc">Whatsapp</a> <a href="/en-us/messaging/pricing/conversations-api" target="_self" data-uuid="fb1d6fd9-94bd-300a-bfe1-81d2b8e9fe94">Conversations</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://sendgrid.com/en-us/pricing" target="_blank" data-uuid="a329ca03-44e4-36a3-b1d5-690c9338daf9"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio SendGrid Email API logo</title> <g class="twilio_sendgrid-email-api"> <path fill-rule="evenodd" clip-rule="evenodd" d="M29.25 6.25C29.1249 6.25 29.0031 6.29755 28.9003 6.4003C28.7975 6.50306 28.75 6.62494 28.75 6.75V20.25C28.75 20.3751 28.7975 20.4969 28.9003 20.5997C29.0031 20.7025 29.1249 20.75 29.25 20.75H42.75C47.4341 20.75 51.25 24.5659 51.25 29.25V42.75C51.25 42.8751 51.2975 42.9969 51.4003 43.0997C51.5031 43.2025 51.6249 43.25 51.75 43.25H65.25C65.3751 43.25 65.4969 43.2025 65.5997 43.0997C65.7025 42.9969 65.75 42.8751 65.75 42.75V6.25H29.25ZM29.25 2.25H67.5C68.7375 2.25 69.75 3.2625 69.75 4.5V42.75C69.75 45.225 67.725 47.25 65.25 47.25H51.75C49.275 47.25 47.25 45.225 47.25 42.75V29.25C47.25 26.775 45.225 24.75 42.75 24.75H29.25C26.775 24.75 24.75 22.725 24.75 20.25V6.75C24.75 4.275 26.775 2.25 29.25 2.25Z" class="path-fill"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M42.75 65.75C42.8751 65.75 42.9969 65.7025 43.0997 65.5997C43.2025 65.4969 43.25 65.3751 43.25 65.25V51.75C43.25 51.6249 43.2025 51.5031 43.0997 51.4003C42.9969 51.2975 42.8751 51.25 42.75 51.25H29.25C24.5659 51.25 20.75 47.4341 20.75 42.75V29.25C20.75 29.1249 20.7025 29.0031 20.5997 28.9003C20.4969 28.7975 20.3751 28.75 20.25 28.75H6.75C6.62494 28.75 6.50306 28.7975 6.4003 28.9003C6.29755 29.0031 6.25 29.1249 6.25 29.25V65.75H42.75ZM42.75 69.75H4.5C3.2625 69.75 2.25 68.7375 2.25 67.5V29.25C2.25 26.775 4.275 24.75 6.75 24.75H20.25C22.725 24.75 24.75 26.775 24.75 29.25V42.75C24.75 45.225 26.775 47.25 29.25 47.25H42.75C45.225 47.25 47.25 49.275 47.25 51.75V65.25C47.25 67.725 45.225 69.75 42.75 69.75Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Email ↗</strong> </span> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/voice/pricing/us" target="_self" data-uuid="c4056d19-2a2f-3b73-a207-d78e69f85132"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Programmable Voice logo</title> <g class="twilio_programmable-voice"> <path d="M54.384 67.979a5.27 5.27 0 0 1-2.669-.734 138.575 138.575 0 0 1-15.78-10.953c-4.056-3.337-7.271-6.211-10.087-9.023-2.816-2.811-5.926-6.252-9.456-10.491-2.857-3.525-7.354-9.694-10.695-15.506a5.265 5.265 0 0 1 .84-6.337l8.447-8.456c1.997-1.972 5.443-1.972 7.439 0l10.212 10.198a5.217 5.217 0 0 1 1.534 3.714 5.217 5.217 0 0 1-1.534 3.714l-2.794 2.79c2.857 3.588 5.337 6.379 7.774 8.813 2.816 2.812 5.569 5.288 8.405 7.554l2.795-2.791c2.038-2.035 5.38-2.056 7.439 0l10.212 10.218A5.217 5.217 0 0 1 68 54.403a5.217 5.217 0 0 1-1.534 3.714l-8.342 8.33A5.27 5.27 0 0 1 54.384 68v-.021ZM18.683 9.165a.986.986 0 0 0-.736.315L9.5 17.894c-.336.336-.4.86-.168 1.28 3.215 5.602 7.564 11.54 10.296 14.94 3.425 4.112 6.43 7.448 9.183 10.176 2.732 2.727 5.82 5.497 9.77 8.729a134.385 134.385 0 0 0 15.277 10.617c.4.23.946.167 1.282-.168l8.342-8.33c.273-.273.315-.588.315-.735a1.02 1.02 0 0 0-.315-.734L53.27 43.45a1.08 1.08 0 0 0-1.492 0l-4.14 4.133a2.095 2.095 0 0 1-2.794.147l-1.471-1.175a102.691 102.691 0 0 1-8.741-7.869c-2.543-2.538-5.128-5.455-8.09-9.148l-1.177-1.469a2.087 2.087 0 0 1 .147-2.79l4.118-4.134a1.05 1.05 0 0 0 .316-.734 1.02 1.02 0 0 0-.316-.735L19.44 9.46a1.056 1.056 0 0 0-.736-.315h-.021v.021Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Voice</strong> </span> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/voice/conference/pricing" target="_self" data-uuid="bdf5bad8-839c-3cc2-befc-caefedbefa87">Conferencing</a> <a href="/en-us/sip-trunking/pricing/us" target="_self" data-uuid="a36943fb-5aa4-39dc-961b-51e70e40efb0">SIP trunking</a> </div> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span></span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/verify/pricing" target="_self" data-uuid="5c910363-d68b-3e0a-875a-7b333197fadb"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Verify logo</title> <g class="twilio_verify"> <g class="path-fill"> <path d="M36 68.558a5.287 5.287 0 0 1-3.761-1.552L3.87 38.616A6.317 6.317 0 0 1 2 34.111V9.313A5.314 5.314 0 0 1 7.313 4h57.374A5.314 5.314 0 0 1 70 9.313v1.423a6.28 6.28 0 0 1-1.87 4.505L39.761 43.61c-2.061 2.061-5.44 2.061-7.522 0L21.74 33.112a2.116 2.116 0 0 1 0-2.996 2.116 2.116 0 0 1 2.997 0l10.497 10.498c.276.276.595.319.744.319.148 0 .489-.043.743-.32l28.412-28.368c.403-.404.616-.935.616-1.509V9.312c0-.595-.468-1.062-1.063-1.062H7.313c-.595 0-1.063.467-1.063 1.063V34.11c0 .574.213 1.105.616 1.509l28.369 28.369a1.091 1.091 0 0 0 1.509 0l16.872-16.873a2.116 2.116 0 0 1 2.996 0 2.116 2.116 0 0 1 0 2.996L39.74 66.986a5.288 5.288 0 0 1-3.761 1.551l.021.022Z"/> <path d="M63.625 46.118a6.375 6.375 0 1 0 0-12.75 6.375 6.375 0 0 0 0 12.75Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Verify</strong> </span> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/lookup/pricing" target="_self" data-uuid="764f3144-e164-3216-a6ac-db00e0e38fc0"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Lookup logo</title> <g class="twilio_lookup"> <g class="path-fill"> <path d="M27.498 33.873a6.375 6.375 0 1 0 0-12.75 6.375 6.375 0 0 0 0 12.75Z"/> <path d="M69.379 66.361 46.96 43.944c3.761-4.44 6.056-10.178 6.056-16.446C52.996 13.432 41.564 2 27.498 2S2 13.432 2 27.498s11.432 25.498 25.498 25.498a25.267 25.267 0 0 0 16.446-6.056l22.417 22.417c.425.425.956.616 1.509.616.552 0 1.084-.212 1.508-.616a2.116 2.116 0 0 0 0-2.996ZM6.248 27.498C6.25 15.79 15.79 6.25 27.499 6.25c11.708 0 21.248 9.54 21.248 21.248 0 11.708-9.54 21.248-21.248 21.248-11.708 0-21.248-9.54-21.248-21.248Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Lookup</strong> </span> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/serverless/pricing" target="_self" data-uuid="2aba174c-e04e-35fb-9be8-8df21e8f3bcc"> <svg width="72" height="74" viewBox="0 0 72 74" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path class="path-fill logo-fill" fill-rule="evenodd" clip-rule="evenodd" d="M2 15.3C2.00089 13.5952 2.46899 11.9235 3.35315 10.4675C4.23731 9.01146 5.5035 7.8272 7.01337 7.04411C8.52323 6.26102 10.2187 5.90922 11.9144 6.02716C13.6101 6.1451 15.2409 6.72825 16.6286 7.71287C18.0162 8.69749 19.1073 10.0457 19.7826 11.6102C20.4579 13.1746 20.6914 14.8952 20.4577 16.5838C20.2239 18.2724 19.5319 19.864 18.4572 21.1848C17.3825 22.5056 15.9664 23.5047 14.3638 24.073V52.5C14.3638 54.9665 15.3408 57.332 17.0798 59.0761C18.8188 60.8202 21.1774 61.8 23.6367 61.8C26.0961 61.8 28.4546 60.8202 30.1936 59.0761C31.9326 57.332 32.9096 54.9665 32.9096 52.5V45.773C31.0998 45.1325 29.5325 43.9448 28.424 42.3735C27.3154 40.8023 26.7201 38.9248 26.7201 37C26.7201 35.0752 27.3154 33.1977 28.424 31.6265C29.5325 30.0552 31.0998 28.8675 32.9096 28.227V21.5C32.9096 19.4645 33.3094 17.449 34.086 15.5684C34.8627 13.6879 36.0011 11.9792 37.4362 10.5398C38.8713 9.10054 40.5751 7.95882 42.4501 7.17987C44.3252 6.40092 46.3349 6 48.3644 6C50.394 6 52.4037 6.40092 54.2787 7.17987C56.1538 7.95882 57.8575 9.10054 59.2926 10.5398C60.7277 11.9792 61.8661 13.6879 62.6428 15.5684C63.4195 17.449 63.8192 19.4645 63.8192 21.5V49.927C65.8814 50.6591 67.6192 52.0985 68.7257 53.991C69.8322 55.8835 70.2363 58.1073 69.8665 60.2697C69.4967 62.432 68.3768 64.3936 66.7046 65.8082C65.0325 67.2227 62.9158 67.999 60.7283 68C58.5384 68.0033 56.418 67.2291 54.7427 65.8147C53.0674 64.4003 51.9453 62.4369 51.575 60.2722C51.2048 58.1076 51.6104 55.8813 52.72 53.9879C53.8296 52.0944 55.5715 50.6558 57.6373 49.927V21.5C57.6373 19.0335 56.6603 16.668 54.9213 14.9239C53.1823 13.1798 50.8237 12.2 48.3644 12.2C45.9051 12.2 43.5465 13.1798 41.8075 14.9239C40.0685 16.668 39.0915 19.0335 39.0915 21.5V28.227C40.9014 28.8675 42.4686 30.0552 43.5772 31.6265C44.6857 33.1977 45.281 35.0752 45.281 37C45.281 38.9248 44.6857 40.8023 43.5772 42.3735C42.4686 43.9448 40.9014 45.1325 39.0915 45.773V52.5C39.0915 56.6108 37.4633 60.5533 34.5649 63.4601C31.6666 66.367 27.7356 68 23.6367 68C19.5379 68 15.6069 66.367 12.7085 63.4601C9.81019 60.5533 8.18192 56.6108 8.18192 52.5V24.073C6.37348 23.4313 4.80789 22.243 3.70077 20.6718C2.59365 19.1007 1.99945 17.2239 2 15.3ZM11.2729 12.2C10.4531 12.2 9.66691 12.5266 9.08724 13.108C8.50758 13.6893 8.18192 14.4778 8.18192 15.3C8.18192 16.1222 8.50758 16.9107 9.08724 17.492C9.66691 18.0734 10.4531 18.4 11.2729 18.4C12.0927 18.4 12.8789 18.0734 13.4585 17.492C14.0382 16.9107 14.3638 16.1222 14.3638 15.3C14.3638 14.4778 14.0382 13.6893 13.4585 13.108C12.8789 12.5266 12.0927 12.2 11.2729 12.2ZM57.6373 58.7C57.6373 57.8778 57.963 57.0893 58.5426 56.508C59.1223 55.9266 59.9085 55.6 60.7283 55.6C61.548 55.6 62.3342 55.9266 62.9139 56.508C63.4936 57.0893 63.8192 57.8778 63.8192 58.7C63.8192 59.5222 63.4936 60.3107 62.9139 60.892C62.3342 61.4734 61.548 61.8 60.7283 61.8C59.9085 61.8 59.1223 61.4734 58.5426 60.892C57.963 60.3107 57.6373 59.5222 57.6373 58.7Z"/> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Serverless</strong> </span> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/video/pricing" target="_self" data-uuid="7bd70d75-cf69-30ce-9ae5-ea9730e53641"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Video logo</title> <g class="twilio_video"> <path d="M43.438 57.5H7.312A5.314 5.314 0 0 1 2 52.187V20.314A5.314 5.314 0 0 1 7.313 15h36.124a5.314 5.314 0 0 1 5.313 5.313v8.245l13.557-6.78a5.264 5.264 0 0 1 5.164.235A5.295 5.295 0 0 1 70 26.538v19.465a5.266 5.266 0 0 1-2.507 4.505 5.321 5.321 0 0 1-5.164.255L48.75 44.049v8.16a5.314 5.314 0 0 1-5.313 5.312V57.5ZM7.312 19.25c-.595 0-1.062.468-1.062 1.063v31.875c0 .594.468 1.062 1.063 1.062h36.124c.596 0 1.063-.468 1.063-1.063v-11.58c0-.745.383-1.425.999-1.807a2.153 2.153 0 0 1 2.061-.106l16.639 8.245c.489.233.871.042 1.041-.043.149-.085.51-.361.51-.892V26.539c0-.532-.361-.808-.51-.914-.149-.085-.552-.297-1.041-.043l-16.639 8.31c-.659.318-1.445.297-2.061-.086A2.123 2.123 0 0 1 44.5 32V20.312c0-.595-.468-1.062-1.063-1.062H7.313Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Video</strong> </span> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Applications</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/flex/pricing" target="_self" data-uuid="454d3fdf-99a1-35d7-ac19-b3c0e80a9372"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Flex logo</title> <g class="twilio_flex"> <path d="M10.455 32.482C9.235 31.259 7 32.074 7 33.909v18.55c0 .612.203 1.02.61 1.428l17.476 17.531c1.22 1.223 3.455.408 3.455-1.427v-18.55c0-.612-.203-1.02-.61-1.427L10.456 32.482ZM9.032 7C8.016 7 7 8.02 7 9.039v13.454c0 .612.203 1.02.61 1.427l29.873 29.967c.406.407.813.611 1.422.611h20.729c1.828 0 2.641-2.242 1.422-3.465L43.58 33.297c-.406-.407-.813-.611-1.422-.611h-11.38c-1.017 0-2.033-.816-2.033-2.039 0-1.019.813-2.038 2.033-2.038h39.22c1.83 0 2.642-2.243 1.423-3.466L53.943 7.612C53.537 7.204 52.927 7 52.521 7H9.032Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Flex</strong> </span> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://segment.com/pricing/" target="_blank" data-uuid="6f4a34e1-7640-361d-a7ce-70ee86701cb6"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Engage logo</title> <g class="twilio_engage"> <g class="path-fill"> <path d="M36 51.96c8.815 0 15.96-7.145 15.96-15.96 0-8.814-7.145-15.96-15.96-15.96-8.814 0-15.96 7.146-15.96 15.96 0 8.815 7.146 15.96 15.96 15.96Z"/> <path d="M32.54 59.76c-10.42-1.48-18.82-9.88-20.3-20.3-.88-6.28.7-12.16 3.88-16.88.52-.78.38-1.82-.28-2.48l-2.88-2.88c-.88-.88-2.34-.76-3.06.26C6.18 22.7 4 29.1 4 36v29.42C4 66.84 5.16 68 6.58 68H36c6.9 0 13.3-2.18 18.52-5.9 1.02-.72 1.14-2.18.26-3.06l-2.88-2.88c-.66-.66-1.7-.8-2.48-.28-4.7 3.2-10.6 4.78-16.88 3.88Zm6.92-47.52c10.42 1.46 18.82 9.88 20.3 20.3.88 6.28-.7 12.16-3.88 16.88-.52.78-.38 1.82.28 2.48l2.88 2.88c.88.88 2.34.76 3.06-.26C65.82 49.3 68 42.9 68 36V6.58C68 5.16 66.84 4 65.42 4H36c-6.9 0-13.3 2.18-18.52 5.9a2.006 2.006 0 0 0-.26 3.06l2.88 2.88c.66.66 1.7.8 2.48.28 4.7-3.18 10.58-4.76 16.88-3.88Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Segment ↗</strong> </span> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://sendgrid.com/en-us/pricing" target="_self" data-uuid="b30a861c-7875-3e06-81b4-e6e9991f918f"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Marketing Campaigns logo</title> <g class="twilio_marketing-campaigns"> <path d="M22.71 41.007a2.26 2.26 0 0 1-1.87.501L.993 37.976c-1.28-.444-1.34-2.22-.08-2.72L62.169 7.018S62.247 7 62.286 7h.059a.78.78 0 0 1 .295.039s.04 0 .06.038a.573.573 0 0 1 .196.174c0 .02.02.058.04.077.04.097.078.212.059.328l-5.69 51.956c-.217.945-1.3 1.39-2.127.907L32.89 47.569c-.965-.56-2.166.115-2.166 1.215 0 .54.315 1.023.787 1.255l3.367 1.968c.768.386.985 1.39.492 2.085l-6.458 9.283c-.787 1.158-2.618.598-2.618-.791V44.905c0-.502.196-1.004.55-1.37l28.59-29.413c.315-.31-.138-.792-.492-.502L22.71 41.007Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Marketing Campaigns</strong> </span> </div> </a> </li> </ul> <div class="button-container small "> <a href="/en-us/pricing" target="_blank" class="button button-secondary">See all pricing</a> </div> </div> </div> </li> </ul> <div class="navigation-right"> <div class="navigation-search-container"> <button type="button" class="navigation-search-button" aria-expanded="false" aria-label="Search"> <svg viewBox="0 0 40 40"> <path d="M26.804 29.01c-2.832 2.34-6.465 3.746-10.426 3.746C7.333 32.756 0 25.424 0 16.378 0 7.333 7.333 0 16.378 0c9.046 0 16.378 7.333 16.378 16.378 0 3.96-1.406 7.594-3.746 10.426l10.534 10.534c.607.607.61 1.59-.004 2.202-.61.61-1.597.61-2.202.004L26.804 29.01zm-10.426.627c7.323 0 13.26-5.936 13.26-13.26 0-7.32-5.937-13.257-13.26-13.257C9.056 3.12 3.12 9.056 3.12 16.378c0 7.323 5.936 13.26 13.258 13.26z"></path> </svg> </button> <div class="navigation-search-viewport" aria-hidden="true" data-results-url="/content/twilio-com/global/en-us/search-results.html" data-empty-text="No results"> <div data-search-app-id="ZSUJLF71OK" data-search-api-key="2b15157d51ab026b3a4b8ced539381a4" data-search-index-id="twiliocom_aem_prod_en-us" class="algolia-search" id="search-box"> </div> <div class="navigation-search-dropdown shadow-card" aria-hidden="true"> <div class="algolia-search-hits" id="search-hits"></div> <div class="algolia-search-policy"> <p>Data is collected based on search terms. <a href="/en-us/legal/privacy" target="_self" rel="noopener noreferrer">Privacy Policy</a></p> </div> </div> </div> </div> <ul class="navigation-buttons" role="list"> <li class="button-container small"> <a href="/en-us/help/sales" data-uuid="dc9a3d55-9388-32e0-822e-733230ff3c95" class="button button-secondary navigation-button-sales">Contact sales</a> </li> <li class="button-container small"> <a href="https://www.twilio.com/try-twilio" data-uuid="90f0df6f-7d99-3ce7-af48-a59c3e97c5da" class="button button-primary">Start for free</a> </li> <li class="button-container small"> <button class="button button-secondary open-mobile-menu navigation-menu">Menu</button> </li> </ul> </div> <button class="navigation-mobile-close hide-lg-up" aria-label="Close Menu"></button> </div> <div class="navigation-mobile-menu"> <div class="navigation-accordion" data-results-url="/content/twilio-com/global/en-us/search-results.html"> <div class="navigation-search-container"> <div data-search-app-id="ZSUJLF71OK" data-search-api-key="2b15157d51ab026b3a4b8ced539381a4" data-search-index-id="twiliocom_aem_prod_en-us" class="algolia-search" id="search-box-mobile"> </div> <div class="navigation-search-dropdown shadow-card" aria-hidden="true"> <div class="algolia-search-hits" id="search-hits-mobile"></div> <div class="algolia-search-policy"> <p>Data is collected based on search terms. <a href="/en-us/legal/privacy" target="_self" rel="noopener noreferrer">Privacy Policy</a></p> </div> </div> </div> <ul class="navigation-accordion-items" role="list"> <li class="navigation-accordion-item"> <button data-nav-id="0" class="navigation-accordion-button" aria-expanded="false" aria-controls="navigation-accordion-content0" id="navigation-accordion-button0"> <span>Products</span> <svg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M0.183058 0.719435C0.427136 0.475358 0.822864 0.475358 1.06694 0.719435L5 4.65249L8.93306 0.719435C9.17714 0.475358 9.57286 0.475358 9.81694 0.719435C10.061 0.963513 10.061 1.35924 9.81694 1.60332L5.68077 5.73949C5.6807 5.73956 5.68063 5.73963 5.68055 5.73971C5.50018 5.92042 5.25533 6.02198 5 6.02198C4.74473 6.02198 4.49995 5.92048 4.31959 5.73985C4.31947 5.73973 4.31935 5.73961 4.31923 5.73949L0.183058 1.60332C-0.0610194 1.35924 -0.0610194 0.963513 0.183058 0.719435Z" fill="#030B5D"/> </svg> </button> <div class="navigation-accordion-content" role="region" id="navigation-accordion-content0" aria-labelledby="navigation-accordion-button0"> <div data-nav-id="0" aria-labelledby="navigation-link-0" id="navigation-dropdown-0" class="navigation-dropdown four-columns"> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Communications</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/messaging" target="_self" data-uuid="c65ba57f-0180-378b-a5a5-4f81c8d14373"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Messaging logo</title> <g class="twilio_messaging"> <path d="M18.511 66.441a3.586 3.586 0 0 1-1.551-.34c-1.339-.616-2.189-1.912-2.168-3.4l.064-9.201H7.313A5.314 5.314 0 0 1 2 48.187V16.314A5.314 5.314 0 0 1 7.313 11h57.374A5.314 5.314 0 0 1 70 16.313v31.875a5.314 5.314 0 0 1-5.313 5.312H34.683L20.955 65.528a3.665 3.665 0 0 1-2.444.934v-.02ZM7.313 15.25c-.595 0-1.063.467-1.063 1.063v31.875c0 .594.468 1.062 1.063 1.062h9.647c.574 0 1.105.234 1.509.616.403.404.616.935.616 1.509l-.064 10.157L32.472 49.76c.383-.34.893-.531 1.403-.531h30.813c.594 0 1.062-.468 1.062-1.063V16.313c0-.595-.468-1.063-1.063-1.063H7.313Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Messaging</strong> </span> <p class="navigation-dropdown-link-description"> Send and receive multichannel text and media messages in 180+ countries </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/messaging/channels/sms" target="_self" data-uuid="f2c3345d-3fa1-33d2-ac50-e682e778a0d8">SMS</a> <a href="/en-us/messaging/channels/whatsapp" target="_self" data-uuid="afe9c931-96ed-3c7a-895b-671a04507508">WhatsApp</a> <a href="/en-us/messaging/conversations-api" target="_self" data-uuid="4dc05265-7e3a-37f8-85bb-5f6587fdc22f">Conversations</a> <a href="/en-us/messaging/channels/rcs" target="_self" data-uuid="9e18930c-b023-39e8-b333-75606e8d9231">RCS</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/voice" target="_self" data-uuid="fbdaf169-d9be-33ff-9a3b-edc7ad68de86"> <svg width="72" height="72" viewBox="0 0 72 72" fill="none" xmlns="http://www.w3.org/2000/svg"> <path class="path-fill logo-fill" fill-rule="evenodd" clip-rule="evenodd" d="M25.6264 34.6385L25.659 34.5419L35.4121 7.04017C36.622 3.6285 41.698 4.49252 41.698 8.11013L41.6978 29.4478L44.4808 29.4481C46.6711 29.4481 48.218 31.5627 47.5692 33.6229L47.5372 33.7194L36.7466 64.6588C35.5514 68.0857 30.4551 67.2318 30.4551 63.6046L30.4548 38.8287L28.7099 38.8289C26.5126 38.8289 24.965 36.7018 25.6264 34.6385ZM38.4629 32.6652V8.11013L28.7099 35.6118H33.6902V63.6046L44.4808 32.6652H38.4629ZM16.7287 15.2802C16.693 14.4288 15.9908 13.7464 15.1246 13.74C14.2313 13.7334 13.5018 14.4483 13.4951 15.3366L13.1918 56.0007L13.1932 56.081C13.2289 56.9324 13.9311 57.6147 14.7973 57.6212C15.6906 57.6277 16.4202 56.9129 16.4268 56.0246L16.7301 15.3605L16.7287 15.2802ZM1.61752 23.7446C2.48379 23.7446 3.191 24.4218 3.23307 25.2729L3.23505 25.3531V47.9701C3.23505 48.8585 2.51086 49.5787 1.61752 49.5787C0.75126 49.5787 0.0440456 48.9015 0.00197953 48.0504L0 47.9701V25.3531C0 24.4648 0.72419 23.7446 1.61752 23.7446ZM70.3825 23.7446C71.2487 23.7446 71.9559 24.4218 71.998 25.2729L72 25.3531V47.9701C72 48.8585 71.2758 49.5787 70.3825 49.5787C69.5162 49.5787 68.809 48.9015 68.7669 48.0504L68.7649 47.9701V25.3531C68.7649 24.4648 69.4891 23.7446 70.3825 23.7446ZM58.0305 13.74C58.8967 13.7465 59.5989 14.4288 59.6346 15.2802L59.636 15.3605L59.3327 56.0246C59.3261 56.9129 58.5965 57.6277 57.7032 57.6212C56.837 57.6148 56.1348 56.9324 56.0991 56.081L56.0977 56.0007L56.401 15.3366C56.4076 14.4483 57.1372 13.7335 58.0305 13.74Z" fill="#121C2D"/> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Voice</strong> </span> <p class="navigation-dropdown-link-description"> Make, receive, and monitor calls around the world </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/voice" target="_self" data-uuid="85a51b0c-4d53-387b-a7ae-907acf893d72">PSTN</a> <a href="/en-us/sip-trunking" target="_self" data-uuid="9bc860ef-c600-35c7-8472-aba61c48de31">SIP Trunking</a> <a href="/en-us/voice-sdk" target="_self" data-uuid="eaa2af1d-a6c5-313d-ba19-d1c7ab1ee858">SDK</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/user-authentication-identity/verify" target="_self" data-uuid="09ea660c-4bb0-3472-9b1c-62d7726f31f7"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Verify logo</title> <g class="twilio_verify"> <g class="path-fill"> <path d="M36 68.558a5.287 5.287 0 0 1-3.761-1.552L3.87 38.616A6.317 6.317 0 0 1 2 34.111V9.313A5.314 5.314 0 0 1 7.313 4h57.374A5.314 5.314 0 0 1 70 9.313v1.423a6.28 6.28 0 0 1-1.87 4.505L39.761 43.61c-2.061 2.061-5.44 2.061-7.522 0L21.74 33.112a2.116 2.116 0 0 1 0-2.996 2.116 2.116 0 0 1 2.997 0l10.497 10.498c.276.276.595.319.744.319.148 0 .489-.043.743-.32l28.412-28.368c.403-.404.616-.935.616-1.509V9.312c0-.595-.468-1.062-1.063-1.062H7.313c-.595 0-1.063.467-1.063 1.063V34.11c0 .574.213 1.105.616 1.509l28.369 28.369a1.091 1.091 0 0 0 1.509 0l16.872-16.873a2.116 2.116 0 0 1 2.996 0 2.116 2.116 0 0 1 0 2.996L39.74 66.986a5.288 5.288 0 0 1-3.761 1.551l.021.022Z"/> <path d="M63.625 46.118a6.375 6.375 0 1 0 0-12.75 6.375 6.375 0 0 0 0 12.75Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Verify</strong> </span> <p class="navigation-dropdown-link-description"> Globally-managed multichannel 2FA and passwordless authentication </p> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/user-authentication-identity/lookup" target="_self" data-uuid="9ddfe08b-e121-3904-99a3-e29de8ba0d43"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Lookup logo</title> <g class="twilio_lookup"> <g class="path-fill"> <path d="M27.498 33.873a6.375 6.375 0 1 0 0-12.75 6.375 6.375 0 0 0 0 12.75Z"/> <path d="M69.379 66.361 46.96 43.944c3.761-4.44 6.056-10.178 6.056-16.446C52.996 13.432 41.564 2 27.498 2S2 13.432 2 27.498s11.432 25.498 25.498 25.498a25.267 25.267 0 0 0 16.446-6.056l22.417 22.417c.425.425.956.616 1.509.616.552 0 1.084-.212 1.508-.616a2.116 2.116 0 0 0 0-2.996ZM6.248 27.498C6.25 15.79 15.79 6.25 27.499 6.25c11.708 0 21.248 9.54 21.248 21.248 0 11.708-9.54 21.248-21.248 21.248-11.708 0-21.248-9.54-21.248-21.248Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Lookup</strong> </span> <p class="navigation-dropdown-link-description"> Know your customer and assess identity risk with real-time phone intelligence </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span></span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/sendgrid/email-api" target="_self" data-uuid="ae4a1f31-bb99-3afc-a76e-3d73bfd77527"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio SendGrid Email API logo</title> <g class="twilio_sendgrid-email-api"> <path fill-rule="evenodd" clip-rule="evenodd" d="M29.25 6.25C29.1249 6.25 29.0031 6.29755 28.9003 6.4003C28.7975 6.50306 28.75 6.62494 28.75 6.75V20.25C28.75 20.3751 28.7975 20.4969 28.9003 20.5997C29.0031 20.7025 29.1249 20.75 29.25 20.75H42.75C47.4341 20.75 51.25 24.5659 51.25 29.25V42.75C51.25 42.8751 51.2975 42.9969 51.4003 43.0997C51.5031 43.2025 51.6249 43.25 51.75 43.25H65.25C65.3751 43.25 65.4969 43.2025 65.5997 43.0997C65.7025 42.9969 65.75 42.8751 65.75 42.75V6.25H29.25ZM29.25 2.25H67.5C68.7375 2.25 69.75 3.2625 69.75 4.5V42.75C69.75 45.225 67.725 47.25 65.25 47.25H51.75C49.275 47.25 47.25 45.225 47.25 42.75V29.25C47.25 26.775 45.225 24.75 42.75 24.75H29.25C26.775 24.75 24.75 22.725 24.75 20.25V6.75C24.75 4.275 26.775 2.25 29.25 2.25Z" class="path-fill"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M42.75 65.75C42.8751 65.75 42.9969 65.7025 43.0997 65.5997C43.2025 65.4969 43.25 65.3751 43.25 65.25V51.75C43.25 51.6249 43.2025 51.5031 43.0997 51.4003C42.9969 51.2975 42.8751 51.25 42.75 51.25H29.25C24.5659 51.25 20.75 47.4341 20.75 42.75V29.25C20.75 29.1249 20.7025 29.0031 20.5997 28.9003C20.4969 28.7975 20.3751 28.75 20.25 28.75H6.75C6.62494 28.75 6.50306 28.7975 6.4003 28.9003C6.29755 29.0031 6.25 29.1249 6.25 29.25V65.75H42.75ZM42.75 69.75H4.5C3.2625 69.75 2.25 68.7375 2.25 67.5V29.25C2.25 26.775 4.275 24.75 6.75 24.75H20.25C22.725 24.75 24.75 26.775 24.75 29.25V42.75C24.75 45.225 26.775 47.25 29.25 47.25H42.75C45.225 47.25 47.25 49.275 47.25 51.75V65.25C47.25 67.725 45.225 69.75 42.75 69.75Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Email</strong> </span> <p class="navigation-dropdown-link-description"> Deliver email messages reliably at scale with SendGrid </p> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/serverless" target="_self" data-uuid="ac64ad4a-b6e1-3b67-bc3f-9c582536609c"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Task Router logo</title> <g class="twilio_task-router"> <path d="M57.25 27.75 70 21.375 57.25 15v12.75ZM53 51.125A2.131 2.131 0 0 0 50.875 49H48.75c-6.8 0-10.625-5.95-14.45-12.75 3.825-6.8 7.65-12.75 14.45-12.75h2.125A2.131 2.131 0 0 0 53 21.375a2.131 2.131 0 0 0-2.125-2.125H48.75c-8.288 0-13.175 6.163-17 12.75-3.825-6.587-8.712-12.75-17-12.75H4.125A2.131 2.131 0 0 0 2 21.375 2.13 2.13 0 0 0 4.125 23.5H14.75c6.8 0 10.625 5.95 14.45 12.75C25.375 43.05 21.55 49 14.75 49H4.125A2.131 2.131 0 0 0 2 51.125a2.13 2.13 0 0 0 2.125 2.125H14.75c8.288 0 13.175-6.163 17-12.75 3.825 6.587 8.712 12.75 17 12.75h2.125A2.131 2.131 0 0 0 53 51.125Zm4.25 6.375L70 51.125 57.25 44.75V57.5Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Serverless</strong> </span> <p class="navigation-dropdown-link-description"> Build, deploy, and run apps with Twilio’s serverless environment and visual builder </p> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/phone-numbers" target="_self" data-uuid="bc7654e5-0721-3c82-91e0-a3cbe7e25011"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Phone Numbers logo</title> <g class="twilio_phone-numbers"> <g class="path-fill"> <path d="M61.233 22.531H50.402L52.923 4.64a2.304 2.304 0 0 0-1.967-2.615c-1.296-.186-2.43.694-2.615 1.967L45.726 22.53h-13.84l2.522-17.89a2.304 2.304 0 0 0-1.967-2.615c-1.296-.186-2.43.694-2.615 1.967L27.21 22.53H12.63a2.321 2.321 0 0 0-2.314 2.315 2.321 2.321 0 0 0 2.314 2.314h13.933L24.295 43.36h-13.98A2.321 2.321 0 0 0 8 45.676a2.321 2.321 0 0 0 2.315 2.314h13.308l-2.685 19.05a2.304 2.304 0 0 0 1.967 2.615h.324c1.134 0 2.13-.833 2.292-1.99l2.777-19.697h30.62a2.321 2.321 0 0 0 2.315-2.314 2.321 2.321 0 0 0-2.314-2.315H47.462l2.268-16.201h11.48a2.321 2.321 0 0 0 2.315-2.315 2.321 2.321 0 0 0-2.315-2.314l.023.023Zm-18.446 20.83h-13.84l2.267-16.201h13.841l-2.268 16.201Z"/> <path d="M41.77 69.977h-.325a2.304 2.304 0 0 1-1.967-2.615l1.852-13.17c.185-1.273 1.32-2.153 2.615-1.967a2.304 2.304 0 0 1 1.968 2.615L44.06 68.01A2.315 2.315 0 0 1 41.77 70v-.023Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Phone Numbers</strong> </span> <p class="navigation-dropdown-link-description"> Access local, national, and toll-free phone numbers </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/phone-numbers/toll-free" target="_self" data-uuid="bcdfd127-e417-3f55-8d47-8c519354096c">Toll-Free</a> <a href="/en-us/a2p-10dlc" target="_self" data-uuid="a4625ef8-f987-3ceb-b706-0e20b72ec175">10DLC</a> <a href="/en-us/messaging/channels/sms/short-codes" target="_self" data-uuid="6a6c6b4f-bd9b-3032-89e9-f8878c6c6bca">Short Codes</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/video" target="_self" data-uuid="18154e03-2a6c-3e04-9d6a-fe839e1d0d88"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Video logo</title> <g class="twilio_video"> <path d="M43.438 57.5H7.312A5.314 5.314 0 0 1 2 52.187V20.314A5.314 5.314 0 0 1 7.313 15h36.124a5.314 5.314 0 0 1 5.313 5.313v8.245l13.557-6.78a5.264 5.264 0 0 1 5.164.235A5.295 5.295 0 0 1 70 26.538v19.465a5.266 5.266 0 0 1-2.507 4.505 5.321 5.321 0 0 1-5.164.255L48.75 44.049v8.16a5.314 5.314 0 0 1-5.313 5.312V57.5ZM7.312 19.25c-.595 0-1.062.468-1.062 1.063v31.875c0 .594.468 1.062 1.063 1.062h36.124c.596 0 1.063-.468 1.063-1.063v-11.58c0-.745.383-1.425.999-1.807a2.153 2.153 0 0 1 2.061-.106l16.639 8.245c.489.233.871.042 1.041-.043.149-.085.51-.361.51-.892V26.539c0-.532-.361-.808-.51-.914-.149-.085-.552-.297-1.041-.043l-16.639 8.31c-.659.318-1.445.297-2.061-.086A2.123 2.123 0 0 1 44.5 32V20.312c0-.595-.468-1.062-1.063-1.062H7.313Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Video</strong> </span> <p class="navigation-dropdown-link-description"> Connect virtually with secure, high-quality video calling at global scale </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Applications</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/flex" target="_self" data-uuid="01b27b9e-4068-385b-bad2-abbdac206df3"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Flex logo</title> <g class="twilio_flex"> <path d="M10.455 32.482C9.235 31.259 7 32.074 7 33.909v18.55c0 .612.203 1.02.61 1.428l17.476 17.531c1.22 1.223 3.455.408 3.455-1.427v-18.55c0-.612-.203-1.02-.61-1.427L10.456 32.482ZM9.032 7C8.016 7 7 8.02 7 9.039v13.454c0 .612.203 1.02.61 1.427l29.873 29.967c.406.407.813.611 1.422.611h20.729c1.828 0 2.641-2.242 1.422-3.465L43.58 33.297c-.406-.407-.813-.611-1.422-.611h-11.38c-1.017 0-2.033-.816-2.033-2.039 0-1.019.813-2.038 2.033-2.038h39.22c1.83 0 2.642-2.243 1.423-3.466L53.943 7.612C53.537 7.204 52.927 7 52.521 7H9.032Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Flex</strong> </span> <p class="navigation-dropdown-link-description"> Digital engagement center for customer service and sales </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/flex/use-cases/contact-center" target="_self" data-uuid="5c2d9c5a-08e1-39ea-b937-91b213ac174b">Contact center</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/engage" target="_self" data-uuid="8523f978-5f68-3011-aad2-8e0c25c78e27"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Engage logo</title> <g class="twilio_engage"> <g class="path-fill"> <path d="M36 51.96c8.815 0 15.96-7.145 15.96-15.96 0-8.814-7.145-15.96-15.96-15.96-8.814 0-15.96 7.146-15.96 15.96 0 8.815 7.146 15.96 15.96 15.96Z"/> <path d="M32.54 59.76c-10.42-1.48-18.82-9.88-20.3-20.3-.88-6.28.7-12.16 3.88-16.88.52-.78.38-1.82-.28-2.48l-2.88-2.88c-.88-.88-2.34-.76-3.06.26C6.18 22.7 4 29.1 4 36v29.42C4 66.84 5.16 68 6.58 68H36c6.9 0 13.3-2.18 18.52-5.9 1.02-.72 1.14-2.18.26-3.06l-2.88-2.88c-.66-.66-1.7-.8-2.48-.28-4.7 3.2-10.6 4.78-16.88 3.88Zm6.92-47.52c10.42 1.46 18.82 9.88 20.3 20.3.88 6.28-.7 12.16-3.88 16.88-.52.78-.38 1.82.28 2.48l2.88 2.88c.88.88 2.34.76 3.06-.26C65.82 49.3 68 42.9 68 36V6.58C68 5.16 66.84 4 65.42 4H36c-6.9 0-13.3 2.18-18.52 5.9a2.006 2.006 0 0 0-.26 3.06l2.88 2.88c.66.66 1.7.8 2.48.28 4.7-3.18 10.58-4.76 16.88-3.88Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Engage</strong> </span> <p class="navigation-dropdown-link-description"> Create multi-channel campaigns with a unified data-first platform </p> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/sendgrid/marketing-campaigns" target="_self" data-uuid="b4a7bbcb-e911-309b-99a4-553796478f8a"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Marketing Campaigns logo</title> <g class="twilio_marketing-campaigns"> <path d="M22.71 41.007a2.26 2.26 0 0 1-1.87.501L.993 37.976c-1.28-.444-1.34-2.22-.08-2.72L62.169 7.018S62.247 7 62.286 7h.059a.78.78 0 0 1 .295.039s.04 0 .06.038a.573.573 0 0 1 .196.174c0 .02.02.058.04.077.04.097.078.212.059.328l-5.69 51.956c-.217.945-1.3 1.39-2.127.907L32.89 47.569c-.965-.56-2.166.115-2.166 1.215 0 .54.315 1.023.787 1.255l3.367 1.968c.768.386.985 1.39.492 2.085l-6.458 9.283c-.787 1.158-2.618.598-2.618-.791V44.905c0-.502.196-1.004.55-1.37l28.59-29.413c.315-.31-.138-.792-.492-.502L22.71 41.007Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Marketing Campaigns </strong> </span> <p class="navigation-dropdown-link-description"> Create and manage email marketing campaigns with SendGrid </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section has-border"> <h5 class="navigation-dropdown-title"> <span>Customer Data</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://segment.com/" target="_blank" data-uuid="9a6fde8b-0d94-3c2e-8437-c8659a43ba63"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Segment logo</title> <g class="segment"> <path d="M65.64 23.242H31.876a2.254 2.254 0 0 0-2.254 2.254v3.998a2.254 2.254 0 0 0 2.254 2.253H65.64a2.254 2.254 0 0 0 2.254-2.253v-3.998a2.254 2.254 0 0 0-2.254-2.254ZM40.125 40.253H6.359a2.254 2.254 0 0 0-2.254 2.254v3.997a2.254 2.254 0 0 0 2.254 2.254h33.766a2.254 2.254 0 0 0 2.254-2.254v-3.997a2.254 2.254 0 0 0-2.254-2.254ZM16.863 63.642a4.253 4.253 0 1 0 0-8.505 4.253 4.253 0 0 0 0 8.505Zm38.274-46.779a4.253 4.253 0 1 0 0-8.505 4.253 4.253 0 0 0 0 8.505ZM36 61.516c-2.382 0-4.7-.34-6.89-.978-1.041-.298-2.147.298-2.53 1.318l-1.446 3.998a2.137 2.137 0 0 0 1.425 2.785A33.775 33.775 0 0 0 35.999 70c13.886 0 25.772-8.335 31.066-20.243.51-1.148-.02-2.487-1.212-2.913l-3.997-1.467c-1.02-.383-2.19.085-2.637 1.063C55.222 55.286 46.313 61.473 36 61.473v.043Zm0-51.032c2.381 0 4.7.34 6.89.978 1.041.298 2.147-.297 2.53-1.318l1.445-3.998a2.137 2.137 0 0 0-1.424-2.785A33.776 33.776 0 0 0 36 2c-13.885-.021-25.771 8.314-31.066 20.221-.51 1.149.022 2.488 1.212 2.913l3.998 1.468c1.02.382 2.19-.085 2.636-1.064C16.778 16.694 25.687 10.505 36 10.505v-.02Z" class="path-fill fill-path"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Segment ↗</strong> </span> <p class="navigation-dropdown-link-description"> Unify your customer data with Segment CDP to power personalized engagement </p> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://segment.com/product/connections" target="_blank" data-uuid="80c6422a-7ea3-39a4-9952-06c6846c86e0"> <svg width="72" height="72" viewBox="0 0 72 72" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path class="path-fill logo-fill" fill-rule="evenodd" clip-rule="evenodd" d="M2 6.85714C2 4.17462 4.17462 2 6.85714 2H65.1429C67.8255 2 70 4.17462 70 6.85714V14.1429C70 16.8254 67.8255 19 65.1429 19H38.0242C35.3416 19 33.1671 21.1746 33.1671 23.8571V42.476C33.1671 45.1586 30.9923 47.3331 28.3097 47.3331H6.85714C4.17462 47.3331 2 45.1586 2 42.476V6.85714ZM38.8329 29.5242C38.8329 26.8416 41.0077 24.667 43.6903 24.667H65.1429C67.8255 24.667 70 26.8416 70 29.5242V65.1431C70 67.8254 67.8255 70.0002 65.1429 70.0002H6.85714C4.17462 70.0002 2 67.8254 2 65.1431V57.8573C2 55.1747 4.17462 53.0002 6.85714 53.0002H33.9758C36.6584 53.0002 38.8329 50.8254 38.8329 48.1431V29.5242Z"/> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Connections ↗</strong> </span> <p class="navigation-dropdown-link-description"> Integrate web and mobile app data with a single API </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="https://segment.com/product/reverse-etl" target="_blank" data-uuid="dd5d0700-bf87-33e5-aba1-83472ef7ffb7">Reverse ETL</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://segment.com/product/protocols" target="_blank" data-uuid="04efcd9f-8d7b-3df3-b1f4-b48e000751cc"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation"> <title>Cloud with an upload download symbol</title> <g class="networks_cloud-upload-download"> <path fill-rule="evenodd" d="M24.799 2.006A23.31 23.31 0 0 1 47.572 18.39a15.85 15.85 0 0 1 21.016 7.886 15.857 15.857 0 0 1-10.59 21.922 2 2 0 1 1-.971-3.88 11.852 11.852 0 0 0 8.972-11.354 11.857 11.857 0 0 0-13.828-11.836 11.85 11.85 0 0 0-4.767 1.94 2 2 0 0 1-3.105-1.28A19.318 19.318 0 0 0 33.672 7.904 19.309 19.309 0 0 0 6.188 22.628a19.32 19.32 0 0 0 5.667 16.542 2 2 0 1 1-2.787 2.87 23.317 23.317 0 0 1 15.73-40.034Zm.55 34.152a2 2 0 0 1 1.414.586l8.525 8.526a2 2 0 1 1-2.829 2.828l-5.11-5.111V68a2 2 0 1 1-4 0V42.987l-5.11 5.111a2 2 0 1 1-2.83-2.828l8.525-8.526a2 2 0 0 1 1.415-.586Zm21.312 0a2 2 0 0 1 2 2V63.17l5.11-5.111a2 2 0 1 1 2.829 2.828l-8.525 8.526a2 2 0 0 1-2.829 0l-8.525-8.526a2 2 0 1 1 2.83-2.828l5.11 5.11v-25.01a2 2 0 0 1 2-2Z" class="path-fill" clip-rule="evenodd"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Protocols ↗</strong> </span> <p class="navigation-dropdown-link-description"> Protect the integrity of your data </p> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://segment.com/product/unify" target="_blank" data-uuid="51b743b4-fbc4-3f37-bc58-92bb4d9cee95"> <svg width="72" height="72" viewBox="0 0 72 72" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path class="path-fill logo-fill" fill-rule="evenodd" clip-rule="evenodd" d="M15.6794 21.5625C15.6794 12.1391 23.3118 4.5 32.7269 4.5C33.4512 4.5 34.0382 5.08763 34.0382 5.8125V37.3126C34.0382 38.0375 33.4512 38.6249 32.7269 38.6249C23.3118 38.6249 15.6794 30.9858 15.6794 21.5625ZM39.2835 28.125C42.9048 28.125 45.8404 25.1868 45.8404 21.5625C45.8404 17.9381 42.9048 15 39.2835 15C39.0932 15.0013 38.9032 15.0144 38.7144 15.0394C38.527 15.0644 38.338 15.0071 38.1958 14.8824C38.0536 14.7577 37.9722 14.5776 37.9722 14.3884V5.8125C37.9722 5.08763 38.5594 4.5 39.2835 4.5C40.236 4.50822 41.1861 4.59603 42.124 4.7625C42.7565 4.86378 43.2234 5.40763 43.2281 6.04875V8.60813C43.2287 8.8851 43.4029 9.13194 43.6635 9.225C44.0922 9.37699 44.5125 9.55225 44.9224 9.75001C45.1741 9.86329 45.4699 9.80661 45.662 9.60826L47.4665 7.80488C47.9198 7.3517 48.6341 7.29287 49.1554 7.66575C50.7093 8.77081 52.0667 10.1293 53.1708 11.6846C53.5427 12.207 53.4827 12.922 53.0292 13.3751L51.2273 15.1785C51.031 15.3759 50.9805 15.6758 51.1014 15.9266C51.2956 16.3387 51.4712 16.7614 51.626 17.1892C51.719 17.4501 51.9656 17.6245 52.2423 17.625H54.7836C55.4238 17.6251 55.9703 18.0878 56.0767 18.7196C56.416 20.5997 56.416 22.5253 56.0767 24.4054C55.9703 25.0372 55.4238 25.4999 54.7836 25.5001H52.2423C51.9615 25.4951 51.7091 25.6708 51.6155 25.9357C51.4633 26.3628 51.2885 26.7827 51.091 27.1957C50.9701 27.4466 51.0206 27.7464 51.2169 27.9439L53.0239 29.7419C53.476 30.1947 53.5358 30.908 53.1655 31.4299C52.0614 32.9858 50.7042 34.3453 49.1501 35.4513C48.6282 35.8236 47.9139 35.7636 47.4611 35.3096L45.6567 33.5062C45.4595 33.3097 45.1599 33.2593 44.9092 33.3802C44.499 33.5769 44.0789 33.7521 43.6503 33.9053C43.3888 33.9986 43.2145 34.2468 43.2151 34.5248V37.0684C43.2149 37.7091 42.7526 38.2562 42.1214 38.3625C41.1835 38.5289 40.2334 38.6167 39.281 38.6249C38.5567 38.6249 37.9696 38.0375 37.9696 37.3126V28.6316C37.9694 28.4644 38.042 28.3051 38.1684 28.1959C38.2947 28.0864 38.4627 28.0376 38.6279 28.062C38.8448 28.0976 39.0639 28.1187 39.2835 28.125ZM32.7269 39.9375C18.2488 39.9534 6.5159 51.6966 6.5 66.1874C6.5 66.9123 7.08711 67.5 7.81134 67.5H32.7269C33.4512 67.5 34.0382 66.9123 34.0382 66.1874V41.2501C34.0382 40.5252 33.4512 39.9375 32.7269 39.9375ZM63.8582 60.9376C64.5029 60.9429 65.0506 61.4112 65.1564 62.0479C65.3806 63.4306 65.4955 64.8288 65.5 66.2296C65.4746 66.936 64.8949 67.4953 64.1886 67.4947H51.5998C51.2688 67.4917 50.9949 67.2368 50.9677 66.9068C50.3065 60.3387 45.1167 55.1445 38.5545 54.4826C38.2247 54.4555 37.97 54.1812 37.9671 53.8501V41.2501C37.9667 40.5392 38.5317 39.9574 39.2417 39.9375C41.1171 39.9371 42.9872 40.1367 44.8201 40.5334C45.4152 40.6716 45.8363 41.2028 45.8351 41.8143V45.7754C45.8349 46.0542 46.0105 46.3025 46.2731 46.395C47.2649 46.746 48.2293 47.1707 49.158 47.6654C49.4123 47.8017 49.7258 47.7546 49.9291 47.5501L52.6435 44.8619C53.0874 44.418 53.7834 44.3508 54.3038 44.7019C57.3678 46.8439 59.9373 49.6188 61.8387 52.8393C62.1303 53.352 62.0446 53.9961 61.629 54.4143L58.7439 57.3019C58.5531 57.4905 58.4969 57.7769 58.6023 58.0238C58.9423 58.8176 59.2322 59.6321 59.4704 60.4623C59.552 60.7438 59.8097 60.9374 60.1025 60.9376H63.8582Z"/> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Unify ↗</strong> </span> <p class="navigation-dropdown-link-description"> Unify customer data across every channel </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="https://segment.com/product/profiles-sync/" target="_blank" data-uuid="df9276fe-890c-3edc-a15e-2191450e6a5f">Profiles Sync</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://segment.com/product/twilio-engage/journeys" target="_blank" data-uuid="52a31c29-b4ce-3b9c-81ff-a3d8ceb9630a"> <svg width="72" height="74" viewBox="0 0 72 74" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path class="path-fill logo-fill" fill-rule="evenodd" clip-rule="evenodd" d="M2 15.3C2.00089 13.5952 2.46899 11.9235 3.35315 10.4675C4.23731 9.01146 5.5035 7.8272 7.01337 7.04411C8.52323 6.26102 10.2187 5.90922 11.9144 6.02716C13.6101 6.1451 15.2409 6.72825 16.6286 7.71287C18.0162 8.69749 19.1073 10.0457 19.7826 11.6102C20.4579 13.1746 20.6914 14.8952 20.4577 16.5838C20.2239 18.2724 19.5319 19.864 18.4572 21.1848C17.3825 22.5056 15.9664 23.5047 14.3638 24.073V52.5C14.3638 54.9665 15.3408 57.332 17.0798 59.0761C18.8188 60.8202 21.1774 61.8 23.6367 61.8C26.0961 61.8 28.4546 60.8202 30.1936 59.0761C31.9326 57.332 32.9096 54.9665 32.9096 52.5V45.773C31.0998 45.1325 29.5325 43.9448 28.424 42.3735C27.3154 40.8023 26.7201 38.9248 26.7201 37C26.7201 35.0752 27.3154 33.1977 28.424 31.6265C29.5325 30.0552 31.0998 28.8675 32.9096 28.227V21.5C32.9096 19.4645 33.3094 17.449 34.086 15.5684C34.8627 13.6879 36.0011 11.9792 37.4362 10.5398C38.8713 9.10054 40.5751 7.95882 42.4501 7.17987C44.3252 6.40092 46.3349 6 48.3644 6C50.394 6 52.4037 6.40092 54.2787 7.17987C56.1538 7.95882 57.8575 9.10054 59.2926 10.5398C60.7277 11.9792 61.8661 13.6879 62.6428 15.5684C63.4195 17.449 63.8192 19.4645 63.8192 21.5V49.927C65.8814 50.6591 67.6192 52.0985 68.7257 53.991C69.8322 55.8835 70.2363 58.1073 69.8665 60.2697C69.4967 62.432 68.3768 64.3936 66.7046 65.8082C65.0325 67.2227 62.9158 67.999 60.7283 68C58.5384 68.0033 56.418 67.2291 54.7427 65.8147C53.0674 64.4003 51.9453 62.4369 51.575 60.2722C51.2048 58.1076 51.6104 55.8813 52.72 53.9879C53.8296 52.0944 55.5715 50.6558 57.6373 49.927V21.5C57.6373 19.0335 56.6603 16.668 54.9213 14.9239C53.1823 13.1798 50.8237 12.2 48.3644 12.2C45.9051 12.2 43.5465 13.1798 41.8075 14.9239C40.0685 16.668 39.0915 19.0335 39.0915 21.5V28.227C40.9014 28.8675 42.4686 30.0552 43.5772 31.6265C44.6857 33.1977 45.281 35.0752 45.281 37C45.281 38.9248 44.6857 40.8023 43.5772 42.3735C42.4686 43.9448 40.9014 45.1325 39.0915 45.773V52.5C39.0915 56.6108 37.4633 60.5533 34.5649 63.4601C31.6666 66.367 27.7356 68 23.6367 68C19.5379 68 15.6069 66.367 12.7085 63.4601C9.81019 60.5533 8.18192 56.6108 8.18192 52.5V24.073C6.37348 23.4313 4.80789 22.243 3.70077 20.6718C2.59365 19.1007 1.99945 17.2239 2 15.3ZM11.2729 12.2C10.4531 12.2 9.66691 12.5266 9.08724 13.108C8.50758 13.6893 8.18192 14.4778 8.18192 15.3C8.18192 16.1222 8.50758 16.9107 9.08724 17.492C9.66691 18.0734 10.4531 18.4 11.2729 18.4C12.0927 18.4 12.8789 18.0734 13.4585 17.492C14.0382 16.9107 14.3638 16.1222 14.3638 15.3C14.3638 14.4778 14.0382 13.6893 13.4585 13.108C12.8789 12.5266 12.0927 12.2 11.2729 12.2ZM57.6373 58.7C57.6373 57.8778 57.963 57.0893 58.5426 56.508C59.1223 55.9266 59.9085 55.6 60.7283 55.6C61.548 55.6 62.3342 55.9266 62.9139 56.508C63.4936 57.0893 63.8192 57.8778 63.8192 58.7C63.8192 59.5222 63.4936 60.3107 62.9139 60.892C62.3342 61.4734 61.548 61.8 60.7283 61.8C59.9085 61.8 59.1223 61.4734 58.5426 60.892C57.963 60.3107 57.6373 59.5222 57.6373 58.7Z"/> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Journeys ↗</strong> </span> <p class="navigation-dropdown-link-description"> Orchestrate multichannel customer journeys </p> </div> </a> </li> </ul> <div class="button-container small "> <a href="/en-us/products" target="_self" class="button button-secondary">See all products</a> </div> </div> </div> </div> </li> <li class="navigation-accordion-item"> <button data-nav-id="1" class="navigation-accordion-button" aria-expanded="false" aria-controls="navigation-accordion-content1" id="navigation-accordion-button1"> <span>Solutions</span> <svg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M0.183058 0.719435C0.427136 0.475358 0.822864 0.475358 1.06694 0.719435L5 4.65249L8.93306 0.719435C9.17714 0.475358 9.57286 0.475358 9.81694 0.719435C10.061 0.963513 10.061 1.35924 9.81694 1.60332L5.68077 5.73949C5.6807 5.73956 5.68063 5.73963 5.68055 5.73971C5.50018 5.92042 5.25533 6.02198 5 6.02198C4.74473 6.02198 4.49995 5.92048 4.31959 5.73985C4.31947 5.73973 4.31935 5.73961 4.31923 5.73949L0.183058 1.60332C-0.0610194 1.35924 -0.0610194 0.963513 0.183058 0.719435Z" fill="#030B5D"/> </svg> </button> <div class="navigation-accordion-content" role="region" id="navigation-accordion-content1" aria-labelledby="navigation-accordion-button1"> <div data-nav-id="1" aria-labelledby="navigation-link-1" id="navigation-dropdown-1" class="navigation-dropdown four-columns"> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Use Cases</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/use-cases/user-verification-identity" target="_self" data-uuid="8a61b858-319b-3379-abd3-566a6abdcb14"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Verification & identity</strong> </span> <p class="navigation-dropdown-link-description"> Add user verification to protect against fraud. </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/use-cases/fraud-prevention" target="_self" data-uuid="407b7bc2-53a5-3e33-9734-e199ad34fdd6">Fraud prevention</a> </div> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/use-cases/alerts-and-notifications" target="_self" data-uuid="80bd65b4-774c-34de-b134-036c4413b9c7"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Alerts & notifications</strong> </span> <p class="navigation-dropdown-link-description"> Deliver notifications across text, email, voice. </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/use-cases/appointment-reminders" target="_self" data-uuid="78e8fd81-c6d5-367a-813c-71bed7f19bdd">Appointment reminders</a> <a href="/en-us/use-cases/lead-alerts" target="_self" data-uuid="8f4e1e8a-42be-3fba-9020-8fa3379fbefa">Lead alerts</a> <a href="/en-us/use-cases/mass-texting" target="_self" data-uuid="183e2e30-f42a-327a-96fa-b5b6361f460e">Mass texting</a> </div> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/use-cases/marketing-and-promotions" target="_self" data-uuid="d6bfc75d-ccaa-3499-b691-87560532b852"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Marketing & promotions</strong> </span> <p class="navigation-dropdown-link-description"> Create multichannel marketing campaigns. </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/solutions/text-marketing" target="_self" data-uuid="20e53019-744c-3125-853c-5c23c67fad10">SMS marketing</a> <a href="/en-us/use-cases/automated-customer-surveys" target="_self" data-uuid="b19035be-c429-37ee-9444-7459d9f739f3">Customer surveys</a> </div> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/flex/use-cases/contact-center" target="_self" data-uuid="8164b46f-cfc8-3810-a421-ffb97109f50c"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Contact Center</strong> </span> <p class="navigation-dropdown-link-description"> Provide personalized, data-driven service. </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/use-cases/ivr" target="_self" data-uuid="51363291-2576-349e-a9d0-424155eda446"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>IVR & self-service</strong> </span> <p class="navigation-dropdown-link-description"> Set up a modern IVR with AI-enabled support. </p> </div> </a> <div class="navigation-dropdown-shortcut-links multiline"> <a href="/en-us/use-cases/call-tracking" target="_self" data-uuid="a708bb96-0908-3b37-a321-9aefff43b428">Call tracking</a> </div> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Teams</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/marketing" target="_self" data-uuid="13b41fbe-fd91-313f-84a9-66f96e8bea81"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong> Marketing</strong> </span> <p class="navigation-dropdown-link-description"> Keep customers engaged on any channel </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/product-and-engineering" target="_self" data-uuid="b00be778-d89d-3eb0-b749-8fdc42a670e1"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Product & Engineering</strong> </span> <p class="navigation-dropdown-link-description"> Connect with target users reliably and securely </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/customer-experience" target="_self" data-uuid="0a87b1a4-059c-3755-9c39-40596a306f51"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Customer Experience</strong> </span> <p class="navigation-dropdown-link-description"> Deliver personalized sales and support experiences at scale </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/ahoy" target="_self" data-uuid="17c80c23-dd41-30d2-af31-4cb01c9dbaf1"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Developers</strong> </span> <p class="navigation-dropdown-link-description"> Tutorials and docs to start building on Twilio </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Industries</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/financial-services" target="_self" data-uuid="7ae500c7-4ddc-331f-97c3-7466b653129b"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Financial Services</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/healthcare" target="_self" data-uuid="4b84119b-4e11-3715-92d0-afb0ac35dc70"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Healthcare</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/hospitality" target="_self" data-uuid="fa74729a-8a7a-3830-a313-6b67c9d6a7a4"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Hospitality</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/public-sector" target="_self" data-uuid="52d2134e-9eaf-3f01-994f-d98a9fdbebc1"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Public Sector</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/real-estate" target="_self" data-uuid="337d3dd2-b03c-3846-9f44-fcf9a88dc783"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Real Estate</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/retail" target="_self" data-uuid="4215e011-af2d-3e36-aaf1-cc991287c528"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Retail</strong> </span> </div> </a> </li> </ul> <div class="button-container small "> <a href="/en-us/solutions" target="_self" class="button button-secondary">See all solutions</a> </div> </div> <div class="navigation-dropdown-section gray"> <h5 class="navigation-dropdown-title"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation"> <title>People shaking hands</title> <g class="users_handshake--circle"> <path fill-rule="evenodd" d="M11.96 60.04C18.38 66.46 26.92 70 36 70c9.08 0 17.62-3.54 24.04-9.96C66.46 53.62 70 45.08 70 36c0-9.08-3.54-17.62-9.96-24.04C53.62 5.54 45.08 2 36 2c-9.08 0-17.62 3.54-24.04 9.96C5.54 18.38 2 26.92 2 36c0 9.08 3.54 17.62 9.96 24.04Zm2.83-45.25C20.45 9.12 27.99 6 36 6c8.01 0 15.54 3.12 21.21 8.79a29.947 29.947 0 0 1 6 8.54h-4.55a5.397 5.397 0 0 0-1.415.134L44.75 18.54c-1-.37-2.05-.54-3.12-.47-1.06.06-2.09.34-3.01.82l-6.072 3.031a7.01 7.01 0 0 0-2.968-1.091c-1.19-.15-2.41.01-3.57.47l-8.637 3.684a5.337 5.337 0 0 0-.323-.314c-1.02-.92-2.33-1.38-3.71-1.33H8.791a30.13 30.13 0 0 1 5.999-8.55ZM7.266 27.34A30.046 30.046 0 0 0 6 36c0 2.98.432 5.893 1.265 8.67H13.5a1.241 1.241 0 0 0 1.31-1.12V28.46c-.03-.31-.17-.6-.41-.81-.25-.22-.56-.33-.9-.31H7.266ZM8.79 48.67h4.78l-.01.01c1.29 0 2.52-.46 3.49-1.33a5.3 5.3 0 0 0 .737-.81h2.743l8 6.11a4.308 4.308 0 0 0 3.12 1.3l-.02.01c1.01 0 1.98-.35 2.77-1l8.094-6.685 10.743-2.145a5.24 5.24 0 0 0 5.193 4.54h4.778a30.038 30.038 0 0 1-5.998 8.54C51.55 62.88 44.01 66 36 66c-8.01 0-15.54-3.13-21.21-8.79a29.947 29.947 0 0 1-6-8.54Zm55.944-4A30.086 30.086 0 0 0 66 36c0-2.98-.432-5.893-1.266-8.67H58.5c-.096 0-.191.008-.284.024-.155.087-.32.154-.493.197a1.27 1.27 0 0 0-.533.909v13.048c.014.133.013.265 0 .395v1.647a1.241 1.241 0 0 0 1.31 1.12h6.234ZM34.96 34h-.09c-.82-.01-1.62-.19-2.38-.53a6.33 6.33 0 0 1-1.99-1.41c-.57-.6-1-1.3-1.29-2.07a6.34 6.34 0 0 1 .249-5.121A3.12 3.12 0 0 0 27.54 25l-8.75 3.73v13.81h2.41c.44 0 .86.14 1.21.41l8.67 6.62c.1.08.2.17.29.27.06.07.15.11.24.12.1.01.18-.02.26-.08l8.204-6.776c.142-.163.31-.303.501-.414l3.415-2.82c.08-.06.13-.16.14-.26 0-.09-.01-.18-.06-.25l-5.665-6.29-1.135.48c-.75.31-1.53.46-2.32.46l.01-.01Zm12.867 7.134 5.373-1.072V28.26c.039-.67.202-1.314.478-1.905L43.31 22.27c-.44-.17-.94-.24-1.44-.21s-.99.16-1.44.4l-6.45 3.22c-.46.25-.85.69-1.05 1.23-.2.54-.2 1.13.01 1.66.11.3.27.54.47.76.2.21.44.38.71.5.26.11.53.17.8.18.27 0 .55-.05.81-.15l6.41-2.71c1.02-.43 2.19.04 2.62 1.06.43 1.02-.05 2.19-1.06 2.62l-1.397.59 4.807 5.34s.06.07.09.11c.7.91 1.02 2.04.89 3.18-.043.376-.131.74-.263 1.084Z" class="path-fill fill-path" clip-rule="evenodd"/> </g> </svg> <span>Partners</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/partners" target="_self" data-uuid="524095c8-b918-3482-890c-5f32b5dd5392"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Find a partner</strong> </span> <p class="navigation-dropdown-link-description"> Work with a Twilio partner to buy or build the right solution </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/partners/become-a-partner" target="_self" data-uuid="e9e2abbd-08c9-3d71-a326-dea63713c4a5"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Partner with us</strong> </span> <p class="navigation-dropdown-link-description"> Join our Partner Program to build or sell Twilio solutions to your customers. </p> </div> </a> </li> </ul> </div> </div> </div> </li> <li class="navigation-accordion-item"> <button data-nav-id="2" class="navigation-accordion-button" aria-expanded="false" aria-controls="navigation-accordion-content2" id="navigation-accordion-button2"> <span>Developers</span> <svg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M0.183058 0.719435C0.427136 0.475358 0.822864 0.475358 1.06694 0.719435L5 4.65249L8.93306 0.719435C9.17714 0.475358 9.57286 0.475358 9.81694 0.719435C10.061 0.963513 10.061 1.35924 9.81694 1.60332L5.68077 5.73949C5.6807 5.73956 5.68063 5.73963 5.68055 5.73971C5.50018 5.92042 5.25533 6.02198 5 6.02198C4.74473 6.02198 4.49995 5.92048 4.31959 5.73985C4.31947 5.73973 4.31935 5.73961 4.31923 5.73949L0.183058 1.60332C-0.0610194 1.35924 -0.0610194 0.963513 0.183058 0.719435Z" fill="#030B5D"/> </svg> </button> <div class="navigation-accordion-content" role="region" id="navigation-accordion-content2" aria-labelledby="navigation-accordion-button2"> <div data-nav-id="2" aria-labelledby="navigation-link-2" id="navigation-dropdown-2" class="navigation-dropdown three-columns"> <div class="navigation-dropdown-section blue"> <h5 class="navigation-dropdown-title"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation"> <title>An Open book</title> <g class="documents_book--open"> <path d="M35.995 67.5h-.029c-.263 0-.515-.058-.748-.164a1.946 1.946 0 0 1-.642-.454h-.01c-.146-.165-7.349-7.363-30.173-7.673-.943-.029-1.79-.396-2.42-1.053A3.412 3.412 0 0 1 1 55.75V7.95c0-.918.36-1.788 1.011-2.435.32-.329.71-.58 1.137-.754A3.32 3.32 0 0 1 4.49 4.5c19.305.251 28.297 5.276 31.505 7.672 3.208-2.396 12.2-7.42 31.506-7.672.495 0 .923.077 1.35.26.419.175.808.426 1.138.755A3.418 3.418 0 0 1 71 7.95v47.82c0 .889-.34 1.739-.962 2.396a3.435 3.435 0 0 1-2.392 1.053c-22.737.31-29.979 7.43-30.202 7.653-.03.039-.069.068-.107.106a.979.979 0 0 1-.156.126 1.973 1.973 0 0 1-.437.251 1.768 1.768 0 0 1-.603.135h-.136l-.01.01Zm1.944-51.927v46.168c4.287-2.541 13.123-6.107 29.163-6.387V8.374c-19.228.33-27.19 5.605-29.163 7.2ZM4.89 55.354c16.039.27 24.875 3.836 29.162 6.377V15.573c-1.944-1.575-9.906-6.87-29.163-7.198v46.98Zm39.923-7.807a1.933 1.933 0 0 1-.622-3.768 65.327 65.327 0 0 1 15.932-3.16 1.949 1.949 0 0 1 2.08 1.787 1.939 1.939 0 0 1-1.798 2.068 61.28 61.28 0 0 0-14.97 2.967 1.93 1.93 0 0 1-.612.096l-.01.01Zm-17.624 0c-.204 0-.408-.03-.612-.097a60.922 60.922 0 0 0-14.97-2.966 1.939 1.939 0 0 1-1.799-2.068c.078-1.063 1.02-1.855 2.08-1.788a65.422 65.422 0 0 1 15.933 3.16 1.925 1.925 0 0 1 1.225 2.445 1.945 1.945 0 0 1-1.847 1.323l-.01-.01Zm0-9.982c-.204 0-.408-.029-.612-.096a60.832 60.832 0 0 0-14.97-2.967 1.939 1.939 0 0 1-1.799-2.068c.078-1.062 1.02-1.845 2.08-1.787a65.327 65.327 0 0 1 15.933 3.16 1.925 1.925 0 0 1 1.225 2.444 1.945 1.945 0 0 1-1.847 1.324l-.01-.01Zm17.624 0a1.933 1.933 0 0 1-.622-3.768 65.331 65.331 0 0 1 15.932-3.16c1.06-.067 2.003.725 2.08 1.788a1.939 1.939 0 0 1-1.798 2.068 61.194 61.194 0 0 0-14.97 2.966 1.93 1.93 0 0 1-.612.097l-.01.01Z" class="path-fill fill-path"/> </g> </svg> <span>Documentation</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/flex" target="_self" data-uuid="202617e5-93a5-3f8d-a293-5fd07113423d"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Flex</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/sms" target="_self" data-uuid="4a7d38b6-987a-3434-819a-8315ad35aa69"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>SMS</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/voice" target="_self" data-uuid="276792df-f5d6-374a-b4ac-ce3760668b6c"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Voice</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://docs.sendgrid.com/" target="_self" data-uuid="3a701880-504d-3d84-a4d2-19da3883139d"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Email</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/whatsapp" target="_self" data-uuid="11717582-95ce-36a6-b33c-aa4968c7816a"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>WhatsApp API</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/sip-trunking" target="_self" data-uuid="9c18aca3-4bad-3cb7-b449-2fb09e0ee6de"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Elastic SIP Trunking</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/verify/api" target="_self" data-uuid="2216d993-093c-32a9-8311-c03d32122ee9"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Verify</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/serverless/functions-assets/functions" target="_self" data-uuid="cc54ec7e-db8f-3e55-a052-f3c6aa412514"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Functions</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/studio" target="_self" data-uuid="698bf00e-7d9d-36ee-9901-73eb234f7e79"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Studio</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/twilio-cli/quickstart" target="_self" data-uuid="bd2d1990-cd6c-3a5b-8fde-660fa31e84ee"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio CLI</strong> </span> </div> </a> </li> </ul> <div class="button-container small inverse"> <a href="https://www.twilio.com/docs" target="_self" class="button button-secondary">See all docs</a> </div> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation">> <title>Two users in a circle</title> <g class="users_user-group--circle"> <path fill-rule="evenodd" d="M15.7 42.495c2.59 2.59 6.02 4.01 9.68 4.01s7.09-1.43 9.68-4.01c2.59-2.59 4.01-6.02 4.01-9.68 0-.548-.032-1.09-.095-1.626a1.966 1.966 0 0 0-.064-.474 13.598 13.598 0 0 0-3.851-7.58 13.584 13.584 0 0 0-9.68-4.01c-3.66 0-7.1 1.42-9.68 4.01a13.584 13.584 0 0 0-4.01 9.68c0 3.66 1.42 7.09 4.01 9.68Zm18.945-12.531a9.648 9.648 0 0 0-2.415-3.999 9.622 9.622 0 0 0-6.85-2.84c-2.59 0-5.02 1.01-6.85 2.84-.206.206-.4.419-.586.639a17.338 17.338 0 0 0 7.916 3.861c2.951.592 5.952.419 8.785-.501Zm.35 4.065a21.222 21.222 0 0 1-5.685.776v.01c-1.41 0-2.83-.14-4.24-.42a21.25 21.25 0 0 1-9.031-4.17 9.728 9.728 0 0 0-.349 2.59c0 2.59 1.01 5.02 2.84 6.85a9.622 9.622 0 0 0 6.85 2.84c2.59 0 5.02-1.01 6.85-2.84a9.615 9.615 0 0 0 2.765-5.636Z" clip-rule="evenodd" class="fill-path path-fill"/> <path fill-rule="evenodd" d="M36 69.875c-9.05 0-17.55-3.52-23.95-9.92-6.4-6.4-9.92-14.91-9.92-23.95s3.52-17.56 9.92-23.96c6.4-6.4 14.91-9.92 23.95-9.92s17.56 3.52 23.95 9.92c6.39 6.4 9.92 14.9 9.92 23.95 0 6.87-2.029 13.424-5.806 18.983a1.98 1.98 0 0 1-.282.408 34.297 34.297 0 0 1-3.832 4.559c-6.4 6.4-14.91 9.92-23.95 9.92v.01Zm26.011-19.146c2.524-4.442 3.869-9.484 3.869-14.724 0-7.97-3.11-15.48-8.75-21.12-5.64-5.64-13.15-8.75-21.13-8.75v-.01c-7.98 0-15.48 3.11-21.12 8.75-5.64 5.64-8.75 13.14-8.75 21.13 0 5.916 1.705 11.558 4.88 16.378a21.122 21.122 0 0 1 29.107.308 14.615 14.615 0 0 1 3.373-3.266 14.737 14.737 0 0 1 3.936-1.954 9.454 9.454 0 0 1-2.156-1.616 9.46 9.46 0 0 1-2.05-3.06 9.341 9.341 0 0 1-.72-3.61c0-1.24.24-2.46.72-3.61a9.46 9.46 0 0 1 2.05-3.06c.88-.88 1.91-1.57 3.06-2.04 2.3-.95 4.92-.95 7.22 0a9.46 9.46 0 0 1 3.06 2.05 9.46 9.46 0 0 1 2.05 3.06c.48 1.15.72 2.37.72 3.61 0 1.24-.24 2.46-.72 3.61a9.304 9.304 0 0 1-2.05 3.06 9.454 9.454 0 0 1-2.137 1.606 14.713 14.713 0 0 1 5.539 3.258Zm-19.216 5.138a10.766 10.766 0 0 1 8.165-5.062c1.86-.17 3.74.15 5.44.92a10.901 10.901 0 0 1 3.359 2.401 30.305 30.305 0 0 1-2.629 2.999A29.857 29.857 0 0 1 46.185 64.1a20.954 20.954 0 0 0-3.39-8.233Zm-3.788 1.614a17.043 17.043 0 0 1 3.298 7.73c-2.05.439-4.16.664-6.305.664-7.97 0-15.48-3.11-21.12-8.75a30.609 30.609 0 0 1-1.435-1.536 17.088 17.088 0 0 1 7.335-4.224c3.3-.92 6.77-.84 10.03.25a17.101 17.101 0 0 1 7.887 5.471c.086.143.19.276.31.395ZM51.94 33.745a5.395 5.395 0 0 0-3.84 1.59c-.51.51-.9 1.1-1.18 1.76a5.47 5.47 0 0 0 0 4.16c.27.66.67 1.26 1.18 1.76.51.51 1.1.9 1.76 1.18 1.33.55 2.83.55 4.16 0 .66-.27 1.26-.67 1.76-1.18.51-.51.9-1.1 1.18-1.76a5.47 5.47 0 0 0 0-4.16c-.27-.66-.67-1.26-1.18-1.76-.51-.51-1.1-.9-1.76-1.18a5.47 5.47 0 0 0-2.08-.41Z" clip-rule="evenodd" class="fill-path path-fill"/> </g> </svg> <span>Community</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/ahoy" target="_self" data-uuid="44e0ac6f-a865-3570-9b75-6c2a200146b9"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Ahoy!</strong> </span> <p class="navigation-dropdown-link-description"> Get inspired by the latest from our developer community </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/blog/developers" target="_self" data-uuid="f39790d8-1e22-3926-8425-4854e425c140"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Developer Blog</strong> </span> <p class="navigation-dropdown-link-description"> Read tutorials, community projects, and product updates </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://stackoverflow.com/collectives/twilio" target="_self" data-uuid="50efaed5-3ef6-3f25-bdfe-cc3e5f66d63b"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Stack Overflow</strong> </span> <p class="navigation-dropdown-link-description"> Ask the Twilio community for help </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/champions" target="_self" data-uuid="517d626e-33c1-3931-8977-69ba8a6aa28f"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Champions</strong> </span> <p class="navigation-dropdown-link-description"> Become a Twilio community Champion </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation"> <title>Wrench and screwdriver</title> <g class="etc_wrench-screwdriver"> <path class="path-fill fill-path" fill-rule="evenodd" d="M57.847 20.266a6.292 6.292 0 0 1-2.909-.705l-23.96 24.07 3.32 3.334c.367.37.57.856.57 1.37a1.96 1.96 0 0 1-.57 1.382L15.596 68.482a8.45 8.45 0 0 1-6.04 2.508h-.01a8.46 8.46 0 0 1-6.04-2.518A8.553 8.553 0 0 1 1 62.405c0-2.285.89-4.453 2.507-6.067l18.7-18.765a1.933 1.933 0 0 1 2.74 0l3.296 3.31 23.96-24.078a6.348 6.348 0 0 1-.696-2.908c0-1.701.658-3.305 1.859-4.501l7.782-7.827a1.933 1.933 0 0 1 2.74 0L70.12 7.82a1.933 1.933 0 0 1 0 2.742l-7.792 7.826a6.275 6.275 0 0 1-4.482 1.867v.01Zm-2.478-6.369c0 .662.262 1.284.726 1.75l.004.004c.93.93 2.553.939 3.49-.003L66.008 9.2l-3.49-3.505-6.422 6.442a2.476 2.476 0 0 0-.726 1.76ZM6.237 59.09l17.335-17.395 6.611 6.64L12.857 65.73a4.662 4.662 0 0 1-3.31 1.371 4.623 4.623 0 0 1-3.3-1.37 4.673 4.673 0 0 1-1.375-3.326c0-1.254.484-2.43 1.365-3.316Z" clip-rule="evenodd"/> <path class="path-fill fill-path" d="M21.84 30.64c.377.38.87.574 1.365.574l.01.02c.493 0 .987-.195 1.364-.574a1.954 1.954 0 0 0 0-2.752l-4.627-4.647a1.925 1.925 0 0 0-2.08-.438 9.06 9.06 0 0 1-4.066.603 8.97 8.97 0 0 1-7.163-4.716 10.9 10.9 0 0 0 2.923.068 10.75 10.75 0 0 0 6.37-3.092 10.877 10.877 0 0 0 3.068-6.407c.106-.982.077-1.974-.078-2.946a8.952 8.952 0 0 1 2.081 1.536 9.01 9.01 0 0 1 2.469 4.58 9.144 9.144 0 0 1-.436 5.192c-.28.72-.107 1.536.436 2.08l6.727 6.777a1.933 1.933 0 0 0 2.74 0 1.954 1.954 0 0 0 0-2.751l-5.886-5.921a13.06 13.06 0 0 0 .213-6.175 12.989 12.989 0 0 0-3.523-6.543 12.86 12.86 0 0 0-7.754-3.675 1.928 1.928 0 0 0-1.839.904 1.933 1.933 0 0 0 0 2.061 6.99 6.99 0 0 1 .997 4.434 6.912 6.912 0 0 1-1.965 4.093A6.884 6.884 0 0 1 9.111 14.9a6.835 6.835 0 0 1-4.413-1.002 1.95 1.95 0 0 0-2.053 0 1.933 1.933 0 0 0-.9 1.848 13.172 13.172 0 0 0 1.936 5.58 12.953 12.953 0 0 0 4.201 4.133 12.905 12.905 0 0 0 5.595 1.828c1.53.126 3.097-.03 4.578-.447l3.785 3.801ZM58.04 71c-2.516 0-4.994-.739-7.104-2.13a13.061 13.061 0 0 1-5.246-6.932 13.076 13.076 0 0 1-.126-7.467l-4.365-4.385a1.954 1.954 0 0 1 0-2.752 1.933 1.933 0 0 1 2.739 0l5.217 5.231c.542.545.716 1.371.436 2.09a9.182 9.182 0 0 0-.204 6.107 9.123 9.123 0 0 0 3.679 4.861 9.053 9.053 0 0 0 5.904 1.44 9.08 9.08 0 0 0 5.488-2.626 9.153 9.153 0 0 0 2.614-5.513c.213-2.08-.3-4.18-1.433-5.93a9.055 9.055 0 0 0-10.918-3.491 1.91 1.91 0 0 1-2.072-.438l-7.375-7.409a1.954 1.954 0 0 1 0-2.751 1.933 1.933 0 0 1 2.739 0l6.534 6.563a12.99 12.99 0 0 1 7.433.126 13.015 13.015 0 0 1 6.902 5.27 13.128 13.128 0 0 1 2.052 8.459 13.042 13.042 0 0 1-3.727 7.866A12.936 12.936 0 0 1 58.06 71h-.02Z"/> <path class="path-fill fill-path" d="M60.286 58.069a2.425 2.425 0 0 1-2.42 2.43 2.425 2.425 0 0 1-2.42-2.43 2.425 2.425 0 0 1 2.42-2.431 2.425 2.425 0 0 1 2.42 2.43Z"/> </g> </svg> <span>Tools & Resources</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/code-exchange" target="_self" data-uuid="82f92ed1-c941-3e67-8f96-daa4bbbfa252"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>CodeExchange</strong> </span> <p class="navigation-dropdown-link-description"> Usable code samples for faster builds </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/changelog" target="_self" data-uuid="d406aef4-2fe8-3406-a0b4-d5e7d530f428"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Changelog</strong> </span> <p class="navigation-dropdown-link-description"> See updates and additions to Twilio products </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://status.twilio.com" target="_self" data-uuid="511e46da-8d07-3439-a9c2-60b8e1ff1392"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>API Status</strong> </span> <p class="navigation-dropdown-link-description"> Check real-time monitoring of APIs and all services </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/products/beta" target="_self" data-uuid="48e907ba-efae-30e7-bdcd-8beec988feab"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Beta Products and Features</strong> </span> <p class="navigation-dropdown-link-description"> Explore new launches and request access to early releases </p> </div> </a> </li> </ul> </div> </div> </div> </li> <li class="navigation-accordion-item"> <button data-nav-id="3" class="navigation-accordion-button" aria-expanded="false" aria-controls="navigation-accordion-content3" id="navigation-accordion-button3"> <span>Why Twilio</span> <svg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M0.183058 0.719435C0.427136 0.475358 0.822864 0.475358 1.06694 0.719435L5 4.65249L8.93306 0.719435C9.17714 0.475358 9.57286 0.475358 9.81694 0.719435C10.061 0.963513 10.061 1.35924 9.81694 1.60332L5.68077 5.73949C5.6807 5.73956 5.68063 5.73963 5.68055 5.73971C5.50018 5.92042 5.25533 6.02198 5 6.02198C4.74473 6.02198 4.49995 5.92048 4.31959 5.73985C4.31947 5.73973 4.31935 5.73961 4.31923 5.73949L0.183058 1.60332C-0.0610194 1.35924 -0.0610194 0.963513 0.183058 0.719435Z" fill="#030B5D"/> </svg> </button> <div class="navigation-accordion-content" role="region" id="navigation-accordion-content3" aria-labelledby="navigation-accordion-button3"> <div data-nav-id="3" aria-labelledby="navigation-link-3" id="navigation-dropdown-3" class="navigation-dropdown three-columns"> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Company</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/why-twilio" target="_self" data-uuid="9a787b06-a28b-3280-9f6b-deea01bbc545"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Why Twilio</strong> </span> <p class="navigation-dropdown-link-description"> The trusted platform for data-driven customer engagement across any channel. </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/company" target="_self" data-uuid="a849a5d8-ff83-3d17-af32-7b9edfd56499"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>About Us</strong> </span> <p class="navigation-dropdown-link-description"> Twilio company page </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/company/values" target="_self" data-uuid="790c50bd-02f7-3684-9a34-dccc637c0787"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Magic</strong> </span> <p class="navigation-dropdown-link-description"> Twilio core values </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/company/diversity" target="_self" data-uuid="1bbd6dce-661a-3c54-81a1-d78659cb5b2c"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Diversity</strong> </span> <p class="navigation-dropdown-link-description"> Diversity, equity, and inclusion </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://investors.twilio.com" target="_self" data-uuid="f9b5d6ef-c537-36ee-afb7-46999b3632f1"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Investor Relations</strong> </span> <p class="navigation-dropdown-link-description"> Information for Twilio investors </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/press" target="_self" data-uuid="1b2fd53c-a7a5-32e0-8ad2-931a7dc28267"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Press & Media</strong> </span> <p class="navigation-dropdown-link-description"> Latest announcements and launches </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Our Platform</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/customer-engagement-platform" target="_self" data-uuid="2b371b66-c4de-36b6-96d3-3496bba1c99a"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Customer Engagement Platform</strong> </span> <p class="navigation-dropdown-link-description"> Build durable customer relationships with personalized, data-driven engagement </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/cpaas" target="_self" data-uuid="57942c20-35e2-348b-ae14-03e10e3fd1f8">Communication</a> <a href="/en-us/customer-data-platform" target="_self" data-uuid="2ffd8303-febf-374d-b9cd-21f8efc6cfbc">Customer Data</a> </div> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/trust-center" target="_self" data-uuid="8f381764-d1ce-3b8a-8474-a51f92736382"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Trust Center</strong> </span> <p class="navigation-dropdown-link-description"> Twilio’s security, data privacy, regulatory compliance, and resiliency policies. </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/super-network" target="_blank" data-uuid="9689eb37-400d-3cf8-8476-5b380363d2f6"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong> Super Network</strong> </span> <p class="navigation-dropdown-link-description"> Simplify, strengthen and unite carrier communication networks using software. </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section gray"> <h5 class="navigation-dropdown-title"> <span>Resources</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/resource-center" target="_self" data-uuid="cacae192-dd0a-37a1-83f9-3062a802ce39"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Resource Center</strong> </span> <p class="navigation-dropdown-link-description"> Browse our content library for more resources on how you can create lasting customer relationships </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://customers.twilio.com/en-us" target="_self" data-uuid="70f2a22e-4399-3d83-9677-76decb0dc8d9"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Customer Stories</strong> </span> <p class="navigation-dropdown-link-description"> See what customers are building with Twilio </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/blog" target="_self" data-uuid="d72bede0-4aad-3cb7-8892-91ed84e6b26f"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Blog</strong> </span> <p class="navigation-dropdown-link-description"> Explore the latest product updates, technical tutorials, and best practices </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/state-of-customer-engagement" target="_self" data-uuid="1084fc5e-4007-379e-9cff-44bd42fcc506"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>State of Customer Engagement</strong> </span> <p class="navigation-dropdown-link-description"> See the top trends shaping customer engagement in our annual report </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/events" target="_self" data-uuid="a6a76a7a-4d32-3482-bbd1-2ff679aad5f0"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Events</strong> </span> <p class="navigation-dropdown-link-description"> Join upcoming group events </p> </div> </a> </li> </ul> </div> </div> </div> </li> <li class="navigation-accordion-item"> <button data-nav-id="4" class="navigation-accordion-button" aria-expanded="false" aria-controls="navigation-accordion-content4" id="navigation-accordion-button4"> <span>Pricing</span> <svg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M0.183058 0.719435C0.427136 0.475358 0.822864 0.475358 1.06694 0.719435L5 4.65249L8.93306 0.719435C9.17714 0.475358 9.57286 0.475358 9.81694 0.719435C10.061 0.963513 10.061 1.35924 9.81694 1.60332L5.68077 5.73949C5.6807 5.73956 5.68063 5.73963 5.68055 5.73971C5.50018 5.92042 5.25533 6.02198 5 6.02198C4.74473 6.02198 4.49995 5.92048 4.31959 5.73985C4.31947 5.73973 4.31935 5.73961 4.31923 5.73949L0.183058 1.60332C-0.0610194 1.35924 -0.0610194 0.963513 0.183058 0.719435Z" fill="#030B5D"/> </svg> </button> <div class="navigation-accordion-content" role="region" id="navigation-accordion-content4" aria-labelledby="navigation-accordion-button4"> <div data-nav-id="4" aria-labelledby="navigation-link-4" id="navigation-dropdown-4" class="navigation-dropdown three-columns"> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Communications</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/pricing/messaging" target="_self" data-uuid="96d65f20-32f4-3713-96fe-2cf821d8583f"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Messaging logo</title> <g class="twilio_messagingx"> <g class="path-fill"> <path d="M14.232 46.958c-.53 0-1.083-.127-1.592-.36a3.69 3.69 0 0 1-2.145-3.356V36H7.309A5.311 5.311 0 0 1 2 30.691V11.578c0-2.93 2.379-5.31 5.31-5.31h31.854c2.931 0 5.31 2.38 5.31 5.31v10.894a2.13 2.13 0 0 1-2.124 2.124 2.13 2.13 0 0 1-2.124-2.124V11.578c0-.595-.467-1.062-1.062-1.062H7.33c-.594 0-1.061.467-1.061 1.062V30.69c0 .595.467 1.062 1.061 1.062h5.31a2.13 2.13 0 0 1 2.123 2.123v8.22l9.26-7.731a2.126 2.126 0 1 1 2.718 3.27l-10.13 8.453c-.68.573-1.53.87-2.379.87Z"/> <path d="M59.891 65.732a3.743 3.743 0 0 1-2.081-.637l-9.918-7.858h-2.59c-8.644 0-15.673-6.668-15.673-14.866 0-8.197 7.03-14.866 15.672-14.866h9.026C62.971 27.505 70 34.174 70 42.371c0 4.417-2.421 8.814-6.371 11.744v7.922c0 1.38-.765 2.633-1.975 3.27a3.638 3.638 0 0 1-1.742.425h-.02ZM48.636 52.99c.488 0 .934.17 1.316.467l9.408 7.454V52.99c0-.722.361-1.402.977-1.784 3.313-2.124 5.394-5.5 5.394-8.835 0-5.861-5.118-10.618-11.425-10.618H45.28c-6.286 0-11.425 4.757-11.425 10.618 0 5.862 5.118 10.619 11.425 10.619h3.356Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Messaging</strong> </span> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/sms/pricing/us" target="_self" data-uuid="cd19858a-b596-31db-9a4a-dc77079ca25d">SMS</a> <a href="/en-us/whatsapp/pricing" target="_self" data-uuid="33e93917-7fa5-30a6-8a19-d4217e896bfc">Whatsapp</a> <a href="/en-us/messaging/pricing/conversations-api" target="_self" data-uuid="fb1d6fd9-94bd-300a-bfe1-81d2b8e9fe94">Conversations</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://sendgrid.com/en-us/pricing" target="_blank" data-uuid="a329ca03-44e4-36a3-b1d5-690c9338daf9"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio SendGrid Email API logo</title> <g class="twilio_sendgrid-email-api"> <path fill-rule="evenodd" clip-rule="evenodd" d="M29.25 6.25C29.1249 6.25 29.0031 6.29755 28.9003 6.4003C28.7975 6.50306 28.75 6.62494 28.75 6.75V20.25C28.75 20.3751 28.7975 20.4969 28.9003 20.5997C29.0031 20.7025 29.1249 20.75 29.25 20.75H42.75C47.4341 20.75 51.25 24.5659 51.25 29.25V42.75C51.25 42.8751 51.2975 42.9969 51.4003 43.0997C51.5031 43.2025 51.6249 43.25 51.75 43.25H65.25C65.3751 43.25 65.4969 43.2025 65.5997 43.0997C65.7025 42.9969 65.75 42.8751 65.75 42.75V6.25H29.25ZM29.25 2.25H67.5C68.7375 2.25 69.75 3.2625 69.75 4.5V42.75C69.75 45.225 67.725 47.25 65.25 47.25H51.75C49.275 47.25 47.25 45.225 47.25 42.75V29.25C47.25 26.775 45.225 24.75 42.75 24.75H29.25C26.775 24.75 24.75 22.725 24.75 20.25V6.75C24.75 4.275 26.775 2.25 29.25 2.25Z" class="path-fill"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M42.75 65.75C42.8751 65.75 42.9969 65.7025 43.0997 65.5997C43.2025 65.4969 43.25 65.3751 43.25 65.25V51.75C43.25 51.6249 43.2025 51.5031 43.0997 51.4003C42.9969 51.2975 42.8751 51.25 42.75 51.25H29.25C24.5659 51.25 20.75 47.4341 20.75 42.75V29.25C20.75 29.1249 20.7025 29.0031 20.5997 28.9003C20.4969 28.7975 20.3751 28.75 20.25 28.75H6.75C6.62494 28.75 6.50306 28.7975 6.4003 28.9003C6.29755 29.0031 6.25 29.1249 6.25 29.25V65.75H42.75ZM42.75 69.75H4.5C3.2625 69.75 2.25 68.7375 2.25 67.5V29.25C2.25 26.775 4.275 24.75 6.75 24.75H20.25C22.725 24.75 24.75 26.775 24.75 29.25V42.75C24.75 45.225 26.775 47.25 29.25 47.25H42.75C45.225 47.25 47.25 49.275 47.25 51.75V65.25C47.25 67.725 45.225 69.75 42.75 69.75Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Email ↗</strong> </span> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/voice/pricing/us" target="_self" data-uuid="c4056d19-2a2f-3b73-a207-d78e69f85132"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Programmable Voice logo</title> <g class="twilio_programmable-voice"> <path d="M54.384 67.979a5.27 5.27 0 0 1-2.669-.734 138.575 138.575 0 0 1-15.78-10.953c-4.056-3.337-7.271-6.211-10.087-9.023-2.816-2.811-5.926-6.252-9.456-10.491-2.857-3.525-7.354-9.694-10.695-15.506a5.265 5.265 0 0 1 .84-6.337l8.447-8.456c1.997-1.972 5.443-1.972 7.439 0l10.212 10.198a5.217 5.217 0 0 1 1.534 3.714 5.217 5.217 0 0 1-1.534 3.714l-2.794 2.79c2.857 3.588 5.337 6.379 7.774 8.813 2.816 2.812 5.569 5.288 8.405 7.554l2.795-2.791c2.038-2.035 5.38-2.056 7.439 0l10.212 10.218A5.217 5.217 0 0 1 68 54.403a5.217 5.217 0 0 1-1.534 3.714l-8.342 8.33A5.27 5.27 0 0 1 54.384 68v-.021ZM18.683 9.165a.986.986 0 0 0-.736.315L9.5 17.894c-.336.336-.4.86-.168 1.28 3.215 5.602 7.564 11.54 10.296 14.94 3.425 4.112 6.43 7.448 9.183 10.176 2.732 2.727 5.82 5.497 9.77 8.729a134.385 134.385 0 0 0 15.277 10.617c.4.23.946.167 1.282-.168l8.342-8.33c.273-.273.315-.588.315-.735a1.02 1.02 0 0 0-.315-.734L53.27 43.45a1.08 1.08 0 0 0-1.492 0l-4.14 4.133a2.095 2.095 0 0 1-2.794.147l-1.471-1.175a102.691 102.691 0 0 1-8.741-7.869c-2.543-2.538-5.128-5.455-8.09-9.148l-1.177-1.469a2.087 2.087 0 0 1 .147-2.79l4.118-4.134a1.05 1.05 0 0 0 .316-.734 1.02 1.02 0 0 0-.316-.735L19.44 9.46a1.056 1.056 0 0 0-.736-.315h-.021v.021Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Voice</strong> </span> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/voice/conference/pricing" target="_self" data-uuid="bdf5bad8-839c-3cc2-befc-caefedbefa87">Conferencing</a> <a href="/en-us/sip-trunking/pricing/us" target="_self" data-uuid="a36943fb-5aa4-39dc-961b-51e70e40efb0">SIP trunking</a> </div> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span></span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/verify/pricing" target="_self" data-uuid="5c910363-d68b-3e0a-875a-7b333197fadb"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Verify logo</title> <g class="twilio_verify"> <g class="path-fill"> <path d="M36 68.558a5.287 5.287 0 0 1-3.761-1.552L3.87 38.616A6.317 6.317 0 0 1 2 34.111V9.313A5.314 5.314 0 0 1 7.313 4h57.374A5.314 5.314 0 0 1 70 9.313v1.423a6.28 6.28 0 0 1-1.87 4.505L39.761 43.61c-2.061 2.061-5.44 2.061-7.522 0L21.74 33.112a2.116 2.116 0 0 1 0-2.996 2.116 2.116 0 0 1 2.997 0l10.497 10.498c.276.276.595.319.744.319.148 0 .489-.043.743-.32l28.412-28.368c.403-.404.616-.935.616-1.509V9.312c0-.595-.468-1.062-1.063-1.062H7.313c-.595 0-1.063.467-1.063 1.063V34.11c0 .574.213 1.105.616 1.509l28.369 28.369a1.091 1.091 0 0 0 1.509 0l16.872-16.873a2.116 2.116 0 0 1 2.996 0 2.116 2.116 0 0 1 0 2.996L39.74 66.986a5.288 5.288 0 0 1-3.761 1.551l.021.022Z"/> <path d="M63.625 46.118a6.375 6.375 0 1 0 0-12.75 6.375 6.375 0 0 0 0 12.75Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Verify</strong> </span> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/lookup/pricing" target="_self" data-uuid="764f3144-e164-3216-a6ac-db00e0e38fc0"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Lookup logo</title> <g class="twilio_lookup"> <g class="path-fill"> <path d="M27.498 33.873a6.375 6.375 0 1 0 0-12.75 6.375 6.375 0 0 0 0 12.75Z"/> <path d="M69.379 66.361 46.96 43.944c3.761-4.44 6.056-10.178 6.056-16.446C52.996 13.432 41.564 2 27.498 2S2 13.432 2 27.498s11.432 25.498 25.498 25.498a25.267 25.267 0 0 0 16.446-6.056l22.417 22.417c.425.425.956.616 1.509.616.552 0 1.084-.212 1.508-.616a2.116 2.116 0 0 0 0-2.996ZM6.248 27.498C6.25 15.79 15.79 6.25 27.499 6.25c11.708 0 21.248 9.54 21.248 21.248 0 11.708-9.54 21.248-21.248 21.248-11.708 0-21.248-9.54-21.248-21.248Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Lookup</strong> </span> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/serverless/pricing" target="_self" data-uuid="2aba174c-e04e-35fb-9be8-8df21e8f3bcc"> <svg width="72" height="74" viewBox="0 0 72 74" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path class="path-fill logo-fill" fill-rule="evenodd" clip-rule="evenodd" d="M2 15.3C2.00089 13.5952 2.46899 11.9235 3.35315 10.4675C4.23731 9.01146 5.5035 7.8272 7.01337 7.04411C8.52323 6.26102 10.2187 5.90922 11.9144 6.02716C13.6101 6.1451 15.2409 6.72825 16.6286 7.71287C18.0162 8.69749 19.1073 10.0457 19.7826 11.6102C20.4579 13.1746 20.6914 14.8952 20.4577 16.5838C20.2239 18.2724 19.5319 19.864 18.4572 21.1848C17.3825 22.5056 15.9664 23.5047 14.3638 24.073V52.5C14.3638 54.9665 15.3408 57.332 17.0798 59.0761C18.8188 60.8202 21.1774 61.8 23.6367 61.8C26.0961 61.8 28.4546 60.8202 30.1936 59.0761C31.9326 57.332 32.9096 54.9665 32.9096 52.5V45.773C31.0998 45.1325 29.5325 43.9448 28.424 42.3735C27.3154 40.8023 26.7201 38.9248 26.7201 37C26.7201 35.0752 27.3154 33.1977 28.424 31.6265C29.5325 30.0552 31.0998 28.8675 32.9096 28.227V21.5C32.9096 19.4645 33.3094 17.449 34.086 15.5684C34.8627 13.6879 36.0011 11.9792 37.4362 10.5398C38.8713 9.10054 40.5751 7.95882 42.4501 7.17987C44.3252 6.40092 46.3349 6 48.3644 6C50.394 6 52.4037 6.40092 54.2787 7.17987C56.1538 7.95882 57.8575 9.10054 59.2926 10.5398C60.7277 11.9792 61.8661 13.6879 62.6428 15.5684C63.4195 17.449 63.8192 19.4645 63.8192 21.5V49.927C65.8814 50.6591 67.6192 52.0985 68.7257 53.991C69.8322 55.8835 70.2363 58.1073 69.8665 60.2697C69.4967 62.432 68.3768 64.3936 66.7046 65.8082C65.0325 67.2227 62.9158 67.999 60.7283 68C58.5384 68.0033 56.418 67.2291 54.7427 65.8147C53.0674 64.4003 51.9453 62.4369 51.575 60.2722C51.2048 58.1076 51.6104 55.8813 52.72 53.9879C53.8296 52.0944 55.5715 50.6558 57.6373 49.927V21.5C57.6373 19.0335 56.6603 16.668 54.9213 14.9239C53.1823 13.1798 50.8237 12.2 48.3644 12.2C45.9051 12.2 43.5465 13.1798 41.8075 14.9239C40.0685 16.668 39.0915 19.0335 39.0915 21.5V28.227C40.9014 28.8675 42.4686 30.0552 43.5772 31.6265C44.6857 33.1977 45.281 35.0752 45.281 37C45.281 38.9248 44.6857 40.8023 43.5772 42.3735C42.4686 43.9448 40.9014 45.1325 39.0915 45.773V52.5C39.0915 56.6108 37.4633 60.5533 34.5649 63.4601C31.6666 66.367 27.7356 68 23.6367 68C19.5379 68 15.6069 66.367 12.7085 63.4601C9.81019 60.5533 8.18192 56.6108 8.18192 52.5V24.073C6.37348 23.4313 4.80789 22.243 3.70077 20.6718C2.59365 19.1007 1.99945 17.2239 2 15.3ZM11.2729 12.2C10.4531 12.2 9.66691 12.5266 9.08724 13.108C8.50758 13.6893 8.18192 14.4778 8.18192 15.3C8.18192 16.1222 8.50758 16.9107 9.08724 17.492C9.66691 18.0734 10.4531 18.4 11.2729 18.4C12.0927 18.4 12.8789 18.0734 13.4585 17.492C14.0382 16.9107 14.3638 16.1222 14.3638 15.3C14.3638 14.4778 14.0382 13.6893 13.4585 13.108C12.8789 12.5266 12.0927 12.2 11.2729 12.2ZM57.6373 58.7C57.6373 57.8778 57.963 57.0893 58.5426 56.508C59.1223 55.9266 59.9085 55.6 60.7283 55.6C61.548 55.6 62.3342 55.9266 62.9139 56.508C63.4936 57.0893 63.8192 57.8778 63.8192 58.7C63.8192 59.5222 63.4936 60.3107 62.9139 60.892C62.3342 61.4734 61.548 61.8 60.7283 61.8C59.9085 61.8 59.1223 61.4734 58.5426 60.892C57.963 60.3107 57.6373 59.5222 57.6373 58.7Z"/> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Serverless</strong> </span> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/video/pricing" target="_self" data-uuid="7bd70d75-cf69-30ce-9ae5-ea9730e53641"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Video logo</title> <g class="twilio_video"> <path d="M43.438 57.5H7.312A5.314 5.314 0 0 1 2 52.187V20.314A5.314 5.314 0 0 1 7.313 15h36.124a5.314 5.314 0 0 1 5.313 5.313v8.245l13.557-6.78a5.264 5.264 0 0 1 5.164.235A5.295 5.295 0 0 1 70 26.538v19.465a5.266 5.266 0 0 1-2.507 4.505 5.321 5.321 0 0 1-5.164.255L48.75 44.049v8.16a5.314 5.314 0 0 1-5.313 5.312V57.5ZM7.312 19.25c-.595 0-1.062.468-1.062 1.063v31.875c0 .594.468 1.062 1.063 1.062h36.124c.596 0 1.063-.468 1.063-1.063v-11.58c0-.745.383-1.425.999-1.807a2.153 2.153 0 0 1 2.061-.106l16.639 8.245c.489.233.871.042 1.041-.043.149-.085.51-.361.51-.892V26.539c0-.532-.361-.808-.51-.914-.149-.085-.552-.297-1.041-.043l-16.639 8.31c-.659.318-1.445.297-2.061-.086A2.123 2.123 0 0 1 44.5 32V20.312c0-.595-.468-1.062-1.063-1.062H7.313Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Video</strong> </span> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Applications</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/flex/pricing" target="_self" data-uuid="454d3fdf-99a1-35d7-ac19-b3c0e80a9372"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Flex logo</title> <g class="twilio_flex"> <path d="M10.455 32.482C9.235 31.259 7 32.074 7 33.909v18.55c0 .612.203 1.02.61 1.428l17.476 17.531c1.22 1.223 3.455.408 3.455-1.427v-18.55c0-.612-.203-1.02-.61-1.427L10.456 32.482ZM9.032 7C8.016 7 7 8.02 7 9.039v13.454c0 .612.203 1.02.61 1.427l29.873 29.967c.406.407.813.611 1.422.611h20.729c1.828 0 2.641-2.242 1.422-3.465L43.58 33.297c-.406-.407-.813-.611-1.422-.611h-11.38c-1.017 0-2.033-.816-2.033-2.039 0-1.019.813-2.038 2.033-2.038h39.22c1.83 0 2.642-2.243 1.423-3.466L53.943 7.612C53.537 7.204 52.927 7 52.521 7H9.032Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Flex</strong> </span> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://segment.com/pricing/" target="_blank" data-uuid="6f4a34e1-7640-361d-a7ce-70ee86701cb6"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Engage logo</title> <g class="twilio_engage"> <g class="path-fill"> <path d="M36 51.96c8.815 0 15.96-7.145 15.96-15.96 0-8.814-7.145-15.96-15.96-15.96-8.814 0-15.96 7.146-15.96 15.96 0 8.815 7.146 15.96 15.96 15.96Z"/> <path d="M32.54 59.76c-10.42-1.48-18.82-9.88-20.3-20.3-.88-6.28.7-12.16 3.88-16.88.52-.78.38-1.82-.28-2.48l-2.88-2.88c-.88-.88-2.34-.76-3.06.26C6.18 22.7 4 29.1 4 36v29.42C4 66.84 5.16 68 6.58 68H36c6.9 0 13.3-2.18 18.52-5.9 1.02-.72 1.14-2.18.26-3.06l-2.88-2.88c-.66-.66-1.7-.8-2.48-.28-4.7 3.2-10.6 4.78-16.88 3.88Zm6.92-47.52c10.42 1.46 18.82 9.88 20.3 20.3.88 6.28-.7 12.16-3.88 16.88-.52.78-.38 1.82.28 2.48l2.88 2.88c.88.88 2.34.76 3.06-.26C65.82 49.3 68 42.9 68 36V6.58C68 5.16 66.84 4 65.42 4H36c-6.9 0-13.3 2.18-18.52 5.9a2.006 2.006 0 0 0-.26 3.06l2.88 2.88c.66.66 1.7.8 2.48.28 4.7-3.18 10.58-4.76 16.88-3.88Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Segment ↗</strong> </span> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://sendgrid.com/en-us/pricing" target="_self" data-uuid="b30a861c-7875-3e06-81b4-e6e9991f918f"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Marketing Campaigns logo</title> <g class="twilio_marketing-campaigns"> <path d="M22.71 41.007a2.26 2.26 0 0 1-1.87.501L.993 37.976c-1.28-.444-1.34-2.22-.08-2.72L62.169 7.018S62.247 7 62.286 7h.059a.78.78 0 0 1 .295.039s.04 0 .06.038a.573.573 0 0 1 .196.174c0 .02.02.058.04.077.04.097.078.212.059.328l-5.69 51.956c-.217.945-1.3 1.39-2.127.907L32.89 47.569c-.965-.56-2.166.115-2.166 1.215 0 .54.315 1.023.787 1.255l3.367 1.968c.768.386.985 1.39.492 2.085l-6.458 9.283c-.787 1.158-2.618.598-2.618-.791V44.905c0-.502.196-1.004.55-1.37l28.59-29.413c.315-.31-.138-.792-.492-.502L22.71 41.007Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Marketing Campaigns</strong> </span> </div> </a> </li> </ul> <div class="button-container small "> <a href="/en-us/pricing" target="_blank" class="button button-secondary">See all pricing</a> </div> </div> </div> </div> </li> </ul> <ul class="navigation-buttons" role="list"> <li class="button-container"> <a href="https://www.twilio.com/try-twilio" class="button button-primary">Start for free</a> </li> <li class="button-container"> <a href="https://www.twilio.com/login" class="button button-secondary mb-login-link">Login</a> </li> <li class="button-container hide-up"> <a href="https://www.twilio.com/console" class="button button-secondary mb-console-link">Console</a> </li> <li class="button-container"> <a href="/en-us/help/sales" class="button button-secondary">Contact sales</a> </li> </ul> </div> </div> </nav> <div class="twilio-htmlcontainer"> <style> /* to reverse codebase style */ #navigation-dropdown-0 .navigation-dropdown-section:nth-child(1) { & .path-fill, .navigation-dropdown svg { background: red; fill: rgb(var(--color-blue-60)) !important; } } /* new style */ .navigation-dropdown-list {padding: 0.8rem 0 2.6rem 0;} #navigation-dropdown-0 .navigation-dropdown-section:nth-child(4) { & .path-fill, .navigation-dropdown svg { background: red; fill: rgb(var(--color-mint)) !important; } /* right align and bottom section */ .button-container { margin-top: 0rem; display: flex; justify-content: right; } } #navigation-dropdown-0 .navigation-dropdown-section:nth-child(1) { padding-bottom: 0; } #navigation-dropdown-0 .navigation-dropdown-section:nth-child(2) { padding-top: 0; & h5 { display: none; } & hr { display: none; } } #navigation-dropdown-0 .navigation-dropdown-section:nth-child(3) { padding-top: var(--spacing-size-5); & h5 { display: flex; } & hr { display: flex; } } #navigation-dropdown-4 .navigation-dropdown-section:nth-child(1) { padding-bottom: 0; } #navigation-dropdown-4 .navigation-dropdown-section:nth-child(2) { padding-top: 0; & h5 { display: none; } & hr { display: none; } } @media screen and (min-width: 992px) { #navigation-dropdown-0 .navigation-dropdown-section:nth-child(1) { padding: 3rem 0rem 3rem var(--spacing-size-5); & ul li { padding-right: var(--spacing-size-5); } } #navigation-dropdown-0 .navigation-dropdown-section:nth-child(2) { padding: 3rem var(--spacing-size-5) 3rem 0rem; & h5 { display: flex; padding-top: 1.8rem; } & hr { display: block; } } #navigation-dropdown-4 .navigation-dropdown-section:nth-child(1) { padding: 3rem 0rem 3rem var(--spacing-size-5); & ul li { padding-right: var(--spacing-size-5); } } #navigation-dropdown-4 .navigation-dropdown-section:nth-child(2) { padding: 3rem var(--spacing-size-5) 3rem 0rem; & h5 { display: flex; padding-top: 1.8rem; } & hr { display: block; } } #navigation-dropdown-1 .navigation-dropdown-section:nth-child(3) { display: flex; flex-direction: column; & .navigation-dropdown-list { gap: 1rem; } /* right align and bottom section */ .button-container { margin-top: 1.5rem; flex-grow: 1; display: flex; justify-content: right; align-self: flex-end; } } #navigation-dropdown-4 .navigation-dropdown-section:nth-child(3) { /* right align and bottom section */ .button-container { margin-top: 5rem; display: flex; justify-content: right; } } /* reversing code base */ #navigation-dropdown-0 .navigation-dropdown-section:nth-child(3) { padding: 1.2rem var(--spacing-size-4); } } </style> <div> </div> <script> // labels const currentPagePathNav = window.location.pathname; let domain = "https://www.twilio.com/" let locale = domain + "en-us"; let businessSizeLabels = [ "Business Size", "Enterprise", "Startup", "Nonprofit", ]; let twilioServicesLabels = [ "Twilio Services", "Professional Services", "Get technical and strategic advice from Twilio experts", "Training", "Learn how to architect, build, and support your apps", ]; if ( currentPagePathNav.includes("/de-de") || currentPagePathNav.includes("/de") ) { locale = domain + "de-de"; businessSizeLabels = [ "Unternehmensgröße", "Unternehmen", "Start-up", "Gemeinnützige Organisation", ]; twilioServicesLabels = [ "Twilio-Services", "Professionelle Dienstleistungen", "Erhalten Sie technische und strategische Beratung durch Expert:innen von Twilio.", "Schulungen", "Lernen Sie, wie Sie Apps anlegen, erstellen und unterstützen können.", ]; } else if ( currentPagePathNav.includes("/fr-fr") || currentPagePathNav.includes("/fr") ) { locale = domain + "fr-fr"; businessSizeLabels = [ "Taille de l'entreprise", "Entreprise", "Startup", "Associations caritatives", ]; twilioServicesLabels = [ "Services Twilio", "Services professionnels", "Obtenez des conseils techniques et stratégiques de la part d'experts Twilio", "Formations", "Découvrez comment concevoir, construire et prendre en charge vos applications", ]; } else if ( currentPagePathNav.includes("/pt-br") || currentPagePathNav.includes("/pt") ) { locale = domain + "pt-br"; businessSizeLabels = [ "Tamanho da empresa", "Empresarial", "Startup", "Sem fins lucrativos", ]; twilioServicesLabels = [ "Serviços da Twilio", "Serviços profissionais", "Obtenha consultoria técnica e estratégica dos especialistas da Twilio", "Treinamento", "Saiba como arquitetar, criar e dar suporte aos seus aplicativos", ]; } else if ( currentPagePathNav.includes("/es-mx") || currentPagePathNav.includes("/es") ) { locale = domain + "es-mx"; businessSizeLabels = [ "Tamaño de la empresa", "Empresa", "Startup", "Sin fines de lucro", ]; twilioServicesLabels = [ "Servicios de Twilio", "Servicios profesionales", "Obtén asesoría técnica y estratégica de los expertos de Twilio", "Capacitación", "Aprende a diseñar, crear y dar soporte a tus aplicaciones", ]; } else if ( currentPagePathNav.includes("/ja-jp") || currentPagePathNav.includes("/ja") ) { locale = domain + "ja-jp"; businessSizeLabels = [ "事業規模", "エンタープライズ", "スタートアップ", "非営利団体", ]; twilioServicesLabels = [ "Twilioの各種サービス", "プロフェッショナルサービス", "Twilioエキスパートから技術的・戦略的アドバイスを得られます", "トレーニング", "アプリケーションの設計、構築、サポートの方法を学べます", ]; } // desktop nav const paddingTop = "0.6rem"; let solutionsDropdown = document .getElementById("navigation-dropdown-1") .getElementsByClassName("navigation-dropdown-section"); const businessSize = `<h5 class="navigation-dropdown-title" style="padding-top: ${paddingTop}"> <span>${businessSizeLabels[0]}</span> </h5> <hr /> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="${locale}/solutions/enterprise" target="_self" > <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>${businessSizeLabels[1]}</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="${locale}/solutions/startups-resources" target="_self" > <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>${businessSizeLabels[2]}</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://twilio.org" target="_blank" > <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>${businessSizeLabels[3]} ↗</strong> </span> </div> </a> </li> </ul>`; const twilioServicesHTML = `<h5 class="navigation-dropdown-title" style="padding-top: ${paddingTop}"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product" > <title>Twilio Programmable Messaging logo</title> <g class="twilio_programmable-messaging"> <g class="path-fill"> <path d="M18.511 65.441a3.586 3.586 0 0 1-1.551-.34c-1.339-.616-2.189-1.912-2.168-3.4l.064-9.201H7.313A5.314 5.314 0 0 1 2 47.187V15.314A5.314 5.314 0 0 1 7.313 10h57.374A5.314 5.314 0 0 1 70 15.313v31.874a5.314 5.314 0 0 1-5.313 5.313H34.683L20.955 64.528a3.665 3.665 0 0 1-2.444.934v-.02ZM7.313 14.25c-.595 0-1.063.467-1.063 1.063v31.874c0 .596.468 1.063 1.063 1.063h9.647c.574 0 1.105.234 1.509.616.403.404.616.935.616 1.509l-.064 10.157L32.472 48.76c.383-.34.893-.531 1.403-.531h30.813c.594 0 1.062-.468 1.062-1.063V15.313c0-.596-.468-1.063-1.063-1.063H7.313Z" ></path> <path d="M19 35.5a4.25 4.25 0 1 0 0-8.5 4.25 4.25 0 0 0 0 8.5Zm17 0a4.25 4.25 0 1 0 0-8.5 4.25 4.25 0 0 0 0 8.5Zm17 0a4.25 4.25 0 1 0 0-8.5 4.25 4.25 0 0 0 0 8.5Z" ></path> </g> </g> </svg> <span>${twilioServicesLabels[0]}</span> </h5> <hr /> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="${locale}/professional-services" target="_self"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>${twilioServicesLabels[1]}</strong> </span> <p class="navigation-dropdown-link-description"> ${twilioServicesLabels[2]} </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="${locale}/ahoy" target="_self"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>${twilioServicesLabels[3]}</strong> </span> <p class="navigation-dropdown-link-description"> ${twilioServicesLabels[4]} </p> </div> </a> </li> </ul>`; if (solutionsDropdown) { let industriesColumn = solutionsDropdown[2]; let industriesCTA = industriesColumn.getElementsByClassName( "navigation-dropdown-list" )[0]; industriesCTA.insertAdjacentHTML("afterend", businessSize); let partnersColumn = solutionsDropdown[3]; let partnersLastDiv = partnersColumn.getElementsByClassName( "navigation-dropdown-list" )[0]; partnersLastDiv.insertAdjacentHTML("afterend", twilioServicesHTML); } // mobile nav const paddingTopMobile = "5.5rem"; let solutionsDropdownMobile = document .getElementsByClassName("navigation-mobile-menu")[0] .getElementsByClassName("navigation-dropdown four-columns")[1] .getElementsByClassName("navigation-dropdown-section"); const businessSizeMobile = `<h5 class="navigation-dropdown-title" style="padding-top: ${paddingTopMobile}"> <span>${businessSizeLabels[0]}</span> </h5> <hr /> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="${locale}/solutions/enterprise" target="_self" > <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>${businessSizeLabels[1]}</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="${locale}/solutions/startups-resources" target="_self" > <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>${businessSizeLabels[2]}</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://twilio.org" target="_blank" > <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>${businessSizeLabels[3]} ↗</strong> </span> </div> </a> </li> </ul>`; const twilioServicesHTMLMobile = `<h5 class="navigation-dropdown-title" style="padding-top: ${paddingTopMobile}"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product" > <title>Twilio Programmable Messaging logo</title> <g class="twilio_programmable-messaging"> <g class="path-fill"> <path d="M18.511 65.441a3.586 3.586 0 0 1-1.551-.34c-1.339-.616-2.189-1.912-2.168-3.4l.064-9.201H7.313A5.314 5.314 0 0 1 2 47.187V15.314A5.314 5.314 0 0 1 7.313 10h57.374A5.314 5.314 0 0 1 70 15.313v31.874a5.314 5.314 0 0 1-5.313 5.313H34.683L20.955 64.528a3.665 3.665 0 0 1-2.444.934v-.02ZM7.313 14.25c-.595 0-1.063.467-1.063 1.063v31.874c0 .596.468 1.063 1.063 1.063h9.647c.574 0 1.105.234 1.509.616.403.404.616.935.616 1.509l-.064 10.157L32.472 48.76c.383-.34.893-.531 1.403-.531h30.813c.594 0 1.062-.468 1.062-1.063V15.313c0-.596-.468-1.063-1.063-1.063H7.313Z" ></path> <path d="M19 35.5a4.25 4.25 0 1 0 0-8.5 4.25 4.25 0 0 0 0 8.5Zm17 0a4.25 4.25 0 1 0 0-8.5 4.25 4.25 0 0 0 0 8.5Zm17 0a4.25 4.25 0 1 0 0-8.5 4.25 4.25 0 0 0 0 8.5Z" ></path> </g> </g> </svg> <span>${twilioServicesLabels[0]}</span> </h5> <hr /> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="${locale}/professional-services" target="_self"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>${twilioServicesLabels[1]}</strong> </span> <p class="navigation-dropdown-link-description"> ${twilioServicesLabels[2]} </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="${locale}/ahoy" target="_self"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>${twilioServicesLabels[3]}</strong> </span> <p class="navigation-dropdown-link-description"> ${twilioServicesLabels[4]} </p> </div> </a> </li> </ul>`; if (solutionsDropdownMobile) { let industriesColumnMobile = solutionsDropdownMobile[2]; let industriesCTAMobile = industriesColumnMobile.getElementsByClassName( "navigation-dropdown-list" )[0]; industriesCTAMobile.insertAdjacentHTML("afterend", businessSizeMobile); let partnersColumnMobile = solutionsDropdownMobile[3]; let partnersLastDivMobile = partnersColumnMobile.getElementsByClassName( "navigation-dropdown-list" )[0]; partnersLastDivMobile.insertAdjacentHTML( "afterend", twilioServicesHTMLMobile ); } </script> </div> </div> </header> <main class="column-container global-main twiliomain-search"> <div id="consent_blackbar"></div> <section class="header bg-color-ink-100 light-text header-buttonsGroup "> <div/></div> <div class="grid-container two-columns center default"> <div class="grid-container-column "> <div class="header-title"> <div class="eyebrow light-text"> Twilio Segment </div> <h1 class="title-extra-large">Unlock customer data for precise personalization</h1> <div class="header-badge"> </div> <div class="header-sub-text"> <p class="copy-large">Collect real-time data across channels into a unified profile to activate more precise experiences with the leading customer data platform.</p> </div> </div> <div data-uuid="-38899465" class="button-container horizontal medium left"> <a class="button button-primary right" href="https://segment.com/customer-data-platform/" target="_blank" data-uuid="18add5a4-c14d-3a3b-9fda-f743fd888cbd" aria-label="Learn about Twilio Segment"> <span class="button-text"> Learn about Segment <span class="button-icon external medium"> <svg viewBox="0 0 79 79" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon--decorative" role="presentation"> <title>An icon of a outbound link arrow</title> <path class="icon-stroke" d="M75.3037 3.98207L3 75.5935M75.3037 3.98207L76.0435 43.3021M75.3037 3.98207L35.951 3.59351" stroke="#F22F46" stroke-width="5.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> </span> </span> </a> </div> </div> <div class="grid-container-column media-right"> <div class="lottie-animation-default"> <div class="media lottie" data-animation-src="/content/dam/twilio-com/global/en/products/segment/segment-hello/twilio_segment.json" data-image-src="/content/dam/twilio-com/global/en/products/segment/segment-hello/Hero%20Animation_x2.png/_jcr_content/renditions/compressed-original.webp"> <div class="lottie-media-image lottie-player "> <div class="overlay"></div> <lottie-player background="transparent" loop="true" count="0" autoplay="true"> </lottie-player> </div> </div> <div class="media lottie--mobile" data-image-src="/content/dam/twilio-com/global/en/products/segment/segment-hello/Hero%20Animation_x2.png/_jcr_content/renditions/compressed-original.webp"> <img class="lottie-media-image lottie-placeholder" src="/content/dam/twilio-com/global/en/products/segment/segment-hello/Hero%20Animation_x2.png/_jcr_content/renditions/compressed-original.webp" loading="lazy"/> </div> </div> </div> </div> </section> <section class="section-wrapper slim" id=""> <div class="section-content "> <div id="" class="grid-container two-columns default medium-gap center" style=""> <div class="grid-container-column"> <div data-uuid="1628622130" class="title "> <h2 class="title-medium"> What is a Customer Data Platform (CDP)? </h2> </div> <div class="richtext " data-ext-icon="<svg viewBox="0 0 79 79" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon--decorative" role="presentation"> <title>An icon of a outbound link arrow</title> <path class="icon-stroke" d="M75.3037 3.98207L3 75.5935M75.3037 3.98207L76.0435 43.3021M75.3037 3.98207L35.951 3.59351" stroke="#F22F46" stroke-width="5.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> "> <p style=" text-align: left; ">A customer data platform is a single centralized customer database containing data on all touch points and interactions with your product or service. That database can then be segmented in a nearly endless number of ways to create more personalized customer experiences across channels.</p> </div> </div> <div class="grid-container-column"> <figure class="media"> <div class="media-image "> <span title="Twilio customer data platform with all the different uses"><svg width="470" height="425" viewBox="0 0 470 425" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_668_278429)"> <path d="M201.941 209.218H251.537C327.812 209.218 312.947 367.201 384.137 367.201H407.319" stroke="url(#paint0_linear_668_278429)" stroke-width="8"/> <path d="M201.941 209.218H251.537C327.812 209.218 312.947 51.2351 384.137 51.2351H407.319" stroke="url(#paint1_linear_668_278429)" stroke-width="8"/> <path d="M201.941 209.218H251.537C327.812 209.218 312.947 288.21 384.137 288.21H407.319" stroke="url(#paint2_linear_668_278429)" stroke-width="8"/> <path d="M201.941 209.218H251.537C327.812 209.218 312.947 130.227 384.137 130.227H407.319" stroke="url(#paint3_linear_668_278429)" stroke-width="8"/> <path d="M201.941 209.218H242.662C314.062 209.218 306.922 209.218 373.562 209.218H407.319" stroke="url(#paint4_linear_668_278429)" stroke-width="8"/> </g> <path d="M399.241 16.792H397.748L397.283 10.8423L395.083 16.8141H393.734L391.533 10.8423L391.079 16.792H389.719L390.372 8.77434H392.285L394.508 14.8567L396.731 8.77434H398.611L399.241 16.792ZM406.01 16.1727C405.347 16.6372 404.529 16.9136 403.533 16.9136C401.797 16.9136 400.514 15.9626 400.514 13.8061C400.514 11.8708 401.72 10.6875 403.334 10.6875C405.181 10.6875 406.021 12.0478 406.021 13.7287C406.021 13.8503 406.021 13.9941 406.01 14.0826H401.952C402.029 15.2659 402.671 15.7856 403.677 15.7856C404.484 15.7856 405.159 15.4981 405.833 15.0336L406.01 16.1727ZM403.301 11.7049C402.637 11.7049 402.107 12.1805 401.985 13.1536H404.606C404.495 12.2247 404.086 11.7049 403.301 11.7049ZM411.979 15.0447C411.979 16.2169 411.106 16.9136 409.491 16.9136C408.595 16.9136 407.677 16.6372 407.091 16.3386L407.279 15.1221C407.932 15.5313 408.761 15.8188 409.546 15.8188C410.243 15.8188 410.641 15.5755 410.641 15.1774C410.641 14.7351 410.354 14.5692 409.314 14.3259C407.821 13.9609 407.202 13.5407 407.202 12.4459C407.202 11.4285 408.042 10.6986 409.469 10.6986C410.265 10.6986 411.006 10.8534 411.614 11.1188L411.415 12.3242C410.807 12.0035 410.088 11.7934 409.458 11.7934C408.838 11.7934 408.54 12.0146 408.54 12.3463C408.54 12.6781 408.794 12.8661 409.745 13.0983C411.327 13.4965 411.979 13.9167 411.979 15.0447ZM417.854 15.0447C417.854 16.2169 416.981 16.9136 415.366 16.9136C414.47 16.9136 413.552 16.6372 412.966 16.3386L413.154 15.1221C413.807 15.5313 414.636 15.8188 415.421 15.8188C416.118 15.8188 416.516 15.5755 416.516 15.1774C416.516 14.7351 416.229 14.5692 415.189 14.3259C413.696 13.9609 413.077 13.5407 413.077 12.4459C413.077 11.4285 413.917 10.6986 415.344 10.6986C416.14 10.6986 416.881 10.8534 417.489 11.1188L417.29 12.3242C416.682 12.0035 415.963 11.7934 415.333 11.7934C414.713 11.7934 414.415 12.0146 414.415 12.3463C414.415 12.6781 414.669 12.8661 415.62 13.0983C417.202 13.4965 417.854 13.9167 417.854 15.0447ZM422.677 15.1442V13.8061C420.764 14.0162 420.311 14.536 420.311 15.1111C420.311 15.5423 420.62 15.8188 421.129 15.8188C421.682 15.8188 422.213 15.5645 422.677 15.1442ZM424.115 16.792H422.898L422.766 16.0179C422.246 16.5155 421.594 16.9136 420.665 16.9136C419.592 16.9136 418.873 16.2943 418.873 15.2548C418.873 13.8061 420.112 13.1868 422.677 12.9435V12.7555C422.677 12.1031 422.268 11.8598 421.571 11.8598C420.842 11.8598 420.145 12.0588 419.47 12.3353L419.293 11.1852C420.023 10.8976 420.764 10.6986 421.748 10.6986C423.341 10.6986 424.115 11.2736 424.115 12.6892V16.792ZM429.221 12.7666C429.221 12.1252 428.756 11.6386 428.06 11.6386C427.352 11.6386 426.932 12.1473 426.932 12.8108C426.932 13.4412 427.363 13.9167 428.06 13.9167C428.778 13.9167 429.221 13.4191 429.221 12.7666ZM431.333 17.0685C431.333 18.3402 429.884 19.048 428.104 19.048C426.423 19.048 425.151 18.5503 425.151 17.5551C425.151 16.98 425.549 16.5487 426.346 16.1285C426.102 15.9515 425.992 15.7193 425.992 15.4871C425.992 15.1663 426.257 14.8346 426.755 14.5581C426.025 14.2263 425.571 13.596 425.571 12.7998C425.571 11.5059 426.688 10.6986 428.049 10.6986C428.745 10.6986 429.342 10.8976 429.785 11.2405L431.322 10.7318L431.521 11.904L430.382 11.9814C430.493 12.2247 430.559 12.4901 430.559 12.7666C430.559 14.0605 429.42 14.8235 428.093 14.8235C427.916 14.8235 427.739 14.8125 427.573 14.7903C427.407 14.9009 427.308 15.0115 427.308 15.1111C427.308 15.3101 427.507 15.3654 428.513 15.5092L429.243 15.5866C430.537 15.7635 431.333 16.1506 431.333 17.0685ZM428.082 16.6261C427.662 16.5708 427.451 16.5487 427.142 16.4823C426.644 16.792 426.423 17.0795 426.423 17.4002C426.423 17.8536 427.02 18.1743 428.203 18.1743C429.331 18.1743 429.984 17.8205 429.984 17.3671C429.984 17.0353 429.707 16.8473 428.889 16.7256L428.082 16.6261ZM434.267 8.96235C434.267 9.44893 433.891 9.80282 433.404 9.80282C432.918 9.80282 432.519 9.44893 432.519 8.96235C432.519 8.47576 432.918 8.12187 433.404 8.12187C433.891 8.12187 434.267 8.47576 434.267 8.96235ZM434.123 16.792H432.674V10.8202H434.123V16.792ZM441.187 16.792H439.738V12.8661C439.738 12.3353 439.495 11.9703 438.898 11.9703C438.378 11.9703 437.858 12.28 437.372 12.7445V16.792H435.923V10.8202H437.14L437.283 11.6607C437.881 11.1299 438.555 10.6875 439.396 10.6875C440.568 10.6875 441.187 11.3732 441.187 12.4901V16.792ZM446.295 12.7666C446.295 12.1252 445.831 11.6386 445.134 11.6386C444.426 11.6386 444.006 12.1473 444.006 12.8108C444.006 13.4412 444.437 13.9167 445.134 13.9167C445.853 13.9167 446.295 13.4191 446.295 12.7666ZM448.407 17.0685C448.407 18.3402 446.959 19.048 445.178 19.048C443.497 19.048 442.225 18.5503 442.225 17.5551C442.225 16.98 442.624 16.5487 443.42 16.1285C443.176 15.9515 443.066 15.7193 443.066 15.4871C443.066 15.1663 443.331 14.8346 443.829 14.5581C443.099 14.2263 442.646 13.596 442.646 12.7998C442.646 11.5059 443.763 10.6986 445.123 10.6986C445.82 10.6986 446.417 10.8976 446.859 11.2405L448.396 10.7318L448.595 11.904L447.456 11.9814C447.567 12.2247 447.633 12.4901 447.633 12.7666C447.633 14.0605 446.494 14.8235 445.167 14.8235C444.99 14.8235 444.813 14.8125 444.647 14.7903C444.481 14.9009 444.382 15.0115 444.382 15.1111C444.382 15.3101 444.581 15.3654 445.587 15.5092L446.317 15.5866C447.611 15.7635 448.407 16.1506 448.407 17.0685ZM445.156 16.6261C444.736 16.5708 444.526 16.5487 444.216 16.4823C443.718 16.792 443.497 17.0795 443.497 17.4002C443.497 17.8536 444.094 18.1743 445.278 18.1743C446.406 18.1743 447.058 17.8205 447.058 17.3671C447.058 17.0353 446.782 16.8473 445.963 16.7256L445.156 16.6261Z" fill="#606B85"/> <g filter="url(#filter0_d_668_278429)"> <path d="M394.393 46.1802C394.393 35.2891 403.222 26.4602 414.113 26.4602L424.223 26.4602C435.114 26.4602 443.943 35.2892 443.943 46.1802V56.2902C443.943 67.1813 435.114 76.0102 424.223 76.0102H414.113C403.222 76.0102 394.393 67.1813 394.393 56.2902V46.1802Z" fill="#FCFEFF" stroke="#E1E3EA"/> <g clip-path="url(#clip1_668_278429)"> <path d="M411.539 64.3867C411.293 64.3917 411.049 64.341 410.825 64.2384C410.545 64.1065 410.308 63.8964 410.143 63.6334C409.979 63.3703 409.894 63.0654 409.898 62.7552V58.7414H406.654C406.039 58.7414 405.45 58.4972 405.015 58.0626C404.581 57.628 404.336 57.0385 404.336 56.4239V42.5191C404.336 41.9045 404.581 41.315 405.015 40.8804C405.45 40.4458 406.039 40.2017 406.654 40.2017H431.682C432.297 40.2017 432.887 40.4458 433.321 40.8804C433.756 41.315 434 41.9045 434 42.5191V56.4239C434 57.0385 433.756 57.628 433.321 58.0626C432.887 58.4972 432.297 58.7414 431.682 58.7414H418.593L412.596 63.9881C412.302 64.2425 411.928 64.3839 411.539 64.3867ZM406.654 42.0556C406.531 42.0556 406.413 42.1045 406.326 42.1914C406.239 42.2783 406.19 42.3962 406.19 42.5191V56.4239C406.19 56.5468 406.239 56.6647 406.326 56.7516C406.413 56.8386 406.531 56.8874 406.654 56.8874H410.825C410.947 56.8867 411.068 56.9101 411.181 56.9562C411.294 57.0023 411.397 57.0703 411.483 57.1562C411.569 57.2428 411.637 57.3456 411.683 57.4585C411.73 57.5714 411.753 57.6924 411.752 57.8144V62.2361L417.62 57.1099C417.793 56.9621 418.014 56.8829 418.241 56.8874H431.682C431.805 56.8874 431.923 56.8386 432.01 56.7516C432.097 56.6647 432.146 56.5468 432.146 56.4239V42.5191C432.146 42.3962 432.097 42.2783 432.01 42.1914C431.923 42.1045 431.805 42.0556 431.682 42.0556H406.654Z" fill="#121C2D"/> </g> </g> <path d="M393.328 95.7837L396.501 87.7329H398.105L401.212 95.5846L399.697 95.8611L398.879 93.7268H395.606L394.854 95.7837H393.328ZM397.242 89.3696L396.059 92.4882H398.426L397.242 89.3696ZM407.665 95.7837H406.216V91.8578C406.216 91.327 405.973 90.962 405.376 90.962C404.856 90.962 404.336 91.2717 403.85 91.7362V95.7837H402.401V89.8119H403.618L403.761 90.6524C404.359 90.1216 405.033 89.6792 405.874 89.6792C407.046 89.6792 407.665 90.3649 407.665 91.4818V95.7837ZM412.817 94.1359V92.7978C410.904 93.0079 410.451 93.5277 410.451 94.1028C410.451 94.534 410.76 94.8105 411.269 94.8105C411.822 94.8105 412.353 94.5562 412.817 94.1359ZM414.255 95.7837H413.038L412.906 95.0096C412.386 95.5072 411.733 95.9053 410.805 95.9053C409.732 95.9053 409.013 95.286 409.013 94.2465C409.013 92.7978 410.252 92.1785 412.817 91.9352V91.7472C412.817 91.0947 412.408 90.8515 411.711 90.8515C410.981 90.8515 410.285 91.0505 409.61 91.327L409.433 90.1769C410.163 89.8893 410.904 89.6903 411.888 89.6903C413.481 89.6903 414.255 90.2653 414.255 91.6809V95.7837ZM417.481 95.7837H416.032V87.0693L417.481 86.8371V95.7837ZM424.633 89.8119L422.2 96.1929C421.681 97.6195 420.973 98.0397 419.889 98.0397C419.591 98.0397 419.436 98.0065 419.303 97.9733L419.104 96.7458C419.303 96.8011 419.513 96.8453 419.768 96.8453C420.265 96.8453 420.619 96.6352 420.862 96.0823L420.984 95.8058L418.706 89.9225L420.21 89.7235L421.714 94.0143L423.163 89.8119H424.633ZM429.034 95.7837C428.802 95.839 428.514 95.8832 428.072 95.8832C426.878 95.8832 426.081 95.463 426.081 94.1138V90.9952H425.186V89.8119H426.081V87.9098L427.508 87.6886V89.8119H428.802L428.99 90.9952H427.508V93.8705C427.508 94.3571 427.74 94.6225 428.337 94.6225C428.525 94.6225 428.713 94.6115 428.857 94.5783L429.034 95.7837ZM432.01 87.954C432.01 88.4406 431.634 88.7945 431.147 88.7945C430.66 88.7945 430.262 88.4406 430.262 87.954C430.262 87.4675 430.66 87.1136 431.147 87.1136C431.634 87.1136 432.01 87.4675 432.01 87.954ZM431.866 95.7837H430.417V89.8119H431.866V95.7837ZM438.355 95.3303C437.758 95.7173 437.116 95.9053 436.276 95.9053C434.562 95.9053 433.334 94.7773 433.334 92.8199C433.334 90.7519 434.672 89.6903 436.364 89.6903C437.194 89.6903 437.835 89.9225 438.289 90.199L438.09 91.5039C437.57 91.15 437.061 90.9399 436.431 90.9399C435.469 90.9399 434.794 91.5813 434.794 92.7867C434.794 94.0475 435.524 94.6557 436.475 94.6557C437.028 94.6557 437.581 94.5009 438.156 94.0806L438.355 95.3303ZM444.281 94.0364C444.281 95.2086 443.407 95.9053 441.793 95.9053C440.897 95.9053 439.979 95.6289 439.393 95.3303L439.581 94.1138C440.233 94.523 441.063 94.8105 441.848 94.8105C442.545 94.8105 442.943 94.5672 442.943 94.1691C442.943 93.7268 442.655 93.5609 441.616 93.3176C440.123 92.9526 439.503 92.5324 439.503 91.4376C439.503 90.4202 440.344 89.6903 441.771 89.6903C442.567 89.6903 443.308 89.8451 443.916 90.1105L443.717 91.3159C443.109 90.9952 442.39 90.7851 441.759 90.7851C441.14 90.7851 440.842 91.0063 440.842 91.338C440.842 91.6698 441.096 91.8578 442.047 92.09C443.628 92.4882 444.281 92.9084 444.281 94.0364Z" fill="#606B85"/> <g filter="url(#filter1_d_668_278429)"> <path d="M394.393 125.172C394.393 114.281 403.222 105.452 414.113 105.452H424.223C435.114 105.452 443.943 114.281 443.943 125.172V135.282C443.943 146.173 435.114 155.002 424.223 155.002H414.113C403.222 155.002 394.393 146.173 394.393 135.282V125.172Z" fill="#FCFEFF" stroke="#E1E3EA"/> <path d="M425.132 119.498V140.831C425.132 143.218 426.783 144.548 428.534 144.548C430.154 144.548 431.937 143.417 431.937 140.831V119.659C431.937 117.471 430.316 116.104 428.534 116.104C426.752 116.104 425.132 117.612 425.132 119.498Z" fill="#F9AB00"/> <path d="M416.22 130.326V140.831C416.22 143.218 417.871 144.548 419.623 144.548C421.243 144.548 423.025 143.417 423.025 140.831V130.488C423.025 128.3 421.405 126.932 419.623 126.932C417.84 126.932 416.22 128.44 416.22 130.326Z" fill="#E37400"/> <path d="M410.712 144.548C412.591 144.548 414.114 143.029 414.114 141.154C414.114 139.28 412.591 137.76 410.712 137.76C408.833 137.76 407.31 139.28 407.31 141.154C407.31 143.029 408.833 144.548 410.712 144.548Z" fill="#E37400"/> </g> <path d="M399.964 166.757L397.542 174.797H396.115L394.18 168.914L392.245 174.797H390.84L388.462 166.968L390.055 166.68L391.681 172.453L393.505 166.757H395.031L396.856 172.453L398.437 166.757H399.964ZM403.965 173.127V171.789C402.052 171.999 401.598 172.519 401.598 173.094C401.598 173.525 401.908 173.802 402.417 173.802C402.969 173.802 403.5 173.548 403.965 173.127ZM405.402 174.775H404.186L404.053 174.001C403.533 174.499 402.881 174.897 401.952 174.897C400.879 174.897 400.161 174.277 400.161 173.238C400.161 171.789 401.399 171.17 403.965 170.927V170.739C403.965 170.086 403.556 169.843 402.859 169.843C402.129 169.843 401.432 170.042 400.758 170.318L400.581 169.168C401.311 168.881 402.052 168.682 403.036 168.682C404.628 168.682 405.402 169.257 405.402 170.672V174.775ZM410.785 170.108C409.801 170.164 408.993 170.683 408.551 171.336V174.775H407.102V168.803H408.319L408.518 169.998C408.938 169.312 409.579 168.726 410.553 168.671L410.785 170.108ZM416.856 174.156C416.193 174.62 415.375 174.897 414.379 174.897C412.643 174.897 411.36 173.946 411.36 171.789C411.36 169.854 412.566 168.671 414.18 168.671C416.027 168.671 416.868 170.031 416.868 171.712C416.868 171.833 416.868 171.977 416.856 172.066H412.798C412.875 173.249 413.517 173.769 414.523 173.769C415.33 173.769 416.005 173.481 416.68 173.017L416.856 174.156ZM414.147 169.688C413.484 169.688 412.953 170.164 412.831 171.137H415.452C415.341 170.208 414.932 169.688 414.147 169.688ZM423.533 174.775H422.084V170.849C422.084 170.318 421.841 169.953 421.244 169.953C420.724 169.953 420.204 170.263 419.718 170.728V174.775H418.269V166.061L419.718 165.829V169.566C420.249 169.102 420.901 168.671 421.741 168.671C422.914 168.671 423.533 169.356 423.533 170.473V174.775ZM430.753 171.789C430.753 173.736 429.503 174.897 427.811 174.897C426.131 174.897 424.903 173.736 424.903 171.789C424.903 169.843 426.142 168.671 427.811 168.671C429.503 168.671 430.753 169.843 430.753 171.789ZM429.327 171.789C429.327 170.683 428.785 169.854 427.811 169.854C426.849 169.854 426.33 170.661 426.33 171.789C426.33 172.895 426.86 173.713 427.811 173.713C428.807 173.713 429.327 172.917 429.327 171.789ZM437.377 174.775H436.161L436.017 173.935C435.431 174.465 434.745 174.897 433.916 174.897C432.733 174.897 432.113 174.222 432.113 173.105V168.803H433.562V172.718C433.562 173.249 433.816 173.614 434.414 173.614C434.933 173.614 435.453 173.304 435.929 172.84V168.803H437.377V174.775ZM443.669 173.028C443.669 174.2 442.795 174.897 441.18 174.897C440.285 174.897 439.367 174.62 438.781 174.322L438.969 173.105C439.621 173.514 440.45 173.802 441.236 173.802C441.932 173.802 442.33 173.559 442.33 173.161C442.33 172.718 442.043 172.552 441.003 172.309C439.51 171.944 438.891 171.524 438.891 170.429C438.891 169.412 439.732 168.682 441.158 168.682C441.954 168.682 442.695 168.837 443.304 169.102L443.105 170.307C442.496 169.987 441.777 169.777 441.147 169.777C440.528 169.777 440.229 169.998 440.229 170.329C440.229 170.661 440.484 170.849 441.435 171.081C443.016 171.48 443.669 171.9 443.669 173.028ZM450.206 174.156C449.542 174.62 448.724 174.897 447.729 174.897C445.992 174.897 444.71 173.946 444.71 171.789C444.71 169.854 445.915 168.671 447.53 168.671C449.376 168.671 450.217 170.031 450.217 171.712C450.217 171.833 450.217 171.977 450.206 172.066H446.147C446.225 173.249 446.866 173.769 447.872 173.769C448.68 173.769 449.354 173.481 450.029 173.017L450.206 174.156ZM447.496 169.688C446.833 169.688 446.302 170.164 446.18 171.137H448.801C448.691 170.208 448.282 169.688 447.496 169.688Z" fill="#606B85"/> <g filter="url(#filter2_d_668_278429)"> <path d="M394.393 204.163C394.393 193.272 403.222 184.443 414.113 184.443H424.223C435.114 184.443 443.943 193.272 443.943 204.163V214.273C443.943 225.164 435.114 233.993 424.223 233.993H414.113C403.222 233.993 394.393 225.164 394.393 214.273V204.163Z" fill="#FCFEFF" stroke="#E1E3EA"/> <g clip-path="url(#clip2_668_278429)"> <path d="M403.614 202.414V203.307H409.661V202.414H403.614ZM410.532 202.414V203.307H419.168C418.595 202.755 417.874 202.44 417.102 202.414H410.532ZM420.835 202.414V203.307H426.061L425.762 202.414H420.835ZM429.794 202.414L429.495 203.307H434.672V202.414H429.794ZM403.614 204.147V205.04H409.661V204.147H403.614ZM410.532 204.147V205.04H420.163C420.163 205.04 420.064 204.357 419.864 204.147H410.532ZM420.835 204.147V205.04H426.609L426.335 204.147H420.835ZM429.197 204.147L428.923 205.04H434.697V204.174L429.197 204.147ZM405.356 205.907V206.8H407.969V205.907H405.356ZM412.274 205.907V206.8H414.887V205.907H412.274ZM417.45 205.907V206.8H420.064C420.163 206.511 420.213 206.196 420.238 205.907H417.45ZM422.577 205.907V206.8H427.231L426.932 205.907H422.577ZM428.624 205.907L428.326 206.8H432.979V205.907H428.624ZM405.356 207.667V208.56H407.969V207.667H405.356ZM412.274 207.667V208.56H418.969C419.267 208.324 419.516 208.009 419.715 207.667H412.274ZM422.577 207.667V208.56H425.19V208.061L425.364 208.56H430.167L430.341 208.061V208.56H432.979V207.667H428.052L427.803 208.429L427.529 207.667H422.577ZM405.356 209.401V210.294H407.969V209.401H405.356ZM412.274 209.401V210.294H419.715C419.516 209.953 419.267 209.637 418.969 209.401H412.274ZM422.577 209.401V210.294H425.19V209.401H422.577ZM425.688 209.401L426.011 210.294H429.62L429.918 209.401H425.688ZM430.366 209.401V210.294H432.979V209.401H430.366ZM405.356 211.161V212.054H407.969V211.161H405.356ZM412.274 211.161V212.054H414.887V211.161H412.274ZM417.45 211.161V212.054H420.238C420.213 211.739 420.163 211.45 420.064 211.161H417.45ZM422.577 211.161V212.054H425.19V211.161H422.577ZM426.285 211.161L426.584 212.054H428.998L429.296 211.161H426.285ZM430.366 211.161V212.054H432.979V211.161H430.366ZM403.664 212.895V213.788H409.711V212.895H403.664ZM410.532 212.895V213.788H419.84C420.039 213.578 420.138 212.895 420.138 212.895H410.532ZM420.885 212.895V213.788H425.19V212.895H420.885ZM426.882 212.895L427.206 213.788H428.425L428.724 212.895H426.882ZM430.366 212.895V213.788H434.721V212.895H430.366ZM403.664 214.655V215.548H409.711V214.655H403.664ZM410.532 214.655V215.548H417.102C417.874 215.522 418.595 215.206 419.168 214.655H410.532ZM420.885 214.655V215.548H425.19V214.655H420.885ZM427.48 214.655L427.778 215.548H427.828L428.127 214.655H427.48ZM430.366 214.655V215.548H434.721V214.655H430.366Z" fill="#1F70C1"/> </g> </g> <path d="M384.902 251.489C384.902 253.037 383.707 253.855 382.104 253.855C381.097 253.855 380.235 253.634 379.527 253.302L379.748 251.909C380.434 252.307 381.296 252.628 382.137 252.628C382.9 252.628 383.442 252.274 383.442 251.644C383.442 251.035 383.132 250.781 381.905 250.294C380.29 249.642 379.638 249.133 379.638 247.895C379.638 246.49 380.766 245.661 382.314 245.661C383.243 245.661 383.895 245.849 384.47 246.158L384.249 247.519C383.652 247.143 382.955 246.899 382.303 246.899C381.473 246.899 381.097 247.275 381.097 247.762C381.097 248.282 381.385 248.536 382.557 249C384.271 249.675 384.902 250.25 384.902 251.489ZM389.755 252.119V250.781C387.841 250.991 387.388 251.511 387.388 252.086C387.388 252.517 387.698 252.794 388.206 252.794C388.759 252.794 389.29 252.539 389.755 252.119ZM391.192 253.767H389.976L389.843 252.993C389.323 253.49 388.671 253.888 387.742 253.888C386.669 253.888 385.95 253.269 385.95 252.23C385.95 250.781 387.189 250.162 389.755 249.918V249.73C389.755 249.078 389.345 248.835 388.649 248.835C387.919 248.835 387.222 249.034 386.548 249.31L386.371 248.16C387.1 247.872 387.841 247.673 388.826 247.673C390.418 247.673 391.192 248.248 391.192 249.664V253.767ZM394.418 253.767H392.969V245.052L394.418 244.82V253.767ZM401.383 253.148C400.719 253.612 399.901 253.888 398.906 253.888C397.169 253.888 395.887 252.937 395.887 250.781C395.887 248.846 397.092 247.662 398.707 247.662C400.553 247.662 401.394 249.023 401.394 250.704C401.394 250.825 401.394 250.969 401.383 251.057H397.324C397.402 252.241 398.043 252.76 399.049 252.76C399.857 252.76 400.531 252.473 401.206 252.008L401.383 253.148ZM398.673 248.68C398.01 248.68 397.479 249.155 397.357 250.128H399.978C399.868 249.2 399.459 248.68 398.673 248.68ZM407.352 252.02C407.352 253.192 406.478 253.888 404.863 253.888C403.968 253.888 403.05 253.612 402.464 253.313L402.652 252.097C403.304 252.506 404.133 252.794 404.919 252.794C405.615 252.794 406.013 252.55 406.013 252.152C406.013 251.71 405.726 251.544 404.686 251.301C403.193 250.936 402.574 250.516 402.574 249.421C402.574 248.403 403.415 247.673 404.841 247.673C405.637 247.673 406.378 247.828 406.987 248.094L406.788 249.299C406.179 248.978 405.46 248.768 404.83 248.768C404.211 248.768 403.912 248.989 403.912 249.321C403.912 249.653 404.167 249.841 405.118 250.073C406.699 250.471 407.352 250.892 407.352 252.02ZM414.574 245.373L408.68 255.337L407.43 255.072L413.325 245.108L414.574 245.373ZM420.821 251.489C420.821 253.037 419.627 253.855 418.023 253.855C417.017 253.855 416.154 253.634 415.446 253.302L415.668 251.909C416.353 252.307 417.216 252.628 418.056 252.628C418.819 252.628 419.361 252.274 419.361 251.644C419.361 251.035 419.052 250.781 417.824 250.294C416.21 249.642 415.557 249.133 415.557 247.895C415.557 246.49 416.685 245.661 418.233 245.661C419.162 245.661 419.815 245.849 420.39 246.158L420.169 247.519C419.571 247.143 418.875 246.899 418.222 246.899C417.393 246.899 417.017 247.275 417.017 247.762C417.017 248.282 417.304 248.536 418.477 249C420.191 249.675 420.821 250.25 420.821 251.489ZM427.455 253.767H426.238L426.094 252.926C425.508 253.457 424.823 253.888 423.993 253.888C422.81 253.888 422.191 253.214 422.191 252.097V247.795H423.639V251.71C423.639 252.241 423.894 252.606 424.491 252.606C425.011 252.606 425.53 252.296 426.006 251.832V247.795H427.455V253.767ZM433.403 250.692C433.403 249.531 432.872 248.945 432.12 248.945C431.534 248.945 431.07 249.288 430.638 249.808V252.407C431.036 252.584 431.357 252.661 431.91 252.661C432.762 252.661 433.403 252.031 433.403 250.692ZM434.863 250.615C434.863 252.838 433.569 253.833 432.109 253.833C431.523 253.833 431.025 253.734 430.638 253.601V255.857L429.19 256.067V247.795H430.406L430.55 248.613C431.003 248.127 431.611 247.662 432.485 247.662C433.801 247.662 434.863 248.602 434.863 250.615ZM440.477 250.692C440.477 249.531 439.946 248.945 439.194 248.945C438.608 248.945 438.143 249.288 437.712 249.808V252.407C438.11 252.584 438.431 252.661 438.984 252.661C439.835 252.661 440.477 252.031 440.477 250.692ZM441.937 250.615C441.937 252.838 440.643 253.833 439.183 253.833C438.597 253.833 438.099 253.734 437.712 253.601V255.857L436.263 256.067V247.795H437.48L437.624 248.613C438.077 248.127 438.685 247.662 439.559 247.662C440.875 247.662 441.937 248.602 441.937 250.615ZM448.855 250.781C448.855 252.727 447.606 253.888 445.914 253.888C444.233 253.888 443.005 252.727 443.005 250.781C443.005 248.835 444.244 247.662 445.914 247.662C447.606 247.662 448.855 248.835 448.855 250.781ZM447.429 250.781C447.429 249.675 446.887 248.846 445.914 248.846C444.952 248.846 444.432 249.653 444.432 250.781C444.432 251.887 444.963 252.705 445.914 252.705C446.909 252.705 447.429 251.909 447.429 250.781ZM453.931 249.1C452.947 249.155 452.14 249.675 451.698 250.328V253.767H450.249V247.795H451.465L451.664 248.989C452.085 248.304 452.726 247.718 453.699 247.662L453.931 249.1ZM458.436 253.767C458.204 253.822 457.916 253.866 457.474 253.866C456.28 253.866 455.483 253.446 455.483 252.097V248.978H454.588V247.795H455.483V245.893L456.91 245.672V247.795H458.204L458.392 248.978H456.91V251.854C456.91 252.34 457.142 252.606 457.739 252.606C457.927 252.606 458.115 252.595 458.259 252.561L458.436 253.767Z" fill="#606B85"/> <g filter="url(#filter3_d_668_278429)"> <path d="M394.393 283.155C394.393 272.264 403.222 263.435 414.113 263.435H424.223C435.114 263.435 443.943 272.264 443.943 283.155V293.265C443.943 304.156 435.114 312.985 424.223 312.985H414.113C403.222 312.985 394.393 304.156 394.393 293.265V283.155Z" fill="#FCFEFF" stroke="#E1E3EA"/> <path d="M416.658 280.43C417.623 279.431 418.967 278.799 420.449 278.799C422.424 278.799 424.136 279.901 425.055 281.533C425.847 281.176 426.732 280.981 427.662 280.981C431.223 280.981 434.095 283.887 434.095 287.471C434.095 291.055 431.211 293.961 427.662 293.961C427.226 293.961 426.801 293.915 426.399 293.835C425.595 295.27 424.055 296.247 422.286 296.247C421.551 296.247 420.851 296.074 420.23 295.776C419.415 297.694 417.508 299.049 415.291 299.049C412.982 299.049 411.007 297.591 410.249 295.535C409.916 295.603 409.571 295.638 409.226 295.638C406.47 295.638 404.241 293.387 404.241 290.595C404.241 288.735 405.241 287.103 406.734 286.231C406.424 285.53 406.251 284.749 406.251 283.922C406.24 280.74 408.847 278.144 412.041 278.144C413.924 278.144 415.601 279.04 416.658 280.43Z" fill="#00A1E0"/> <path d="M408.56 288.987L408.686 288.654C408.709 288.597 408.744 288.62 408.767 288.631C408.801 288.654 408.824 288.666 408.87 288.7C409.226 288.93 409.559 288.93 409.663 288.93C409.927 288.93 410.099 288.792 410.099 288.597V288.585C410.099 288.379 409.847 288.298 409.548 288.206L409.479 288.183C409.077 288.068 408.641 287.896 408.641 287.391V287.379C408.641 286.897 409.031 286.552 409.594 286.552H409.651C409.984 286.552 410.295 286.644 410.524 286.793C410.547 286.805 410.57 286.828 410.559 286.862C410.547 286.897 410.444 287.161 410.432 287.195C410.409 287.253 410.352 287.218 410.352 287.218C410.145 287.104 409.835 287.023 409.571 287.023C409.33 287.023 409.18 287.149 409.18 287.322V287.333C409.18 287.529 409.445 287.62 409.743 287.712L409.801 287.724C410.203 287.85 410.628 288.022 410.628 288.516V288.528C410.628 289.056 410.249 289.378 409.64 289.378C409.341 289.378 409.054 289.332 408.744 289.171C408.686 289.137 408.629 289.114 408.572 289.068C408.56 289.045 408.537 289.033 408.56 288.987ZM417.52 288.987L417.646 288.654C417.669 288.597 417.715 288.62 417.726 288.631C417.761 288.654 417.784 288.666 417.83 288.7C418.186 288.93 418.519 288.93 418.622 288.93C418.886 288.93 419.059 288.792 419.059 288.597V288.585C419.059 288.379 418.806 288.298 418.507 288.206L418.438 288.183C418.036 288.068 417.6 287.896 417.6 287.391V287.379C417.6 286.897 417.991 286.552 418.553 286.552H418.611C418.944 286.552 419.254 286.644 419.484 286.793C419.507 286.805 419.53 286.828 419.518 286.862C419.507 286.897 419.403 287.161 419.392 287.195C419.369 287.253 419.311 287.218 419.311 287.218C419.105 287.104 418.795 287.023 418.53 287.023C418.289 287.023 418.14 287.149 418.14 287.322V287.333C418.14 287.529 418.404 287.62 418.703 287.712L418.76 287.724C419.162 287.85 419.587 288.022 419.587 288.516V288.528C419.587 289.056 419.208 289.378 418.599 289.378C418.301 289.378 418.013 289.332 417.703 289.171C417.646 289.137 417.588 289.114 417.531 289.068C417.531 289.045 417.508 289.033 417.52 288.987ZM424.159 287.414C424.205 287.586 424.239 287.77 424.239 287.965C424.239 288.16 424.216 288.344 424.159 288.516C424.113 288.689 424.032 288.838 423.929 288.964C423.826 289.091 423.688 289.194 423.538 289.263C423.378 289.332 423.194 289.366 422.987 289.366C422.78 289.366 422.597 289.332 422.436 289.263C422.275 289.194 422.149 289.091 422.045 288.964C421.942 288.838 421.861 288.689 421.816 288.516C421.77 288.344 421.735 288.16 421.735 287.965C421.735 287.77 421.758 287.586 421.816 287.414C421.861 287.241 421.942 287.092 422.045 286.966C422.149 286.839 422.286 286.736 422.436 286.667C422.597 286.598 422.78 286.552 422.987 286.552C423.194 286.552 423.378 286.587 423.538 286.667C423.699 286.736 423.826 286.839 423.929 286.966C424.032 287.092 424.113 287.241 424.159 287.414ZM423.642 287.954C423.642 287.655 423.584 287.425 423.481 287.264C423.378 287.104 423.205 287.023 422.987 287.023C422.757 287.023 422.597 287.104 422.493 287.264C422.39 287.425 422.332 287.655 422.332 287.954C422.332 288.252 422.39 288.482 422.493 288.654C422.597 288.815 422.757 288.895 422.987 288.895C423.217 288.895 423.378 288.815 423.481 288.654C423.596 288.493 423.642 288.252 423.642 287.954ZM428.363 288.815L428.489 289.16C428.501 289.206 428.466 289.217 428.466 289.217C428.271 289.297 428.007 289.343 427.743 289.343C427.295 289.343 426.961 289.217 426.732 288.964C426.502 288.712 426.387 288.367 426.387 287.942C426.387 287.747 426.41 287.563 426.468 287.391C426.525 287.218 426.605 287.069 426.72 286.943C426.835 286.816 426.973 286.713 427.134 286.644C427.295 286.575 427.49 286.529 427.708 286.529C427.857 286.529 427.984 286.541 428.087 286.552C428.202 286.575 428.363 286.61 428.432 286.644C428.443 286.644 428.478 286.667 428.466 286.701C428.42 286.839 428.386 286.931 428.34 287.046C428.317 287.104 428.282 287.081 428.282 287.081C428.11 287.023 427.949 287 427.743 287C427.49 287 427.295 287.081 427.18 287.253C427.053 287.414 426.984 287.632 426.984 287.931C426.984 288.252 427.065 288.482 427.203 288.631C427.341 288.781 427.536 288.849 427.788 288.849C427.892 288.849 427.984 288.838 428.064 288.826C428.145 288.815 428.225 288.792 428.305 288.758C428.294 288.781 428.34 288.769 428.363 288.815ZM430.97 287.31C431.085 287.701 431.028 288.034 431.016 288.057C431.016 288.103 430.97 288.103 430.97 288.103H429.236C429.247 288.367 429.305 288.551 429.443 288.677C429.569 288.804 429.764 288.884 430.04 288.884C430.453 288.884 430.626 288.804 430.752 288.758C430.752 288.758 430.798 288.746 430.821 288.792L430.936 289.114C430.959 289.171 430.936 289.183 430.924 289.194C430.821 289.251 430.557 289.366 430.051 289.366C429.81 289.366 429.592 289.332 429.42 289.263C429.247 289.194 429.098 289.102 428.983 288.976C428.868 288.849 428.788 288.7 428.73 288.539C428.673 288.367 428.65 288.183 428.65 287.988C428.65 287.793 428.673 287.609 428.73 287.437C428.776 287.264 428.857 287.115 428.96 286.989C429.063 286.862 429.201 286.759 429.362 286.69C429.523 286.61 429.718 286.575 429.936 286.575C430.12 286.575 430.293 286.61 430.43 286.679C430.534 286.724 430.649 286.805 430.763 286.931C430.821 286.977 430.924 287.149 430.97 287.31ZM429.247 287.678H430.476C430.465 287.517 430.43 287.379 430.361 287.264C430.258 287.104 430.109 287.012 429.879 287.012C429.649 287.012 429.488 287.104 429.385 287.264C429.316 287.368 429.282 287.506 429.247 287.678ZM417.106 287.31C417.221 287.701 417.163 288.034 417.163 288.057C417.163 288.103 417.118 288.103 417.118 288.103H415.383C415.395 288.367 415.452 288.551 415.59 288.677C415.716 288.804 415.911 288.884 416.187 288.884C416.601 288.884 416.773 288.804 416.899 288.758C416.899 288.758 416.945 288.746 416.968 288.792L417.083 289.114C417.106 289.171 417.083 289.183 417.072 289.194C416.968 289.251 416.704 289.366 416.199 289.366C415.957 289.366 415.739 289.332 415.567 289.263C415.395 289.194 415.245 289.102 415.13 288.976C415.016 288.849 414.935 288.7 414.878 288.539C414.82 288.367 414.797 288.183 414.797 287.988C414.797 287.793 414.82 287.609 414.878 287.437C414.924 287.264 415.004 287.115 415.107 286.989C415.211 286.862 415.349 286.759 415.509 286.69C415.67 286.61 415.866 286.575 416.084 286.575C416.268 286.575 416.44 286.61 416.578 286.679C416.681 286.724 416.796 286.805 416.911 286.931C416.957 286.977 417.072 287.149 417.106 287.31ZM415.383 287.678H416.624C416.612 287.517 416.578 287.379 416.509 287.264C416.405 287.104 416.256 287.012 416.026 287.012C415.797 287.012 415.636 287.104 415.532 287.264C415.452 287.368 415.418 287.506 415.383 287.678ZM412.339 287.586C412.339 287.586 412.477 287.597 412.626 287.62V287.551C412.626 287.322 412.58 287.207 412.489 287.138C412.397 287.069 412.247 287.023 412.063 287.023C412.063 287.023 411.639 287.023 411.305 287.195C411.294 287.207 411.282 287.207 411.282 287.207C411.282 287.207 411.236 287.218 411.225 287.184L411.099 286.851C411.076 286.805 411.11 286.782 411.11 286.782C411.271 286.656 411.639 286.587 411.639 286.587C411.765 286.564 411.972 286.541 412.098 286.541C412.443 286.541 412.707 286.621 412.891 286.782C413.074 286.943 413.166 287.195 413.166 287.551V289.137C413.166 289.137 413.166 289.183 413.132 289.194C413.132 289.194 413.063 289.217 413.005 289.229C412.948 289.24 412.741 289.286 412.569 289.309C412.397 289.343 412.224 289.355 412.041 289.355C411.868 289.355 411.719 289.343 411.581 289.309C411.443 289.274 411.328 289.229 411.225 289.16C411.133 289.091 411.053 288.999 410.995 288.884C410.938 288.781 410.915 288.643 410.915 288.493C410.915 288.344 410.949 288.206 411.007 288.091C411.064 287.976 411.156 287.885 411.259 287.804C411.363 287.724 411.489 287.678 411.616 287.632C411.753 287.597 411.891 287.574 412.041 287.574C412.178 287.586 412.27 287.586 412.339 287.586ZM411.65 288.804C411.65 288.804 411.811 288.93 412.155 288.907C412.408 288.895 412.626 288.849 412.626 288.849V288.057C412.626 288.057 412.408 288.022 412.155 288.022C411.799 288.022 411.65 288.149 411.65 288.149C411.547 288.218 411.501 288.333 411.501 288.482C411.501 288.574 411.524 288.654 411.558 288.712C411.57 288.735 411.581 288.758 411.65 288.804ZM426.295 286.701C426.284 286.747 426.192 286.989 426.169 287.069C426.157 287.104 426.134 287.115 426.1 287.115C426.1 287.115 425.997 287.092 425.905 287.092C425.847 287.092 425.755 287.104 425.675 287.126C425.595 287.149 425.526 287.195 425.457 287.253C425.388 287.31 425.342 287.402 425.307 287.506C425.273 287.609 425.25 287.781 425.25 287.965V289.251C425.25 289.286 425.227 289.309 425.193 289.309H424.733C424.699 289.309 424.676 289.286 424.676 289.251V286.667C424.676 286.633 424.699 286.61 424.722 286.61H425.17C425.204 286.61 425.216 286.633 425.216 286.667V286.874C425.284 286.782 425.399 286.701 425.503 286.656C425.606 286.61 425.732 286.575 425.951 286.587C426.066 286.598 426.215 286.621 426.238 286.633C426.284 286.644 426.307 286.656 426.295 286.701ZM422.034 285.507C422.045 285.507 422.08 285.53 422.068 285.564L421.93 285.932C421.919 285.955 421.907 285.978 421.85 285.955C421.838 285.955 421.816 285.943 421.758 285.932C421.724 285.92 421.666 285.92 421.62 285.92C421.551 285.92 421.494 285.932 421.436 285.943C421.379 285.955 421.333 285.989 421.287 286.035C421.241 286.081 421.195 286.139 421.161 286.219C421.092 286.403 421.069 286.598 421.069 286.61H421.62C421.666 286.61 421.678 286.633 421.678 286.667L421.609 287.023C421.597 287.081 421.551 287.069 421.551 287.069H420.977L420.609 289.286C420.563 289.516 420.518 289.711 420.46 289.872C420.403 290.033 420.334 290.147 420.23 290.262C420.138 290.366 420.035 290.446 419.909 290.481C419.794 290.526 419.645 290.549 419.484 290.549C419.403 290.549 419.323 290.549 419.231 290.526C419.162 290.515 419.128 290.504 419.07 290.481C419.047 290.469 419.036 290.446 419.047 290.412C419.059 290.377 419.162 290.101 419.174 290.056C419.197 290.01 419.231 290.033 419.231 290.033C419.266 290.044 419.288 290.056 419.323 290.067C419.369 290.079 419.415 290.079 419.461 290.079C419.541 290.079 419.61 290.067 419.668 290.044C419.736 290.021 419.782 289.975 419.828 289.918C419.874 289.86 419.909 289.78 419.955 289.676C419.989 289.573 420.024 289.424 420.058 289.251L420.449 287.081H420.07C420.024 287.081 420.012 287.058 420.012 287.023L420.081 286.667C420.093 286.61 420.138 286.621 420.138 286.621H420.529L420.552 286.506C420.609 286.162 420.724 285.897 420.897 285.725C421.069 285.553 421.322 285.461 421.632 285.461C421.724 285.461 421.804 285.472 421.873 285.484C421.919 285.472 421.976 285.484 422.034 285.507ZM414.292 289.24C414.292 289.274 414.269 289.297 414.246 289.297H413.786C413.752 289.297 413.741 289.274 413.741 289.24V285.553C413.741 285.53 413.763 285.495 413.786 285.495H414.246C414.28 285.495 414.292 285.518 414.292 285.553V289.24Z" fill="white"/> </g> <path d="M387.634 332.758L390.808 324.707H392.411L395.519 332.559L394.004 332.836L393.185 330.701H389.912L389.16 332.758H387.634ZM391.549 326.344L390.365 329.463H392.732L391.549 326.344ZM400.568 330.746V328.147C400.17 327.97 399.849 327.881 399.296 327.881C398.434 327.881 397.803 328.523 397.803 329.85C397.803 331.033 398.345 331.597 399.075 331.597C399.672 331.597 400.137 331.265 400.568 330.746ZM402.017 332.758H400.789L400.657 331.929C400.203 332.438 399.595 332.88 398.721 332.88C397.405 332.88 396.344 331.951 396.344 329.938C396.344 327.715 397.637 326.72 399.097 326.72C399.694 326.72 400.181 326.82 400.568 326.952V324.044L402.017 323.812V332.758ZM408.98 326.787L406.768 332.791H405.342L403.163 326.897L404.678 326.698L406.116 330.989L407.52 326.787H408.98ZM415.112 332.139C414.449 332.603 413.63 332.88 412.635 332.88C410.899 332.88 409.616 331.929 409.616 329.772C409.616 327.837 410.822 326.654 412.436 326.654C414.283 326.654 415.123 328.014 415.123 329.695C415.123 329.817 415.123 329.96 415.112 330.049H411.054C411.131 331.232 411.773 331.752 412.779 331.752C413.586 331.752 414.261 331.464 414.935 331L415.112 332.139ZM412.403 327.671C411.739 327.671 411.209 328.147 411.087 329.12H413.708C413.597 328.191 413.188 327.671 412.403 327.671ZM420.207 328.091C419.223 328.147 418.416 328.667 417.974 329.319V332.758H416.525V326.787H417.741L417.94 327.981C418.361 327.295 419.002 326.709 419.975 326.654L420.207 328.091ZM424.712 332.758C424.48 332.814 424.192 332.858 423.75 332.858C422.556 332.858 421.759 332.438 421.759 331.088V327.97H420.864V326.787H421.759V324.884L423.186 324.663V326.787H424.48L424.668 327.97H423.186V330.845C423.186 331.332 423.418 331.597 424.015 331.597C424.203 331.597 424.391 331.586 424.535 331.553L424.712 332.758ZM427.688 324.929C427.688 325.415 427.312 325.769 426.825 325.769C426.338 325.769 425.94 325.415 425.94 324.929C425.94 324.442 426.338 324.088 426.825 324.088C427.312 324.088 427.688 324.442 427.688 324.929ZM427.544 332.758H426.095V326.787H427.544V332.758ZM433.9 331.011C433.9 332.183 433.027 332.88 431.412 332.88C430.516 332.88 429.598 332.603 429.012 332.305L429.2 331.088C429.853 331.498 430.682 331.785 431.467 331.785C432.164 331.785 432.562 331.542 432.562 331.144C432.562 330.701 432.275 330.535 431.235 330.292C429.742 329.927 429.123 329.507 429.123 328.412C429.123 327.395 429.963 326.665 431.39 326.665C432.186 326.665 432.927 326.82 433.535 327.085L433.336 328.291C432.728 327.97 432.009 327.76 431.379 327.76C430.76 327.76 430.461 327.981 430.461 328.313C430.461 328.644 430.715 328.832 431.666 329.065C433.248 329.463 433.9 329.883 433.9 331.011ZM436.943 324.929C436.943 325.415 436.567 325.769 436.08 325.769C435.594 325.769 435.196 325.415 435.196 324.929C435.196 324.442 435.594 324.088 436.08 324.088C436.567 324.088 436.943 324.442 436.943 324.929ZM436.799 332.758H435.35V326.787H436.799V332.758ZM443.863 332.758H442.415V328.832C442.415 328.302 442.171 327.937 441.574 327.937C441.054 327.937 440.535 328.246 440.048 328.711V332.758H438.599V326.787H439.816L439.96 327.627C440.557 327.096 441.231 326.654 442.072 326.654C443.244 326.654 443.863 327.339 443.863 328.456V332.758ZM448.971 328.733C448.971 328.091 448.507 327.605 447.81 327.605C447.102 327.605 446.682 328.114 446.682 328.777C446.682 329.407 447.113 329.883 447.81 329.883C448.529 329.883 448.971 329.385 448.971 328.733ZM451.083 333.035C451.083 334.307 449.635 335.014 447.854 335.014C446.173 335.014 444.902 334.517 444.902 333.521C444.902 332.946 445.3 332.515 446.096 332.095C445.853 331.918 445.742 331.686 445.742 331.453C445.742 331.133 446.007 330.801 446.505 330.524C445.775 330.193 445.322 329.562 445.322 328.766C445.322 327.472 446.439 326.665 447.799 326.665C448.496 326.665 449.093 326.864 449.535 327.207L451.072 326.698L451.271 327.87L450.132 327.948C450.243 328.191 450.309 328.456 450.309 328.733C450.309 330.027 449.17 330.79 447.843 330.79C447.666 330.79 447.489 330.779 447.323 330.757C447.158 330.867 447.058 330.978 447.058 331.077C447.058 331.276 447.257 331.332 448.263 331.475L448.993 331.553C450.287 331.73 451.083 332.117 451.083 333.035ZM447.832 332.592C447.412 332.537 447.202 332.515 446.892 332.449C446.394 332.758 446.173 333.046 446.173 333.367C446.173 333.82 446.77 334.141 447.954 334.141C449.082 334.141 449.734 333.787 449.734 333.333C449.734 333.002 449.458 332.814 448.639 332.692L447.832 332.592Z" fill="#606B85"/> <g filter="url(#filter4_d_668_278429)"> <path d="M394.393 362.147C394.393 351.255 403.222 342.427 414.113 342.427H424.223C435.114 342.427 443.943 351.255 443.943 362.147V372.257C443.943 383.148 435.114 391.977 424.223 391.977H414.113C403.222 391.977 394.393 383.148 394.393 372.257V362.147Z" fill="#FCFEFF" stroke="#E1E3EA"/> <path d="M414.2 356.196C414.5 355.408 414.914 354.681 415.528 354.093C417.983 351.702 422.042 352.303 423.708 355.307C424.961 357.586 426.289 359.815 427.58 362.068C429.734 365.811 431.914 369.555 434.044 373.311C435.835 376.453 433.894 380.422 430.336 380.96C428.156 381.286 426.114 380.284 424.986 378.331C423.095 375.038 421.19 371.746 419.299 368.466C419.261 368.39 419.211 368.328 419.161 368.265C418.96 368.102 418.873 367.865 418.747 367.652C417.908 366.174 417.044 364.71 416.204 363.245C415.665 362.293 415.102 361.354 414.563 360.403C414.074 359.552 413.849 358.625 413.874 357.649C413.912 357.148 413.974 356.647 414.2 356.196Z" fill="#3C8BD9"/> <path d="M414.2 356.196C414.087 356.647 413.987 357.098 413.961 357.573C413.924 358.625 414.187 359.602 414.713 360.516C416.091 362.882 417.469 365.26 418.835 367.639C418.96 367.852 419.06 368.065 419.186 368.265C418.434 369.567 417.682 370.857 416.918 372.159C415.866 373.974 414.813 375.802 413.749 377.617C413.698 377.617 413.686 377.592 413.673 377.555C413.661 377.455 413.698 377.367 413.723 377.267C414.237 375.389 413.811 373.724 412.521 372.296C411.732 371.433 410.729 370.944 409.577 370.782C408.073 370.569 406.745 370.957 405.555 371.896C405.342 372.059 405.204 372.296 404.954 372.422C404.904 372.422 404.879 372.397 404.866 372.359C405.468 371.32 406.056 370.281 406.658 369.242C409.138 364.935 411.619 360.628 414.112 356.334C414.137 356.284 414.174 356.246 414.2 356.196Z" fill="#FABC04"/> <path d="M404.916 372.397C405.154 372.184 405.38 371.959 405.63 371.758C408.675 369.354 413.247 371.095 413.911 374.901C414.074 375.815 413.987 376.691 413.711 377.567C413.698 377.642 413.686 377.705 413.661 377.78C413.548 377.98 413.448 378.193 413.323 378.394C412.208 380.234 410.566 381.148 408.412 381.01C405.944 380.835 404.002 378.982 403.664 376.528C403.501 375.339 403.739 374.225 404.353 373.198C404.478 372.973 404.628 372.772 404.766 372.547C404.829 372.497 404.804 372.397 404.916 372.397Z" fill="#34A852"/> </g> <path d="M201.94 209.218H171.42C124.481 209.218 133.629 313.487 89.82 313.487H75.5537" stroke="url(#paint5_linear_668_278429)" stroke-width="8"/> <path d="M201.94 209.218H171.42C124.481 209.218 133.629 104.949 89.82 104.949H75.5537" stroke="url(#paint6_linear_668_278429)" stroke-width="8"/> <path d="M201.941 209.218H176.882C132.944 209.218 137.338 209.218 96.3287 209.218H75.5547" stroke="url(#paint7_linear_668_278429)" stroke-width="8"/> <path d="M41.6769 70.5063H40.1839L39.7195 64.5567L37.5188 70.5285H36.1696L33.9689 64.5567L33.5155 70.5063H32.1552L32.8077 62.4887H34.7209L36.9437 68.5711L39.1665 62.4887H41.0465L41.6769 70.5063ZM48.8003 67.5205C48.8003 69.4668 47.5507 70.628 45.8587 70.628C44.1777 70.628 42.9502 69.4668 42.9502 67.5205C42.9502 65.5741 44.1888 64.4019 45.8587 64.4019C47.5507 64.4019 48.8003 65.5741 48.8003 67.5205ZM47.3737 67.5205C47.3737 66.4146 46.8318 65.5852 45.8587 65.5852C44.8966 65.5852 44.3768 66.3925 44.3768 67.5205C44.3768 68.6263 44.9076 69.4447 45.8587 69.4447C46.854 69.4447 47.3737 68.6485 47.3737 67.5205ZM55.8116 67.3546C55.8116 69.5553 54.562 70.5838 52.7151 70.5838C51.753 70.5838 50.9678 70.4289 50.1937 70.1856V61.792L51.6424 61.5598V65.2092C52.0516 64.8111 52.6377 64.4019 53.434 64.4019C54.761 64.4019 55.8116 65.3419 55.8116 67.3546ZM54.3629 67.432C54.3629 66.2708 53.8321 65.6847 53.0911 65.6847C52.5382 65.6847 52.0627 66.0275 51.6424 66.4809V69.2346C51.9742 69.3452 52.2286 69.3894 52.693 69.3894C53.7215 69.3894 54.3629 68.8143 54.3629 67.432ZM58.8942 62.6767C58.8942 63.1633 58.5182 63.5172 58.0316 63.5172C57.545 63.5172 57.1469 63.1633 57.1469 62.6767C57.1469 62.1901 57.545 61.8362 58.0316 61.8362C58.5182 61.8362 58.8942 62.1901 58.8942 62.6767ZM58.7504 70.5063H57.3017V64.5346H58.7504V70.5063ZM62.0767 70.5063H60.628V61.792L62.0767 61.5598V70.5063ZM69.0413 69.8871C68.3778 70.3515 67.5595 70.628 66.5642 70.628C64.8279 70.628 63.5451 69.6769 63.5451 67.5205C63.5451 65.5852 64.7505 64.4019 66.3651 64.4019C68.2119 64.4019 69.0524 65.7621 69.0524 67.4431C69.0524 67.5647 69.0524 67.7085 69.0413 67.7969H64.9827C65.0602 68.9802 65.7016 69.5 66.7079 69.5C67.5152 69.5 68.1898 69.2125 68.8644 68.748L69.0413 69.8871ZM66.3319 65.4193C65.6684 65.4193 65.1376 65.8948 65.0159 66.868H67.6369C67.5263 65.9391 67.1171 65.4193 66.3319 65.4193Z" fill="#606B85"/> <g filter="url(#filter5_d_668_278429)"> <path d="M25.5024 99.8946C25.5024 89.0035 34.3314 80.1746 45.2224 80.1746H55.3324C66.2235 80.1746 75.0524 89.0035 75.0524 99.8946V110.005C75.0524 120.896 66.2235 129.725 55.3324 129.725H45.2224C34.3314 129.725 25.5024 120.896 25.5024 110.005L25.5024 99.8946Z" fill="#FCFEFF" stroke="#E1E3EA"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M55.883 89.5635C56.1624 93.7562 52.6514 96.6181 49.8482 96.4868C49.5577 92.6759 52.8237 89.8196 55.883 89.5635ZM52.1253 98.3069C53.2911 97.8524 54.6439 97.3249 56.521 97.595C58.3519 97.8567 60.0022 98.6986 61.3442 100.506L61.7064 101.062C57.076 103.77 57.0947 110.285 62.1293 112.298C61.4755 114.119 60.1158 117.02 58.3184 118.789C56.1831 120.886 54.6602 120.304 52.9091 119.634C52.5936 119.513 52.2706 119.39 51.9353 119.278C50.7181 118.874 49.2615 119.085 48.1011 119.58C48.0679 119.594 48.0348 119.609 48.0019 119.623C46.9381 120.082 46.0608 120.46 44.8304 120.223C42.9305 119.86 41.1443 117.35 39.6477 114.523C37.8792 111.178 36.7523 105.29 38.6754 101.788C39.2333 100.78 40.0118 99.8469 41.053 98.9659C42.3215 97.8846 43.8516 97.6118 45.053 97.5885C46.1019 97.5729 47.148 97.9737 48.1064 98.3408C48.5196 98.4992 48.9166 98.6513 49.2904 98.761C50.0466 98.9826 50.7525 98.8122 51.5143 98.5393C51.7133 98.4675 51.9163 98.3884 52.1253 98.3069Z" fill="#3D556B"/> </g> <path d="M49.3481 166.757L46.9263 174.797H45.4997L43.5644 168.914L41.6291 174.797H40.2246L37.847 166.968L39.4394 166.68L41.0651 172.453L42.8898 166.757H44.4159L46.2406 172.453L47.822 166.757H49.3481ZM55.0094 174.156C54.3459 174.62 53.5275 174.897 52.5322 174.897C50.796 174.897 49.5132 173.946 49.5132 171.789C49.5132 169.854 50.7186 168.671 52.3332 168.671C54.18 168.671 55.0205 170.031 55.0205 171.712C55.0205 171.833 55.0205 171.977 55.0094 172.066H50.9508C51.0282 173.249 51.6696 173.769 52.676 173.769C53.4833 173.769 54.1579 173.481 54.8325 173.017L55.0094 174.156ZM52.3 169.688C51.6365 169.688 51.1056 170.164 50.984 171.137H53.6049C53.4943 170.208 53.0852 169.688 52.3 169.688ZM62.0398 171.623C62.0398 173.824 60.7901 174.853 58.9433 174.853C57.9812 174.853 57.196 174.698 56.4219 174.454V166.061L57.8706 165.829V169.478C58.2798 169.08 58.8659 168.671 59.6621 168.671C60.9892 168.671 62.0398 169.611 62.0398 171.623ZM60.5911 171.701C60.5911 170.54 60.0603 169.953 59.3193 169.953C58.7664 169.953 58.2908 170.296 57.8706 170.75V173.503C58.2024 173.614 58.4567 173.658 58.9212 173.658C59.9497 173.658 60.5911 173.083 60.5911 171.701Z" fill="#606B85"/> <g filter="url(#filter6_d_668_278429)"> <path d="M25.5024 204.163C25.5024 193.272 34.3314 184.443 45.2224 184.443H55.3324C66.2235 184.443 75.0524 193.272 75.0524 204.163V214.273C75.0524 225.164 66.2235 233.993 55.3324 233.993H45.2224C34.3314 233.993 25.5024 225.164 25.5024 214.273L25.5024 204.163Z" fill="#FCFEFF" stroke="#E1E3EA"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M49.0084 224.452C49.3768 224.663 49.7953 224.772 50.2167 224.772C50.6439 224.772 51.0614 224.663 51.4298 224.452L62.954 217.871C63.7008 217.44 64.1643 216.646 64.1643 215.791V202.635C64.1643 201.78 63.7008 200.985 62.954 200.557L51.4298 193.97C50.7066 193.563 49.7375 193.563 49.0084 193.97L37.4832 200.557C36.7365 200.983 36.2749 201.78 36.2749 202.635V215.791C36.2749 216.646 36.7365 217.443 37.4832 217.871L40.5053 219.591C41.9694 220.305 42.4937 220.305 43.16 220.305C45.3277 220.305 46.5722 219.008 46.5722 216.746V203.758C46.5722 203.575 46.4213 203.429 46.239 203.429H44.7769C44.5917 203.429 44.4428 203.575 44.4428 203.758V216.746C44.4428 217.75 43.3933 218.747 41.6803 217.9L38.5229 216.096C38.4122 216.036 38.3416 215.917 38.3416 215.791V202.635C38.3416 202.51 38.4122 202.386 38.5239 202.323L50.0412 195.748C50.149 195.686 50.2901 195.686 50.397 195.748L61.9172 202.321C62.027 202.386 62.0956 202.506 62.0956 202.635V215.791C62.0956 215.917 62.027 216.039 61.9192 216.1L50.395 222.68C50.296 222.738 50.1451 222.738 50.0373 222.68L47.0818 220.944C46.9936 220.892 46.8809 220.874 46.7956 220.921C45.9774 221.381 45.8226 221.441 45.0553 221.704C44.8661 221.769 44.5859 221.882 45.1601 222.201L49.0084 224.452ZM48.0343 210.807C48.0343 212.728 49.0907 215.017 54.1345 215.017C57.7858 215.017 59.8799 213.594 59.8799 211.111C59.8799 208.649 58.1974 207.993 54.6558 207.53C51.077 207.061 50.7135 206.82 50.7135 205.991C50.7135 205.307 51.0212 204.393 53.672 204.393C56.0395 204.393 56.9126 204.898 57.2713 206.477C57.3027 206.625 57.4399 206.734 57.5947 206.734H59.0911C59.1832 206.734 59.2714 206.694 59.3351 206.629C59.3978 206.559 59.4311 206.469 59.4223 206.375C59.191 203.655 57.3644 202.388 53.672 202.388C50.3862 202.388 48.4263 203.76 48.4263 206.06C48.4263 208.555 50.3764 209.244 53.5299 209.553C57.3027 209.918 57.5957 210.463 57.5957 211.198C57.5957 212.472 56.5618 213.016 54.1345 213.016C51.0849 213.016 50.4136 212.258 50.1892 210.758C50.1628 210.597 50.0246 210.479 49.858 210.479H48.3675C48.1833 210.479 48.0343 210.624 48.0343 210.807Z" fill="#53914F"/> </g> <path d="M31.073 270.301L28.6511 278.341H27.2245L25.2892 272.458L23.3539 278.341H21.9495L19.5718 270.512L21.1643 270.224L22.7899 275.997L24.6146 270.301H26.1407L27.9655 275.997L29.5469 270.301H31.073ZM35.0741 276.671V275.333C33.1609 275.543 32.7075 276.063 32.7075 276.638C32.7075 277.069 33.0172 277.346 33.5259 277.346C34.0788 277.346 34.6096 277.092 35.0741 276.671ZM36.5118 278.319H35.2953L35.1626 277.545C34.6428 278.043 33.9903 278.441 33.0614 278.441C31.9887 278.441 31.2699 277.821 31.2699 276.782C31.2699 275.333 32.5085 274.714 35.0741 274.471V274.283C35.0741 273.63 34.6649 273.387 33.9682 273.387C33.2383 273.387 32.5416 273.586 31.8671 273.862L31.6901 272.712C32.42 272.425 33.1609 272.226 34.1452 272.226C35.7376 272.226 36.5118 272.801 36.5118 274.216V278.319ZM41.8941 273.652C40.9099 273.708 40.1026 274.227 39.6602 274.88V278.319H38.2115V272.347H39.428L39.6271 273.542C40.0473 272.856 40.6887 272.27 41.6619 272.215L41.8941 273.652ZM47.9659 277.7C47.3023 278.164 46.484 278.441 45.4887 278.441C43.7524 278.441 42.4696 277.49 42.4696 275.333C42.4696 273.398 43.675 272.215 45.2896 272.215C47.1364 272.215 47.9769 273.575 47.9769 275.256C47.9769 275.377 47.9769 275.521 47.9659 275.61H43.9073C43.9847 276.793 44.6261 277.313 45.6324 277.313C46.4397 277.313 47.1143 277.025 47.7889 276.561L47.9659 277.7ZM45.2564 273.232C44.5929 273.232 44.0621 273.708 43.9404 274.681H46.5614C46.4508 273.752 46.0416 273.232 45.2564 273.232ZM54.6424 278.319H53.1937V274.393C53.1937 273.862 52.9504 273.497 52.3532 273.497C51.8334 273.497 51.3137 273.807 50.8271 274.272V278.319H49.3784V269.605L50.8271 269.373V273.11C51.3579 272.646 52.0104 272.215 52.8508 272.215C54.0231 272.215 54.6424 272.9 54.6424 274.017V278.319ZM61.8625 275.333C61.8625 277.28 60.6128 278.441 58.9208 278.441C57.2399 278.441 56.0124 277.28 56.0124 275.333C56.0124 273.387 57.2509 272.215 58.9208 272.215C60.6128 272.215 61.8625 273.387 61.8625 275.333ZM60.4359 275.333C60.4359 274.227 59.894 273.398 58.9208 273.398C57.9587 273.398 57.4389 274.205 57.4389 275.333C57.4389 276.439 57.9698 277.257 58.9208 277.257C59.9161 277.257 60.4359 276.461 60.4359 275.333ZM68.4867 278.319H67.2702L67.1265 277.479C66.5404 278.009 65.8547 278.441 65.0253 278.441C63.842 278.441 63.2227 277.766 63.2227 276.649V272.347H64.6714V276.262C64.6714 276.793 64.9258 277.158 65.5229 277.158C66.0427 277.158 66.5625 276.848 67.038 276.384V272.347H68.4867V278.319ZM74.7779 276.572C74.7779 277.744 73.9042 278.441 72.2897 278.441C71.3939 278.441 70.476 278.164 69.8899 277.866L70.0779 276.649C70.7304 277.058 71.5598 277.346 72.3449 277.346C73.0417 277.346 73.4398 277.103 73.4398 276.705C73.4398 276.262 73.1522 276.096 72.1127 275.853C70.6198 275.488 70.0005 275.068 70.0005 273.973C70.0005 272.956 70.8409 272.226 72.2675 272.226C73.0638 272.226 73.8047 272.381 74.4129 272.646L74.2139 273.851C73.6057 273.531 72.8868 273.321 72.2565 273.321C71.6372 273.321 71.3386 273.542 71.3386 273.873C71.3386 274.205 71.5929 274.393 72.544 274.625C74.1254 275.024 74.7779 275.444 74.7779 276.572ZM81.3151 277.7C80.6516 278.164 79.8332 278.441 78.8379 278.441C77.1017 278.441 75.8189 277.49 75.8189 275.333C75.8189 273.398 77.0243 272.215 78.6389 272.215C80.4857 272.215 81.3262 273.575 81.3262 275.256C81.3262 275.377 81.3262 275.521 81.3151 275.61H77.2565C77.3339 276.793 77.9753 277.313 78.9817 277.313C79.789 277.313 80.4636 277.025 81.1382 276.561L81.3151 277.7ZM78.6057 273.232C77.9422 273.232 77.4113 273.708 77.2897 274.681H79.9106C79.8001 273.752 79.3909 273.232 78.6057 273.232Z" fill="#606B85"/> <g filter="url(#filter7_d_668_278429)"> <path d="M24.7773 308.287C24.7773 297.076 33.866 287.987 45.0773 287.987H55.4773C66.6887 287.987 75.7773 297.076 75.7773 308.287V318.687C75.7773 329.899 66.6887 338.987 55.4773 338.987H45.0773C33.866 338.987 24.7773 329.899 24.7773 318.687L24.7773 308.287Z" fill="#FCFEFF" stroke="#E1E3EA"/> <path d="M45.5017 309.036L38.7301 305.136C37.7787 304.587 37.4501 303.374 38.0007 302.425C38.5513 301.476 39.7679 301.151 40.7192 301.7L44.5648 303.914V299.466C44.5648 298.373 45.4527 297.487 46.5482 297.487C47.6408 297.487 48.5287 298.373 48.5287 299.466V307.282C48.5287 307.857 48.2836 308.374 47.8887 308.737C47.266 309.343 46.2916 309.493 45.5017 309.036Z" fill="#29B5E8"/> <path d="M44.9365 313.513C44.948 312.808 44.5762 312.153 43.965 311.799L37.1933 307.9C36.8993 307.73 36.562 307.641 36.2247 307.641C35.53 307.641 34.8842 308.012 34.5383 308.61C34.0021 309.536 34.3221 310.724 35.2503 311.258L39.1536 313.504L35.2503 315.753C34.8006 316.012 34.4778 316.429 34.3451 316.929C34.2097 317.43 34.2788 317.953 34.5383 318.401C34.8842 319 35.53 319.371 36.2218 319.371C36.562 319.371 36.8993 319.281 37.1933 319.112L43.965 315.212C44.5704 314.862 44.9423 314.212 44.9365 313.513Z" fill="#29B5E8"/> <path d="M61.7774 321.876L55.0057 317.973C54.0544 317.427 52.8379 317.752 52.2873 318.701C52.0739 319.075 51.9903 319.486 52.0307 319.886V327.512C52.0307 328.602 52.9186 329.487 54.0141 329.487C55.1066 329.487 55.9945 328.602 55.9945 327.512V323.126L59.7883 325.312C60.7396 325.861 61.959 325.533 62.5068 324.584C63.0574 323.635 62.7316 322.422 61.7774 321.876Z" fill="#29B5E8"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M53.9569 313.83C53.9569 313.979 53.8705 314.186 53.7638 314.296L51.0799 316.973C50.9732 317.079 50.7628 317.165 50.6129 317.165H49.9297C49.7798 317.165 49.5693 317.079 49.4627 316.973L46.7759 314.296C46.6692 314.186 46.5828 313.979 46.5828 313.83V313.148C46.5828 312.996 46.6692 312.789 46.7759 312.682L49.4627 310.002C49.5693 309.896 49.7798 309.81 49.9297 309.81H50.6129C50.7628 309.81 50.9732 309.896 51.0799 310.002L53.7638 312.682C53.8705 312.789 53.9569 312.996 53.9569 313.148V313.83ZM51.5613 313.502V313.473C51.5613 313.364 51.4979 313.211 51.4201 313.131L50.6273 312.343C50.5495 312.262 50.3967 312.199 50.2843 312.199H50.2554C50.1459 312.199 49.9931 312.262 49.9124 312.343L49.1225 313.131C49.0447 313.209 48.9812 313.361 48.9812 313.473V313.502C48.9812 313.614 49.0447 313.766 49.1225 313.844L49.9124 314.635C49.9931 314.712 50.1459 314.776 50.2554 314.776H50.2843C50.3967 314.776 50.5495 314.712 50.6273 314.635L51.4201 313.844C51.4979 313.766 51.5613 313.614 51.5613 313.502Z" fill="#29B5E8"/> <path d="M61.7775 305.136L55.0058 309.036C54.0545 309.585 52.8379 309.26 52.2873 308.311C52.0711 307.937 51.9933 307.523 52.0308 307.126V299.466C52.0308 298.373 52.9187 297.487 54.0141 297.487C55.1067 297.487 55.9946 298.373 55.9946 299.466V303.886L59.7883 301.7C60.7397 301.151 61.9562 301.476 62.5068 302.425C63.0574 303.374 62.7288 304.59 61.7775 305.136Z" fill="#29B5E8"/> <path d="M46.8595 317.743C46.4098 317.657 45.9284 317.729 45.5017 317.973L38.7301 321.876C37.7787 322.422 37.4501 323.635 38.0007 324.584C38.5513 325.536 39.7679 325.861 40.7192 325.312L44.5648 323.098V327.512C44.5648 328.602 45.4527 329.487 46.5482 329.487C47.6408 329.487 48.5287 328.602 48.5287 327.512V319.696C48.5287 318.709 47.8051 317.893 46.8595 317.743Z" fill="#29B5E8"/> <path d="M63.2912 307.86C64.2425 307.31 65.4619 307.635 66.0096 308.587C66.5602 309.536 66.2345 310.75 65.2803 311.296L61.4462 313.505L65.2803 315.713C66.2316 316.262 66.5602 317.476 66.0096 318.425C65.459 319.374 64.2425 319.699 63.2912 319.152L56.5195 315.25C55.8766 314.882 55.5192 314.206 55.5249 313.513C55.5134 312.817 55.8709 312.133 56.5195 311.759L63.2912 307.86Z" fill="#29B5E8"/> </g> <g filter="url(#filter8_d_668_278429)"> <path d="M219.18 264.513C249.718 264.513 273.824 240.407 273.824 209.869C273.824 179.331 249.718 153.924 219.18 153.924C188.642 153.924 163.235 179.331 163.235 209.869C163.235 240.407 188.642 264.513 219.18 264.513Z" fill="white"/> <g clip-path="url(#clip3_668_278429)"> <path d="M218.53 181.571C203.303 181.571 190.883 193.991 190.883 209.218C190.883 224.445 203.303 236.865 218.53 236.865C233.757 236.865 246.177 224.445 246.177 209.218C246.177 193.991 233.757 181.571 218.53 181.571ZM218.53 229.55C207.301 229.55 198.199 220.447 198.199 209.218C198.199 197.989 207.301 188.887 218.53 188.887C229.759 188.887 238.861 197.989 238.861 209.218C238.861 220.447 229.759 229.55 218.53 229.55Z" fill="#F22F46"/> <path d="M225.42 208.112C228.615 208.112 231.204 205.523 231.204 202.328C231.204 199.133 228.615 196.543 225.42 196.543C222.225 196.543 219.635 199.133 219.635 202.328C219.635 205.523 222.225 208.112 225.42 208.112Z" fill="#F22F46"/> <path d="M225.42 221.893C228.615 221.893 231.204 219.304 231.204 216.109C231.204 212.914 228.615 210.324 225.42 210.324C222.225 210.324 219.635 212.914 219.635 216.109C219.635 219.304 222.225 221.893 225.42 221.893Z" fill="#F22F46"/> <path d="M211.64 221.893C214.834 221.893 217.424 219.304 217.424 216.109C217.424 212.914 214.834 210.324 211.64 210.324C208.445 210.324 205.855 212.914 205.855 216.109C205.855 219.304 208.445 221.893 211.64 221.893Z" fill="#F22F46"/> <path d="M211.64 208.112C214.834 208.112 217.424 205.523 217.424 202.328C217.424 199.133 214.834 196.543 211.64 196.543C208.445 196.543 205.855 199.133 205.855 202.328C205.855 205.523 208.445 208.112 211.64 208.112Z" fill="#F22F46"/> </g> </g> <defs> <filter id="filter0_d_668_278429" x="369.893" y="9.96021" width="98.5498" height="98.55" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="8"/> <feGaussianBlur stdDeviation="12"/> <feColorMatrix type="matrix" values="0 0 0 0 0.0705882 0 0 0 0 0.109804 0 0 0 0 0.176471 0 0 0 0.1 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_668_278429"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_668_278429" result="shape"/> </filter> <filter id="filter1_d_668_278429" x="369.893" y="88.9519" width="98.5498" height="98.55" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="8"/> <feGaussianBlur stdDeviation="12"/> <feColorMatrix type="matrix" values="0 0 0 0 0.0705882 0 0 0 0 0.109804 0 0 0 0 0.176471 0 0 0 0.1 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_668_278429"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_668_278429" result="shape"/> </filter> <filter id="filter2_d_668_278429" x="369.893" y="167.943" width="98.5498" height="98.55" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="8"/> <feGaussianBlur stdDeviation="12"/> <feColorMatrix type="matrix" values="0 0 0 0 0.0705882 0 0 0 0 0.109804 0 0 0 0 0.176471 0 0 0 0.1 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_668_278429"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_668_278429" result="shape"/> </filter> <filter id="filter3_d_668_278429" x="369.893" y="246.935" width="98.5498" height="98.55" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="8"/> <feGaussianBlur stdDeviation="12"/> <feColorMatrix type="matrix" values="0 0 0 0 0.0705882 0 0 0 0 0.109804 0 0 0 0 0.176471 0 0 0 0.1 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_668_278429"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_668_278429" result="shape"/> </filter> <filter id="filter4_d_668_278429" x="369.893" y="325.927" width="98.5498" height="98.55" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="8"/> <feGaussianBlur stdDeviation="12"/> <feColorMatrix type="matrix" values="0 0 0 0 0.0705882 0 0 0 0 0.109804 0 0 0 0 0.176471 0 0 0 0.1 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_668_278429"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_668_278429" result="shape"/> </filter> <filter id="filter5_d_668_278429" x="1.00244" y="63.6746" width="98.5498" height="98.55" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="8"/> <feGaussianBlur stdDeviation="12"/> <feColorMatrix type="matrix" values="0 0 0 0 0.0705882 0 0 0 0 0.109804 0 0 0 0 0.176471 0 0 0 0.1 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_668_278429"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_668_278429" result="shape"/> </filter> <filter id="filter6_d_668_278429" x="1.00244" y="167.943" width="98.5498" height="98.55" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="8"/> <feGaussianBlur stdDeviation="12"/> <feColorMatrix type="matrix" values="0 0 0 0 0.0705882 0 0 0 0 0.109804 0 0 0 0 0.176471 0 0 0 0.1 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_668_278429"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_668_278429" result="shape"/> </filter> <filter id="filter7_d_668_278429" x="0.277344" y="271.487" width="100" height="100" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="8"/> <feGaussianBlur stdDeviation="12"/> <feColorMatrix type="matrix" values="0 0 0 0 0.0705882 0 0 0 0 0.109804 0 0 0 0 0.176471 0 0 0 0.1 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_668_278429"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_668_278429" result="shape"/> </filter> <filter id="filter8_d_668_278429" x="139.235" y="137.924" width="158.588" height="158.588" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="8"/> <feGaussianBlur stdDeviation="12"/> <feColorMatrix type="matrix" values="0 0 0 0 0.0705882 0 0 0 0 0.109804 0 0 0 0 0.176471 0 0 0 0.1 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_668_278429"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_668_278429" result="shape"/> </filter> <linearGradient id="paint0_linear_668_278429" x1="262.559" y1="388.419" x2="421.343" y2="388.419" gradientUnits="userSpaceOnUse"> <stop stop-color="#6ADDB2"/> <stop offset="1" stop-color="#6ADDB2" stop-opacity="0.4"/> </linearGradient> <linearGradient id="paint1_linear_668_278429" x1="262.559" y1="30.0173" x2="421.343" y2="30.0173" gradientUnits="userSpaceOnUse"> <stop stop-color="#6ADDB2"/> <stop offset="1" stop-color="#6ADDB2" stop-opacity="0.4"/> </linearGradient> <linearGradient id="paint2_linear_668_278429" x1="262.559" y1="298.819" x2="421.343" y2="298.819" gradientUnits="userSpaceOnUse"> <stop stop-color="#6ADDB2"/> <stop offset="1" stop-color="#6ADDB2" stop-opacity="0.4"/> </linearGradient> <linearGradient id="paint3_linear_668_278429" x1="262.559" y1="119.618" x2="421.343" y2="119.618" gradientUnits="userSpaceOnUse"> <stop stop-color="#6ADDB2"/> <stop offset="1" stop-color="#6ADDB2" stop-opacity="0.4"/> </linearGradient> <linearGradient id="paint4_linear_668_278429" x1="262.559" y1="209.084" x2="421.343" y2="209.084" gradientUnits="userSpaceOnUse"> <stop stop-color="#6ADDB2"/> <stop offset="1" stop-color="#6ADDB2" stop-opacity="0.4"/> </linearGradient> <linearGradient id="paint5_linear_668_278429" x1="164.637" y1="327.491" x2="66.9238" y2="327.491" gradientUnits="userSpaceOnUse"> <stop stop-color="#6ADDB2"/> <stop offset="1" stop-color="#6ADDB2" stop-opacity="0.4"/> </linearGradient> <linearGradient id="paint6_linear_668_278429" x1="164.637" y1="90.9457" x2="66.9238" y2="90.9457" gradientUnits="userSpaceOnUse"> <stop stop-color="#6ADDB2"/> <stop offset="1" stop-color="#6ADDB2" stop-opacity="0.4"/> </linearGradient> <linearGradient id="paint7_linear_668_278429" x1="164.638" y1="209.084" x2="66.9248" y2="209.084" gradientUnits="userSpaceOnUse"> <stop stop-color="#6ADDB2"/> <stop offset="1" stop-color="#6ADDB2" stop-opacity="0.4"/> </linearGradient> <clipPath id="clip0_668_278429"> <rect width="191.95" height="331.765" fill="white" transform="matrix(-1 0 0 1 393.891 43.3359)"/> </clipPath> <clipPath id="clip1_668_278429"> <rect width="29.6635" height="29.6635" fill="white" transform="translate(404.336 38.3477)"/> </clipPath> <clipPath id="clip2_668_278429"> <rect width="31.1077" height="31.1077" fill="white" transform="translate(403.614 193.665)"/> </clipPath> <clipPath id="clip3_668_278429"> <rect width="55.2941" height="55.2941" fill="white" transform="translate(190.883 181.571)"/> </clipPath> </defs> </svg> </span> </div> <div class="media-image--mobile "> <span><svg width="470" height="425" viewBox="0 0 470 425" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_668_278429)"> <path d="M201.941 209.218H251.537C327.812 209.218 312.947 367.201 384.137 367.201H407.319" stroke="url(#paint0_linear_668_278429)" stroke-width="8"/> <path d="M201.941 209.218H251.537C327.812 209.218 312.947 51.2351 384.137 51.2351H407.319" stroke="url(#paint1_linear_668_278429)" stroke-width="8"/> <path d="M201.941 209.218H251.537C327.812 209.218 312.947 288.21 384.137 288.21H407.319" stroke="url(#paint2_linear_668_278429)" stroke-width="8"/> <path d="M201.941 209.218H251.537C327.812 209.218 312.947 130.227 384.137 130.227H407.319" stroke="url(#paint3_linear_668_278429)" stroke-width="8"/> <path d="M201.941 209.218H242.662C314.062 209.218 306.922 209.218 373.562 209.218H407.319" stroke="url(#paint4_linear_668_278429)" stroke-width="8"/> </g> <path d="M399.241 16.792H397.748L397.283 10.8423L395.083 16.8141H393.734L391.533 10.8423L391.079 16.792H389.719L390.372 8.77434H392.285L394.508 14.8567L396.731 8.77434H398.611L399.241 16.792ZM406.01 16.1727C405.347 16.6372 404.529 16.9136 403.533 16.9136C401.797 16.9136 400.514 15.9626 400.514 13.8061C400.514 11.8708 401.72 10.6875 403.334 10.6875C405.181 10.6875 406.021 12.0478 406.021 13.7287C406.021 13.8503 406.021 13.9941 406.01 14.0826H401.952C402.029 15.2659 402.671 15.7856 403.677 15.7856C404.484 15.7856 405.159 15.4981 405.833 15.0336L406.01 16.1727ZM403.301 11.7049C402.637 11.7049 402.107 12.1805 401.985 13.1536H404.606C404.495 12.2247 404.086 11.7049 403.301 11.7049ZM411.979 15.0447C411.979 16.2169 411.106 16.9136 409.491 16.9136C408.595 16.9136 407.677 16.6372 407.091 16.3386L407.279 15.1221C407.932 15.5313 408.761 15.8188 409.546 15.8188C410.243 15.8188 410.641 15.5755 410.641 15.1774C410.641 14.7351 410.354 14.5692 409.314 14.3259C407.821 13.9609 407.202 13.5407 407.202 12.4459C407.202 11.4285 408.042 10.6986 409.469 10.6986C410.265 10.6986 411.006 10.8534 411.614 11.1188L411.415 12.3242C410.807 12.0035 410.088 11.7934 409.458 11.7934C408.838 11.7934 408.54 12.0146 408.54 12.3463C408.54 12.6781 408.794 12.8661 409.745 13.0983C411.327 13.4965 411.979 13.9167 411.979 15.0447ZM417.854 15.0447C417.854 16.2169 416.981 16.9136 415.366 16.9136C414.47 16.9136 413.552 16.6372 412.966 16.3386L413.154 15.1221C413.807 15.5313 414.636 15.8188 415.421 15.8188C416.118 15.8188 416.516 15.5755 416.516 15.1774C416.516 14.7351 416.229 14.5692 415.189 14.3259C413.696 13.9609 413.077 13.5407 413.077 12.4459C413.077 11.4285 413.917 10.6986 415.344 10.6986C416.14 10.6986 416.881 10.8534 417.489 11.1188L417.29 12.3242C416.682 12.0035 415.963 11.7934 415.333 11.7934C414.713 11.7934 414.415 12.0146 414.415 12.3463C414.415 12.6781 414.669 12.8661 415.62 13.0983C417.202 13.4965 417.854 13.9167 417.854 15.0447ZM422.677 15.1442V13.8061C420.764 14.0162 420.311 14.536 420.311 15.1111C420.311 15.5423 420.62 15.8188 421.129 15.8188C421.682 15.8188 422.213 15.5645 422.677 15.1442ZM424.115 16.792H422.898L422.766 16.0179C422.246 16.5155 421.594 16.9136 420.665 16.9136C419.592 16.9136 418.873 16.2943 418.873 15.2548C418.873 13.8061 420.112 13.1868 422.677 12.9435V12.7555C422.677 12.1031 422.268 11.8598 421.571 11.8598C420.842 11.8598 420.145 12.0588 419.47 12.3353L419.293 11.1852C420.023 10.8976 420.764 10.6986 421.748 10.6986C423.341 10.6986 424.115 11.2736 424.115 12.6892V16.792ZM429.221 12.7666C429.221 12.1252 428.756 11.6386 428.06 11.6386C427.352 11.6386 426.932 12.1473 426.932 12.8108C426.932 13.4412 427.363 13.9167 428.06 13.9167C428.778 13.9167 429.221 13.4191 429.221 12.7666ZM431.333 17.0685C431.333 18.3402 429.884 19.048 428.104 19.048C426.423 19.048 425.151 18.5503 425.151 17.5551C425.151 16.98 425.549 16.5487 426.346 16.1285C426.102 15.9515 425.992 15.7193 425.992 15.4871C425.992 15.1663 426.257 14.8346 426.755 14.5581C426.025 14.2263 425.571 13.596 425.571 12.7998C425.571 11.5059 426.688 10.6986 428.049 10.6986C428.745 10.6986 429.342 10.8976 429.785 11.2405L431.322 10.7318L431.521 11.904L430.382 11.9814C430.493 12.2247 430.559 12.4901 430.559 12.7666C430.559 14.0605 429.42 14.8235 428.093 14.8235C427.916 14.8235 427.739 14.8125 427.573 14.7903C427.407 14.9009 427.308 15.0115 427.308 15.1111C427.308 15.3101 427.507 15.3654 428.513 15.5092L429.243 15.5866C430.537 15.7635 431.333 16.1506 431.333 17.0685ZM428.082 16.6261C427.662 16.5708 427.451 16.5487 427.142 16.4823C426.644 16.792 426.423 17.0795 426.423 17.4002C426.423 17.8536 427.02 18.1743 428.203 18.1743C429.331 18.1743 429.984 17.8205 429.984 17.3671C429.984 17.0353 429.707 16.8473 428.889 16.7256L428.082 16.6261ZM434.267 8.96235C434.267 9.44893 433.891 9.80282 433.404 9.80282C432.918 9.80282 432.519 9.44893 432.519 8.96235C432.519 8.47576 432.918 8.12187 433.404 8.12187C433.891 8.12187 434.267 8.47576 434.267 8.96235ZM434.123 16.792H432.674V10.8202H434.123V16.792ZM441.187 16.792H439.738V12.8661C439.738 12.3353 439.495 11.9703 438.898 11.9703C438.378 11.9703 437.858 12.28 437.372 12.7445V16.792H435.923V10.8202H437.14L437.283 11.6607C437.881 11.1299 438.555 10.6875 439.396 10.6875C440.568 10.6875 441.187 11.3732 441.187 12.4901V16.792ZM446.295 12.7666C446.295 12.1252 445.831 11.6386 445.134 11.6386C444.426 11.6386 444.006 12.1473 444.006 12.8108C444.006 13.4412 444.437 13.9167 445.134 13.9167C445.853 13.9167 446.295 13.4191 446.295 12.7666ZM448.407 17.0685C448.407 18.3402 446.959 19.048 445.178 19.048C443.497 19.048 442.225 18.5503 442.225 17.5551C442.225 16.98 442.624 16.5487 443.42 16.1285C443.176 15.9515 443.066 15.7193 443.066 15.4871C443.066 15.1663 443.331 14.8346 443.829 14.5581C443.099 14.2263 442.646 13.596 442.646 12.7998C442.646 11.5059 443.763 10.6986 445.123 10.6986C445.82 10.6986 446.417 10.8976 446.859 11.2405L448.396 10.7318L448.595 11.904L447.456 11.9814C447.567 12.2247 447.633 12.4901 447.633 12.7666C447.633 14.0605 446.494 14.8235 445.167 14.8235C444.99 14.8235 444.813 14.8125 444.647 14.7903C444.481 14.9009 444.382 15.0115 444.382 15.1111C444.382 15.3101 444.581 15.3654 445.587 15.5092L446.317 15.5866C447.611 15.7635 448.407 16.1506 448.407 17.0685ZM445.156 16.6261C444.736 16.5708 444.526 16.5487 444.216 16.4823C443.718 16.792 443.497 17.0795 443.497 17.4002C443.497 17.8536 444.094 18.1743 445.278 18.1743C446.406 18.1743 447.058 17.8205 447.058 17.3671C447.058 17.0353 446.782 16.8473 445.963 16.7256L445.156 16.6261Z" fill="#606B85"/> <g filter="url(#filter0_d_668_278429)"> <path d="M394.393 46.1802C394.393 35.2891 403.222 26.4602 414.113 26.4602L424.223 26.4602C435.114 26.4602 443.943 35.2892 443.943 46.1802V56.2902C443.943 67.1813 435.114 76.0102 424.223 76.0102H414.113C403.222 76.0102 394.393 67.1813 394.393 56.2902V46.1802Z" fill="#FCFEFF" stroke="#E1E3EA"/> <g clip-path="url(#clip1_668_278429)"> <path d="M411.539 64.3867C411.293 64.3917 411.049 64.341 410.825 64.2384C410.545 64.1065 410.308 63.8964 410.143 63.6334C409.979 63.3703 409.894 63.0654 409.898 62.7552V58.7414H406.654C406.039 58.7414 405.45 58.4972 405.015 58.0626C404.581 57.628 404.336 57.0385 404.336 56.4239V42.5191C404.336 41.9045 404.581 41.315 405.015 40.8804C405.45 40.4458 406.039 40.2017 406.654 40.2017H431.682C432.297 40.2017 432.887 40.4458 433.321 40.8804C433.756 41.315 434 41.9045 434 42.5191V56.4239C434 57.0385 433.756 57.628 433.321 58.0626C432.887 58.4972 432.297 58.7414 431.682 58.7414H418.593L412.596 63.9881C412.302 64.2425 411.928 64.3839 411.539 64.3867ZM406.654 42.0556C406.531 42.0556 406.413 42.1045 406.326 42.1914C406.239 42.2783 406.19 42.3962 406.19 42.5191V56.4239C406.19 56.5468 406.239 56.6647 406.326 56.7516C406.413 56.8386 406.531 56.8874 406.654 56.8874H410.825C410.947 56.8867 411.068 56.9101 411.181 56.9562C411.294 57.0023 411.397 57.0703 411.483 57.1562C411.569 57.2428 411.637 57.3456 411.683 57.4585C411.73 57.5714 411.753 57.6924 411.752 57.8144V62.2361L417.62 57.1099C417.793 56.9621 418.014 56.8829 418.241 56.8874H431.682C431.805 56.8874 431.923 56.8386 432.01 56.7516C432.097 56.6647 432.146 56.5468 432.146 56.4239V42.5191C432.146 42.3962 432.097 42.2783 432.01 42.1914C431.923 42.1045 431.805 42.0556 431.682 42.0556H406.654Z" fill="#121C2D"/> </g> </g> <path d="M393.328 95.7837L396.501 87.7329H398.105L401.212 95.5846L399.697 95.8611L398.879 93.7268H395.606L394.854 95.7837H393.328ZM397.242 89.3696L396.059 92.4882H398.426L397.242 89.3696ZM407.665 95.7837H406.216V91.8578C406.216 91.327 405.973 90.962 405.376 90.962C404.856 90.962 404.336 91.2717 403.85 91.7362V95.7837H402.401V89.8119H403.618L403.761 90.6524C404.359 90.1216 405.033 89.6792 405.874 89.6792C407.046 89.6792 407.665 90.3649 407.665 91.4818V95.7837ZM412.817 94.1359V92.7978C410.904 93.0079 410.451 93.5277 410.451 94.1028C410.451 94.534 410.76 94.8105 411.269 94.8105C411.822 94.8105 412.353 94.5562 412.817 94.1359ZM414.255 95.7837H413.038L412.906 95.0096C412.386 95.5072 411.733 95.9053 410.805 95.9053C409.732 95.9053 409.013 95.286 409.013 94.2465C409.013 92.7978 410.252 92.1785 412.817 91.9352V91.7472C412.817 91.0947 412.408 90.8515 411.711 90.8515C410.981 90.8515 410.285 91.0505 409.61 91.327L409.433 90.1769C410.163 89.8893 410.904 89.6903 411.888 89.6903C413.481 89.6903 414.255 90.2653 414.255 91.6809V95.7837ZM417.481 95.7837H416.032V87.0693L417.481 86.8371V95.7837ZM424.633 89.8119L422.2 96.1929C421.681 97.6195 420.973 98.0397 419.889 98.0397C419.591 98.0397 419.436 98.0065 419.303 97.9733L419.104 96.7458C419.303 96.8011 419.513 96.8453 419.768 96.8453C420.265 96.8453 420.619 96.6352 420.862 96.0823L420.984 95.8058L418.706 89.9225L420.21 89.7235L421.714 94.0143L423.163 89.8119H424.633ZM429.034 95.7837C428.802 95.839 428.514 95.8832 428.072 95.8832C426.878 95.8832 426.081 95.463 426.081 94.1138V90.9952H425.186V89.8119H426.081V87.9098L427.508 87.6886V89.8119H428.802L428.99 90.9952H427.508V93.8705C427.508 94.3571 427.74 94.6225 428.337 94.6225C428.525 94.6225 428.713 94.6115 428.857 94.5783L429.034 95.7837ZM432.01 87.954C432.01 88.4406 431.634 88.7945 431.147 88.7945C430.66 88.7945 430.262 88.4406 430.262 87.954C430.262 87.4675 430.66 87.1136 431.147 87.1136C431.634 87.1136 432.01 87.4675 432.01 87.954ZM431.866 95.7837H430.417V89.8119H431.866V95.7837ZM438.355 95.3303C437.758 95.7173 437.116 95.9053 436.276 95.9053C434.562 95.9053 433.334 94.7773 433.334 92.8199C433.334 90.7519 434.672 89.6903 436.364 89.6903C437.194 89.6903 437.835 89.9225 438.289 90.199L438.09 91.5039C437.57 91.15 437.061 90.9399 436.431 90.9399C435.469 90.9399 434.794 91.5813 434.794 92.7867C434.794 94.0475 435.524 94.6557 436.475 94.6557C437.028 94.6557 437.581 94.5009 438.156 94.0806L438.355 95.3303ZM444.281 94.0364C444.281 95.2086 443.407 95.9053 441.793 95.9053C440.897 95.9053 439.979 95.6289 439.393 95.3303L439.581 94.1138C440.233 94.523 441.063 94.8105 441.848 94.8105C442.545 94.8105 442.943 94.5672 442.943 94.1691C442.943 93.7268 442.655 93.5609 441.616 93.3176C440.123 92.9526 439.503 92.5324 439.503 91.4376C439.503 90.4202 440.344 89.6903 441.771 89.6903C442.567 89.6903 443.308 89.8451 443.916 90.1105L443.717 91.3159C443.109 90.9952 442.39 90.7851 441.759 90.7851C441.14 90.7851 440.842 91.0063 440.842 91.338C440.842 91.6698 441.096 91.8578 442.047 92.09C443.628 92.4882 444.281 92.9084 444.281 94.0364Z" fill="#606B85"/> <g filter="url(#filter1_d_668_278429)"> <path d="M394.393 125.172C394.393 114.281 403.222 105.452 414.113 105.452H424.223C435.114 105.452 443.943 114.281 443.943 125.172V135.282C443.943 146.173 435.114 155.002 424.223 155.002H414.113C403.222 155.002 394.393 146.173 394.393 135.282V125.172Z" fill="#FCFEFF" stroke="#E1E3EA"/> <path d="M425.132 119.498V140.831C425.132 143.218 426.783 144.548 428.534 144.548C430.154 144.548 431.937 143.417 431.937 140.831V119.659C431.937 117.471 430.316 116.104 428.534 116.104C426.752 116.104 425.132 117.612 425.132 119.498Z" fill="#F9AB00"/> <path d="M416.22 130.326V140.831C416.22 143.218 417.871 144.548 419.623 144.548C421.243 144.548 423.025 143.417 423.025 140.831V130.488C423.025 128.3 421.405 126.932 419.623 126.932C417.84 126.932 416.22 128.44 416.22 130.326Z" fill="#E37400"/> <path d="M410.712 144.548C412.591 144.548 414.114 143.029 414.114 141.154C414.114 139.28 412.591 137.76 410.712 137.76C408.833 137.76 407.31 139.28 407.31 141.154C407.31 143.029 408.833 144.548 410.712 144.548Z" fill="#E37400"/> </g> <path d="M399.964 166.757L397.542 174.797H396.115L394.18 168.914L392.245 174.797H390.84L388.462 166.968L390.055 166.68L391.681 172.453L393.505 166.757H395.031L396.856 172.453L398.437 166.757H399.964ZM403.965 173.127V171.789C402.052 171.999 401.598 172.519 401.598 173.094C401.598 173.525 401.908 173.802 402.417 173.802C402.969 173.802 403.5 173.548 403.965 173.127ZM405.402 174.775H404.186L404.053 174.001C403.533 174.499 402.881 174.897 401.952 174.897C400.879 174.897 400.161 174.277 400.161 173.238C400.161 171.789 401.399 171.17 403.965 170.927V170.739C403.965 170.086 403.556 169.843 402.859 169.843C402.129 169.843 401.432 170.042 400.758 170.318L400.581 169.168C401.311 168.881 402.052 168.682 403.036 168.682C404.628 168.682 405.402 169.257 405.402 170.672V174.775ZM410.785 170.108C409.801 170.164 408.993 170.683 408.551 171.336V174.775H407.102V168.803H408.319L408.518 169.998C408.938 169.312 409.579 168.726 410.553 168.671L410.785 170.108ZM416.856 174.156C416.193 174.62 415.375 174.897 414.379 174.897C412.643 174.897 411.36 173.946 411.36 171.789C411.36 169.854 412.566 168.671 414.18 168.671C416.027 168.671 416.868 170.031 416.868 171.712C416.868 171.833 416.868 171.977 416.856 172.066H412.798C412.875 173.249 413.517 173.769 414.523 173.769C415.33 173.769 416.005 173.481 416.68 173.017L416.856 174.156ZM414.147 169.688C413.484 169.688 412.953 170.164 412.831 171.137H415.452C415.341 170.208 414.932 169.688 414.147 169.688ZM423.533 174.775H422.084V170.849C422.084 170.318 421.841 169.953 421.244 169.953C420.724 169.953 420.204 170.263 419.718 170.728V174.775H418.269V166.061L419.718 165.829V169.566C420.249 169.102 420.901 168.671 421.741 168.671C422.914 168.671 423.533 169.356 423.533 170.473V174.775ZM430.753 171.789C430.753 173.736 429.503 174.897 427.811 174.897C426.131 174.897 424.903 173.736 424.903 171.789C424.903 169.843 426.142 168.671 427.811 168.671C429.503 168.671 430.753 169.843 430.753 171.789ZM429.327 171.789C429.327 170.683 428.785 169.854 427.811 169.854C426.849 169.854 426.33 170.661 426.33 171.789C426.33 172.895 426.86 173.713 427.811 173.713C428.807 173.713 429.327 172.917 429.327 171.789ZM437.377 174.775H436.161L436.017 173.935C435.431 174.465 434.745 174.897 433.916 174.897C432.733 174.897 432.113 174.222 432.113 173.105V168.803H433.562V172.718C433.562 173.249 433.816 173.614 434.414 173.614C434.933 173.614 435.453 173.304 435.929 172.84V168.803H437.377V174.775ZM443.669 173.028C443.669 174.2 442.795 174.897 441.18 174.897C440.285 174.897 439.367 174.62 438.781 174.322L438.969 173.105C439.621 173.514 440.45 173.802 441.236 173.802C441.932 173.802 442.33 173.559 442.33 173.161C442.33 172.718 442.043 172.552 441.003 172.309C439.51 171.944 438.891 171.524 438.891 170.429C438.891 169.412 439.732 168.682 441.158 168.682C441.954 168.682 442.695 168.837 443.304 169.102L443.105 170.307C442.496 169.987 441.777 169.777 441.147 169.777C440.528 169.777 440.229 169.998 440.229 170.329C440.229 170.661 440.484 170.849 441.435 171.081C443.016 171.48 443.669 171.9 443.669 173.028ZM450.206 174.156C449.542 174.62 448.724 174.897 447.729 174.897C445.992 174.897 444.71 173.946 444.71 171.789C444.71 169.854 445.915 168.671 447.53 168.671C449.376 168.671 450.217 170.031 450.217 171.712C450.217 171.833 450.217 171.977 450.206 172.066H446.147C446.225 173.249 446.866 173.769 447.872 173.769C448.68 173.769 449.354 173.481 450.029 173.017L450.206 174.156ZM447.496 169.688C446.833 169.688 446.302 170.164 446.18 171.137H448.801C448.691 170.208 448.282 169.688 447.496 169.688Z" fill="#606B85"/> <g filter="url(#filter2_d_668_278429)"> <path d="M394.393 204.163C394.393 193.272 403.222 184.443 414.113 184.443H424.223C435.114 184.443 443.943 193.272 443.943 204.163V214.273C443.943 225.164 435.114 233.993 424.223 233.993H414.113C403.222 233.993 394.393 225.164 394.393 214.273V204.163Z" fill="#FCFEFF" stroke="#E1E3EA"/> <g clip-path="url(#clip2_668_278429)"> <path d="M403.614 202.414V203.307H409.661V202.414H403.614ZM410.532 202.414V203.307H419.168C418.595 202.755 417.874 202.44 417.102 202.414H410.532ZM420.835 202.414V203.307H426.061L425.762 202.414H420.835ZM429.794 202.414L429.495 203.307H434.672V202.414H429.794ZM403.614 204.147V205.04H409.661V204.147H403.614ZM410.532 204.147V205.04H420.163C420.163 205.04 420.064 204.357 419.864 204.147H410.532ZM420.835 204.147V205.04H426.609L426.335 204.147H420.835ZM429.197 204.147L428.923 205.04H434.697V204.174L429.197 204.147ZM405.356 205.907V206.8H407.969V205.907H405.356ZM412.274 205.907V206.8H414.887V205.907H412.274ZM417.45 205.907V206.8H420.064C420.163 206.511 420.213 206.196 420.238 205.907H417.45ZM422.577 205.907V206.8H427.231L426.932 205.907H422.577ZM428.624 205.907L428.326 206.8H432.979V205.907H428.624ZM405.356 207.667V208.56H407.969V207.667H405.356ZM412.274 207.667V208.56H418.969C419.267 208.324 419.516 208.009 419.715 207.667H412.274ZM422.577 207.667V208.56H425.19V208.061L425.364 208.56H430.167L430.341 208.061V208.56H432.979V207.667H428.052L427.803 208.429L427.529 207.667H422.577ZM405.356 209.401V210.294H407.969V209.401H405.356ZM412.274 209.401V210.294H419.715C419.516 209.953 419.267 209.637 418.969 209.401H412.274ZM422.577 209.401V210.294H425.19V209.401H422.577ZM425.688 209.401L426.011 210.294H429.62L429.918 209.401H425.688ZM430.366 209.401V210.294H432.979V209.401H430.366ZM405.356 211.161V212.054H407.969V211.161H405.356ZM412.274 211.161V212.054H414.887V211.161H412.274ZM417.45 211.161V212.054H420.238C420.213 211.739 420.163 211.45 420.064 211.161H417.45ZM422.577 211.161V212.054H425.19V211.161H422.577ZM426.285 211.161L426.584 212.054H428.998L429.296 211.161H426.285ZM430.366 211.161V212.054H432.979V211.161H430.366ZM403.664 212.895V213.788H409.711V212.895H403.664ZM410.532 212.895V213.788H419.84C420.039 213.578 420.138 212.895 420.138 212.895H410.532ZM420.885 212.895V213.788H425.19V212.895H420.885ZM426.882 212.895L427.206 213.788H428.425L428.724 212.895H426.882ZM430.366 212.895V213.788H434.721V212.895H430.366ZM403.664 214.655V215.548H409.711V214.655H403.664ZM410.532 214.655V215.548H417.102C417.874 215.522 418.595 215.206 419.168 214.655H410.532ZM420.885 214.655V215.548H425.19V214.655H420.885ZM427.48 214.655L427.778 215.548H427.828L428.127 214.655H427.48ZM430.366 214.655V215.548H434.721V214.655H430.366Z" fill="#1F70C1"/> </g> </g> <path d="M384.902 251.489C384.902 253.037 383.707 253.855 382.104 253.855C381.097 253.855 380.235 253.634 379.527 253.302L379.748 251.909C380.434 252.307 381.296 252.628 382.137 252.628C382.9 252.628 383.442 252.274 383.442 251.644C383.442 251.035 383.132 250.781 381.905 250.294C380.29 249.642 379.638 249.133 379.638 247.895C379.638 246.49 380.766 245.661 382.314 245.661C383.243 245.661 383.895 245.849 384.47 246.158L384.249 247.519C383.652 247.143 382.955 246.899 382.303 246.899C381.473 246.899 381.097 247.275 381.097 247.762C381.097 248.282 381.385 248.536 382.557 249C384.271 249.675 384.902 250.25 384.902 251.489ZM389.755 252.119V250.781C387.841 250.991 387.388 251.511 387.388 252.086C387.388 252.517 387.698 252.794 388.206 252.794C388.759 252.794 389.29 252.539 389.755 252.119ZM391.192 253.767H389.976L389.843 252.993C389.323 253.49 388.671 253.888 387.742 253.888C386.669 253.888 385.95 253.269 385.95 252.23C385.95 250.781 387.189 250.162 389.755 249.918V249.73C389.755 249.078 389.345 248.835 388.649 248.835C387.919 248.835 387.222 249.034 386.548 249.31L386.371 248.16C387.1 247.872 387.841 247.673 388.826 247.673C390.418 247.673 391.192 248.248 391.192 249.664V253.767ZM394.418 253.767H392.969V245.052L394.418 244.82V253.767ZM401.383 253.148C400.719 253.612 399.901 253.888 398.906 253.888C397.169 253.888 395.887 252.937 395.887 250.781C395.887 248.846 397.092 247.662 398.707 247.662C400.553 247.662 401.394 249.023 401.394 250.704C401.394 250.825 401.394 250.969 401.383 251.057H397.324C397.402 252.241 398.043 252.76 399.049 252.76C399.857 252.76 400.531 252.473 401.206 252.008L401.383 253.148ZM398.673 248.68C398.01 248.68 397.479 249.155 397.357 250.128H399.978C399.868 249.2 399.459 248.68 398.673 248.68ZM407.352 252.02C407.352 253.192 406.478 253.888 404.863 253.888C403.968 253.888 403.05 253.612 402.464 253.313L402.652 252.097C403.304 252.506 404.133 252.794 404.919 252.794C405.615 252.794 406.013 252.55 406.013 252.152C406.013 251.71 405.726 251.544 404.686 251.301C403.193 250.936 402.574 250.516 402.574 249.421C402.574 248.403 403.415 247.673 404.841 247.673C405.637 247.673 406.378 247.828 406.987 248.094L406.788 249.299C406.179 248.978 405.46 248.768 404.83 248.768C404.211 248.768 403.912 248.989 403.912 249.321C403.912 249.653 404.167 249.841 405.118 250.073C406.699 250.471 407.352 250.892 407.352 252.02ZM414.574 245.373L408.68 255.337L407.43 255.072L413.325 245.108L414.574 245.373ZM420.821 251.489C420.821 253.037 419.627 253.855 418.023 253.855C417.017 253.855 416.154 253.634 415.446 253.302L415.668 251.909C416.353 252.307 417.216 252.628 418.056 252.628C418.819 252.628 419.361 252.274 419.361 251.644C419.361 251.035 419.052 250.781 417.824 250.294C416.21 249.642 415.557 249.133 415.557 247.895C415.557 246.49 416.685 245.661 418.233 245.661C419.162 245.661 419.815 245.849 420.39 246.158L420.169 247.519C419.571 247.143 418.875 246.899 418.222 246.899C417.393 246.899 417.017 247.275 417.017 247.762C417.017 248.282 417.304 248.536 418.477 249C420.191 249.675 420.821 250.25 420.821 251.489ZM427.455 253.767H426.238L426.094 252.926C425.508 253.457 424.823 253.888 423.993 253.888C422.81 253.888 422.191 253.214 422.191 252.097V247.795H423.639V251.71C423.639 252.241 423.894 252.606 424.491 252.606C425.011 252.606 425.53 252.296 426.006 251.832V247.795H427.455V253.767ZM433.403 250.692C433.403 249.531 432.872 248.945 432.12 248.945C431.534 248.945 431.07 249.288 430.638 249.808V252.407C431.036 252.584 431.357 252.661 431.91 252.661C432.762 252.661 433.403 252.031 433.403 250.692ZM434.863 250.615C434.863 252.838 433.569 253.833 432.109 253.833C431.523 253.833 431.025 253.734 430.638 253.601V255.857L429.19 256.067V247.795H430.406L430.55 248.613C431.003 248.127 431.611 247.662 432.485 247.662C433.801 247.662 434.863 248.602 434.863 250.615ZM440.477 250.692C440.477 249.531 439.946 248.945 439.194 248.945C438.608 248.945 438.143 249.288 437.712 249.808V252.407C438.11 252.584 438.431 252.661 438.984 252.661C439.835 252.661 440.477 252.031 440.477 250.692ZM441.937 250.615C441.937 252.838 440.643 253.833 439.183 253.833C438.597 253.833 438.099 253.734 437.712 253.601V255.857L436.263 256.067V247.795H437.48L437.624 248.613C438.077 248.127 438.685 247.662 439.559 247.662C440.875 247.662 441.937 248.602 441.937 250.615ZM448.855 250.781C448.855 252.727 447.606 253.888 445.914 253.888C444.233 253.888 443.005 252.727 443.005 250.781C443.005 248.835 444.244 247.662 445.914 247.662C447.606 247.662 448.855 248.835 448.855 250.781ZM447.429 250.781C447.429 249.675 446.887 248.846 445.914 248.846C444.952 248.846 444.432 249.653 444.432 250.781C444.432 251.887 444.963 252.705 445.914 252.705C446.909 252.705 447.429 251.909 447.429 250.781ZM453.931 249.1C452.947 249.155 452.14 249.675 451.698 250.328V253.767H450.249V247.795H451.465L451.664 248.989C452.085 248.304 452.726 247.718 453.699 247.662L453.931 249.1ZM458.436 253.767C458.204 253.822 457.916 253.866 457.474 253.866C456.28 253.866 455.483 253.446 455.483 252.097V248.978H454.588V247.795H455.483V245.893L456.91 245.672V247.795H458.204L458.392 248.978H456.91V251.854C456.91 252.34 457.142 252.606 457.739 252.606C457.927 252.606 458.115 252.595 458.259 252.561L458.436 253.767Z" fill="#606B85"/> <g filter="url(#filter3_d_668_278429)"> <path d="M394.393 283.155C394.393 272.264 403.222 263.435 414.113 263.435H424.223C435.114 263.435 443.943 272.264 443.943 283.155V293.265C443.943 304.156 435.114 312.985 424.223 312.985H414.113C403.222 312.985 394.393 304.156 394.393 293.265V283.155Z" fill="#FCFEFF" stroke="#E1E3EA"/> <path d="M416.658 280.43C417.623 279.431 418.967 278.799 420.449 278.799C422.424 278.799 424.136 279.901 425.055 281.533C425.847 281.176 426.732 280.981 427.662 280.981C431.223 280.981 434.095 283.887 434.095 287.471C434.095 291.055 431.211 293.961 427.662 293.961C427.226 293.961 426.801 293.915 426.399 293.835C425.595 295.27 424.055 296.247 422.286 296.247C421.551 296.247 420.851 296.074 420.23 295.776C419.415 297.694 417.508 299.049 415.291 299.049C412.982 299.049 411.007 297.591 410.249 295.535C409.916 295.603 409.571 295.638 409.226 295.638C406.47 295.638 404.241 293.387 404.241 290.595C404.241 288.735 405.241 287.103 406.734 286.231C406.424 285.53 406.251 284.749 406.251 283.922C406.24 280.74 408.847 278.144 412.041 278.144C413.924 278.144 415.601 279.04 416.658 280.43Z" fill="#00A1E0"/> <path d="M408.56 288.987L408.686 288.654C408.709 288.597 408.744 288.62 408.767 288.631C408.801 288.654 408.824 288.666 408.87 288.7C409.226 288.93 409.559 288.93 409.663 288.93C409.927 288.93 410.099 288.792 410.099 288.597V288.585C410.099 288.379 409.847 288.298 409.548 288.206L409.479 288.183C409.077 288.068 408.641 287.896 408.641 287.391V287.379C408.641 286.897 409.031 286.552 409.594 286.552H409.651C409.984 286.552 410.295 286.644 410.524 286.793C410.547 286.805 410.57 286.828 410.559 286.862C410.547 286.897 410.444 287.161 410.432 287.195C410.409 287.253 410.352 287.218 410.352 287.218C410.145 287.104 409.835 287.023 409.571 287.023C409.33 287.023 409.18 287.149 409.18 287.322V287.333C409.18 287.529 409.445 287.62 409.743 287.712L409.801 287.724C410.203 287.85 410.628 288.022 410.628 288.516V288.528C410.628 289.056 410.249 289.378 409.64 289.378C409.341 289.378 409.054 289.332 408.744 289.171C408.686 289.137 408.629 289.114 408.572 289.068C408.56 289.045 408.537 289.033 408.56 288.987ZM417.52 288.987L417.646 288.654C417.669 288.597 417.715 288.62 417.726 288.631C417.761 288.654 417.784 288.666 417.83 288.7C418.186 288.93 418.519 288.93 418.622 288.93C418.886 288.93 419.059 288.792 419.059 288.597V288.585C419.059 288.379 418.806 288.298 418.507 288.206L418.438 288.183C418.036 288.068 417.6 287.896 417.6 287.391V287.379C417.6 286.897 417.991 286.552 418.553 286.552H418.611C418.944 286.552 419.254 286.644 419.484 286.793C419.507 286.805 419.53 286.828 419.518 286.862C419.507 286.897 419.403 287.161 419.392 287.195C419.369 287.253 419.311 287.218 419.311 287.218C419.105 287.104 418.795 287.023 418.53 287.023C418.289 287.023 418.14 287.149 418.14 287.322V287.333C418.14 287.529 418.404 287.62 418.703 287.712L418.76 287.724C419.162 287.85 419.587 288.022 419.587 288.516V288.528C419.587 289.056 419.208 289.378 418.599 289.378C418.301 289.378 418.013 289.332 417.703 289.171C417.646 289.137 417.588 289.114 417.531 289.068C417.531 289.045 417.508 289.033 417.52 288.987ZM424.159 287.414C424.205 287.586 424.239 287.77 424.239 287.965C424.239 288.16 424.216 288.344 424.159 288.516C424.113 288.689 424.032 288.838 423.929 288.964C423.826 289.091 423.688 289.194 423.538 289.263C423.378 289.332 423.194 289.366 422.987 289.366C422.78 289.366 422.597 289.332 422.436 289.263C422.275 289.194 422.149 289.091 422.045 288.964C421.942 288.838 421.861 288.689 421.816 288.516C421.77 288.344 421.735 288.16 421.735 287.965C421.735 287.77 421.758 287.586 421.816 287.414C421.861 287.241 421.942 287.092 422.045 286.966C422.149 286.839 422.286 286.736 422.436 286.667C422.597 286.598 422.78 286.552 422.987 286.552C423.194 286.552 423.378 286.587 423.538 286.667C423.699 286.736 423.826 286.839 423.929 286.966C424.032 287.092 424.113 287.241 424.159 287.414ZM423.642 287.954C423.642 287.655 423.584 287.425 423.481 287.264C423.378 287.104 423.205 287.023 422.987 287.023C422.757 287.023 422.597 287.104 422.493 287.264C422.39 287.425 422.332 287.655 422.332 287.954C422.332 288.252 422.39 288.482 422.493 288.654C422.597 288.815 422.757 288.895 422.987 288.895C423.217 288.895 423.378 288.815 423.481 288.654C423.596 288.493 423.642 288.252 423.642 287.954ZM428.363 288.815L428.489 289.16C428.501 289.206 428.466 289.217 428.466 289.217C428.271 289.297 428.007 289.343 427.743 289.343C427.295 289.343 426.961 289.217 426.732 288.964C426.502 288.712 426.387 288.367 426.387 287.942C426.387 287.747 426.41 287.563 426.468 287.391C426.525 287.218 426.605 287.069 426.72 286.943C426.835 286.816 426.973 286.713 427.134 286.644C427.295 286.575 427.49 286.529 427.708 286.529C427.857 286.529 427.984 286.541 428.087 286.552C428.202 286.575 428.363 286.61 428.432 286.644C428.443 286.644 428.478 286.667 428.466 286.701C428.42 286.839 428.386 286.931 428.34 287.046C428.317 287.104 428.282 287.081 428.282 287.081C428.11 287.023 427.949 287 427.743 287C427.49 287 427.295 287.081 427.18 287.253C427.053 287.414 426.984 287.632 426.984 287.931C426.984 288.252 427.065 288.482 427.203 288.631C427.341 288.781 427.536 288.849 427.788 288.849C427.892 288.849 427.984 288.838 428.064 288.826C428.145 288.815 428.225 288.792 428.305 288.758C428.294 288.781 428.34 288.769 428.363 288.815ZM430.97 287.31C431.085 287.701 431.028 288.034 431.016 288.057C431.016 288.103 430.97 288.103 430.97 288.103H429.236C429.247 288.367 429.305 288.551 429.443 288.677C429.569 288.804 429.764 288.884 430.04 288.884C430.453 288.884 430.626 288.804 430.752 288.758C430.752 288.758 430.798 288.746 430.821 288.792L430.936 289.114C430.959 289.171 430.936 289.183 430.924 289.194C430.821 289.251 430.557 289.366 430.051 289.366C429.81 289.366 429.592 289.332 429.42 289.263C429.247 289.194 429.098 289.102 428.983 288.976C428.868 288.849 428.788 288.7 428.73 288.539C428.673 288.367 428.65 288.183 428.65 287.988C428.65 287.793 428.673 287.609 428.73 287.437C428.776 287.264 428.857 287.115 428.96 286.989C429.063 286.862 429.201 286.759 429.362 286.69C429.523 286.61 429.718 286.575 429.936 286.575C430.12 286.575 430.293 286.61 430.43 286.679C430.534 286.724 430.649 286.805 430.763 286.931C430.821 286.977 430.924 287.149 430.97 287.31ZM429.247 287.678H430.476C430.465 287.517 430.43 287.379 430.361 287.264C430.258 287.104 430.109 287.012 429.879 287.012C429.649 287.012 429.488 287.104 429.385 287.264C429.316 287.368 429.282 287.506 429.247 287.678ZM417.106 287.31C417.221 287.701 417.163 288.034 417.163 288.057C417.163 288.103 417.118 288.103 417.118 288.103H415.383C415.395 288.367 415.452 288.551 415.59 288.677C415.716 288.804 415.911 288.884 416.187 288.884C416.601 288.884 416.773 288.804 416.899 288.758C416.899 288.758 416.945 288.746 416.968 288.792L417.083 289.114C417.106 289.171 417.083 289.183 417.072 289.194C416.968 289.251 416.704 289.366 416.199 289.366C415.957 289.366 415.739 289.332 415.567 289.263C415.395 289.194 415.245 289.102 415.13 288.976C415.016 288.849 414.935 288.7 414.878 288.539C414.82 288.367 414.797 288.183 414.797 287.988C414.797 287.793 414.82 287.609 414.878 287.437C414.924 287.264 415.004 287.115 415.107 286.989C415.211 286.862 415.349 286.759 415.509 286.69C415.67 286.61 415.866 286.575 416.084 286.575C416.268 286.575 416.44 286.61 416.578 286.679C416.681 286.724 416.796 286.805 416.911 286.931C416.957 286.977 417.072 287.149 417.106 287.31ZM415.383 287.678H416.624C416.612 287.517 416.578 287.379 416.509 287.264C416.405 287.104 416.256 287.012 416.026 287.012C415.797 287.012 415.636 287.104 415.532 287.264C415.452 287.368 415.418 287.506 415.383 287.678ZM412.339 287.586C412.339 287.586 412.477 287.597 412.626 287.62V287.551C412.626 287.322 412.58 287.207 412.489 287.138C412.397 287.069 412.247 287.023 412.063 287.023C412.063 287.023 411.639 287.023 411.305 287.195C411.294 287.207 411.282 287.207 411.282 287.207C411.282 287.207 411.236 287.218 411.225 287.184L411.099 286.851C411.076 286.805 411.11 286.782 411.11 286.782C411.271 286.656 411.639 286.587 411.639 286.587C411.765 286.564 411.972 286.541 412.098 286.541C412.443 286.541 412.707 286.621 412.891 286.782C413.074 286.943 413.166 287.195 413.166 287.551V289.137C413.166 289.137 413.166 289.183 413.132 289.194C413.132 289.194 413.063 289.217 413.005 289.229C412.948 289.24 412.741 289.286 412.569 289.309C412.397 289.343 412.224 289.355 412.041 289.355C411.868 289.355 411.719 289.343 411.581 289.309C411.443 289.274 411.328 289.229 411.225 289.16C411.133 289.091 411.053 288.999 410.995 288.884C410.938 288.781 410.915 288.643 410.915 288.493C410.915 288.344 410.949 288.206 411.007 288.091C411.064 287.976 411.156 287.885 411.259 287.804C411.363 287.724 411.489 287.678 411.616 287.632C411.753 287.597 411.891 287.574 412.041 287.574C412.178 287.586 412.27 287.586 412.339 287.586ZM411.65 288.804C411.65 288.804 411.811 288.93 412.155 288.907C412.408 288.895 412.626 288.849 412.626 288.849V288.057C412.626 288.057 412.408 288.022 412.155 288.022C411.799 288.022 411.65 288.149 411.65 288.149C411.547 288.218 411.501 288.333 411.501 288.482C411.501 288.574 411.524 288.654 411.558 288.712C411.57 288.735 411.581 288.758 411.65 288.804ZM426.295 286.701C426.284 286.747 426.192 286.989 426.169 287.069C426.157 287.104 426.134 287.115 426.1 287.115C426.1 287.115 425.997 287.092 425.905 287.092C425.847 287.092 425.755 287.104 425.675 287.126C425.595 287.149 425.526 287.195 425.457 287.253C425.388 287.31 425.342 287.402 425.307 287.506C425.273 287.609 425.25 287.781 425.25 287.965V289.251C425.25 289.286 425.227 289.309 425.193 289.309H424.733C424.699 289.309 424.676 289.286 424.676 289.251V286.667C424.676 286.633 424.699 286.61 424.722 286.61H425.17C425.204 286.61 425.216 286.633 425.216 286.667V286.874C425.284 286.782 425.399 286.701 425.503 286.656C425.606 286.61 425.732 286.575 425.951 286.587C426.066 286.598 426.215 286.621 426.238 286.633C426.284 286.644 426.307 286.656 426.295 286.701ZM422.034 285.507C422.045 285.507 422.08 285.53 422.068 285.564L421.93 285.932C421.919 285.955 421.907 285.978 421.85 285.955C421.838 285.955 421.816 285.943 421.758 285.932C421.724 285.92 421.666 285.92 421.62 285.92C421.551 285.92 421.494 285.932 421.436 285.943C421.379 285.955 421.333 285.989 421.287 286.035C421.241 286.081 421.195 286.139 421.161 286.219C421.092 286.403 421.069 286.598 421.069 286.61H421.62C421.666 286.61 421.678 286.633 421.678 286.667L421.609 287.023C421.597 287.081 421.551 287.069 421.551 287.069H420.977L420.609 289.286C420.563 289.516 420.518 289.711 420.46 289.872C420.403 290.033 420.334 290.147 420.23 290.262C420.138 290.366 420.035 290.446 419.909 290.481C419.794 290.526 419.645 290.549 419.484 290.549C419.403 290.549 419.323 290.549 419.231 290.526C419.162 290.515 419.128 290.504 419.07 290.481C419.047 290.469 419.036 290.446 419.047 290.412C419.059 290.377 419.162 290.101 419.174 290.056C419.197 290.01 419.231 290.033 419.231 290.033C419.266 290.044 419.288 290.056 419.323 290.067C419.369 290.079 419.415 290.079 419.461 290.079C419.541 290.079 419.61 290.067 419.668 290.044C419.736 290.021 419.782 289.975 419.828 289.918C419.874 289.86 419.909 289.78 419.955 289.676C419.989 289.573 420.024 289.424 420.058 289.251L420.449 287.081H420.07C420.024 287.081 420.012 287.058 420.012 287.023L420.081 286.667C420.093 286.61 420.138 286.621 420.138 286.621H420.529L420.552 286.506C420.609 286.162 420.724 285.897 420.897 285.725C421.069 285.553 421.322 285.461 421.632 285.461C421.724 285.461 421.804 285.472 421.873 285.484C421.919 285.472 421.976 285.484 422.034 285.507ZM414.292 289.24C414.292 289.274 414.269 289.297 414.246 289.297H413.786C413.752 289.297 413.741 289.274 413.741 289.24V285.553C413.741 285.53 413.763 285.495 413.786 285.495H414.246C414.28 285.495 414.292 285.518 414.292 285.553V289.24Z" fill="white"/> </g> <path d="M387.634 332.758L390.808 324.707H392.411L395.519 332.559L394.004 332.836L393.185 330.701H389.912L389.16 332.758H387.634ZM391.549 326.344L390.365 329.463H392.732L391.549 326.344ZM400.568 330.746V328.147C400.17 327.97 399.849 327.881 399.296 327.881C398.434 327.881 397.803 328.523 397.803 329.85C397.803 331.033 398.345 331.597 399.075 331.597C399.672 331.597 400.137 331.265 400.568 330.746ZM402.017 332.758H400.789L400.657 331.929C400.203 332.438 399.595 332.88 398.721 332.88C397.405 332.88 396.344 331.951 396.344 329.938C396.344 327.715 397.637 326.72 399.097 326.72C399.694 326.72 400.181 326.82 400.568 326.952V324.044L402.017 323.812V332.758ZM408.98 326.787L406.768 332.791H405.342L403.163 326.897L404.678 326.698L406.116 330.989L407.52 326.787H408.98ZM415.112 332.139C414.449 332.603 413.63 332.88 412.635 332.88C410.899 332.88 409.616 331.929 409.616 329.772C409.616 327.837 410.822 326.654 412.436 326.654C414.283 326.654 415.123 328.014 415.123 329.695C415.123 329.817 415.123 329.96 415.112 330.049H411.054C411.131 331.232 411.773 331.752 412.779 331.752C413.586 331.752 414.261 331.464 414.935 331L415.112 332.139ZM412.403 327.671C411.739 327.671 411.209 328.147 411.087 329.12H413.708C413.597 328.191 413.188 327.671 412.403 327.671ZM420.207 328.091C419.223 328.147 418.416 328.667 417.974 329.319V332.758H416.525V326.787H417.741L417.94 327.981C418.361 327.295 419.002 326.709 419.975 326.654L420.207 328.091ZM424.712 332.758C424.48 332.814 424.192 332.858 423.75 332.858C422.556 332.858 421.759 332.438 421.759 331.088V327.97H420.864V326.787H421.759V324.884L423.186 324.663V326.787H424.48L424.668 327.97H423.186V330.845C423.186 331.332 423.418 331.597 424.015 331.597C424.203 331.597 424.391 331.586 424.535 331.553L424.712 332.758ZM427.688 324.929C427.688 325.415 427.312 325.769 426.825 325.769C426.338 325.769 425.94 325.415 425.94 324.929C425.94 324.442 426.338 324.088 426.825 324.088C427.312 324.088 427.688 324.442 427.688 324.929ZM427.544 332.758H426.095V326.787H427.544V332.758ZM433.9 331.011C433.9 332.183 433.027 332.88 431.412 332.88C430.516 332.88 429.598 332.603 429.012 332.305L429.2 331.088C429.853 331.498 430.682 331.785 431.467 331.785C432.164 331.785 432.562 331.542 432.562 331.144C432.562 330.701 432.275 330.535 431.235 330.292C429.742 329.927 429.123 329.507 429.123 328.412C429.123 327.395 429.963 326.665 431.39 326.665C432.186 326.665 432.927 326.82 433.535 327.085L433.336 328.291C432.728 327.97 432.009 327.76 431.379 327.76C430.76 327.76 430.461 327.981 430.461 328.313C430.461 328.644 430.715 328.832 431.666 329.065C433.248 329.463 433.9 329.883 433.9 331.011ZM436.943 324.929C436.943 325.415 436.567 325.769 436.08 325.769C435.594 325.769 435.196 325.415 435.196 324.929C435.196 324.442 435.594 324.088 436.08 324.088C436.567 324.088 436.943 324.442 436.943 324.929ZM436.799 332.758H435.35V326.787H436.799V332.758ZM443.863 332.758H442.415V328.832C442.415 328.302 442.171 327.937 441.574 327.937C441.054 327.937 440.535 328.246 440.048 328.711V332.758H438.599V326.787H439.816L439.96 327.627C440.557 327.096 441.231 326.654 442.072 326.654C443.244 326.654 443.863 327.339 443.863 328.456V332.758ZM448.971 328.733C448.971 328.091 448.507 327.605 447.81 327.605C447.102 327.605 446.682 328.114 446.682 328.777C446.682 329.407 447.113 329.883 447.81 329.883C448.529 329.883 448.971 329.385 448.971 328.733ZM451.083 333.035C451.083 334.307 449.635 335.014 447.854 335.014C446.173 335.014 444.902 334.517 444.902 333.521C444.902 332.946 445.3 332.515 446.096 332.095C445.853 331.918 445.742 331.686 445.742 331.453C445.742 331.133 446.007 330.801 446.505 330.524C445.775 330.193 445.322 329.562 445.322 328.766C445.322 327.472 446.439 326.665 447.799 326.665C448.496 326.665 449.093 326.864 449.535 327.207L451.072 326.698L451.271 327.87L450.132 327.948C450.243 328.191 450.309 328.456 450.309 328.733C450.309 330.027 449.17 330.79 447.843 330.79C447.666 330.79 447.489 330.779 447.323 330.757C447.158 330.867 447.058 330.978 447.058 331.077C447.058 331.276 447.257 331.332 448.263 331.475L448.993 331.553C450.287 331.73 451.083 332.117 451.083 333.035ZM447.832 332.592C447.412 332.537 447.202 332.515 446.892 332.449C446.394 332.758 446.173 333.046 446.173 333.367C446.173 333.82 446.77 334.141 447.954 334.141C449.082 334.141 449.734 333.787 449.734 333.333C449.734 333.002 449.458 332.814 448.639 332.692L447.832 332.592Z" fill="#606B85"/> <g filter="url(#filter4_d_668_278429)"> <path d="M394.393 362.147C394.393 351.255 403.222 342.427 414.113 342.427H424.223C435.114 342.427 443.943 351.255 443.943 362.147V372.257C443.943 383.148 435.114 391.977 424.223 391.977H414.113C403.222 391.977 394.393 383.148 394.393 372.257V362.147Z" fill="#FCFEFF" stroke="#E1E3EA"/> <path d="M414.2 356.196C414.5 355.408 414.914 354.681 415.528 354.093C417.983 351.702 422.042 352.303 423.708 355.307C424.961 357.586 426.289 359.815 427.58 362.068C429.734 365.811 431.914 369.555 434.044 373.311C435.835 376.453 433.894 380.422 430.336 380.96C428.156 381.286 426.114 380.284 424.986 378.331C423.095 375.038 421.19 371.746 419.299 368.466C419.261 368.39 419.211 368.328 419.161 368.265C418.96 368.102 418.873 367.865 418.747 367.652C417.908 366.174 417.044 364.71 416.204 363.245C415.665 362.293 415.102 361.354 414.563 360.403C414.074 359.552 413.849 358.625 413.874 357.649C413.912 357.148 413.974 356.647 414.2 356.196Z" fill="#3C8BD9"/> <path d="M414.2 356.196C414.087 356.647 413.987 357.098 413.961 357.573C413.924 358.625 414.187 359.602 414.713 360.516C416.091 362.882 417.469 365.26 418.835 367.639C418.96 367.852 419.06 368.065 419.186 368.265C418.434 369.567 417.682 370.857 416.918 372.159C415.866 373.974 414.813 375.802 413.749 377.617C413.698 377.617 413.686 377.592 413.673 377.555C413.661 377.455 413.698 377.367 413.723 377.267C414.237 375.389 413.811 373.724 412.521 372.296C411.732 371.433 410.729 370.944 409.577 370.782C408.073 370.569 406.745 370.957 405.555 371.896C405.342 372.059 405.204 372.296 404.954 372.422C404.904 372.422 404.879 372.397 404.866 372.359C405.468 371.32 406.056 370.281 406.658 369.242C409.138 364.935 411.619 360.628 414.112 356.334C414.137 356.284 414.174 356.246 414.2 356.196Z" fill="#FABC04"/> <path d="M404.916 372.397C405.154 372.184 405.38 371.959 405.63 371.758C408.675 369.354 413.247 371.095 413.911 374.901C414.074 375.815 413.987 376.691 413.711 377.567C413.698 377.642 413.686 377.705 413.661 377.78C413.548 377.98 413.448 378.193 413.323 378.394C412.208 380.234 410.566 381.148 408.412 381.01C405.944 380.835 404.002 378.982 403.664 376.528C403.501 375.339 403.739 374.225 404.353 373.198C404.478 372.973 404.628 372.772 404.766 372.547C404.829 372.497 404.804 372.397 404.916 372.397Z" fill="#34A852"/> </g> <path d="M201.94 209.218H171.42C124.481 209.218 133.629 313.487 89.82 313.487H75.5537" stroke="url(#paint5_linear_668_278429)" stroke-width="8"/> <path d="M201.94 209.218H171.42C124.481 209.218 133.629 104.949 89.82 104.949H75.5537" stroke="url(#paint6_linear_668_278429)" stroke-width="8"/> <path d="M201.941 209.218H176.882C132.944 209.218 137.338 209.218 96.3287 209.218H75.5547" stroke="url(#paint7_linear_668_278429)" stroke-width="8"/> <path d="M41.6769 70.5063H40.1839L39.7195 64.5567L37.5188 70.5285H36.1696L33.9689 64.5567L33.5155 70.5063H32.1552L32.8077 62.4887H34.7209L36.9437 68.5711L39.1665 62.4887H41.0465L41.6769 70.5063ZM48.8003 67.5205C48.8003 69.4668 47.5507 70.628 45.8587 70.628C44.1777 70.628 42.9502 69.4668 42.9502 67.5205C42.9502 65.5741 44.1888 64.4019 45.8587 64.4019C47.5507 64.4019 48.8003 65.5741 48.8003 67.5205ZM47.3737 67.5205C47.3737 66.4146 46.8318 65.5852 45.8587 65.5852C44.8966 65.5852 44.3768 66.3925 44.3768 67.5205C44.3768 68.6263 44.9076 69.4447 45.8587 69.4447C46.854 69.4447 47.3737 68.6485 47.3737 67.5205ZM55.8116 67.3546C55.8116 69.5553 54.562 70.5838 52.7151 70.5838C51.753 70.5838 50.9678 70.4289 50.1937 70.1856V61.792L51.6424 61.5598V65.2092C52.0516 64.8111 52.6377 64.4019 53.434 64.4019C54.761 64.4019 55.8116 65.3419 55.8116 67.3546ZM54.3629 67.432C54.3629 66.2708 53.8321 65.6847 53.0911 65.6847C52.5382 65.6847 52.0627 66.0275 51.6424 66.4809V69.2346C51.9742 69.3452 52.2286 69.3894 52.693 69.3894C53.7215 69.3894 54.3629 68.8143 54.3629 67.432ZM58.8942 62.6767C58.8942 63.1633 58.5182 63.5172 58.0316 63.5172C57.545 63.5172 57.1469 63.1633 57.1469 62.6767C57.1469 62.1901 57.545 61.8362 58.0316 61.8362C58.5182 61.8362 58.8942 62.1901 58.8942 62.6767ZM58.7504 70.5063H57.3017V64.5346H58.7504V70.5063ZM62.0767 70.5063H60.628V61.792L62.0767 61.5598V70.5063ZM69.0413 69.8871C68.3778 70.3515 67.5595 70.628 66.5642 70.628C64.8279 70.628 63.5451 69.6769 63.5451 67.5205C63.5451 65.5852 64.7505 64.4019 66.3651 64.4019C68.2119 64.4019 69.0524 65.7621 69.0524 67.4431C69.0524 67.5647 69.0524 67.7085 69.0413 67.7969H64.9827C65.0602 68.9802 65.7016 69.5 66.7079 69.5C67.5152 69.5 68.1898 69.2125 68.8644 68.748L69.0413 69.8871ZM66.3319 65.4193C65.6684 65.4193 65.1376 65.8948 65.0159 66.868H67.6369C67.5263 65.9391 67.1171 65.4193 66.3319 65.4193Z" fill="#606B85"/> <g filter="url(#filter5_d_668_278429)"> <path d="M25.5024 99.8946C25.5024 89.0035 34.3314 80.1746 45.2224 80.1746H55.3324C66.2235 80.1746 75.0524 89.0035 75.0524 99.8946V110.005C75.0524 120.896 66.2235 129.725 55.3324 129.725H45.2224C34.3314 129.725 25.5024 120.896 25.5024 110.005L25.5024 99.8946Z" fill="#FCFEFF" stroke="#E1E3EA"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M55.883 89.5635C56.1624 93.7562 52.6514 96.6181 49.8482 96.4868C49.5577 92.6759 52.8237 89.8196 55.883 89.5635ZM52.1253 98.3069C53.2911 97.8524 54.6439 97.3249 56.521 97.595C58.3519 97.8567 60.0022 98.6986 61.3442 100.506L61.7064 101.062C57.076 103.77 57.0947 110.285 62.1293 112.298C61.4755 114.119 60.1158 117.02 58.3184 118.789C56.1831 120.886 54.6602 120.304 52.9091 119.634C52.5936 119.513 52.2706 119.39 51.9353 119.278C50.7181 118.874 49.2615 119.085 48.1011 119.58C48.0679 119.594 48.0348 119.609 48.0019 119.623C46.9381 120.082 46.0608 120.46 44.8304 120.223C42.9305 119.86 41.1443 117.35 39.6477 114.523C37.8792 111.178 36.7523 105.29 38.6754 101.788C39.2333 100.78 40.0118 99.8469 41.053 98.9659C42.3215 97.8846 43.8516 97.6118 45.053 97.5885C46.1019 97.5729 47.148 97.9737 48.1064 98.3408C48.5196 98.4992 48.9166 98.6513 49.2904 98.761C50.0466 98.9826 50.7525 98.8122 51.5143 98.5393C51.7133 98.4675 51.9163 98.3884 52.1253 98.3069Z" fill="#3D556B"/> </g> <path d="M49.3481 166.757L46.9263 174.797H45.4997L43.5644 168.914L41.6291 174.797H40.2246L37.847 166.968L39.4394 166.68L41.0651 172.453L42.8898 166.757H44.4159L46.2406 172.453L47.822 166.757H49.3481ZM55.0094 174.156C54.3459 174.62 53.5275 174.897 52.5322 174.897C50.796 174.897 49.5132 173.946 49.5132 171.789C49.5132 169.854 50.7186 168.671 52.3332 168.671C54.18 168.671 55.0205 170.031 55.0205 171.712C55.0205 171.833 55.0205 171.977 55.0094 172.066H50.9508C51.0282 173.249 51.6696 173.769 52.676 173.769C53.4833 173.769 54.1579 173.481 54.8325 173.017L55.0094 174.156ZM52.3 169.688C51.6365 169.688 51.1056 170.164 50.984 171.137H53.6049C53.4943 170.208 53.0852 169.688 52.3 169.688ZM62.0398 171.623C62.0398 173.824 60.7901 174.853 58.9433 174.853C57.9812 174.853 57.196 174.698 56.4219 174.454V166.061L57.8706 165.829V169.478C58.2798 169.08 58.8659 168.671 59.6621 168.671C60.9892 168.671 62.0398 169.611 62.0398 171.623ZM60.5911 171.701C60.5911 170.54 60.0603 169.953 59.3193 169.953C58.7664 169.953 58.2908 170.296 57.8706 170.75V173.503C58.2024 173.614 58.4567 173.658 58.9212 173.658C59.9497 173.658 60.5911 173.083 60.5911 171.701Z" fill="#606B85"/> <g filter="url(#filter6_d_668_278429)"> <path d="M25.5024 204.163C25.5024 193.272 34.3314 184.443 45.2224 184.443H55.3324C66.2235 184.443 75.0524 193.272 75.0524 204.163V214.273C75.0524 225.164 66.2235 233.993 55.3324 233.993H45.2224C34.3314 233.993 25.5024 225.164 25.5024 214.273L25.5024 204.163Z" fill="#FCFEFF" stroke="#E1E3EA"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M49.0084 224.452C49.3768 224.663 49.7953 224.772 50.2167 224.772C50.6439 224.772 51.0614 224.663 51.4298 224.452L62.954 217.871C63.7008 217.44 64.1643 216.646 64.1643 215.791V202.635C64.1643 201.78 63.7008 200.985 62.954 200.557L51.4298 193.97C50.7066 193.563 49.7375 193.563 49.0084 193.97L37.4832 200.557C36.7365 200.983 36.2749 201.78 36.2749 202.635V215.791C36.2749 216.646 36.7365 217.443 37.4832 217.871L40.5053 219.591C41.9694 220.305 42.4937 220.305 43.16 220.305C45.3277 220.305 46.5722 219.008 46.5722 216.746V203.758C46.5722 203.575 46.4213 203.429 46.239 203.429H44.7769C44.5917 203.429 44.4428 203.575 44.4428 203.758V216.746C44.4428 217.75 43.3933 218.747 41.6803 217.9L38.5229 216.096C38.4122 216.036 38.3416 215.917 38.3416 215.791V202.635C38.3416 202.51 38.4122 202.386 38.5239 202.323L50.0412 195.748C50.149 195.686 50.2901 195.686 50.397 195.748L61.9172 202.321C62.027 202.386 62.0956 202.506 62.0956 202.635V215.791C62.0956 215.917 62.027 216.039 61.9192 216.1L50.395 222.68C50.296 222.738 50.1451 222.738 50.0373 222.68L47.0818 220.944C46.9936 220.892 46.8809 220.874 46.7956 220.921C45.9774 221.381 45.8226 221.441 45.0553 221.704C44.8661 221.769 44.5859 221.882 45.1601 222.201L49.0084 224.452ZM48.0343 210.807C48.0343 212.728 49.0907 215.017 54.1345 215.017C57.7858 215.017 59.8799 213.594 59.8799 211.111C59.8799 208.649 58.1974 207.993 54.6558 207.53C51.077 207.061 50.7135 206.82 50.7135 205.991C50.7135 205.307 51.0212 204.393 53.672 204.393C56.0395 204.393 56.9126 204.898 57.2713 206.477C57.3027 206.625 57.4399 206.734 57.5947 206.734H59.0911C59.1832 206.734 59.2714 206.694 59.3351 206.629C59.3978 206.559 59.4311 206.469 59.4223 206.375C59.191 203.655 57.3644 202.388 53.672 202.388C50.3862 202.388 48.4263 203.76 48.4263 206.06C48.4263 208.555 50.3764 209.244 53.5299 209.553C57.3027 209.918 57.5957 210.463 57.5957 211.198C57.5957 212.472 56.5618 213.016 54.1345 213.016C51.0849 213.016 50.4136 212.258 50.1892 210.758C50.1628 210.597 50.0246 210.479 49.858 210.479H48.3675C48.1833 210.479 48.0343 210.624 48.0343 210.807Z" fill="#53914F"/> </g> <path d="M31.073 270.301L28.6511 278.341H27.2245L25.2892 272.458L23.3539 278.341H21.9495L19.5718 270.512L21.1643 270.224L22.7899 275.997L24.6146 270.301H26.1407L27.9655 275.997L29.5469 270.301H31.073ZM35.0741 276.671V275.333C33.1609 275.543 32.7075 276.063 32.7075 276.638C32.7075 277.069 33.0172 277.346 33.5259 277.346C34.0788 277.346 34.6096 277.092 35.0741 276.671ZM36.5118 278.319H35.2953L35.1626 277.545C34.6428 278.043 33.9903 278.441 33.0614 278.441C31.9887 278.441 31.2699 277.821 31.2699 276.782C31.2699 275.333 32.5085 274.714 35.0741 274.471V274.283C35.0741 273.63 34.6649 273.387 33.9682 273.387C33.2383 273.387 32.5416 273.586 31.8671 273.862L31.6901 272.712C32.42 272.425 33.1609 272.226 34.1452 272.226C35.7376 272.226 36.5118 272.801 36.5118 274.216V278.319ZM41.8941 273.652C40.9099 273.708 40.1026 274.227 39.6602 274.88V278.319H38.2115V272.347H39.428L39.6271 273.542C40.0473 272.856 40.6887 272.27 41.6619 272.215L41.8941 273.652ZM47.9659 277.7C47.3023 278.164 46.484 278.441 45.4887 278.441C43.7524 278.441 42.4696 277.49 42.4696 275.333C42.4696 273.398 43.675 272.215 45.2896 272.215C47.1364 272.215 47.9769 273.575 47.9769 275.256C47.9769 275.377 47.9769 275.521 47.9659 275.61H43.9073C43.9847 276.793 44.6261 277.313 45.6324 277.313C46.4397 277.313 47.1143 277.025 47.7889 276.561L47.9659 277.7ZM45.2564 273.232C44.5929 273.232 44.0621 273.708 43.9404 274.681H46.5614C46.4508 273.752 46.0416 273.232 45.2564 273.232ZM54.6424 278.319H53.1937V274.393C53.1937 273.862 52.9504 273.497 52.3532 273.497C51.8334 273.497 51.3137 273.807 50.8271 274.272V278.319H49.3784V269.605L50.8271 269.373V273.11C51.3579 272.646 52.0104 272.215 52.8508 272.215C54.0231 272.215 54.6424 272.9 54.6424 274.017V278.319ZM61.8625 275.333C61.8625 277.28 60.6128 278.441 58.9208 278.441C57.2399 278.441 56.0124 277.28 56.0124 275.333C56.0124 273.387 57.2509 272.215 58.9208 272.215C60.6128 272.215 61.8625 273.387 61.8625 275.333ZM60.4359 275.333C60.4359 274.227 59.894 273.398 58.9208 273.398C57.9587 273.398 57.4389 274.205 57.4389 275.333C57.4389 276.439 57.9698 277.257 58.9208 277.257C59.9161 277.257 60.4359 276.461 60.4359 275.333ZM68.4867 278.319H67.2702L67.1265 277.479C66.5404 278.009 65.8547 278.441 65.0253 278.441C63.842 278.441 63.2227 277.766 63.2227 276.649V272.347H64.6714V276.262C64.6714 276.793 64.9258 277.158 65.5229 277.158C66.0427 277.158 66.5625 276.848 67.038 276.384V272.347H68.4867V278.319ZM74.7779 276.572C74.7779 277.744 73.9042 278.441 72.2897 278.441C71.3939 278.441 70.476 278.164 69.8899 277.866L70.0779 276.649C70.7304 277.058 71.5598 277.346 72.3449 277.346C73.0417 277.346 73.4398 277.103 73.4398 276.705C73.4398 276.262 73.1522 276.096 72.1127 275.853C70.6198 275.488 70.0005 275.068 70.0005 273.973C70.0005 272.956 70.8409 272.226 72.2675 272.226C73.0638 272.226 73.8047 272.381 74.4129 272.646L74.2139 273.851C73.6057 273.531 72.8868 273.321 72.2565 273.321C71.6372 273.321 71.3386 273.542 71.3386 273.873C71.3386 274.205 71.5929 274.393 72.544 274.625C74.1254 275.024 74.7779 275.444 74.7779 276.572ZM81.3151 277.7C80.6516 278.164 79.8332 278.441 78.8379 278.441C77.1017 278.441 75.8189 277.49 75.8189 275.333C75.8189 273.398 77.0243 272.215 78.6389 272.215C80.4857 272.215 81.3262 273.575 81.3262 275.256C81.3262 275.377 81.3262 275.521 81.3151 275.61H77.2565C77.3339 276.793 77.9753 277.313 78.9817 277.313C79.789 277.313 80.4636 277.025 81.1382 276.561L81.3151 277.7ZM78.6057 273.232C77.9422 273.232 77.4113 273.708 77.2897 274.681H79.9106C79.8001 273.752 79.3909 273.232 78.6057 273.232Z" fill="#606B85"/> <g filter="url(#filter7_d_668_278429)"> <path d="M24.7773 308.287C24.7773 297.076 33.866 287.987 45.0773 287.987H55.4773C66.6887 287.987 75.7773 297.076 75.7773 308.287V318.687C75.7773 329.899 66.6887 338.987 55.4773 338.987H45.0773C33.866 338.987 24.7773 329.899 24.7773 318.687L24.7773 308.287Z" fill="#FCFEFF" stroke="#E1E3EA"/> <path d="M45.5017 309.036L38.7301 305.136C37.7787 304.587 37.4501 303.374 38.0007 302.425C38.5513 301.476 39.7679 301.151 40.7192 301.7L44.5648 303.914V299.466C44.5648 298.373 45.4527 297.487 46.5482 297.487C47.6408 297.487 48.5287 298.373 48.5287 299.466V307.282C48.5287 307.857 48.2836 308.374 47.8887 308.737C47.266 309.343 46.2916 309.493 45.5017 309.036Z" fill="#29B5E8"/> <path d="M44.9365 313.513C44.948 312.808 44.5762 312.153 43.965 311.799L37.1933 307.9C36.8993 307.73 36.562 307.641 36.2247 307.641C35.53 307.641 34.8842 308.012 34.5383 308.61C34.0021 309.536 34.3221 310.724 35.2503 311.258L39.1536 313.504L35.2503 315.753C34.8006 316.012 34.4778 316.429 34.3451 316.929C34.2097 317.43 34.2788 317.953 34.5383 318.401C34.8842 319 35.53 319.371 36.2218 319.371C36.562 319.371 36.8993 319.281 37.1933 319.112L43.965 315.212C44.5704 314.862 44.9423 314.212 44.9365 313.513Z" fill="#29B5E8"/> <path d="M61.7774 321.876L55.0057 317.973C54.0544 317.427 52.8379 317.752 52.2873 318.701C52.0739 319.075 51.9903 319.486 52.0307 319.886V327.512C52.0307 328.602 52.9186 329.487 54.0141 329.487C55.1066 329.487 55.9945 328.602 55.9945 327.512V323.126L59.7883 325.312C60.7396 325.861 61.959 325.533 62.5068 324.584C63.0574 323.635 62.7316 322.422 61.7774 321.876Z" fill="#29B5E8"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M53.9569 313.83C53.9569 313.979 53.8705 314.186 53.7638 314.296L51.0799 316.973C50.9732 317.079 50.7628 317.165 50.6129 317.165H49.9297C49.7798 317.165 49.5693 317.079 49.4627 316.973L46.7759 314.296C46.6692 314.186 46.5828 313.979 46.5828 313.83V313.148C46.5828 312.996 46.6692 312.789 46.7759 312.682L49.4627 310.002C49.5693 309.896 49.7798 309.81 49.9297 309.81H50.6129C50.7628 309.81 50.9732 309.896 51.0799 310.002L53.7638 312.682C53.8705 312.789 53.9569 312.996 53.9569 313.148V313.83ZM51.5613 313.502V313.473C51.5613 313.364 51.4979 313.211 51.4201 313.131L50.6273 312.343C50.5495 312.262 50.3967 312.199 50.2843 312.199H50.2554C50.1459 312.199 49.9931 312.262 49.9124 312.343L49.1225 313.131C49.0447 313.209 48.9812 313.361 48.9812 313.473V313.502C48.9812 313.614 49.0447 313.766 49.1225 313.844L49.9124 314.635C49.9931 314.712 50.1459 314.776 50.2554 314.776H50.2843C50.3967 314.776 50.5495 314.712 50.6273 314.635L51.4201 313.844C51.4979 313.766 51.5613 313.614 51.5613 313.502Z" fill="#29B5E8"/> <path d="M61.7775 305.136L55.0058 309.036C54.0545 309.585 52.8379 309.26 52.2873 308.311C52.0711 307.937 51.9933 307.523 52.0308 307.126V299.466C52.0308 298.373 52.9187 297.487 54.0141 297.487C55.1067 297.487 55.9946 298.373 55.9946 299.466V303.886L59.7883 301.7C60.7397 301.151 61.9562 301.476 62.5068 302.425C63.0574 303.374 62.7288 304.59 61.7775 305.136Z" fill="#29B5E8"/> <path d="M46.8595 317.743C46.4098 317.657 45.9284 317.729 45.5017 317.973L38.7301 321.876C37.7787 322.422 37.4501 323.635 38.0007 324.584C38.5513 325.536 39.7679 325.861 40.7192 325.312L44.5648 323.098V327.512C44.5648 328.602 45.4527 329.487 46.5482 329.487C47.6408 329.487 48.5287 328.602 48.5287 327.512V319.696C48.5287 318.709 47.8051 317.893 46.8595 317.743Z" fill="#29B5E8"/> <path d="M63.2912 307.86C64.2425 307.31 65.4619 307.635 66.0096 308.587C66.5602 309.536 66.2345 310.75 65.2803 311.296L61.4462 313.505L65.2803 315.713C66.2316 316.262 66.5602 317.476 66.0096 318.425C65.459 319.374 64.2425 319.699 63.2912 319.152L56.5195 315.25C55.8766 314.882 55.5192 314.206 55.5249 313.513C55.5134 312.817 55.8709 312.133 56.5195 311.759L63.2912 307.86Z" fill="#29B5E8"/> </g> <g filter="url(#filter8_d_668_278429)"> <path d="M219.18 264.513C249.718 264.513 273.824 240.407 273.824 209.869C273.824 179.331 249.718 153.924 219.18 153.924C188.642 153.924 163.235 179.331 163.235 209.869C163.235 240.407 188.642 264.513 219.18 264.513Z" fill="white"/> <g clip-path="url(#clip3_668_278429)"> <path d="M218.53 181.571C203.303 181.571 190.883 193.991 190.883 209.218C190.883 224.445 203.303 236.865 218.53 236.865C233.757 236.865 246.177 224.445 246.177 209.218C246.177 193.991 233.757 181.571 218.53 181.571ZM218.53 229.55C207.301 229.55 198.199 220.447 198.199 209.218C198.199 197.989 207.301 188.887 218.53 188.887C229.759 188.887 238.861 197.989 238.861 209.218C238.861 220.447 229.759 229.55 218.53 229.55Z" fill="#F22F46"/> <path d="M225.42 208.112C228.615 208.112 231.204 205.523 231.204 202.328C231.204 199.133 228.615 196.543 225.42 196.543C222.225 196.543 219.635 199.133 219.635 202.328C219.635 205.523 222.225 208.112 225.42 208.112Z" fill="#F22F46"/> <path d="M225.42 221.893C228.615 221.893 231.204 219.304 231.204 216.109C231.204 212.914 228.615 210.324 225.42 210.324C222.225 210.324 219.635 212.914 219.635 216.109C219.635 219.304 222.225 221.893 225.42 221.893Z" fill="#F22F46"/> <path d="M211.64 221.893C214.834 221.893 217.424 219.304 217.424 216.109C217.424 212.914 214.834 210.324 211.64 210.324C208.445 210.324 205.855 212.914 205.855 216.109C205.855 219.304 208.445 221.893 211.64 221.893Z" fill="#F22F46"/> <path d="M211.64 208.112C214.834 208.112 217.424 205.523 217.424 202.328C217.424 199.133 214.834 196.543 211.64 196.543C208.445 196.543 205.855 199.133 205.855 202.328C205.855 205.523 208.445 208.112 211.64 208.112Z" fill="#F22F46"/> </g> </g> <defs> <filter id="filter0_d_668_278429" x="369.893" y="9.96021" width="98.5498" height="98.55" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="8"/> <feGaussianBlur stdDeviation="12"/> <feColorMatrix type="matrix" values="0 0 0 0 0.0705882 0 0 0 0 0.109804 0 0 0 0 0.176471 0 0 0 0.1 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_668_278429"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_668_278429" result="shape"/> </filter> <filter id="filter1_d_668_278429" x="369.893" y="88.9519" width="98.5498" height="98.55" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="8"/> <feGaussianBlur stdDeviation="12"/> <feColorMatrix type="matrix" values="0 0 0 0 0.0705882 0 0 0 0 0.109804 0 0 0 0 0.176471 0 0 0 0.1 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_668_278429"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_668_278429" result="shape"/> </filter> <filter id="filter2_d_668_278429" x="369.893" y="167.943" width="98.5498" height="98.55" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="8"/> <feGaussianBlur stdDeviation="12"/> <feColorMatrix type="matrix" values="0 0 0 0 0.0705882 0 0 0 0 0.109804 0 0 0 0 0.176471 0 0 0 0.1 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_668_278429"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_668_278429" result="shape"/> </filter> <filter id="filter3_d_668_278429" x="369.893" y="246.935" width="98.5498" height="98.55" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="8"/> <feGaussianBlur stdDeviation="12"/> <feColorMatrix type="matrix" values="0 0 0 0 0.0705882 0 0 0 0 0.109804 0 0 0 0 0.176471 0 0 0 0.1 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_668_278429"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_668_278429" result="shape"/> </filter> <filter id="filter4_d_668_278429" x="369.893" y="325.927" width="98.5498" height="98.55" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="8"/> <feGaussianBlur stdDeviation="12"/> <feColorMatrix type="matrix" values="0 0 0 0 0.0705882 0 0 0 0 0.109804 0 0 0 0 0.176471 0 0 0 0.1 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_668_278429"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_668_278429" result="shape"/> </filter> <filter id="filter5_d_668_278429" x="1.00244" y="63.6746" width="98.5498" height="98.55" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="8"/> <feGaussianBlur stdDeviation="12"/> <feColorMatrix type="matrix" values="0 0 0 0 0.0705882 0 0 0 0 0.109804 0 0 0 0 0.176471 0 0 0 0.1 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_668_278429"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_668_278429" result="shape"/> </filter> <filter id="filter6_d_668_278429" x="1.00244" y="167.943" width="98.5498" height="98.55" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="8"/> <feGaussianBlur stdDeviation="12"/> <feColorMatrix type="matrix" values="0 0 0 0 0.0705882 0 0 0 0 0.109804 0 0 0 0 0.176471 0 0 0 0.1 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_668_278429"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_668_278429" result="shape"/> </filter> <filter id="filter7_d_668_278429" x="0.277344" y="271.487" width="100" height="100" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="8"/> <feGaussianBlur stdDeviation="12"/> <feColorMatrix type="matrix" values="0 0 0 0 0.0705882 0 0 0 0 0.109804 0 0 0 0 0.176471 0 0 0 0.1 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_668_278429"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_668_278429" result="shape"/> </filter> <filter id="filter8_d_668_278429" x="139.235" y="137.924" width="158.588" height="158.588" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="8"/> <feGaussianBlur stdDeviation="12"/> <feColorMatrix type="matrix" values="0 0 0 0 0.0705882 0 0 0 0 0.109804 0 0 0 0 0.176471 0 0 0 0.1 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_668_278429"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_668_278429" result="shape"/> </filter> <linearGradient id="paint0_linear_668_278429" x1="262.559" y1="388.419" x2="421.343" y2="388.419" gradientUnits="userSpaceOnUse"> <stop stop-color="#6ADDB2"/> <stop offset="1" stop-color="#6ADDB2" stop-opacity="0.4"/> </linearGradient> <linearGradient id="paint1_linear_668_278429" x1="262.559" y1="30.0173" x2="421.343" y2="30.0173" gradientUnits="userSpaceOnUse"> <stop stop-color="#6ADDB2"/> <stop offset="1" stop-color="#6ADDB2" stop-opacity="0.4"/> </linearGradient> <linearGradient id="paint2_linear_668_278429" x1="262.559" y1="298.819" x2="421.343" y2="298.819" gradientUnits="userSpaceOnUse"> <stop stop-color="#6ADDB2"/> <stop offset="1" stop-color="#6ADDB2" stop-opacity="0.4"/> </linearGradient> <linearGradient id="paint3_linear_668_278429" x1="262.559" y1="119.618" x2="421.343" y2="119.618" gradientUnits="userSpaceOnUse"> <stop stop-color="#6ADDB2"/> <stop offset="1" stop-color="#6ADDB2" stop-opacity="0.4"/> </linearGradient> <linearGradient id="paint4_linear_668_278429" x1="262.559" y1="209.084" x2="421.343" y2="209.084" gradientUnits="userSpaceOnUse"> <stop stop-color="#6ADDB2"/> <stop offset="1" stop-color="#6ADDB2" stop-opacity="0.4"/> </linearGradient> <linearGradient id="paint5_linear_668_278429" x1="164.637" y1="327.491" x2="66.9238" y2="327.491" gradientUnits="userSpaceOnUse"> <stop stop-color="#6ADDB2"/> <stop offset="1" stop-color="#6ADDB2" stop-opacity="0.4"/> </linearGradient> <linearGradient id="paint6_linear_668_278429" x1="164.637" y1="90.9457" x2="66.9238" y2="90.9457" gradientUnits="userSpaceOnUse"> <stop stop-color="#6ADDB2"/> <stop offset="1" stop-color="#6ADDB2" stop-opacity="0.4"/> </linearGradient> <linearGradient id="paint7_linear_668_278429" x1="164.638" y1="209.084" x2="66.9248" y2="209.084" gradientUnits="userSpaceOnUse"> <stop stop-color="#6ADDB2"/> <stop offset="1" stop-color="#6ADDB2" stop-opacity="0.4"/> </linearGradient> <clipPath id="clip0_668_278429"> <rect width="191.95" height="331.765" fill="white" transform="matrix(-1 0 0 1 393.891 43.3359)"/> </clipPath> <clipPath id="clip1_668_278429"> <rect width="29.6635" height="29.6635" fill="white" transform="translate(404.336 38.3477)"/> </clipPath> <clipPath id="clip2_668_278429"> <rect width="31.1077" height="31.1077" fill="white" transform="translate(403.614 193.665)"/> </clipPath> <clipPath id="clip3_668_278429"> <rect width="55.2941" height="55.2941" fill="white" transform="translate(190.883 181.571)"/> </clipPath> </defs> </svg> </span> </div> </figure> </div> </div> </div> </section> <section class="section-wrapper default" id=""> <div class="section-content "> <div id="" class="grid-container default medium-gap" style=""> <div class="grid-container-column"> <div data-uuid="-1806976518" class="divider"> <p>Overview</p> <hr/> </div> </div> </div> </div> </section> <section class="section-wrapper default" id=""> <div class="section-content "> <div id="" class="grid-container two-columns slim medium-gap center" style=""> <div class="grid-container-column"> <div data-uuid="-105904307" class="title "> <h1 class="title-medium"> Twilio Segment’s CDP puts data at the heart of Twilio </h1> </div> <div class="richtext " data-ext-icon="<svg viewBox="0 0 79 79" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon--decorative" role="presentation"> <title>An icon of a outbound link arrow</title> <path class="icon-stroke" d="M75.3037 3.98207L3 75.5935M75.3037 3.98207L76.0435 43.3021M75.3037 3.98207L35.951 3.59351" stroke="#F22F46" stroke-width="5.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> "> <p>The Twilio Segment CDP brings a modern customer data foundation to the messaging, email, customer service, voice and video interactions you power through Twilio.</p> <p><a href="https://www.twilio.com/en-us/customer-ai">CustomerAI</a> has the potential to revolutionize customer engagement. But AI is only as good as the data you give it. The Segment CDP gives you AI-ready data for the most insightful, precise, intelligent results.</p> </div> </div> <div class="grid-container-column"> <button type="button" class="media video" data-video-source="https://www.youtube.com/watch?v=a9vDvKLSf_Y"> <div class="media-image "> <span class="play-icon"></span> <img src="/content/dam/twilio-com/global/en/products/segment/segment-hello/cookieless-vide_x2.png/_jcr_content/renditions/compressed-original.webp" alt="Bring a modern customer data foundation to the messaging, email, voice and video interactions you power " title="Bring a modern customer data foundation to the messaging, email, voice and video interactions you power " loading="lazy"/> </div> <div class="media-image--mobile "> <span class="play-icon"></span> <img loading="lazy"/> </div> </button> <script type="application/ld+json"> {"@context":"https://schema.org","@type":"VideoObject","name":"Unify customer data with Twilio Segment","description":"Ready for a world without third-party cookies? Twilio Segment's customer data platform can help businesses increase marketing efficiency by collecting real-time first-party data across channels into one profile, activating more personalized and precise customer experiences.\n\nLearn more at:\nhttps://www.twilio.com/customer-data-platform","thumbnailUrl":["https://i.ytimg.com/vi/a9vDvKLSf_Y/default.jpg","https://i.ytimg.com/vi/a9vDvKLSf_Y/mqdefault.jpg","https://i.ytimg.com/vi/a9vDvKLSf_Y/hqdefault.jpg","https://i.ytimg.com/vi/a9vDvKLSf_Y/sddefault.jpg"],"uploadDate":"2023-04-06T21:34:16Z","duration":"PT1M58S","contentUrl":"https://www.youtube.com/watch?v=a9vDvKLSf_Y","embedUrl":"https://www.youtube.com/embed/a9vDvKLSf_Y","interactionStatistic":{"type":"InteractionCounter","interactionType":{"@type":"WatchAction"},"userInteractionCount":953}} </script> </div> </div> <div id="proofPoints" class="grid-container default medium-gap" style=""> <div class="grid-container-column"> <div class="twilio-htmlcontainer"> <style> #proofPoints .proof-points-title { font-size: var(--font-title-medium); } #proofPoints .proof-points-column p { max-width: 300px; margin-left: auto; margin-right: auto; } </style> <div> </div> <script> </script> </div> <div class="proof-points column-size-3 " data-cmp-is="cmp-proof-points" data-cmp-variation="default"> <div class="proof-points-column "> <h4 class="proof-points-title">55%</h4> <p> of consumers would spend more for personalization </p> </div> <div class="proof-points-column "> <h4 class="proof-points-title">64%</h4> <p> of consumers would quit a brand if their experience isn't personalized </p> </div> <div class="proof-points-column "> <h4 class="proof-points-title">59%</h4> <p> of consumers say personalization makes it easier to find what they want </p> </div> </div> </div> </div> <div id="" class="grid-container default medium-gap" style=""> <div class="grid-container-column"> <div class="richtext " data-ext-icon="<svg viewBox="0 0 79 79" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon--decorative" role="presentation"> <title>An icon of a outbound link arrow</title> <path class="icon-stroke" d="M75.3037 3.98207L3 75.5935M75.3037 3.98207L76.0435 43.3021M75.3037 3.98207L35.951 3.59351" stroke="#F22F46" stroke-width="5.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> "> <p style=" text-align: center; "><span class="copy-small"><i>Source: <a href="/en-us/state-of-customer-engagement" target="_self" rel="noopener noreferrer">*Twilio State of Customer Engagement Report 2024</a></i></span></p> </div> </div> </div> </div> </section> <section class="section-wrapper default" id=""> <div class="section-content "> <div id="" class="grid-container default medium-gap" style=""> <div class="grid-container-column"> <div data-uuid="911076139" class="divider"> <p>Twilio Engage</p> <hr/> </div> </div> </div> </div> </section> <section class="section-wrapper default" id=""> <div class="section-content "> <div id="" class="grid-container default medium-gap" style=""> <div class="grid-container-column"> <div class="section-header"> <div class="icon"> </div> <h2 class="title-medium dark-text"> Personalize every interaction with Twilio Engage </h2> </div> </div> </div> <div id="" class="grid-container offset-40-60 default medium-gap center" style=""> <div class="grid-container-column"> <div class="richtext " data-ext-icon="<svg viewBox="0 0 79 79" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon--decorative" role="presentation"> <title>An icon of a outbound link arrow</title> <path class="icon-stroke" d="M75.3037 3.98207L3 75.5935M75.3037 3.98207L76.0435 43.3021M75.3037 3.98207L35.951 3.59351" stroke="#F22F46" stroke-width="5.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> "> <p>Twilio Engage combines scalable, reliable communication channels with Twilio Segment’s world-class customer data infrastructure.</p> <p>Orchestrate customer experiences and personalized multichannel campaigns in real time.</p> </div> <div data-uuid="-1613499223" class="button-container horizontal small left"> <a class="button button-primary right" href="https://segment.com/product/twilio-engage/" target="_blank" data-uuid="dc58bd2e-9238-35d8-8f42-61316c4ffb0a" aria-label="Explore Engage"> <span class="button-text"> Explore Engage <span class="button-icon external medium"> <svg viewBox="0 0 79 79" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon--decorative" role="presentation"> <title>An icon of a outbound link arrow</title> <path class="icon-stroke" d="M75.3037 3.98207L3 75.5935M75.3037 3.98207L76.0435 43.3021M75.3037 3.98207L35.951 3.59351" stroke="#F22F46" stroke-width="5.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> </span> </span> </a> </div> </div> <div class="grid-container-column"> <button type="button" class="media video" data-video-source="https://youtu.be/nhaKSvfpxIY"> <div class="media-image "> <span class="play-icon"></span> <img src="/content/dam/twilio-com/global/en/products/segment/segment-video-thumbnail@2x.png/_jcr_content/renditions/compressed-original.webp" alt="Combine scalable, reliable communication channels with Twilio Segment’s world-class customer data infrastructure" title="Combine scalable, reliable communication channels with Twilio Segment’s world-class customer data infrastructure" loading="lazy"/> </div> <div class="media-image--mobile "> <span class="play-icon"></span> <img loading="lazy"/> </div> </button> <script type="application/ld+json"> {"@context":"https://schema.org","@type":"VideoObject","name":"Twilio Engage, the growth platform for omnichannel engagement | Segment","description":"Design and optimize customer engagement for a digital-first world. The first step to Twilio Engage is unlocking the power of your customer data with Twilio Segment's CDP. Learn more at: https://segment.com/product/twilio-engage/","thumbnailUrl":["https://i.ytimg.com/vi/nhaKSvfpxIY/default.jpg","https://i.ytimg.com/vi/nhaKSvfpxIY/mqdefault.jpg","https://i.ytimg.com/vi/nhaKSvfpxIY/hqdefault.jpg","https://i.ytimg.com/vi/nhaKSvfpxIY/sddefault.jpg","https://i.ytimg.com/vi/nhaKSvfpxIY/maxresdefault.jpg"],"uploadDate":"2021-10-20T16:58:13Z","duration":"PT1M38S","contentUrl":"https://www.youtube.com/watch?v=nhaKSvfpxIY","embedUrl":"https://www.youtube.com/embed/nhaKSvfpxIY","interactionStatistic":{"type":"InteractionCounter","interactionType":{"@type":"WatchAction"},"userInteractionCount":21919}} </script> </div> </div> </div> </section> <section class="section-wrapper default" id=""> <div class="section-content "> <div id="" class="grid-container default medium-gap" style=""> <div class="grid-container-column"> <div data-uuid="1982951444" class="divider"> <p>Products</p> <hr/> </div> </div> </div> </div> </section> <section class="section-wrapper default" id=""> <div class="section-content "> <div id="" class="grid-container default medium-gap" style=""> <div class="grid-container-column"> <div class="section-header"> <div class="icon"> </div> <h2 class="title-medium dark-text"> Twilio Segment CDP products </h2> </div> </div> </div> <div id="" class="grid-container offset-40-60 default medium-gap center" style=""> <div class="grid-container-column"> <figure class="media"> <div class="media-image "> <img src="/content/dam/twilio-com/global/en/products/segment/segment-hello/Features%20Illo@2x.png/_jcr_content/renditions/compressed-original.webp" alt="Twilio Segment products helping to connect, unify, protect and activate" title="Twilio Segment products helping to connect, unify, protect and activate" class=" " loading="lazy"/> </div> <div class="media-image--mobile "> <img src="/content/dam/twilio-com/global/en/products/segment/segment-hello/Features%20Illo@2x.png/_jcr_content/renditions/compressed-original.webp" loading="lazy"/> </div> </figure> </div> <div class="grid-container-column"> <div class="richtext " data-ext-icon="<svg viewBox="0 0 79 79" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon--decorative" role="presentation"> <title>An icon of a outbound link arrow</title> <path class="icon-stroke" d="M75.3037 3.98207L3 75.5935M75.3037 3.98207L76.0435 43.3021M75.3037 3.98207L35.951 3.59351" stroke="#F22F46" stroke-width="5.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> "> <h3><span class="copy-extra-large"><b>Collect</b></span></h3> <p>Collect customer data across your marketing and analytics apps, sales and support experiences, payment and messaging interactions—and compile living profiles with Twilio Segment. Then enable the best product analytics, A/B testing, and data warehouse tools with the flip of a switch.</p> <p><a href="https://segment.com/product/connections/" target="_blank" rel="noopener noreferrer">Learn about Connections</a></p> </div> <div class="richtext " data-ext-icon="<svg viewBox="0 0 79 79" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon--decorative" role="presentation"> <title>An icon of a outbound link arrow</title> <path class="icon-stroke" d="M75.3037 3.98207L3 75.5935M75.3037 3.98207L76.0435 43.3021M75.3037 3.98207L35.951 3.59351" stroke="#F22F46" stroke-width="5.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> "> <h3><span class="copy-extra-large"><b>Unify</b></span></h3> <p>Get a complete view of your customer by tracking every interaction in real time and exploring all user profiles in one place. Unify real-time customer data interactions across every platform and channel to understand the customer journey and personalize engagement at scale.</p> <p><a href="https://segment.com/product/profiles/" target="_blank" rel="noopener noreferrer">Learn about Unify</a></p> </div> <div class="richtext " data-ext-icon="<svg viewBox="0 0 79 79" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon--decorative" role="presentation"> <title>An icon of a outbound link arrow</title> <path class="icon-stroke" d="M75.3037 3.98207L3 75.5935M75.3037 3.98207L76.0435 43.3021M75.3037 3.98207L35.951 3.59351" stroke="#F22F46" stroke-width="5.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> "> <h3><span class="copy-extra-large"><b>Protect</b></span></h3> <p>Protect the quality of your data with intuitive features like a single source of truth Tracking Plan, extensible documentation, and real-time validation built to give you clean, trustworthy data at any scale.</p> <p><a href="https://segment.com/product/profiles/"></a><a href="https://segment.com/product/protocols/" target="_blank" rel="noopener noreferrer">Learn about Protocols</a></p> </div> <div class="richtext " data-ext-icon="<svg viewBox="0 0 79 79" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon--decorative" role="presentation"> <title>An icon of a outbound link arrow</title> <path class="icon-stroke" d="M75.3037 3.98207L3 75.5935M75.3037 3.98207L76.0435 43.3021M75.3037 3.98207L35.951 3.59351" stroke="#F22F46" stroke-width="5.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> "> <h3><span class="copy-extra-large"><b>Activate</b></span></h3> <p>Send data to more than 400 applications with pre-built integrations. Or, use Segment's developer tools to build for unlimited extensibility.</p> <p><a href="https://segment.com/catalog/?ref=nav" target="_blank" rel="noopener noreferrer">Learn about the integration catalog</a></p> </div> </div> </div> </div> </section> <section class="section-wrapper default" id=""> <div class="section-content "> <div id="" class="grid-container default medium-gap" style=""> <div class="grid-container-column"> <div data-uuid="-175924514" class="divider"> <p>Customer stories</p> <hr/> </div> </div> </div> </div> </section> <section class="section-wrapper default" id=""> <div class="section-content "> <div id="" class="grid-container tiny medium-gap" style=""> <div class="grid-container-column"> <div class="section-header"> <div class="icon"> </div> <h2 class="title-medium dark-text"> Grow your bottom line with Twilio and Segment </h2> </div> </div> </div> <div id="" class="grid-container three-columns default medium-gap equal-heights" style=""> <div class="grid-container-column"> <!-- Card icon option --> <div class="card-icon vertical center"> <a class="card-icon__overlay" href="https://segment.com/customers/dominos" target="_blank"></a> <header class="card-icon-header vertical center"> <div class="svg-icon "> <span class="dominos circle medium circle"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 185 48" class="customer-logo" style="max-width: 280px; margin-left: auto; margin-right: auto;"> <title>Dominos Pizza logo</title> <g class="dominos"> <path class="path-fill logo-fill" fill="#E61E29" fill-rule="evenodd" d="M13.521 16.59 25.772 4.382a1.32 1.32 0 0 1 1.86.003L39.19 15.984c.511.513.51 1.349-.003 1.86L26.936 30.051 13.52 16.589l.001.001ZM24.5 14.424a3.288 3.288 0 1 1 4.642 4.658 3.288 3.288 0 0 1-4.642-4.658Z" clip-rule="evenodd"/> <path class="path-fill logo-fill" fill="#0074AD" fill-rule="evenodd" d="M121.754 18.612a3.465 3.465 0 1 1 .001 6.93 3.465 3.465 0 0 1-.001-6.93Zm46.7 12.725c.176-5.81 9.511-6.342 14.922-3.065l-1.998 3.931c-1.864-1.295-3.478-1.9-5.53-1.732-1.947.159-2.157 2.279.999 2.199 4.93-.126 7.591 2.466 7.328 5.795-.422 5.377-8.891 7.578-16.321 2.865l2.731-3.998c2.065 1.187 4.124 2.246 6.196 1.999 2.15-.257 3.235-1.991-.599-2.399-5.223-.554-7.83-2.22-7.728-5.595ZM127.726 43.91V27.354h6.027v2.323c2.339-3.88 11.433-3.937 11.434 2.122l.002 12.112h-6.011l-.066-8.325c-.026-3.33-1.237-3.642-2.869-3.458-1.354.153-2.568.645-2.568 3.459v8.324h-5.949Zm-9.102-16.854h6.262V43.91h-6.262V27.057Zm-30.535.297h6.027v2.323c1.806-3.014 8.768-4.484 10.767.19 2.841-4.246 11.152-4.052 11.149 1.717l-.006 12.327h-6.39v-9.057c0-2.434-.414-2.667-2.459-2.576-1.674.074-2.055 1.462-2.062 3.038l-.04 8.597h-6.01l-.067-8.325c-.026-3.33-.757-3.613-2.394-3.459-1.62.153-2.329.379-2.329 3.459v8.325H88.09V27.354Zm-10.868-1.23a8.893 8.893 0 0 1 8.894 8.894 8.893 8.893 0 0 1-8.894 8.893 8.893 8.893 0 0 1-8.894-8.893 8.893 8.893 0 0 1 8.894-8.894Zm0 5.73a3.164 3.164 0 1 1 0 6.327 3.164 3.164 0 0 1 0-6.327ZM43.888 43.91V20.466h6.971c2.212 0 4.106.12 5.67.362 1.563.24 2.842.611 3.82 1.115 2.077 1.065 3.664 2.482 4.775 4.241 1.106 1.76 1.659 3.767 1.659 6.018s-.553 4.242-1.654 5.99c-1.1 1.75-2.692 3.166-4.781 4.242-1.011.514-2.301.891-3.86 1.126-1.558.235-3.653.35-6.267.35h-6.334l.001.002Zm6.96-6.192V26.66h2.847c.903 0 1.676.057 2.315.17.64.115 1.162.29 1.56.526a5.201 5.201 0 0 1 1.952 2c.452.83.677 1.777.677 2.84 0 1.062-.225 2-.675 2.826-.45.826-1.1 1.493-1.953 2-.413.243-.94.42-1.577.532-.636.11-1.492.165-2.56.165h-2.587ZM155.74 26.125a8.894 8.894 0 1 1 0 17.789 8.894 8.894 0 0 1 0-17.789Zm0 5.73a3.164 3.164 0 1 1 0 6.328 3.164 3.164 0 1 1 0-6.328Zm10.748-13.204c1.371 0 2.549.82 3.074 1.995.403.906.435 2.06.19 3.023-.376 1.482-1.627 2.932-4.261 4.307l-.727-.983c.516-.43 1.046-.874 1.26-1.198.383-.58-.117-.437-.539-.569a3.366 3.366 0 0 1 1.003-6.576v.001Z" clip-rule="evenodd"/> <path class="path-fill logo-fill" fill="#0074AD" d="M104.315 43.199a.42.42 0 0 1 .197.051.407.407 0 0 1 .15.549.404.404 0 0 1-.549.148.361.361 0 0 1-.148-.148.399.399 0 0 1 .348-.6h.002Zm0 .066a.346.346 0 0 0-.165.043.317.317 0 0 0-.125.124.334.334 0 0 0 .456.458.301.301 0 0 0 .124-.124.331.331 0 0 0-.001-.334.304.304 0 0 0-.125-.124.35.35 0 0 0-.164-.043Zm-.176.557v-.432h.148c.051 0 .088.005.111.012a.112.112 0 0 1 .075.105.116.116 0 0 1-.034.082.132.132 0 0 1-.09.04.108.108 0 0 1 .037.022.449.449 0 0 1 .064.086l.053.084h-.085l-.038-.069a.352.352 0 0 0-.073-.1.09.09 0 0 0-.056-.014h-.041v.183h-.069l-.002.001Zm.153-.243c.041 0 .068-.007.083-.018a.061.061 0 0 0 .022-.049.055.055 0 0 0-.011-.034.062.062 0 0 0-.029-.022.215.215 0 0 0-.071-.008h-.079v.13h.085Z"/> <path class="path-fill logo-fill" fill="#0074AD" fill-rule="evenodd" d="M15.244 28.428a3.288 3.288 0 1 1 4.642 4.658 3.288 3.288 0 0 1-4.642-4.658Zm-9.625.03a3.288 3.288 0 1 1 4.642 4.658 3.288 3.288 0 0 1-4.642-4.658ZM.385 29.68l12.251-12.208 13.415 13.462L13.8 43.143a1.32 1.32 0 0 1-1.86-.003L.382 31.54a1.318 1.318 0 0 1 .003-1.859Z" clip-rule="evenodd"/> <path class="path-fill logo-fill" fill="#0074AD" d="M18.059 43.584v-1.643h-.626v-.286h1.577v.286h-.63v1.643h-.321Zm1.167 0v-1.93h.474l.487 1.541.47-1.541h.465v1.93h-.294v-1.62l-.497 1.62h-.29l-.52-1.643v1.643h-.295Z"/> </g> </svg> </span> </div> </header> <div class="card-icon-details"> <h4 class="card-title title-extra-small "> Cut acquisition costs by 65%</h4> <div class="card-description copy-small"> <p>Domino’s Pizza Mexico reduced its cost per customer acquisition by 65% with Twilio Engage by creating personalized audiences and increasing orders.</p> </div> <div class="button-container horizontal small left"> <a class="button link right" aria-label="Read the Domino's Pizza customer story" href="https://segment.com/customers/dominos" target="_blank"> <span class="button-text"> Learn more <span class="button-icon external medium"> <svg viewBox="0 0 79 79" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon--decorative" role="presentation"> <title>An icon of a outbound link arrow</title> <path class="icon-stroke" d="M75.3037 3.98207L3 75.5935M75.3037 3.98207L76.0435 43.3021M75.3037 3.98207L35.951 3.59351" stroke="#F22F46" stroke-width="5.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> </span> </span> </a> </div> </div> </div> </div> <div class="grid-container-column"> <!-- Card icon option --> <div class="card-icon vertical center"> <a class="card-icon__overlay" href="https://segment.com/customers/vacasa/" target="_blank"></a> <header class="card-icon-header vertical center"> <div class="svg-icon "> <span class="vacasa circle medium circle"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 140 48" class="customer-logo"> <title>Vacasa logo</title> <g class="vacasa"> <path class="path-fill logo-fill" fill="#003349" d="M64.791 28.282c-.052 2.382-1.764 5.164-6.424 5.164-2.83 0-4.519-1.152-4.519-3.084 0-2.104 1.627-3.188 5.114-3.405l5.83-.18v1.505Zm-4.688-11.399h-.091c-2.618 0-4.816.769-6.191 2.165a5.485 5.485 0 0 0-1.495 2.825.201.201 0 0 0 .197.238h2.518c.527-1.832 2.27-2.842 4.936-2.842h.09c2.958.002 4.724 1.048 4.724 2.795v2.345c0 .062-.046.11-.108.114l-6.09.264c-4.944.26-7.346 2.084-7.346 5.575 0 4.06 3.623 5.505 7.014 5.505 2.61 0 4.52-.713 6.195-2.317l.372-.413v2.37h2.53V22.422c-.002-3.517-2.647-5.536-7.255-5.54Zm18.429 0c-5.195 0-8.84 4.275-8.84 9.529 0 5.214 3.487 9.455 8.84 9.455 2.9 0 5.241-1.206 6.892-3.396a8.85 8.85 0 0 0 .954-1.614.207.207 0 0 0-.19-.29h-2.614a6.688 6.688 0 0 1-1.21 1.439c-1.103.965-2.319 1.442-3.832 1.442-3.351 0-6.202-3.138-6.202-7.037 0-3.937 2.85-7.109 6.203-7.109 1.605 0 2.897.553 4.045 1.662.16.155.562.57.946 1.147h2.627c.151 0 .252-.16.188-.294a8.936 8.936 0 0 0-1.394-2.1c-1.641-1.827-3.81-2.834-6.412-2.834Zm23.151 11.399c-.052 2.382-1.764 5.164-6.424 5.164-2.83 0-4.52-1.152-4.52-3.084 0-2.104 1.626-3.188 5.114-3.405l5.828-.18.002 1.505Zm-4.686-11.399h-.091c-2.617 0-4.816.769-6.192 2.165a5.472 5.472 0 0 0-1.49 2.808.216.216 0 0 0 .212.255h2.5c.524-1.832 2.27-2.842 4.934-2.842h.092c2.957.002 4.723 1.048 4.723 2.795v2.345c0 .062-.047.11-.108.114l-6.091.264c-4.943.26-7.345 2.084-7.345 5.575 0 4.06 3.623 5.505 7.014 5.505 2.612 0 4.52-.713 6.195-2.317l.372-.413v2.37h2.529V22.422c-.002-3.517-2.644-5.536-7.254-5.54Zm17.095-.002c-4.835 0-7.036 2.736-7.036 5.278 0 1.15.275 2.036.839 2.708 1.275 1.517 3.065 1.885 6.357 2.1 3.247.213 4.868 1.277 4.954 3.252.035.78-.216 1.472-.724 2.004-.765.799-2.101 1.221-3.867 1.221l-.168-.002c-2.009-.028-3.699-.752-4.637-1.985a3.561 3.561 0 0 1-.497-.89h-2.466a.213.213 0 0 0-.204.268c.878 3.102 3.772 4.976 7.812 5.03l.188.002c2.516 0 4.58-.69 5.81-1.947.928-.947 1.384-2.194 1.354-3.705-.067-3.387-2.382-5.224-7.075-5.614-3.028-.253-5.045-.784-5.045-2.548 0-1.591 1.893-2.79 4.403-2.79 1.995 0 3.506.74 4.254 2.08.071.126.201.39.315.768h2.465c.123 0 .22-.116.196-.239a6.332 6.332 0 0 0-.192-.753c-.876-2.693-3.441-4.238-7.036-4.238Zm23.236 11.401c-.052 2.382-1.764 5.164-6.424 5.164-2.831 0-4.52-1.152-4.52-3.084 0-2.104 1.626-3.188 5.114-3.405l5.83-.18v1.505Zm-4.688-11.399h-.091c-2.616 0-4.816.769-6.191 2.165a5.48 5.48 0 0 0-1.497 2.828.198.198 0 0 0 .194.233h2.522c.524-1.831 2.27-2.842 4.935-2.842h.091c2.957.002 4.723 1.048 4.723 2.795v2.345c0 .062-.046.11-.108.114l-6.091.264c-4.942.26-7.345 2.084-7.345 5.575 0 4.06 3.623 5.505 7.012 5.505 2.613 0 4.521-.712 6.195-2.317l.373-.413v2.37h2.531V22.42c0-3.515-2.643-5.534-7.253-5.538Zm-84.042.428-5.612 15.245-5.706-15.245h-2.514a.204.204 0 0 0-.192.274l6.84 17.92h3.105l6.785-17.918a.204.204 0 0 0-.191-.274l-2.515-.002Z" /> <path class="path-fill logo-fill" fill="#FFE700" d="m16.397 22.875-.59-.344-1.774-1.024a.819.819 0 0 0-.807 0l-1.773 1.024-.584.337-1.773 1.025a.81.81 0 0 0-.404.695v7.683h2.155v-6.433a.81.81 0 0 1 .404-.696l1.952-1.13a.819.819 0 0 1 .808 0l1.96 1.13a.81.81 0 0 1 .404.696v6.425h2.155v-7.682a.81.81 0 0 0-.405-.696l-1.728-1.01Z" /> <path class="path-fill logo-fill" fill="#FFD00A" d="m20.743 20.362-4.937-2.85-1.773-1.025a.819.819 0 0 0-.808 0l-1.773 1.025-4.93 2.85-1.772 1.025a.81.81 0 0 0-.404.695v10.189H6.5v-8.932a.81.81 0 0 1 .404-.695l6.299-3.636a.819.819 0 0 1 .807 0l6.306 3.643a.81.81 0 0 1 .404.696v8.939h2.155V22.09a.811.811 0 0 0-.404-.696l-1.728-1.032Z" /> <path class="path-fill logo-fill" fill="#FFAD02" d="m26.862 18.88-12.829-7.405a.819.819 0 0 0-.808 0L.404 18.881a.81.81 0 0 0-.404.695v16.248c0 .441.36.808.808.808h10.061v-2.177H2.177v-13.63a.81.81 0 0 1 .404-.695l10.652-6.15a.819.819 0 0 1 .808 0l10.652 6.15a.81.81 0 0 1 .404.696v13.621h-8.7v2.177h10.061a.81.81 0 0 0 .808-.808v-16.24a.801.801 0 0 0-.404-.695Z" /> </g> </svg> </span> </div> </header> <div class="card-icon-details"> <h4 class="card-title title-extra-small "> 3x increase in bookings</h4> <div class="card-description copy-small"> <p>Discover how Vacasa achieved 3x more bookings and improved vacation experiences using highly-personalized guest engagement.</p> </div> <div class="button-container horizontal small left"> <a class="button link right" aria-label="Read the Vacasa customer story" href="https://segment.com/customers/vacasa/" target="_blank"> <span class="button-text"> Learn more <span class="button-icon external medium"> <svg viewBox="0 0 79 79" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon--decorative" role="presentation"> <title>An icon of a outbound link arrow</title> <path class="icon-stroke" d="M75.3037 3.98207L3 75.5935M75.3037 3.98207L76.0435 43.3021M75.3037 3.98207L35.951 3.59351" stroke="#F22F46" stroke-width="5.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> </span> </span> </a> </div> </div> </div> </div> <div class="grid-container-column"> <!-- Card icon option --> <div class="card-icon vertical center"> <a class="card-icon__overlay" href="https://segment.com/customers/allergan/" target="_blank"></a> <header class="card-icon-header vertical center"> <div class="svg-icon "> <span class="allergan circle medium circle"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 167 48" class="customer-logo"> <title>Allergan logo</title> <g class="allergan"> <path fill="#44AF2C" d="M15.132 13.913a3.832 3.832 0 0 1 3.796-3.826c2.108-.014 3.869 1.753 3.843 3.854-.026 2.098-1.752 3.804-3.838 3.795a3.83 3.83 0 0 1-3.801-3.823Zm.001 20.145c.011-2.09 1.742-3.805 3.83-3.794 2.09.011 3.81 1.74 3.81 3.825 0 2.111-1.768 3.858-3.871 3.825a3.832 3.832 0 0 1-3.769-3.856Zm3.156-10.034a3.826 3.826 0 0 1-3.82 3.802c-2.092-.005-3.808-1.722-3.815-3.818-.007-2.114 1.753-3.86 3.862-3.833a3.824 3.824 0 0 1 3.773 3.85Z" class="path-fill logo-fill"/> <path fill="#2D5696" d="m99.205 28.616 1.573 2.665c-.342.28-.653.592-1.016.822-2.396 1.52-5.007 2.017-7.775 1.43-2.368-.502-3.919-1.988-4.501-4.335-.846-3.404-.26-6.552 2.035-9.27 2.16-2.557 5.77-3.51 8.94-2.42 1.698.586 2.827 1.69 3.091 3.536.257 1.792-.4 3.212-1.81 4.294-1.505 1.155-3.26 1.706-5.103 1.994-.971.151-1.954.225-2.936.334-.166 1.27.836 2.403 2.306 2.577 1.713.202 3.225-.349 4.642-1.25.177-.113.347-.236.554-.377ZM91.8 24.588c.522-.052 1.054-.041 1.551-.168 1.027-.262 2.086-.487 3.037-.933.932-.437 1.213-1.467.864-2.308-.312-.753-1.186-1.135-2.18-.95-1.826.337-3.291 2.259-3.272 4.36Zm-16.333 8.781h-4.53c.956-7.345 1.906-14.654 2.859-21.993h4.53l-2.86 21.993m51.116-14.003c.148-.476.32-.867.385-1.275.087-.538.37-.64.866-.625 1.151.037 2.303.012 3.519.012-.211 1.653-.408 3.247-.619 4.838-.406 3.078-.812 6.156-1.234 9.232-.311 2.26-1.04 4.322-2.884 5.83-1.275 1.045-2.764 1.562-4.376 1.756-2.782.334-5.385-.196-7.779-1.676-.174-.107-.331-.242-.541-.398l1.836-3.03c1.623 1.054 3.283 1.726 5.193 1.646 1.998-.084 3.215-.996 3.745-2.924.187-.68.293-1.381.334-2.12-.2.203-.397.41-.602.608-2.342 2.28-6.454 2.07-8.42-.43-.694-.882-1.073-1.905-1.2-3.001-.363-3.124.28-5.99 2.433-8.37 1.714-1.892 3.874-2.677 6.419-2.2 1.285.24 2.038.818 2.925 2.127Zm-.645 4.542c-.021-.183-.046-.454-.083-.724-.302-2.22-2.314-3.223-4.242-2.07a4.093 4.093 0 0 0-1.226 1.145c-.958 1.385-1.295 2.942-.994 4.607.37 2.05 2.167 2.982 4.011 2.002.634-.337 1.195-.924 1.617-1.52.695-.98.871-2.16.917-3.44Zm-61.028-11.93 4.128 21.39h-4.791l-.758-4.363c-.2-.01-.402-.03-.604-.03-2.059-.002-4.118.016-6.176-.015-.483-.007-.691.17-.864.593-.525 1.28-1.093 2.54-1.65 3.821h-4.45c.08-.214.137-.4.217-.575 3.079-6.773 6.164-13.546 9.233-20.326.174-.384.375-.514.796-.506 1.615.027 3.23.011 4.919.011ZM57.574 25.29h5.379l-1.505-8.756c-.04 0-.08 0-.12-.002a98803.59 98803.59 0 0 0-3.754 8.76m87.253-5.827c.166-.587.28-1.092.458-1.573.063-.167.279-.392.43-.395 1.256-.032 2.514-.018 3.868-.018l-2.07 15.886h-4.188v-1.992c-.184.173-.275.247-.352.334-1.604 1.791-3.585 2.446-5.913 1.854-2.261-.575-3.404-2.236-3.818-4.396-.654-3.414-.112-6.625 2.092-9.4 1.621-2.043 3.786-2.951 6.4-2.576 1.223.175 2.179.839 2.839 1.9.063.102.134.198.254.376Zm-.707 4.914c0-.294.023-.59-.005-.881-.136-1.432-.856-2.46-1.941-2.744-1.128-.296-2.069.096-2.867.877-1.565 1.53-2.218 4.934-1.352 6.951.466 1.084 1.304 1.618 2.484 1.543 1.226-.076 2.048-.8 2.662-1.784.753-1.207 1.047-2.548 1.019-3.962Zm8.947-6.878h4.155v2.047c.215-.206.362-.333.494-.474 1.701-1.813 3.807-2.31 6.159-1.779 1.849.418 2.983 1.967 2.913 4.042-.054 1.632-.282 3.26-.477 4.884-.285 2.372-.609 4.74-.92 7.139h-4.522c.198-1.532.389-3.026.586-4.52.224-1.707.478-3.41.674-5.119.105-.92.064-1.874-.867-2.392-.981-.547-1.964-.34-2.83.322-1.106.846-1.673 1.97-1.828 3.375-.297 2.712-.685 5.413-1.037 8.119-.008.06-.038.117-.07.211h-4.495l2.066-15.854m-69.61 15.86h-4.53l2.861-21.986h4.528l-2.859 21.986Zm23.845.032h-4.472l2.067-15.886h4.175v2.17c.558-.592 1.044-1.224 1.643-1.718 1.081-.892 2.342-1.064 3.68-.663.402.12.555.33.427.793-.336 1.21-.611 2.435-.918 3.688-.336-.082-.632-.18-.936-.224-1.18-.174-2.196.147-3.03 1.026-1.138 1.2-1.6 2.65-1.759 4.27-.206 2.11-.517 4.207-.786 6.31-.008.06-.044.116-.091.234Zm-68.21-9.398c.002-2.09 1.72-3.813 3.81-3.82 2.084-.007 3.818 1.708 3.841 3.799.024 2.096-1.746 3.865-3.852 3.85a3.84 3.84 0 0 1-3.8-3.83ZM34.64 13.943a3.809 3.809 0 0 1 3.759-3.856c2.091-.03 3.832 1.67 3.853 3.764.023 2.144-1.667 3.875-3.793 3.887-2.098.012-3.806-1.687-3.82-3.795Zm7.614 20.152a3.818 3.818 0 0 1-3.801 3.818c-2.121.008-3.832-1.726-3.814-3.865.019-2.108 1.734-3.804 3.829-3.786a3.817 3.817 0 0 1 3.786 3.833Z" class="path-fill logo-fill"/> <path fill="#4087CA" d="M28.624 5.401a3.819 3.819 0 0 1 3.777 3.84c-.016 2.09-1.747 3.804-3.835 3.796-2.09-.008-3.821-1.74-3.817-3.819.004-2.115 1.747-3.832 3.875-3.817Zm-.027 37.198c-2.12.006-3.867-1.739-3.848-3.844.019-2.085 1.769-3.81 3.844-3.791a3.838 3.838 0 0 1 3.808 3.822 3.818 3.818 0 0 1-3.804 3.813Zm6.55-16.509a2.089 2.089 0 0 1-2.094-2.076c-.01-1.175.937-2.11 2.13-2.106a2.103 2.103 0 0 1 2.1 2.078c.01 1.166-.952 2.113-2.136 2.105Zm-1.74-9.286a2.125 2.125 0 0 1-2.164 2.083c-1.136-.027-2.078-1.002-2.056-2.128a2.11 2.11 0 0 1 2.101-2.079c1.179.001 2.135.96 2.119 2.124Zm-2.119 16.498c-1.19-.003-2.126-.951-2.1-2.126a2.126 2.126 0 0 1 2.12-2.063 2.124 2.124 0 0 1 2.1 2.146c-.02 1.146-.953 2.045-2.12 2.043Z" class="path-fill logo-fill"/> <path fill="#A3D235" d="M6.749 21.908a2.074 2.074 0 0 1 2.079 2.142c-.023 1.155-.947 2.045-2.119 2.04-1.192-.005-2.089-.933-2.069-2.142.02-1.164.936-2.051 2.109-2.04Zm7.14 9.316c-.003 1.178-.888 2.07-2.063 2.08-1.205.009-2.124-.898-2.121-2.093a2.09 2.09 0 0 1 2.133-2.096 2.08 2.08 0 0 1 2.051 2.109Zm0-14.426a2.08 2.08 0 0 1-2.073 2.087 2.09 2.09 0 0 1-2.111-2.119c.005-1.163.909-2.062 2.08-2.07 1.207-.007 2.108.894 2.104 2.102Z" class="path-fill logo-fill"/> <path fill="#C5D506" d="M6.708 20.383c-.752-.01-1.397-.664-1.397-1.418.001-.752.647-1.404 1.4-1.414.78-.01 1.445.665 1.428 1.45-.016.75-.68 1.391-1.431 1.382ZM8.14 29.04a1.444 1.444 0 0 1-1.405 1.41c-.75.004-1.408-.64-1.423-1.393-.014-.775.665-1.457 1.436-1.44.755.015 1.396.67 1.393 1.423ZM0 23.992a1.425 1.425 0 0 1 1.395-1.41c.79-.005 1.42.648 1.402 1.457a1.403 1.403 0 0 1-1.417 1.378A1.42 1.42 0 0 1 0 23.992Z" class="path-fill logo-fill"/> <path fill="#81ADE2" d="M26.801 19.781c-.784-.007-1.42-.62-1.43-1.378-.01-.78.65-1.415 1.465-1.407.767.006 1.403.652 1.389 1.41A1.406 1.406 0 0 1 26.8 19.78Zm4.995 4.239c-.006.781-.641 1.427-1.386 1.408-.756-.018-1.398-.666-1.404-1.416-.006-.774.674-1.452 1.444-1.442.748.01 1.353.66 1.346 1.45Zm-4.993 6.983c-.783-.006-1.42-.618-1.431-1.377-.013-.78.646-1.415 1.463-1.408.768.006 1.402.649 1.39 1.408a1.408 1.408 0 0 1-1.422 1.377Z" class="path-fill logo-fill"/> </g> </svg> </span> </div> </header> <div class="card-icon-details"> <h4 class="card-title title-extra-small "> $400M in direct-to-consumer sales</h4> <div class="card-description copy-small"> <p>Find out what Allergan did to drive over $400M in sales by taking ownership of their data and using it to create intelligent, personalized customer experiences</p> </div> <div class="button-container horizontal small left"> <a class="button link right" aria-label="Read the Allergan customer story" href="https://segment.com/customers/allergan/" target="_blank"> <span class="button-text"> Learn more <span class="button-icon external medium"> <svg viewBox="0 0 79 79" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon--decorative" role="presentation"> <title>An icon of a outbound link arrow</title> <path class="icon-stroke" d="M75.3037 3.98207L3 75.5935M75.3037 3.98207L76.0435 43.3021M75.3037 3.98207L35.951 3.59351" stroke="#F22F46" stroke-width="5.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> </span> </span> </a> </div> </div> </div> </div> </div> </div> </section> <section class="section-wrapper default" id=""> <div class="section-content "> <div id="" class="grid-container default medium-gap" style=""> <div class="grid-container-column"> <div data-uuid="1203625492" class="divider"> <p>Resources</p> <hr/> </div> </div> </div> </div> </section> <section class="section-wrapper slim" id=""> <div class="section-content "> <div id="" class="grid-container default medium-gap" style=""> <div class="grid-container-column"> <div class="section-header"> <div class="icon"> </div> <h2 class="title-medium dark-text"> Learn more about how a CDP works </h2> </div> </div> </div> <div id="" class="grid-container two-columns default with-border medium-gap" style=""> <div class="grid-container-column"> <ul data-uuid="" class="list list-icon spacing-loose large " role="list"> <li> <div class="list-marker"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation"> <title>An Open book</title> <g class="documents_book--open"> <path d="M35.995 67.5h-.029c-.263 0-.515-.058-.748-.164a1.946 1.946 0 0 1-.642-.454h-.01c-.146-.165-7.349-7.363-30.173-7.673-.943-.029-1.79-.396-2.42-1.053A3.412 3.412 0 0 1 1 55.75V7.95c0-.918.36-1.788 1.011-2.435.32-.329.71-.58 1.137-.754A3.32 3.32 0 0 1 4.49 4.5c19.305.251 28.297 5.276 31.505 7.672 3.208-2.396 12.2-7.42 31.506-7.672.495 0 .923.077 1.35.26.419.175.808.426 1.138.755A3.418 3.418 0 0 1 71 7.95v47.82c0 .889-.34 1.739-.962 2.396a3.435 3.435 0 0 1-2.392 1.053c-22.737.31-29.979 7.43-30.202 7.653-.03.039-.069.068-.107.106a.979.979 0 0 1-.156.126 1.973 1.973 0 0 1-.437.251 1.768 1.768 0 0 1-.603.135h-.136l-.01.01Zm1.944-51.927v46.168c4.287-2.541 13.123-6.107 29.163-6.387V8.374c-19.228.33-27.19 5.605-29.163 7.2ZM4.89 55.354c16.039.27 24.875 3.836 29.162 6.377V15.573c-1.944-1.575-9.906-6.87-29.163-7.198v46.98Zm39.923-7.807a1.933 1.933 0 0 1-.622-3.768 65.327 65.327 0 0 1 15.932-3.16 1.949 1.949 0 0 1 2.08 1.787 1.939 1.939 0 0 1-1.798 2.068 61.28 61.28 0 0 0-14.97 2.967 1.93 1.93 0 0 1-.612.096l-.01.01Zm-17.624 0c-.204 0-.408-.03-.612-.097a60.922 60.922 0 0 0-14.97-2.966 1.939 1.939 0 0 1-1.799-2.068c.078-1.063 1.02-1.855 2.08-1.788a65.422 65.422 0 0 1 15.933 3.16 1.925 1.925 0 0 1 1.225 2.445 1.945 1.945 0 0 1-1.847 1.323l-.01-.01Zm0-9.982c-.204 0-.408-.029-.612-.096a60.832 60.832 0 0 0-14.97-2.967 1.939 1.939 0 0 1-1.799-2.068c.078-1.062 1.02-1.845 2.08-1.787a65.327 65.327 0 0 1 15.933 3.16 1.925 1.925 0 0 1 1.225 2.444 1.945 1.945 0 0 1-1.847 1.324l-.01-.01Zm17.624 0a1.933 1.933 0 0 1-.622-3.768 65.331 65.331 0 0 1 15.932-3.16c1.06-.067 2.003.725 2.08 1.788a1.939 1.939 0 0 1-1.798 2.068 61.194 61.194 0 0 0-14.97 2.966 1.93 1.93 0 0 1-.612.097l-.01.01Z" class="path-fill fill-path"/> </g> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> <a href="https://segment.com/resources/cdp/" target="_blank"> What is a Customer Data Platform? </a> </h5> <p>Discover how a CDP can give you deep insights into your customers and help you create more personalized campaigns.</p> </div> </li> <li> <div class="list-marker"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation"> <title>Bar graph with arrow</title> <g class="graphs_bar-graph--arrow"> <path d="M69 65.86h-2.4v-23.7c-.01-1.1-.46-2.16-1.24-2.94a4.252 4.252 0 0 0-2.94-1.24h-8.86c-1.1.01-2.16.46-2.94 1.24-.78.78-1.22 1.83-1.24 2.94v23.7h-4.8V33c-.01-1.1-.46-2.16-1.24-2.94a4.252 4.252 0 0 0-2.94-1.24h-8.86c-1.1.01-2.16.46-2.94 1.24-.78.78-1.22 1.83-1.24 2.94v32.86h-4.8v-8.3c-.01-1.1-.46-2.16-1.24-2.94a4.252 4.252 0 0 0-2.94-1.24H9.57c-1.1.01-2.16.46-2.94 1.24-.78.78-1.22 1.83-1.24 2.94v8.3H3c-1.1 0-2 .9-2 2s.9 2 2 2h66c1.1 0 2-.9 2-2s-.9-2-2-2ZM53.63 41.99h8.75c.06 0 .12.02.16.07.04.05.07.1.07.16v23.64h-9.2V42.22c0-.06.02-.12.07-.16.05-.04.1-.07.16-.07h-.01Zm-22-9.17h8.75c.06 0 .12.02.16.07.04.04.07.1.07.16v32.81h-9.2v-32.8c0-.06.02-.12.07-.16.04-.04.1-.07.16-.07l-.01-.01Zm-22 24.58h8.75c.06 0 .12.02.16.07.04.04.07.1.07.16v8.24H9.4v-8.24c0-.06.02-.12.07-.16.04-.04.1-.07.16-.07ZM6.76 31.96c.43 0 .87-.14 1.24-.43l18.78-14.84a2 2 0 0 1 1.72-.37l15.98 3.92c1.85.46 3.83 0 5.29-1.23L62.15 8.62l-.13 8.03a2 2 0 0 0 1.97 2.03c1.13 0 2.01-.86 2.03-1.97l.2-12.4c0-.08 0-.17-.01-.25 0-.07-.02-.14-.03-.2-.02-.07-.04-.14-.06-.2a1.9 1.9 0 0 0-.39-.66c-.19-.21-.41-.38-.65-.49-.23-.11-.49-.17-.76-.18h-.06l-12.4-.19a2 2 0 1 0-.06 4l7.05.11-11.62 9.76c-.49.41-1.15.56-1.76.41L29.49 12.5a5.929 5.929 0 0 0-5.15 1.12L5.52 28.39c-.87.69-1.01 1.94-.33 2.81.4.5.98.76 1.57.76Z" class="path-fill fill-path"/> </g> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> <a href="https://segment.com/blog/customer-data-platform-roi/" target="_blank"> The ROI of a Customer Data Platform </a> </h5> <p>Learn how a CDP can deliver impactful results by ensuring access to clean, reliable data for multiple teams across the business.</p> </div> </li> <li> <div class="list-marker"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation"> <title>Chat bubble with user symbol</title> <g class="messaging_chat-bubble--users"> <path class="path-fill fill-path" fill-rule="evenodd" d="M1.917 5.903A6.545 6.545 0 0 1 6.533 4h58.934c1.73 0 3.39.683 4.616 1.903A6.498 6.498 0 0 1 72 10.51v37.45c0 1.73-.69 3.387-1.917 4.607a6.545 6.545 0 0 1-4.616 1.903H58.4V66a2 2 0 0 1-3.196 1.603L37.603 54.47H6.533c-1.73 0-3.39-.683-4.616-1.903A6.498 6.498 0 0 1 0 47.96V10.51c0-1.73.69-3.387 1.917-4.607ZM6.533 8c-.675 0-1.32.267-1.795.739A2.498 2.498 0 0 0 4 10.51v37.45c0 .662.264 1.3.738 1.771.475.472 1.12.739 1.795.739h31.734a2 2 0 0 1 1.196.397L54.4 62.012V52.47a2 2 0 0 1 2-2h9.067c.675 0 1.32-.267 1.795-.739A2.499 2.499 0 0 0 68 47.96V10.51c0-.662-.264-1.3-.738-1.771A2.545 2.545 0 0 0 65.467 8H6.533Z" clip-rule="evenodd"/> <path class="path-fill fill-path" fill-rule="evenodd" d="M32.534 19.936a6.728 6.728 0 0 1 1.482 2.185 6.67 6.67 0 0 1 0 5.172 6.727 6.727 0 0 1-1.832 2.507c.5.24.981.52 1.44.841a2 2 0 0 1-2.294 3.278 6.277 6.277 0 0 0-3.596-1.13 6.277 6.277 0 0 0-3.597 1.13 6.078 6.078 0 0 0-2.251 2.948 2 2 0 1 1-3.77-1.335 10.078 10.078 0 0 1 3.729-4.891c.457-.32.939-.6 1.438-.84a6.725 6.725 0 0 1-2.355-5.094c0-.888.177-1.767.522-2.586a6.728 6.728 0 0 1 1.482-2.185c2.62-2.581 6.981-2.581 9.602 0Zm-4.801 2.039c-.373 0-.74.072-1.084.212-.342.14-.651.344-.91.599a2.73 2.73 0 0 0-.602.886 2.67 2.67 0 0 0 0 2.07c.139.33.342.631.601.886.26.255.569.46.911.6a2.871 2.871 0 0 0 2.168 0c.342-.14.651-.345.91-.6.26-.255.463-.556.602-.885a2.67 2.67 0 0 0 0-2.071 2.728 2.728 0 0 0-.602-.886 2.81 2.81 0 0 0-.91-.599 2.869 2.869 0 0 0-1.084-.212Zm12.872-1.583a6.871 6.871 0 0 1 5.189 0A6.81 6.81 0 0 1 48 21.845a6.727 6.727 0 0 1 1.482 2.184 6.67 6.67 0 0 1 0 5.173 6.727 6.727 0 0 1-1.833 2.507c.5.24.982.52 1.44.84a10.08 10.08 0 0 1 3.73 4.892 2 2 0 0 1-3.771 1.335 6.078 6.078 0 0 0-2.252-2.949 6.276 6.276 0 0 0-3.596-1.128 6.277 6.277 0 0 0-3.597 1.129 6.078 6.078 0 0 0-2.252 2.948 2 2 0 0 1-3.77-1.335 10.08 10.08 0 0 1 3.73-4.891c.457-.32.938-.601 1.438-.84a6.729 6.729 0 0 1-1.833-2.507 6.67 6.67 0 0 1 0-5.174 6.729 6.729 0 0 1 1.481-2.184 6.811 6.811 0 0 1 2.207-1.453Zm2.595 3.492c-.373 0-.741.072-1.084.212a2.81 2.81 0 0 0-.91.599c-.26.255-.464.556-.602.885a2.669 2.669 0 0 0 0 2.071c.138.33.342.63.601.886.26.255.569.46.911.599a2.869 2.869 0 0 0 3.078-.599 2.73 2.73 0 0 0 .602-.886 2.669 2.669 0 0 0 0-2.07 2.73 2.73 0 0 0-.602-.886 2.81 2.81 0 0 0-.91-.6 2.869 2.869 0 0 0-1.084-.211Z" clip-rule="evenodd"/> </g> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> <a href="https://segment.com/blog/personalized-sms-segment-twilio/" target="_blank"> How to Send Personalized SMS with Twilio Segment and Twilio </a> </h5> <p>Explore how to use Segment and Twilio Programmable Messaging to send a personalized SMS campaign to customers.</p> </div> </li> </ul> </div> <div class="grid-container-column"> <ul data-uuid="" class="list list-icon spacing-loose large " role="list"> <li> <div class="list-marker"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation"> <title>Desktop computer with developer documentation</title> <g class="computers_desktop--education-2"> <path class="path-fill fill-path" fill-rule="evenodd" d="M12.788 12.265a5.402 5.402 0 0 0-5.404 5.4v25.131h51.53v-5.691a2 2 0 0 1 4 0v8.308c0 5.192-4.212 9.4-9.404 9.4H42.914l1.184 7.099h3.859a2 2 0 0 1 0 4H18.34a2 2 0 0 1 0-4h3.86l1.184-7.1H12.788c-5.192 0-9.404-4.207-9.404-9.4V17.665c0-5.192 4.212-9.4 9.404-9.4h21.208a2 2 0 0 1 0 4H12.788ZM7.563 46.796a5.405 5.405 0 0 0 5.225 4.016H53.51a5.405 5.405 0 0 0 5.225-4.016H7.563Zm19.876 8.016-1.184 7.1h13.788l-1.184-7.1h-11.42Z" clip-rule="evenodd"/> <path class="path-fill fill-path" fill-rule="evenodd" d="M64.463 8.116a3.938 3.938 0 0 1 1.449.096c.473.121.928.334 1.33.636.402.303.748.695.993 1.162.247.469.382.994.38 1.537l-2-.004h2v13.568l-2 .002h2a3.33 3.33 0 0 1-1.01 2.375 3.761 3.761 0 0 1-2.214 1.041l-.01.001c-3.079.335-5.952 1.433-8.274 3.13a3.882 3.882 0 0 1-2.224.694 3.882 3.882 0 0 1-2.223-.694c-2.322-1.698-5.196-2.796-8.276-3.13h-.01a3.76 3.76 0 0 1-2.215-1.042 3.333 3.333 0 0 1-1.01-2.375h2l-2-.002V11.544c0-.542.135-1.067.382-1.535a3.49 3.49 0 0 1 .994-1.16 3.775 3.775 0 0 1 1.329-.636 3.939 3.939 0 0 1 1.447-.095l.026.003c3.493.466 6.797 1.744 9.557 3.722 2.758-1.978 6.061-3.256 9.552-3.723l.027-.004Zm-11.58 7.201a3.77 3.77 0 0 1-.221-.145c-2.13-1.554-4.72-2.608-7.513-3.036v12.456c2.747.34 5.383 1.184 7.735 2.479V15.317Zm4 11.754c2.351-1.295 4.987-2.139 7.733-2.479V12.135c-2.792.428-5.381 1.483-7.51 3.037a3.7 3.7 0 0 1-.222.145v11.754Zm-39.149-6.396a2 2 0 0 1 2.828-.002l5.762 5.755a2 2 0 0 1 0 2.83l-5.762 5.755a2 2 0 0 1-2.826-2.83l4.345-4.34-4.345-4.34a2 2 0 0 1-.002-2.828Zm9.945 13.147a2 2 0 0 1 2-2H37.6a2 2 0 1 1 0 4h-7.922a2 2 0 0 1-2-2Z" clip-rule="evenodd"/> </g> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> <a href="https://segment.com/blog/twilio-segment-the-game-changing-cdp/" target="_blank"> Why Every Developer Needs a CDP </a> </h5> <p>Learn how a CDP creates a more seamless way for developers to collect, govern, and activate customer data.</p> </div> </li> <li> <div class="list-marker"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation"> <title>Spreadsheet document</title> <g class="documents_document--charts"> <path fill-rule="evenodd" d="M1 7.352A6.352 6.352 0 0 1 7.352 1h57.296A6.352 6.352 0 0 1 71 7.352v57.296A6.352 6.352 0 0 1 64.648 71H7.352A6.352 6.352 0 0 1 1 64.648V7.352Zm6.352-2.463a2.463 2.463 0 0 0-2.463 2.463v57.296a2.463 2.463 0 0 0 2.463 2.463h57.296a2.463 2.463 0 0 0 2.463-2.463V7.352a2.463 2.463 0 0 0-2.463-2.463H7.352Zm2.463 20.827c0-8.377 6.79-15.167 15.167-15.167 8.376 0 15.166 6.79 15.166 15.167 0 8.376-6.79 15.166-15.166 15.166-8.377 0-15.167-6.79-15.167-15.166Zm13.222-11.111c-5.302.921-9.333 5.545-9.333 11.11 0 6.23 5.05 11.278 11.278 11.278 2.412 0 4.646-.757 6.48-2.046l-7.856-7.856a1.944 1.944 0 0 1-.57-1.375l.001-11.111Zm3.889 0V24.91l7.286 7.287a11.226 11.226 0 0 0 2.047-6.481c0-5.566-4.031-10.19-9.333-11.111ZM47.278 16.9c0-1.074.87-1.944 1.944-1.944h10.285a1.944 1.944 0 0 1 0 3.889H49.222a1.945 1.945 0 0 1-1.944-1.945Zm0 10.284c0-1.074.87-1.944 1.944-1.944h10.285a1.944 1.944 0 1 1 0 3.889H49.222a1.945 1.945 0 0 1-1.944-1.945ZM61.791 39.59c.76.76.76 1.99 0 2.75L50.037 54.094a4.148 4.148 0 0 1-5.863 0l-5.7-5.7a.26.26 0 0 0-.366 0L26.356 60.147a1.944 1.944 0 1 1-2.75-2.75l11.753-11.753v-.001a4.148 4.148 0 0 1 5.863 0l5.7 5.7a.26.26 0 0 0 .367 0l11.752-11.752c.76-.76 1.99-.76 2.75 0Z" class="fill-path path-fill" clip-rule="evenodd"/> </g> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> <a href="https://segment.com/the-cdp-report/" target="_blank"> The Customer Data Platform Report </a> </h5> <p>Enjoy Twilio Segment’s annual look at how customer data platforms are powering the world’s biggest companies.</p> </div> </li> <li> <div class="list-marker"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation"> <title>A pair of chat bubbles</title> <g class="messaging_chat-bubble--pair"> <path fill-rule="evenodd" d="M6.54 9.853A1.54 1.54 0 0 0 5 11.393v31.743a1.541 1.541 0 0 0 1.54 1.54h7.08a2 2 0 0 1 2 2v6.622l3.87-2.903.01-.008 5.654-4.296a2 2 0 1 1 2.42 3.185L21.9 53.587l-7.08 5.31a2 2 0 0 1-3.2-1.599v-8.622H6.54A5.54 5.54 0 0 1 1 43.136V11.393a5.54 5.54 0 0 1 5.54-5.54h46.02a5.54 5.54 0 0 1 5.539 5.54v11.861a2 2 0 1 1-4 0v-11.86a1.541 1.541 0 0 0-1.54-1.541H6.54Zm28.613 21.661a4.205 4.205 0 0 1 2.974-1.232h28.668A4.205 4.205 0 0 1 71 34.489v19.775a4.206 4.206 0 0 1-4.205 4.205h-2.41v5.679a2 2 0 0 1-3.314 1.508l-8.256-7.187H38.127a4.205 4.205 0 0 1-4.206-4.206V34.489c0-1.115.443-2.185 1.232-2.974Zm2.974 2.768a.205.205 0 0 0-.206.206v19.775a.206.206 0 0 0 .206.205h15.436a2 2 0 0 1 1.313.492l5.508 4.794v-3.286a2 2 0 0 1 2-2h4.41a.205.205 0 0 0 .206-.206V34.489a.206.206 0 0 0-.205-.206H38.126Z" class="fill-path path-fill" clip-rule="evenodd"/> </g> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> <a href="https://learn.segment.com/ultimate-omnichannel-guide/" target="_blank"> The Complete Guide to Omnichannel Marketing 2023 </a> </h5> <p>Discover an in-depth omnichannel approach to customer engagement, and how to implement it successfully.</p> </div> </li> </ul> </div> </div> </div> </section> <section class="section-wrapper default" id=""> <div class="section-content "> <div id="" class="grid-container default medium-gap" style=""> <div class="grid-container-column"> <div data-uuid="758477492" class="divider"> <p>Get started</p> <hr/> </div> </div> </div> </div> </section> <section class="section-wrapper default" id=""> <div class="section-content "> <div id="" class="grid-container default medium-gap" style=""> <div class="grid-container-column"> <div class="richtext " data-ext-icon="<svg viewBox="0 0 79 79" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon--decorative" role="presentation"> <title>An icon of a outbound link arrow</title> <path class="icon-stroke" d="M75.3037 3.98207L3 75.5935M75.3037 3.98207L76.0435 43.3021M75.3037 3.98207L35.951 3.59351" stroke="#F22F46" stroke-width="5.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> "> <h2 style=" text-align: center; max-width: 580.0px; margin-left: auto; margin-right: auto; ">Unlock your customer data with the leading CDP</h2> <p style=" text-align: center; max-width: 640.0px; margin-left: auto; margin-right: auto; ">The Twilio Segment CDP was ranked #1 for 2021 market share for the third year in a row as determined by a 2022 IDC Market Share report*. See how you can outmaneuver the competition by connecting all of your customer data to power personalized customer engagement across every channel.</p> </div> <div data-uuid="1458846806" class="button-container vertical large center"> <a class="button button-primary right" href="https://segment.com/demo/" target="_blank" data-uuid="7a34a21d-0553-3c99-8aca-e83f25a25c98" aria-label="Get a demo"> <span class="button-text"> Get a demo <span class="button-icon external medium"> <svg viewBox="0 0 79 79" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon--decorative" role="presentation"> <title>An icon of a outbound link arrow</title> <path class="icon-stroke" d="M75.3037 3.98207L3 75.5935M75.3037 3.98207L76.0435 43.3021M75.3037 3.98207L35.951 3.59351" stroke="#F22F46" stroke-width="5.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> </span> </span> </a> </div> </div> </div> <div id="" class="grid-container default medium-gap" style=""> <div class="grid-container-column"> <div class="richtext " data-ext-icon="<svg viewBox="0 0 79 79" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon--decorative" role="presentation"> <title>An icon of a outbound link arrow</title> <path class="icon-stroke" d="M75.3037 3.98207L3 75.5935M75.3037 3.98207L76.0435 43.3021M75.3037 3.98207L35.951 3.59351" stroke="#F22F46" stroke-width="5.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> "> <p style=" text-align: center; "><span class="copy-small">*IDC “Worldwide Customer Data Platform Market Shares, 2021: Stellar CDP Growth Proves Value of Unified Data for CX”</span></p> </div> </div> </div> </div> </section> <section class="section-wrapper default" id=""> <div class="section-content "> <div id="" class="grid-container default medium-gap" style=""> </div> </div> </section> </main> <footer class="experiencefragment global-footer"> <div class="xfpage page basicpage"> <div class="footer bg-color-footer-blue" data-uuid="1479458978"> <h2 class="footer-title">We can't wait to see what you build.</h2> <div class="grid-container four-columns footer-four-columns"> <div class="grid-container-column footer-list"> <h3 class="footer-list-title">Products</h3> <ul class="column-list" role="list"> <li> <a href="/en-us/engage" target="_self" data-uuid="c02ed0c4-5e2f-33e8-8325-883852001850">Twilio Engage</a> </li> <li> <a href="/en-us/flex" target="_self" data-uuid="9166bfad-df99-36ef-be3b-67fbf3cd2580">Flex</a> </li> <li> <a href="/en-us/user-authentication-identity" target="_self" data-uuid="5008e6ab-e48a-3a78-9062-e0c25ba11d82">User Authentication & Identity</a> </li> <li> <a href="/en-us/user-authentication-identity/lookup" target="_self" data-uuid="a138ee74-4ac8-3afa-81bb-c6006970f67d">Lookup</a> </li> <li> <a href="/en-us/user-authentication-identity/verify" target="_self" data-uuid="fcce1d7b-71ca-3ec7-a741-19e242544f0b">Verify</a> </li> <li> <a href="/en-us/voice" target="_self" data-uuid="6281d439-e098-3c55-8502-68f813c8d6ef">Voice </a> </li> <li> <a href="/en-us/video" target="_self" data-uuid="65ca1446-13b7-3b42-8d37-fa4c5e1b0cf9">Video</a> </li> <li> <a href="/en-us/messaging" target="_self" data-uuid="764bd06f-5b86-338b-b968-d2da3ea461cf">Messaging</a> </li> <li> <a href="/en-us/products/beta" target="_self" data-uuid="e5d0d93e-1048-3f43-a1d3-6e1e0bc29674">Beta products and features</a> </li> <li> <a href="/en-us/products#all-products" target="_self" data-uuid="bab082cf-9f72-3b30-b6ab-2f78a0a924cf">All products</a> </li> </ul> </div> <div class="grid-container-column footer-list"> <h3 class="footer-list-title">Solutions</h3> <ul class="column-list" role="list"> <li> <a href="/en-us/customer-data-platform" target="_self" data-uuid="f520079d-ac27-3132-b2d1-92b588632411">Customer Data Platform</a> </li> <li> <a href="/en-us/solutions/text-marketing" target="_self" data-uuid="522a431f-209a-3ec5-b5e5-b9f9b7d07c91">SMS Marketing</a> </li> <li> <a href="https://www.twilio.com/docs/proxy" target="_self" data-uuid="beee893c-9802-3f36-b726-ad84bfd5161d">Commerce Communications</a> </li> <li> <a href="/en-us/flex" target="_self" data-uuid="8a743038-3183-30e7-933a-5aeafe10fed0">Contact Center</a> </li> <li> <a href="/content/twilio-com/global/en-us/products?tab=2.html#all-solutions" target="_self" data-uuid="e35c3698-b086-31a9-8285-08cb1a7df1dc">All solutions</a> </li> </ul> </div> <div class="grid-container-column footer-list"> <h3 class="footer-list-title">Docs</h3> <ul class="column-list" role="list"> <li> <a href="https://www.twilio.com/docs#communications" target="_self" data-uuid="52bc527b-fb07-3606-9b28-5f1366e0ab35">Communications</a> </li> <li> <a href="https://www.twilio.com/docs#customer-data" target="_self" data-uuid="ad98a38b-2bbc-38fa-ad8c-93c246429cce">Customer Data</a> </li> <li> <a href="https://www.twilio.com/docs#engagement-applications" target="_self" data-uuid="8e31120e-a1d4-31cd-9c04-7cdb08adbd8e">Engagement Applications</a> </li> <li> <a href="https://www.twilio.com/docs#twilio-essentials" target="_self" data-uuid="787ee5df-0b36-355e-ad32-462b2978ebd3">Twilio Essentials</a> </li> <li> <a href="https://www.twilio.com/docs/libraries" target="_self" data-uuid="486e5dd5-a1b5-3ed0-8cfb-f0eb7782d0fa">Helper Libraries</a> </li> <li> <a href="https://www.twilio.com/docs#developer-toolkit" target="_self" data-uuid="eb59aebd-2205-3eb8-8e9c-e39d44b18e63">Developer Resources</a> </li> <li> <a href="https://www.twilio.com/docs" target="_self" data-uuid="1f96a301-307e-39a0-946a-3410f5de0f46">All Docs</a> </li> </ul> </div> <div class="grid-container-column footer-list"> <h3 class="footer-list-title">Company</h3> <ul class="column-list" role="list"> <li> <a href="/en-us/company" target="_self" data-uuid="6b1d16f2-1f2c-36d6-8645-01e7fcf55ba1">About Twilio</a> </li> <li> <a href="/en-us/why-twilio" target="_self" data-uuid="d8013c8b-3981-3630-a954-fc82a9d2de0d">Why Twilio</a> </li> <li> <a href="/en-us/customer-engagement-platform" target="_self" data-uuid="f3c280b0-64a5-325f-826d-04384a3be13f">Customer Engagement Platform</a> </li> <li> <a href="/en-us/trust" target="_self" data-uuid="6d9105d9-4e26-3d80-9771-19eead2418fd">Trusted Communications</a> </li> <li> <a href="https://customers.twilio.com/en-us" target="_self" data-uuid="c0a28646-a990-34d5-b2e7-35c38b0e4ad5">Customers</a> </li> <li> <a href="https://support.twilio.com/hc/en-us?_ga=2.14534711.1826591240.1667227419-607057990.1661885030" target="_self" data-uuid="b7f3c047-f3f4-33c3-98f3-b02375c224d6">Get Help</a> </li> <li> <a href="/en-us/help/sales" target="_self" data-uuid="0a65c396-e36e-311c-b01b-9da69b9e917d">Contact Sales</a> </li> <li> <a href="/en-us/press" target="_self" data-uuid="90729e7e-0cb3-3343-9e65-d5f4e59a51a8">Press & Media</a> </li> <li> <a href="/en-us/public-policy/blog" target="_self" data-uuid="3733d276-a0da-38fb-9ead-a672c1e8f9c4">Public Policy</a> </li> <li> <a href="https://investors.twilio.com/overview/default.aspx?_ga=2.87002776.1826591240.1667227419-607057990.1661885030" target="_self" data-uuid="ac959d3a-4767-365f-be24-3e5cee414dfe">Investor Relations</a> </li> <li> <a href="/en-us/events" target="_self" data-uuid="33b9f8ca-b939-3c2e-aa42-bd56242bb2bd">Events</a> </li> <li> <a href="/en-us/company/jobs" target="_self" data-uuid="49f9ee9e-ca54-3335-aad1-2a713325f645">Jobs at Twilio</a> </li> </ul> </div> </div> <div class="footer-bottom"> <div class="social-share"> <span class="m-share-label"></span> <ul> <li> <a href="https://www.facebook.com/TeamTwilio" target="_blank" class="m-share-button share-facebook js-share-facebook"> <span class="name"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation"> <title>Facebook logo</title> <g class="social_facebook-alt"> <path d="M41.667 24.667v-6.8c0-2.947.68-4.534 5.44-4.534H53V2h-9.067C32.6 2 28.067 9.48 28.067 17.867v6.8H19V36h9.067v34h13.6V36h9.973L53 24.667H41.667Z" class="path-fill fill-path"/> </g> </svg> </span> </a> </li> <li> <a href="https://x.com/twilio" target="_blank" class="m-share-button js-share-twitter"> <span class="name"> <svg class="icon--social" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"> <title>Twitter Logo</title> <desc>Follow us on Twitter</desc> <path class="path-fill" fill-rule="evenodd" clip-rule="evenodd" d="M45.8103 0.538939C46.0027 0.718527 46.1579 0.93438 46.267 1.17416C46.3762 1.41394 46.4372 1.67294 46.4464 1.93636C46.4557 2.19978 46.4132 2.46245 46.3212 2.70937C46.2292 2.95628 46.0896 3.18259 45.9103 3.37535L29.6373 20.8773L47.5984 44.7882C47.8218 45.0861 47.9579 45.4405 47.9917 45.8116C48.0254 46.1828 47.9554 46.5561 47.7895 46.8895C47.6235 47.223 47.3682 47.5035 47.0522 47.6996C46.7362 47.8957 46.3719 47.9996 46.0003 47.9997H35.0437C34.7338 47.9999 34.4282 47.9279 34.1509 47.7893C33.8735 47.6508 33.6321 47.4495 33.4456 47.2014L20.8048 30.3775L5.01581 47.3618C4.83668 47.5545 4.62145 47.71 4.38243 47.8192C4.1434 47.9285 3.88526 47.9895 3.62273 47.9987C3.3602 48.0079 3.09843 47.9652 2.85237 47.873C2.60631 47.7807 2.38077 47.6408 2.18864 47.4611C1.9965 47.2815 1.84153 47.0656 1.73257 46.8259C1.62361 46.5862 1.5628 46.3273 1.55361 46.064C1.54441 45.8007 1.58702 45.5382 1.67899 45.2914C1.77096 45.0446 1.9105 44.8184 2.08963 44.6257L18.3626 27.1238L0.401529 3.21287C0.178289 2.91513 0.0421298 2.56092 0.00830905 2.18994C-0.0255117 1.81896 0.044342 1.44586 0.210043 1.11245C0.375744 0.77904 0.630745 0.498494 0.946472 0.302248C1.2622 0.106002 1.62618 0.00180897 1.99763 0.00134389H12.9563C13.2658 0.0014979 13.571 0.0736829 13.848 0.212219C14.125 0.350754 14.3661 0.551861 14.5524 0.799712L27.1932 17.6236L42.9801 0.639236C43.1592 0.446298 43.3744 0.290646 43.6135 0.181176C43.8526 0.0717072 44.1108 0.0105677 44.3735 0.00125299C44.6362 -0.00806174 44.8981 0.0346309 45.1443 0.12689C45.3905 0.21915 45.6161 0.359167 45.8083 0.538939H45.8103ZM25.5091 22.0508C25.4527 21.9853 25.4006 21.9163 25.3531 21.8441L11.9582 4.01124H6.00787L36.0397 43.9898H41.9901L25.5091 22.0508Z" fill="#F22F46"/> </svg> </span> </a> </li> <li> <a href="https://www.linkedin.com/company/twilio-inc-" target="_blank" class="m-share-button js-share-linkedin"> <span class="name"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation"> <title>LinkedIn logo</title> <g class="social_linkedin-alt"> <path d="M17.436 68.5V24.645H2.86V68.5h14.576ZM10.15 18.653c5.083 0 8.247-3.367 8.247-7.575-.095-4.304-3.164-7.578-8.15-7.578C5.26 3.5 2 6.774 2 11.078c0 4.208 3.163 7.575 8.055 7.575h.095ZM25.505 68.5H40.08V44.009c0-1.31.095-2.62.48-3.557 1.053-2.619 3.452-5.331 7.479-5.331 5.274 0 7.384 4.021 7.384 9.917V68.5H70V43.352c0-13.47-7.191-19.738-16.782-19.738-7.863 0-11.316 4.396-13.234 7.39h.097v-6.361H25.505c.191 4.115 0 43.855 0 43.855Z" class="path-fill fill-path"/> </g> </svg> </span> </a> </li> <li> <a href="https://www.youtube.com/@twilio" target="_blank" class="m-share-button"> <span class="name"> <svg viewBox="0 0 72 72" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon--decorative" role="presentation"> <title>Youtube Logo</title> <g class="social_youtube"> <path d="M69.54 18.7C68.74 15.67 66.36 13.28 63.35 12.47C57.89 11 36 11 36 11C36 11 14.11 11 8.65 12.47C5.64 13.28 3.27 15.67 2.46 18.7C1 24.2 1 35.66 1 35.66C1 35.66 1 47.12 2.46 52.62C3.27 55.65 5.64 58.04 8.65 58.85C14.11 60.32 36 60.32 36 60.32C36 60.32 57.89 60.32 63.35 58.85C66.36 58.04 68.73 55.65 69.54 52.62C71 47.13 71 35.66 71 35.66C71 35.66 71 24.2 69.54 18.7ZM28.84 46.07V25.25L47.14 35.66L28.84 46.07Z" fill="black"/> </g> </svg> </span> </a> </li> </ul> </div> <ul class="footer-links" role="list"> <li> <a href="https://www.twilio.com/en-us/legal/tos" target="_self" data-uuid="9729a7d1-cc0b-3ebd-a189-076119e4ab98">Legal</a> </li> <li> <a href="https://www.twilio.com/en-us/legal/privacy" target="_self" data-uuid="8e8dfd08-798f-3880-b221-d1d60eb365d6">Privacy (Updated)</a> </li> <li> <a href="https://www.twilio.org/" target="_self" data-uuid="c371b7c0-5186-3614-abbc-36bd528ce3aa">Twilio.org</a> </li> <li> <a href="/en-us/press" target="_self" data-uuid="d10a25cc-ba5e-3709-aad3-0bdb34ad33e1">Press & Media</a> </li> <li> <a href="https://signal.twilio.com/?_ga=2.112150148.1826591240.1667227419-607057990.1661885030" target="_self" data-uuid="1768b82a-ab84-3a05-9e5d-fa4e76e6d898">Signal</a> </li> <li> <a href="https://investors.twilio.com/overview/default.aspx?_ga=2.112150148.1826591240.1667227419-607057990.1661885030" target="_self" data-uuid="7a29f24c-8376-3364-9878-ed412e473c6a">Investors</a> </li> <li> <a href="https://www.twilio.com/en-us/company/jobs" target="_self" data-uuid="9d3679ea-999c-3123-b166-a17769fcdcf6">Jobs</a> </li> </ul> <p class="footer-disclaimer"> <span>Copyright © 2024 Twilio Inc.</span> <span>All Rights Reserved.</span> </p> </div> </div> </div> </footer> <script src="/etc.clientlibs/twilio-foundation/clientlibs/clientlib-dependencies.lc-d41d8cd98f00b204e9800998ecf8427e-lc.min.js"></script> <script src="/etc.clientlibs/clientlibs/granite/jquery.lc-f9e8e8c279baf6a1a278042afe4f395a-lc.min.js"></script> <script src="/etc.clientlibs/clientlibs/granite/utils.lc-899004cc02c33efc1f6694b1aee587fd-lc.min.js"></script> <script src="/etc.clientlibs/twilio-foundation/clientlibs/clientlib-site.lc-4bf5653a16031625f5469829ca6ea054-lc.min.js"></script> <script src="/etc.clientlibs/twilio-com/clientlibs/clientlib-dependencies.lc-d41d8cd98f00b204e9800998ecf8427e-lc.min.js"></script> <script src="/etc.clientlibs/twilio-com/clientlibs/clientlib-site.lc-987cb92bb92261932ddaddd4539f6360-lc.min.js"></script> </body> </html>