CINXE.COM
The digital heart of your company | Zoom
<!doctype html> <html xmlns:fb="http://ogp.me/ns/fb#" lang="en"> <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# zoomvideocall: http://ogp.me/ns/fb/zoomvideocall#"> <title>The digital heart of your company | Zoom</title> <meta charset="UTF-8"> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <meta name="referrer" content="origin-when-cross-origin"> <meta name="description" content="Create a stronger connection between your employees, their culture, and values with a unified employee experience that prioritizes recognition and engagement."> <link rel="canonical" href="https://www.zoom.com/en/products/workvivo/" /> <meta name="robots" content="index, follow"> <link href="https://www.zoom.com/en/products/workvivo/" hreflang="x-default" rel="alternate" /> <link href="https://www.zoom.com/en/products/workvivo/" hreflang="en" rel="alternate" /> <link href="https://www.zoom.com/de/products/workvivo/" hreflang="de" rel="alternate" /> <link href="https://www.zoom.com/fr/products/workvivo/" hreflang="fr" rel="alternate" /> <link href="https://www.zoom.com/es/products/workvivo/" hreflang="es" rel="alternate" /> <link href="https://www.zoom.com/sv/products/workvivo/" hreflang="sv" rel="alternate" /> <link href="https://www.zoom.com/nl/products/workvivo/" hreflang="nl" rel="alternate" /> <link href="https://www.zoom.com/vi/products/workvivo/" hreflang="vi" rel="alternate" /> <link href="https://www.zoom.com/tr/products/workvivo/" hreflang="tr" rel="alternate" /> <link href="https://www.zoom.com/ru/products/workvivo/" hreflang="ru" rel="alternate" /> <link href="https://www.zoom.com/pt/products/workvivo/" hreflang="pt" rel="alternate" /> <link href="https://www.zoom.com/pl/products/workvivo/" hreflang="pl" rel="alternate" /> <link href="https://www.zoom.com/ko/products/workvivo/" hreflang="ko" rel="alternate" /> <link href="https://www.zoom.com/ja/products/workvivo/" hreflang="ja" rel="alternate" /> <link href="https://www.zoom.com/it/products/workvivo/" hreflang="it" rel="alternate" /> <link href="https://www.zoom.com/id/products/workvivo/" hreflang="id" rel="alternate" /> <link href="https://www.zoom.com/zh-tw/products/workvivo/" hreflang="zh-Hant-TW" rel="alternate" /> <link href="https://www.zoom.com/zh-cn/products/workvivo/" hreflang="zh-Hans-CN" rel="alternate" /> <link rel="icon" type="image/png" href="/favicon.ico" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="stylesheet" href="/dist/main.css?t=638750480520000000" media="screen,print" /> <script nonce="BUKZniEVAcw2LnXtabixHqvQjhqNEqBeG3Glo8UIDcQ="> document.addEventListener('DOMContentLoaded', function () { try { //console.log('DOMContentLoaded event fired'); function excludeUrls() { const excludedUrl = 'https://www.zoom.com/en/contact/contact-vb-sales'; if (window.location.href.includes(excludedUrl)) { //console.log('URL is excluded, exiting script execution'); return true; } return false; } function checkLoggedInStatus() { const cmsGuidKey = "authorized-access"; const roles = [ "e833b0a4-49b2-4a65-8270-598b5650186f", "be0a4727-2dc2-47cf-aa36-55e9b69bb501", "82c0350d-4c26-4b95-8feb-330fef53cda3", ]; const cookieValue = document.cookie .split(";") .map(c => c.trim()) .find(c => c.startsWith(`${cmsGuidKey}=`)) ?.split("=")[1]?.trim(); //console.log("Authorized-access cookie value:", cookieValue); const hasValidRole = roles.includes(cookieValue); //console.log("User has valid role:", hasValidRole); return hasValidRole; // Return logged-in status } function isSMBUser() { const cookieName = "isSMBUser"; const cookieValue = getCookie(cookieName); // Check if the cookie is already set if (cookieValue) { //console.log(`isSMBUser value retrieved from cookie: ${cookieValue}`); return cookieValue === "true"; } // If no cookie, determine the value from dataLayer const dataLayer = window.dataLayer || []; //console.log("Data layer content:", dataLayer); const smbValue = dataLayer.some(s => ['Just Me', '2-10', '11-50'].includes(s.employeeCount) || (s.employee_count && s.employee_count < 51) || ['Small (10 - 49 Employees)', 'Micro (1 - 9 Employees)'].includes(s.rwCompanySize) ); // Store the computed value in a cookie createCookieWithValue(cookieName, smbValue ? "true" : "false"); return smbValue ; } window.addEventListener("beforeunload", () => { //console.log("Resetting isSMBUser on refresh..."); document.cookie = "isSMBUser=; max-age=0; path=/; domain=.zoom.com"; }); function getCookie(name) { const match = document.cookie.split(";").map(c => c.trim()) .find(c => c.startsWith(`${name}=`)); return match ? match.split("=")[1] : null; } function waitForPersonalizationData(callback) { const interval = 100; // Check every 100ms const timeout = 10000; // Timeout after 10 seconds const startTime = Date.now(); const checkDataLayer = () => { const dataLayer = window.dataLayer || []; const eventLoaded = dataLayer.some(item => item.event === "rw_personalization_data"); if (eventLoaded) { //console.log("rw_personalization_data event is loaded in the dataLayer."); const smbValue = isSMBUser(); //console.log("isSMBUser value:", smbValue); // Store the isSMB value in a cookie createCookieWithValue("isSMBUser", smbValue ? "true" : "false"); callback(smbValue); // Pass the SMB value to the callback return; } if (Date.now() - startTime > timeout) { //console.error("Timed out waiting for rw_personalization_data event."); // Default to false in the cookie if timeout occurs createCookieWithValue("isSMBUser", "false"); callback(false); // Proceed with false if timeout occurs return; } setTimeout(checkDataLayer, interval); // Retry after interval }; checkDataLayer(); } function createCookieWithValue(cookieName, cookieValue) { if (cookieValue !== undefined) { let domain = location.hostname.split('.').reverse()[1] + '.' + location.hostname.split('.').reverse()[0]; setCookie(cookieName, cookieValue, 365, domain); } } function setCookie(cookieName, value, days, domain) { let expires = ""; if (days) { const date = new Date(); date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)); expires = "; expires=" + date.toUTCString(); } // Create the cookie document.cookie = `${cookieName}=${value || ""}${expires}; path=/; secure; samesite=none; domain=.${domain}`; } function monitorAuthorizationState() { let lastCookieValue = getCookie("authorized-access"); setInterval(() => { const currentCookieValue = getCookie("authorized-access"); if (currentCookieValue !== lastCookieValue) { //console.log(`Authorization state changed from ${lastCookieValue} to ${currentCookieValue}`); lastCookieValue = currentCookieValue; // Refresh the page when the authorization state changes //console.log("Refreshing the page due to authorization state change."); window.location.reload(); } }, 1000); // Check every second } function monitorSMBUserState() { let lastSMBValue = isSMBUser(); // Initial state setInterval(() => { const currentSMBValue = isSMBUser(); if (currentSMBValue !== lastSMBValue) { //console.log(`isSMBUser state changed from ${lastSMBValue} to ${currentSMBValue}`); lastSMBValue = currentSMBValue; // Trigger DOM updates based on the new state updateDOMBasedOnState(currentSMBValue); } }, 1000); // Check every second } function logElementAction(action, element) { if (element) { console.log(`${action}:`, { tagName: element.tagName, classList: Array.from(element.classList), innerHTML: element.innerHTML, }); } else { console.warn(`${action} failed: Element is null or undefined.`); } } function initializeNavElements() { //console.log("Initializing navigation elements"); const navLeft = document.querySelector('.main-nav__left .main-nav__list'); const navRight = document.querySelector('.main-nav__right .main-nav__list'); if (!navLeft || !navRight) { console.error("Navigation elements not found"); return; } // Refined selector logic for Plans & Pricing const backendPlansPricingLeft = navLeft.querySelector('li.main-nav__list-item > a.main-nav__link[href*="zoom.us/pricing"]'); if (backendPlansPricingLeft) { const parentElement = backendPlansPricingLeft.closest('li.main-nav__list-item'); if (parentElement && !parentElement.hasAttribute('data-added-by')) { //console.log("Adding 'data-added-by=backend' to backend Plans & Pricing in the main-nav__list"); parentElement.setAttribute('data-added-by', 'backend'); } else { console.warn("Parent element already has 'data-added-by' or is null."); } } else { console.warn("Plans & Pricing link not found in the correct navigation context."); } // Locate "Contact Sales" in the right navigation and add the data attribute const backendContactSalesRight = navRight.querySelector('li.main-nav__list-item > a[href*="contact-sales"]'); //console.log("backendContactSalesRight -> ", backendContactSalesRight); if (backendContactSalesRight) { const parentElement = backendContactSalesRight.closest('li.main-nav__list-item'); if (parentElement && !parentElement.hasAttribute('data-added-by')) { //console.log("Adding 'data-added-by=backend' to backend-rendered Contact Sales in the main-nav__list"); parentElement.setAttribute('data-added-by', 'backend'); } } else { console.warn("Contact Sales link not found in right navigation."); } // Add custom-script elements for Contact Sales (left) and Plans & Pricing (right) const contactSalesWrapperLeft = document.createElement('li'); contactSalesWrapperLeft.className = 'main-nav__list-item'; contactSalesWrapperLeft.setAttribute('data-added-by', 'custom-script'); contactSalesWrapperLeft.setAttribute('data-nav-type', 'contact-sales'); contactSalesWrapperLeft.style.display = "none"; const contactSalesLinkLeft = document.createElement('a'); contactSalesLinkLeft.href = 'https://www.zoom.com/en/contact/contact-sales/'; contactSalesLinkLeft.textContent = 'Contact Sales'; contactSalesLinkLeft.className = 'main-nav__link'; contactSalesWrapperLeft.appendChild(contactSalesLinkLeft); navLeft.appendChild(contactSalesWrapperLeft); const plansPricingWrapperRight = document.createElement('li'); plansPricingWrapperRight.className = 'main-nav__list-item'; plansPricingWrapperRight.setAttribute('data-added-by', 'custom-script'); plansPricingWrapperRight.setAttribute('data-nav-type', 'plans-pricing'); plansPricingWrapperRight.style.display = "none"; const plansPricingLinkRight = document.createElement('a'); plansPricingLinkRight.href = 'https://www.zoom.com/pricing'; plansPricingLinkRight.textContent = 'Plans & Pricing'; plansPricingLinkRight.classList.add('fdn-button', 'fdn-button--button-style-tertiary', 'fdn-button--button-small'); plansPricingWrapperRight.appendChild(plansPricingLinkRight); const signUpFreeButton = navRight.querySelector('.fdn-button--button-style-primary'); if (signUpFreeButton) { navRight.insertBefore(plansPricingWrapperRight, signUpFreeButton.parentElement); } //console.log("Navigation elements initialized."); } function updateNavVisibility(isSMB, isLoggedIn) { //console.log(`Updating navigation visibility. State: ${isSMB ? "SMB" : "Non-SMB"} | Logged In: ${isLoggedIn}`); const navLeftList = document.querySelector('.main-nav__left .main-nav__list'); const navRightList = document.querySelector('.main-nav__right .main-nav__list'); const contactSalesLeftItem = navLeftList.querySelector('[data-nav-type="contact-sales"], [data-added-by="backend"][data-nav-type="contact-sales"]'); const contactSalesRightItem = navRightList.querySelector('[data-added-by="backend"]'); const plansPricingLeftItem = navLeftList.querySelector('[data-added-by="backend"][data-nav-type="plans-pricing"], li.main-nav__list-item > a.main-nav__link[href*="pricing"]')?.parentElement; const plansPricingRightItem = navRightList.querySelector('[data-nav-type="plans-pricing"]'); const loggedInPlansPricingItem = navRightList.querySelector('[data-nav-type="plans-pricing-logged-in"]'); // Handle logged-out SMB users if (!isLoggedIn && isSMB) { //console.log("SMB user and not logged in: Show Contact Sales on left and Plans & Pricing on right"); // Show Contact Sales on the left if (contactSalesLeftItem) { contactSalesLeftItem.style.display = ''; } // Hide Contact Sales on the right if (contactSalesRightItem) { contactSalesRightItem.style.display = 'none'; } // Show Plans & Pricing on the right if (plansPricingRightItem) { plansPricingRightItem.style.display = ''; } // Hide Plans & Pricing on the left if (plansPricingLeftItem) { plansPricingLeftItem.style.display = 'none'; } // Hide logged-in Plans & Pricing if (loggedInPlansPricingItem) { loggedInPlansPricingItem.style.display = 'none'; } } // Handle logged-in SMB users else if (isLoggedIn && isSMB) { //console.log("SMB user and logged in: Show custom 'Plans & Pricing' on right, hide existing elements"); // Hide Contact Sales on the right if (contactSalesRightItem) { contactSalesRightItem.style.display = 'none'; } // Create or show the logged-in Plans & Pricing if (!loggedInPlansPricingItem) { //console.log("Adding custom 'Plans & Pricing' for logged-in users on the right between Web App and My Account"); const plansPricingWrapper = document.createElement('li'); plansPricingWrapper.className = 'main-nav__list-item'; plansPricingWrapper.setAttribute('data-added-by', 'custom-script'); plansPricingWrapper.setAttribute('data-nav-type', 'plans-pricing-logged-in'); const plansPricingLink = document.createElement('a'); plansPricingLink.href = 'https://www.zoom.com/pricing'; plansPricingLink.textContent = 'Plans & Pricing'; plansPricingLink.classList.add('fdn-button', 'fdn-button--button-style-tertiary', 'fdn-button--button-small'); plansPricingWrapper.appendChild(plansPricingLink); // Place the new Plans & Pricing between Web App and My Account const myAccountItem = navRightList.querySelector('li > a[href*="profile"]')?.parentElement; const webAppItem = navRightList.querySelector('.resources-nav__dropdown-webapprestricted')?.parentElement; if (webAppItem && myAccountItem) { navRightList.insertBefore(plansPricingWrapper, myAccountItem); } else if (myAccountItem) { navRightList.insertBefore(plansPricingWrapper, myAccountItem); } else if (webAppItem) { navRightList.insertBefore(plansPricingWrapper, webAppItem.nextSibling); } else { navRightList.appendChild(plansPricingWrapper); } } else { loggedInPlansPricingItem.style.display = ''; } // Hide existing Plans & Pricing on the right if (plansPricingRightItem) { plansPricingRightItem.style.display = 'none'; } // Hide Contact Sales on the left if (contactSalesLeftItem) { contactSalesLeftItem.style.display = 'none'; } // Hide existing Plans & Pricing on the left if (plansPricingLeftItem) { plansPricingLeftItem.style.display = 'none'; } } // Handle logged-in Non-SMB users else if (isLoggedIn && !isSMB) { //console.log("Non-SMB user and logged in: Show Plans & Pricing on left, hide Contact Sales and Plans & Pricing from right"); // Show Plans & Pricing on the left if (plansPricingLeftItem) { plansPricingLeftItem.style.display = ''; } // Hide Contact Sales on the right if (contactSalesRightItem) { contactSalesRightItem.style.display = 'none'; } // Hide logged-in Plans & Pricing if (loggedInPlansPricingItem) { loggedInPlansPricingItem.style.display = 'none'; } // Hide Plans & Pricing on the right if (plansPricingRightItem) { plansPricingRightItem.style.display = 'none'; } // Hide Contact Sales on the left if (contactSalesLeftItem) { contactSalesLeftItem.style.display = 'none'; } } // Handle logged-out Non-SMB users else if (!isLoggedIn && !isSMB) { //console.log("Non-SMB user and not logged in: Show Plans & Pricing on left and Contact Sales on right"); // Show Plans & Pricing on the left if (plansPricingLeftItem) { plansPricingLeftItem.style.display = ''; } // Show Contact Sales on the right if (contactSalesRightItem) { contactSalesRightItem.style.display = ''; } // Hide Contact Sales on the left if (contactSalesLeftItem) { contactSalesLeftItem.style.display = 'none'; } // Hide logged-in Plans & Pricing if (loggedInPlansPricingItem) { loggedInPlansPricingItem.style.display = 'none'; } // Hide Plans & Pricing on the right if (plansPricingRightItem) { plansPricingRightItem.style.display = 'none'; } } //console.log("Navigation visibility updated."); } function updateDOMBasedOnState(isSMB) { //console.log("Updating DOM based on state"); // Use checkLoggedInStatus to determine the logged-in state const isLoggedIn = checkLoggedInStatus(); //console.log('current state logged in- ', isLoggedIn) updateNavVisibility(isSMB, isLoggedIn); } function initializeScript() { //console.log("Initializing script"); // Set up navigation elements initializeNavElements(); // Wait for personalization data and update the state waitForPersonalizationData((isSMB) => { updateDOMBasedOnState(isSMB); }); monitorAuthorizationState(); // Monitor SMB state changes monitorSMBUserState(); } initializeScript(); } catch (error) { console.error('Error in executing navigation modification:', error); } }); setTimeout(() => { // Check if the _zm_currency cookie is set to 'usd' const cookies = document.cookie.split(';'); const zmCurrencyCookie = cookies.find(cookie => cookie?.trim()?.startsWith('_zm_currency=USD')); if (zmCurrencyCookie) { document.querySelectorAll('[data-price="zo_pro_yearly"][data-price-type="1"]').forEach(element => { let priceSub = element.getAttribute('data-price-sub'); if (priceSub === "1") { element.innerHTML = "$13<sup>33</sup>"; } else { element.innerHTML = "$13.33"; } }); } }, 4000); </script> <style> .hero--dark.hero--simple-image:after { background-color: #0b5cff !important; } </style> <meta property="og:title" content="The digital heart of your company"> <meta property="og:type" content="website"> <meta property="og:url" content="https://www.zoom.com/en/products/workvivo/"> <meta property="og:image" content="https://media.zoom.com/images/assets/social-card.jpg/Zz0xNjhhMGZhZWZhNGUxMWVkYTk3Mjk2NmU4NWE0ZDk2ZA=="> <meta property="og:image:secure_url" content="https://media.zoom.com/images/assets/social-card.jpg/Zz0xNjhhMGZhZWZhNGUxMWVkYTk3Mjk2NmU4NWE0ZDk2ZA=="> <meta property="og:description" content="Create a stronger connection between your employees, their culture, and values with a unified employee experience that prioritizes recognition and engagement."> <meta property="og:site_name" content="Zoom"> <meta property="og:locale" content="en"> <meta property="og:locale:alternate" content="de"> <meta property="og:locale:alternate" content="fr"> <meta property="og:locale:alternate" content="es"> <meta property="og:locale:alternate" content="sv"> <meta property="og:locale:alternate" content="nl"> <meta property="og:locale:alternate" content="vi"> <meta property="og:locale:alternate" content="tr"> <meta property="og:locale:alternate" content="ru"> <meta property="og:locale:alternate" content="pt"> <meta property="og:locale:alternate" content="pl"> <meta property="og:locale:alternate" content="ko"> <meta property="og:locale:alternate" content="ja"> <meta property="og:locale:alternate" content="it"> <meta property="og:locale:alternate" content="id"> <meta property="og:locale:alternate" content="zh_Hant_TW"> <meta property="og:locale:alternate" content="zh_Hans_CN"> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:site" content="@zoom"> <meta name="twitter:url" content="https://www.zoom.com/en/products/workvivo/%3fcms_guid%3dfalse%26lang%3dnull"> <meta name="twitter:title" content="The digital heart of your company"> <meta name="twitter:description" content="Create a stronger connection between your employees, their culture, and values with a unified employee experience that prioritizes recognition and engagement."> <meta name="twitter:image" content="https://media.zoom.com/images/assets/social-card.jpg/Zz0xNjhhMGZhZWZhNGUxMWVkYTk3Mjk2NmU4NWE0ZDk2ZA=="> <script type="application/ld+json" nonce="BUKZniEVAcw2LnXtabixHqvQjhqNEqBeG3Glo8UIDcQ="> { "@context": "https://schema.org", "@type": "Corporation", "@id": "https://www.zoom.com/#corporation", "url": "https://www.zoom.com/", "founder": { "@type": "Person", "name": "Eric Yuan" }, "foundingDate": "2011-04-21", "legalName": "Zoom Communications, Inc.", "name": "Zoom Communications", "alternateName": [ "Zoom", "Zoom Video Communications" ], "description": "Modernize workflows with Zoom's trusted collaboration tools: including video meetings, team chat, VoIP phone, webinars, whiteboard, contact center, and events.", "address": { "@type": "PostalAddress", "addressLocality": "San Jose, CA", "postalCode": "95113", "streetAddress": "55 Almaden Boulevard", "addressCountry": "US" }, "logo": "https://st3.zoom.us/static/6.2.7916/image/thumb.png", "sameAs": [ "https://en.wikipedia.org/wiki/Zoom_Video_Communications", "https://g.co/kgs/UdsQY1Y", "https://www.linkedin.com/company/zoom", "https://x.com/Zoom", "https://www.youtube.com/zoommeetings", "https://www.facebook.com/zoom", "https://www.instagram.com/zoom", "https://zoom.us/", "https://support.zoom.com/" ] } </script> <script type="text/javascript" charset="UTF-8" data-domain-script="054bb50c-9aa4-49a0-8c41-57b963195b3a" src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" async="" nonce="BUKZniEVAcw2LnXtabixHqvQjhqNEqBeG3Glo8UIDcQ="></script> <script defer="" nonce="BUKZniEVAcw2LnXtabixHqvQjhqNEqBeG3Glo8UIDcQ=" type="text/javascript"> window.dataLayer = window.dataLayer || []; </script> <script nonce="BUKZniEVAcw2LnXtabixHqvQjhqNEqBeG3Glo8UIDcQ="> createOnPageCookie('_zm_visitor_guid'); function createOnPageCookie(cookieName) { let thisCookie = getOnPageCookie(cookieName) let now = new Date() let threshold = new Date('October 10, 2023') if (!(thisCookie && '' != thisCookie) || now < threshold) { let value = generateId() let domain = location.hostname.split('.').reverse()[1] + '.' + location.hostname.split('.').reverse()[0] setOnPageCookie(cookieName,value,365,domain) } } function generateId() { return 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'.replace(/[xy]/g, function(ad) { var ac = (Math.random() * 16) | 0 , ab = ad == 'x' ? ac : (ac & 3) | 8 return ab.toString(16) }) } function getOnPageCookie(name) { var nameEQ = name + "="; var ca = document.cookie.split(';'); // see if value is JSON let isJSON = function isJson(str) { try { JSON.parse(str); } catch (e) { return false; } return true; }; for (var i = 0; i < ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') c = c.substring(1, c.length); if (c.indexOf(nameEQ) == 0) { let content = c.substring(nameEQ.length, c.length); if (isJSON(content)) { content = JSON.parse(content); // replace commas for (const [key, item] of Object.entries(content)) { if (typeof item == 'string') content[key] = item.replace('U+0002C',',') } } return content; } } return null; } function setOnPageCookie(cookieName, value, days, domain) { var expires = "" if (days) { var date = new Date() date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)) expires = "; expires=" + date.toUTCString() } if (typeof value === 'object') { // because of Safari bug handling JSON in cookies commas need to be stripped out let obj = {} for (const [key, item] of Object.entries(value)) { if (typeof item == 'string') obj[key] = item.replace(/,/,'U+0002C') else obj[key] = item } // turn value into JSON value = JSON.stringify(obj) } // create cookie document.cookie = cookieName + "=" + (value || "") + expires + "; path=/;secure;samesite=none;domain=." + domain } </script> <script nonce="BUKZniEVAcw2LnXtabixHqvQjhqNEqBeG3Glo8UIDcQ="> console.log(window.zmGlobalMrktKey); window.zmGlobalMrktId = "" || null; window.zmGlobalMrktKey = "" || null; window['optimizely'] = window['optimizely'] || [];</script> <script nonce="BUKZniEVAcw2LnXtabixHqvQjhqNEqBeG3Glo8UIDcQ="> var optimizely = window["optimizely"] || []; optimizely.push({"type": "holdEvents"}); </script> <script nonce="BUKZniEVAcw2LnXtabixHqvQjhqNEqBeG3Glo8UIDcQ=" src="https://cdn.optimizely.com/js/20917322331.js"></script> <script nonce="BUKZniEVAcw2LnXtabixHqvQjhqNEqBeG3Glo8UIDcQ="> (function () { var optimizely = window["optimizely"] || []; window.sendOptimizelyEvents = function (oneTrustConsentId) { optimizely.push({ "type": "tags", "tags": { "onetrust_id": oneTrustConsentId || "" } }); optimizely.push({"type": "sendEvents"}); } })(); </script> <!-- Google Tag Manager --><script nonce="BUKZniEVAcw2LnXtabixHqvQjhqNEqBeG3Glo8UIDcQ=">(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-5WKFT9');</script><!-- End Google Tag Manager --> <script nonce="BUKZniEVAcw2LnXtabixHqvQjhqNEqBeG3Glo8UIDcQ="> !function(T,l,y){var S=T.location,k="script",D="instrumentationKey",C="ingestionendpoint",I="disableExceptionTracking",E="ai.device.",b="toLowerCase",w="crossOrigin",N="POST",e="appInsightsSDK",t=y.name||"appInsights";(y.name||T[e])&&(T[e]=t);var n=T[t]||function(d){var g=!1,f=!1,m={initialize:!0,queue:[],sv:"5",version:2,config:d};function v(e,t){var n={},a="Browser";return n[E+"id"]=a[b](),n[E+"type"]=a,n["ai.operation.name"]=S&&S.pathname||"_unknown_",n["ai.internal.sdkVersion"]="javascript:snippet_"+(m.sv||m.version),{time:function(){var e=new Date;function t(e){var t=""+e;return 1===t.length&&(t="0"+t),t}return e.getUTCFullYear()+"-"+t(1+e.getUTCMonth())+"-"+t(e.getUTCDate())+"T"+t(e.getUTCHours())+":"+t(e.getUTCMinutes())+":"+t(e.getUTCSeconds())+"."+((e.getUTCMilliseconds()/1e3).toFixed(3)+"").slice(2,5)+"Z"}(),iKey:e,name:"Microsoft.ApplicationInsights."+e.replace(/-/g,"")+"."+t,sampleRate:100,tags:n,data:{baseData:{ver:2}}}}var h=d.url||y.src;if(h){function a(e){var t,n,a,i,r,o,s,c,u,p,l;g=!0,m.queue=[],f||(f=!0,t=h,s=function(){var e={},t=d.connectionString;if(t)for(var n=t.split(";"),a=0;a<n.length;a++){var i=n[a].split("=");2===i.length&&(e[i[0][b]()]=i[1])}if(!e[C]){var r=e.endpointsuffix,o=r?e.location:null;e[C]="https://"+(o?o+".":"")+"dc."+(r||"services.visualstudio.com")}return e}(),c=s[D]||d[D]||"",u=s[C],p=u?u+"/v2/track":d.endpointUrl,(l=[]).push((n="SDK LOAD Failure: Failed to load Application Insights SDK script (See stack for details)",a=t,i=p,(o=(r=v(c,"Exception")).data).baseType="ExceptionData",o.baseData.exceptions=[{typeName:"SDKLoadFailed",message:n.replace(/\./g,"-"),hasFullStack:!1,stack:n+"\nSnippet failed to load ["+a+"] -- Telemetry is disabled\nHelp Link: https://go.microsoft.com/fwlink/?linkid=2128109\nHost: "+(S&&S.pathname||"_unknown_")+"\nEndpoint: "+i,parsedStack:[]}],r)),l.push(function(e,t,n,a){var i=v(c,"Message"),r=i.data;r.baseType="MessageData";var o=r.baseData;return o.message='AI (Internal): 99 message:"'+("SDK LOAD Failure: Failed to load Application Insights SDK script (See stack for details) ("+n+")").replace(/\"/g,"")+'"',o.properties={endpoint:a},i}(0,0,t,p)),function(e,t){if(JSON){var n=T.fetch;if(n&&!y.useXhr)n(t,{method:N,body:JSON.stringify(e),mode:"cors"});else if(XMLHttpRequest){var a=new XMLHttpRequest;a.open(N,t),a.setRequestHeader("Content-type","application/json"),a.send(JSON.stringify(e))}}}(l,p))}function i(e,t){f||setTimeout(function(){!t&&m.core||a()},500)}var e=function(){var n=l.createElement(k);n.src=h;var e=y[w];return!e&&""!==e||"undefined"==n[w]||(n[w]=e),n.onload=i,n.onerror=a,n.onreadystatechange=function(e,t){"loaded"!==n.readyState&&"complete"!==n.readyState||i(0,t)},n}();y.ld<0?l.getElementsByTagName("head")[0].appendChild(e):setTimeout(function(){l.getElementsByTagName(k)[0].parentNode.appendChild(e)},y.ld||0)}try{m.cookie=l.cookie}catch(p){}function t(e){for(;e.length;)!function(t){m[t]=function(){var e=arguments;g||m.queue.push(function(){m[t].apply(m,e)})}}(e.pop())}var n="track",r="TrackPage",o="TrackEvent";t([n+"Event",n+"PageView",n+"Exception",n+"Trace",n+"DependencyData",n+"Metric",n+"PageViewPerformance","start"+r,"stop"+r,"start"+o,"stop"+o,"addTelemetryInitializer","setAuthenticatedUserContext","clearAuthenticatedUserContext","flush"]),m.SeverityLevel={Verbose:0,Information:1,Warning:2,Error:3,Critical:4};var s=(d.extensionConfig||{}).ApplicationInsightsAnalytics||{};if(!0!==d[I]&&!0!==s[I]){var c="onerror";t(["_"+c]);var u=T[c];T[c]=function(e,t,n,a,i){var r=u&&u(e,t,n,a,i);return!0!==r&&m["_"+c]({message:e,url:t,lineNumber:n,columnNumber:a,error:i}),r},d.autoExceptionInstrumented=!0}return m}(y.cfg);function a(){y.onInit&&y.onInit(n)}(T[t]=n).queue&&0===n.queue.length?(n.queue.push(a),n.trackPageView({})):a()}(window,document,{src: "https://js.monitor.azure.com/scripts/b/ai.2.gbl.min.js", crossOrigin: "anonymous", cfg: { instrumentationKey:'19a17737-94f4-4af6-b75e-bd513bb1c305', disableCookiesUsage: false }}); </script> <link href="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.css" rel="stylesheet"></link> </head> <body data-layer-site="" class="fonts-loaded "> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5WKFT9" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <input id="market-verify-eventname" type="hidden" value="pageLoad"></input> <input id="market-verify-pagename" type="hidden" value="workvivo"></input> <input id="market-verify-pagelanguage" type="hidden" value="en"></input> <input id="market-verify-usercountry" type="hidden" value="SG"></input> <input id="market-verify-fullUrl" type="hidden" value="https://www.zoom.com/en/products/workvivo/"></input> <header class="header header-v3 " data-cmp-is="navigator"> <input type="hidden" id="market-verify" value="https://zoom.us/market_verify/v2" /> <input type="hidden" id="plan-price-api" value="https://zoom.us/pricing/planprice.json" /> <nav class="resources-nav" aria-label="Resources"> <div class="resources-nav__container"> <a href="#main" class="resources-nav__skip">Skip to main content</a> <a href="#" class="skip_to_chat resources-nav__skip">Skip To Help Chat</a> <a href="/en/accessibility/" class="resources-nav__accessibility js-analytics-cta" title="Accessibility Overview" data-title="" data-link-type="" data-en-text="" >Accessibility Overview</a> <ul class="resources-nav__list"> <li class="resources-nav__list-item resources-nav__list-item--search"> <div class="FlyoutContainer"> <div id="standaloneSearchbox" class="CoveoSearchInterface"> <div class="CoveoAnalytics"></div> <div class="FlyoutButton"> <span class="coveo-search-button"> <svg focusable="false" enable-background="new 0 0 20 20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Search" class="coveo-search-button-svg"> <g fill="currentColor"> <path class="coveo-magnifier-circle-svg" d="m8.368 16.736c-4.614 0-8.368-3.754-8.368-8.368s3.754-8.368 8.368-8.368 8.368 3.754 8.368 8.368-3.754 8.368-8.368 8.368m0-14.161c-3.195 0-5.793 2.599-5.793 5.793s2.599 5.793 5.793 5.793 5.793-2.599 5.793-5.793-2.599-5.793-5.793-5.793"> </path> <path d="m18.713 20c-.329 0-.659-.126-.91-.377l-4.552-4.551c-.503-.503-.503-1.318 0-1.82.503-.503 1.318-.503 1.82 0l4.552 4.551c.503.503.503 1.318 0 1.82-.252.251-.581.377-.91.377"> </path> </g> </svg> </span> <div class="CoveoText" data-value="Search"></div> </div> <div class="CoveoSearchbox transition-hidden" data-enable-omnibox="true"></div> </div> </div> </li> <li class="resources-nav__list-item"> <a href="https://support.zoom.com/hc/en" target="_blank" class="resources-nav__link js-analytics-cta" title="Support" data-title="" data-link-type="" data-en-text="" >Support<span class="visually-hidden"> Support</span></a> </li> <li class="resources-nav__list-item"> <a href="tel:65 8003211528" class="resources-nav__link js-analytics-cta" data-title="" rel="noopener noreferrer" data-link-type="" data-en-text="" >65 8003211528</a> </li> <li class="resources-nav__list-item authorized-access" data-user-for="82c0350d-4c26-4b95-8feb-330fef53cda3"> <span></span> </li> <li class="resources-nav__list-item authorized-access" data-user-for="82c0350d-4c26-4b95-8feb-330fef53cda3"> <a href="/en/contact/contact-sales/" class="resources-nav__link js-analytics-cta" title="Contact Sales" data-title="" data-link-type="" data-en-text="Contact Sales" >Contact Sales<span class="visually-hidden"> Contact Sales</span></a> </li> <li class="resources-nav__list-item"> <a href="/en/contact/live-demo/" class="resources-nav__link js-analytics-cta" title="Request a Demo" data-title="" data-link-type="" data-en-text="" >Request a Demo</a> </li> <li class="resources-nav__list-item " data-user-for="97af72b4-4108-4885-b753-f02a39956839"> <span></span> </li> <li class="resources-nav__list-item " data-user-for="97af72b4-4108-4885-b753-f02a39956839"> <a href="https://zoom.us/join" target="_top" class="resources-nav__link js-analytics-cta" title="Join" data-title="" data-link-type="" data-en-text="" >Join<span class="visually-hidden"> Join</span></a> </li> <li class="resources-nav__list-item " data-user-for="97af72b4-4108-4885-b753-f02a39956839"> <button href="#" class="resources-nav__dropdown" aria-haspopup="true" aria-expanded="false"> Host </button> <div class="resources-nav__dropdown-list"> <ul> <li class="resources-nav__dropdown-list-item"> <a href="https://zoom.us/start/videomeeting" target="_blank" class="resources-nav__dropdown-link js-analytics-cta" title="With Video On" data-title="" data-link-type="" data-en-text="" >With Video On</a> </li> <li class="resources-nav__dropdown-list-item"> <a href="https://zoom.us/start/webmeeting" target="_blank" class="resources-nav__dropdown-link js-analytics-cta" title="With Video Off" data-title="" data-link-type="" data-en-text="" >With Video Off</a> </li> <li class="resources-nav__dropdown-list-item"> <a href="https://zoom.us/start/sharemeeting" target="_blank" class="resources-nav__dropdown-link js-analytics-cta" title="Screen Share Only" data-title="" data-link-type="" data-en-text="" >Screen Share Only</a> </li> </ul> </div> </li> <li class="resources-nav__list-item " data-user-for="97af72b4-4108-4885-b753-f02a39956839"> <a href="https://zoom.us/signin" class="resources-nav__link js-analytics-cta" title="Sign In" data-title="" data-link-type="" data-en-text="" >Sign In<span class="visually-hidden"> to your Zoom account</span></a> </li> </ul> </div> </nav> <nav aria-label="Main Navigation" class="main-nav"><div class="main-nav__container"><div class="main-nav__left"><a class="main-nav__logo" href="https://www.zoom.com/"><img alt="Zoom Logo" height="26" src="https://media.zoom.com/images/assets/Zoom+Logo/Zz01ZGU4MDMzZWJmNDcxMWVkOTI4NGEyNDU1OWRiZTc5Zg==?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOlsiNWRlODAzM2ViZjQ3MTFlZDkyODRhMjQ1NTlkYmU3OWYiXSwiZXhwIjoxNjgxMzM0MTEwfQ.3_IFoXtmS8ExOGbL0F1oGPu8z6lgijgDWFf82zrDFzk" width="114"></img></a><ul class="main-nav__list"><li class="main-nav__list-item"><button aria-expanded="false" aria-haspopup="true" class="main-nav__megamenu-trigger">Products</button><section aria-label="Products" class="megamenu megamenu-products"><div class="megamenu-products-wrapper"><div class="megamenu-products--title"><div class="megamenu-products--subtitle"><a data-en-text="" data-link-type="" href="/en/ai-assistant/"><img alt="AI Companion" class="nav-title-logo" fetchpriority="auto" loading="lazy" src="https://media.zoom.com/images/assets/Full-Color.svg/Zz0zZTU4NjkxMmUwNDAxMWVlOGRjNWFhZTRmMzFmZjlkNg==" title="AI Companion"></img></a></div><div class="megamenu-products--description"><p>Empowering you to increase productivity, improve team effectiveness, and enhance skills. <a data-en-text="" data-link-type="" href="/en/ai-assistant/">Learn more</a></p></div></div><div class="megamenu__bottom"><div class="megamenu__column"><div class="megamenu__column__zoomWorkplace column"><div class="megamenu__head"><div class="megamenu__column-title column-1"><a data-en-text="" data-link-type="" href="/en/products/collaboration-tools/"><img alt="Zoom Workplace" class="nav-title-logo" fetchpriority="auto" loading="lazy" src="https://media.zoom.com/images/assets/logo_product_ZM-workplace_1-line_color-RGB+3.svg/Zz01MTA2NTc2MGUwM2UxMWVlOTkyNDkyMTRhMzBjNjAxZg==" title="Zoom Workplace"></img></a><span><img class="megamenu__list-item-icon" src="/dist/assets/icons/icon-right-bloom.svg" alt="" /></span></div></div><div class="megamenu__column--block"><div class="megamenu__workplace__column"><ul class="megamenu__list"><li class="megamenu__list-item-heading--disabled">Communication</li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Meetings" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/one-meetings.svg/Zz01YTBmNDRkMmVhOGMxMWVkODExZDRhYjdlM2I2YjFmNQ==" title="Meetings" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/virtual-meetings/">Meetings<span class="visually-hidden"> Meetings</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Team Chat" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/product-team-chat.svg/Zz1lZGNhYmY5MmU0NGUxMWVkYjM1OGEyNzVhMWI2ODM4Yw==" title="Team Chat" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/team-chat/">Team Chat<span class="visually-hidden"> Team Chat</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Phone" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/product-phone.svg/Zz1lZDNmZDE4NGU0NGUxMWVkOTZiZTllNDY0OTU3ZDg4Zg==" title="Phone" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/voip-phone/">Phone<span class="visually-hidden"> Phone</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Mail & Calendar" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mail+calendar+Icon.svg/Zz00MWE3YmZiMGRiYmMxMWVlYWQzZjkyZDMwZWIwZDkwYw==" title="Mail & Calendar" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/email-calendar/">Mail & Calendar<span class="visually-hidden"> Mail & Calendar</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Scheduler" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/appointment-scheduler.svg/Zz01MTRiNTg1ZTM1MGYxMWVlYjc3NmQ2NTU5Nzc3NzFhOQ==" title="Scheduler" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/appointment-scheduler/">Scheduler<span class="visually-hidden"> Scheduler</span></a></div></li></ul></div><div class="megamenu__workplace__column"><ul class="megamenu__list"><li class="megamenu__list-item-heading--disabled">Productivity</li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Docs" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_docs.svg/Zz0zNTAwYmRkNGRiYzExMWVlYjY2NWNlOTkyMzIwMjc2OA==" title="Docs" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/collaborative-docs/">Docs<span class="visually-hidden"> Docs</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Whiteboard" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/product-whiteboard.svg/Zz1lZDJjOTczNmU0NGUxMWVkOGFmNmI2NWQ2NDcyM2M3Mg==" title="Whiteboard" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/online-whiteboard/">Whiteboard<span class="visually-hidden"> Whiteboard</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Clips" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/product-clips.svg/Zz00OTAyYWM5NjVjNTcxMWVlOTA5MDU2NmQ1MzA1MjExNQ==" title="Clips" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/video-recording/">Clips<span class="visually-hidden"> Clips</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Notes" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/Notes-Logo.svg/Zz02MmFkNzBjYWRiYzAxMWVlOWYzNDZhZTY1ZDYyODc3MA==" title="Notes" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/productivity/">Tasks<span class="visually-hidden"> Tasks</span></a></div></li><li class="megamenu__list-item-heading--disabled">Apps & Integrations</li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="App Marketplace" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/developer-marketplace.svg/Zz02OWE4YzY1OGVhOTUxMWVkODU1MWU2NWI4Njg2NmUxNA==" title="App Marketplace" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://marketplace.zoom.us/workplace-apps">App Marketplace<span class="visually-hidden"> App Marketplace</span></a></div></li></ul></div><div class="megamenu__workplace__column"><ul class="megamenu__list"><li class="megamenu__list-item-heading--disabled">Spaces</li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Rooms" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/Rooms.svg/Zz02ODUyMWZiZWRiYzMxMWVlOTExYjA2NmQzNDk4YmEzNQ==" title="Rooms" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/meeting-rooms/">Rooms<span class="visually-hidden"> Rooms</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Workspace Reservations" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_workspace-reservation.svg/Zz1jY2EzMDQ1NmRiYzMxMWVlYmFhMGVhMDc5Nzg3Mjk1OA==" title="Workspace Reservations" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/meeting-rooms/features/workspace/">Workspace Reservation<span class="visually-hidden"> Workspace Reservation</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Digital Signage" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/digital+sign.svg/Zz04ZmQ1MGJlMGRiYzQxMWVlODNlYjBhZjZlZjU5YjMxYw==" title="Digital Signage" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/meeting-rooms/features/workspace/">Digital Signage<span class="visually-hidden"> Digital Signage</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Visitor Management" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/visitor-manage.svg/Zz00Mjc3ZDUwY2RiYzUxMWVlOTI3N2VhMDc5Nzg3Mjk1OA==" title="Visitor Management" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/meeting-rooms/features/workspace/#visitor-management">Visitor Management<span class="visually-hidden"> Visitor Management</span></a></div></li><li class="megamenu__list-item-heading--disabled">Employee Engagement</li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Workvivo" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/workvivo-zm.svg/Zz00OTI4MjQ4MDVjNTcxMWVlYjY2ZTFlZThhMTdjNjk4Yg==" title="Workvivo" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/workvivo/">Workvivo<span class="visually-hidden"> Workvivo</span></a></div></li></ul></div></div></div></div><div class="megamenu__column"><div class="megamenu__column__businessService column"><div class="megamenu__head"><div class="megamenu__column-title column-2"><a data-en-text="" data-link-type="" href="/en/products/business-services/">Business Services</a><span><img class="megamenu__list-item-icon" src="/dist/assets/icons/icon-right-bloom.svg" alt="" /></span></div></div><div class="megamenu__column--block"><div class="megamenu__workplace__column"><ul class="megamenu__list"><li class="megamenu__list-item-heading--disabled">Customer Experience</li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Contact Center" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/cc-contact-center.svg/Zz01OTgzNDIwMmVhOGMxMWVkYWEwOWNhMjZkMjg1ODQxMg==" title="Contact Center" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/contact-center/">Contact Center<span class="visually-hidden"> Contact Center</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Virtual Agent" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/product-virtual-agent.svg/Zz1lZTMzZjllNGU0NGUxMWVkOGRiN2I2NWQ2NDcyM2M3Mg==" title="Virtual Agent" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/virtual-agent/">Virtual Agent<span class="visually-hidden"> Virtual Agent</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Workforce Engagement Management" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_workforce-engagement-management.svg/Zz1kMTNkNDdmZWU3MzIxMWVlOGQwYTgyM2JmOTdlNjdmNA==" title="Workforce Engagement Management" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/workforce-engagement-management/">Workforce Engagement<span class="visually-hidden"> Workforce Engagement</span></a></div></li><li class="megamenu__list-item-heading--disabled">Sales</li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Revenue Accelerator" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_revenue-accelerator.svg/Zz1kZjRjZWQ2YWRiY2QxMWVlYmRhNmFhMDkzYjQ2OGZiZA==" title="Revenue Accelerator" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/conversation-intelligence/">Revenue Accelerator<span class="visually-hidden"> Revenue Accelerator</span></a></div></li></ul></div><div class="megamenu__workplace__column"><ul class="megamenu__list"><li class="megamenu__list-item-heading--disabled">Marketing</li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Events" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_events.svg/Zz0wNDhmOTg1NGRiY2MxMWVlYjQ3MWQyNTdlYzNkN2VhZg==" title="Events" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/event-platform/">Events<span class="visually-hidden"> Events</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Sessions" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_sessions.svg/Zz0yZTUzYjZjNGRiY2QxMWVlOTRlODNhZWU2NWQ2NTAxNA==" title="Sessions" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/single-session-events/">Sessions<span class="visually-hidden"> Sessions</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Webinars" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_webinars.svg/Zz03Y2QyMWY1Y2RiY2QxMWVlOTVlZDEyMzJmZDU0MGZkZQ==" title="Webinars" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/webinars/">Webinars<span class="visually-hidden"> Webinars</span></a></div></li><li class="megamenu__list-item-heading--disabled">Developer Tools</li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="APIs & SDKs" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_revenue-accelerator.svg/Zz05MTQ1ZmQ4MGRiY2YxMWVlYjI1MmYyMTViMGQ3YTJlNA==" title="APIs & SDKs" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/video-sdk/">APIs & SDKs<span class="visually-hidden"> APIs & SDKs</span></a></div></li></ul></div></div></div></div></div></div><div class="megamenu-products--actionbar"><ul><li class="action-bar-primary"><a data-en-text="" data-link-type="" href="/en/products/">Discover all products</a></li><li class="action-bar-secondary"><a data-en-text="" data-link-type="" href="https://zoom.us/pricing">Plans & pricing</a></li></ul></div></section><div class="activeSegment"><span class="leftTriangle"></span><span class="rightTriangle"></span></div></li><li class="main-nav__list-item"><button aria-expanded="false" aria-haspopup="true" class="main-nav__megamenu-trigger">Solutions</button><section aria-label="Solutions" class="megamenu megamenu-solutions"><div class="megamenu__bottom"><div class="megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title"><a data-en-text="" data-link-type="" href="/en/industry/">By industry</a><span><img class="megamenu__list-item-icon" src="/dist/assets/icons/icon-right-bloom.svg" alt="" /></span></div></div><ul class="megamenu__list"><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/industry/education/">Education</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/industry/finance/">Financial Services</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/industry/government/">Government</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/industry/healthcare/">Healthcare</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/industry/manufacturing/">Manufacturing</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/industry/retail/">Retail</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/frontline-workers/">Frontline</a></div></li></ul></div></div><div class="megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title">By audience</div></div><ul class="megamenu__list"><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/audiences/small-business/">Small and Midsized Businesses</a></div></li><li class="megamenu__list-items"><span class="">Enterprise</span><ul><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/audiences/information-technology/">Information Technology</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/audiences/cx/">Customer Experience</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/audiences/sales-and-revenue/">Sales and Revenue</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/audiences/av-facilities/">Facilities</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/audiences/marketing-events/">Marketing and Events</a></div></li></ul></li></ul></div></div><div class="megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title"><a data-en-text="" data-link-type="" href="https://developers.zoom.us/docs/" target="_blank">For developers</a><span><img class="megamenu__list-item-icon" src="/dist/assets/icons/icon-right-bloom.svg" alt="" /></span></div></div><ul class="megamenu__list"><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/video-sdk/">Video SDK</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://developers.zoom.us/docs/meeting-sdk/" target="_blank">Meeting SDK</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://marketplace.zoom.us/" target="_blank">App Marketplace</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://developers.zoom.us/docs/api/" target="_blank">APIs</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://developers.zoom.us/docs/api/rest/webhook-reference/" target="_blank">Webhooks</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/zoom-apps/">Zoom Apps</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://developers.zoom.us/docs/" target="_blank">Developer Solutions</a></div></li></ul></div></div><div class="megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title"><a data-en-text="" data-link-type="" href="https://partner.zoom.us/" target="_blank">For partners</a><span><img class="megamenu__list-item-icon" src="/dist/assets/icons/icon-right-bloom.svg" alt="" /></span></div></div><ul class="megamenu__list"><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://partner.zoom.us/solutions/" target="_blank">Partner Solutions</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://partner.zoom.us/partner-locator/" target="_blank">Find a Partner</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://partner.zoom.us/" target="_blank">Become a Partner</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://mypartnerportal.zoom.us/" target="_blank">Partner Portal</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://mypartnerportal.zoom.us/?sso=21&RelayState=/pages/38/home" target="_blank">Partner Learning Center</a></div></li></ul></div></div><div class="megamenu__bottom-action-bar"><ul><li class="action-bar-primary"><a data-en-text="" data-link-type="" href="https://zoom.us/pricing" target="_blank">Plans & pricing<span class="visually-hidden"> Solutions</span></a><span class="leftTriangle"></span><span class="rightTriangle"></span></li></ul></div></div></section><div class="activeSegment"><span class="leftTriangle"></span><span class="rightTriangle"></span></div></li><li class="main-nav__list-item"><button aria-expanded="false" aria-haspopup="true" class="main-nav__megamenu-trigger">Resources</button><section aria-label="Resources" class="megamenu megamenu-resources"><div class="megamenu__bottom"><div class="megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title">Explore</div></div><ul class="megamenu__list"><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/blog/">Zoom Blog</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/resources/">Resource Library</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://ev.zoom.us/">Webinars & Events</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/customer-stories/all/">Customer Stories</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/trust/">Zoom Trust Center</a></div></li></ul></div></div><div class="megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title">Connect & Learn</div></div><ul class="megamenu__list"><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://community.zoom.com/">Zoom Community</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://learning.zoom.us/learn">Learning Center</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://learn-zoom.us/show-me">How-to Videos</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://events.zoom.us/eo/AsGmtVcsNuaXLrlYNfkaKSphxX-acfgoGLA3gKJv74EKmPPf34Bc~AggLXsr32QYFjq8BlYLZ5I06Dg" target="_blank">Customer Success Hub</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/resources/tech-library/">Technical Content Library</a></div></li></ul></div></div><div class="megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title">Hardware & Services</div></div><ul class="megamenu__list"><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://explore.zoom.us/en/global-services/">Global Services</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/hardware/">Hardware Options</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/cmk/">Customer Managed Key</a></div></li></ul></div></div><div class="megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title">Support</div></div><ul class="megamenu__list"><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://support.zoom.com/hc/en">Customer Support</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://explore.zoom.us/en/support-plans/">Premier Support</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://developers.zoom.us/support/">Developer Support</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://explore.zoom.us/en/support-plans/developer/">Premier Developer Support</a></div></li></ul></div></div><div class="megamenu__bottom-action-bar"><ul></ul></div></div><div class="megamenu__highlight"><div class="megamenu__highlight-item"><img alt="Download the Zoom app" class="megamenu__highlight-item-image" fetchpriority="auto" height="120" loading="lazy" src="https://media.zoom.com/images/assets/Resources-ZoomClient.png/Zz05YzJhYzg5NGM0NjkxMWVkYWI2NDEyZjk5ZTY0ZGM3Nw==" title="Download the Zoom app" width="120"></img><div class="megamenu__highlight-item-content"><div class="megamenu__highlight-item-heading">Download the Zoom app</div><p class="megamenu__highlight-item-description">Keep your Zoom app up to date to access the latest features.</p><a class="megamenu__highlight-item-cta" data-en-text="" data-link-type="" href="https://zoom.us/download">Download Center</a></div></div><div class="megamenu__highlight-item"><img alt="Zoom Virtual Backgrounds" class="megamenu__highlight-item-image" fetchpriority="auto" height="120" loading="lazy" src="https://media.zoom.com/images/assets/Resources-VirtualBG.png/Zz01MTc3YTRkNmE2YTExMWVmOWEyNTMyZDUxNWJkZWVjOA==" title="Zoom Virtual Backgrounds" width="120"></img><div class="megamenu__highlight-item-content"><div class="megamenu__highlight-item-heading">Zoom Virtual Backgrounds</div><p class="megamenu__highlight-item-description">Download hi-res images and animations to elevate your next Zoom meeting.</p><a class="megamenu__highlight-item-cta" data-en-text="" data-link-type="" href="/en/products/virtual-meetings/features/virtual-background-library/">Browse backgrounds</a></div></div></div></section><div class="activeSegment"><span class="leftTriangle"></span><span class="rightTriangle"></span></div></li><li class="main-nav__list-item"><a class="main-nav__link" data-en-text="" data-link-type="" href="https://zoom.us/pricing">Plans & Pricing</a></li></ul></div><div class="main-nav__right"><ul class="main-nav__list"><li class="main-nav__list-item main-nav__list-item--mobile"><a class="main-nav__mobile-link" data-en-text="" data-link-type="" href="https://zoom.us/join" target="_top">Join</a></li><li class="main-nav__list-item main-nav__list-item--mobile"><a class="main-nav__mobile-link" data-en-text="" data-link-type="" href="https://zoom.us/join" target="_blank">Host</a></li><li class="main-nav__list-item " data-user-for="97af72b4-4108-4885-b753-f02a39956839"><a class="fdn-button fdn-button--button-style-tertiary fdn-button--button-small" data-en-text="" data-link-type="" href="/en/contact/contact-sales/">Contact Sales<span class="visually-hidden"> Contact Sales</span></a></li><li class="main-nav__list-item " data-user-for="97af72b4-4108-4885-b753-f02a39956839"><a class="fdn-button fdn-button--button-style-primary fdn-button--button-small" data-en-text="" data-link-type="" href="https://zoom.us/signup">Sign Up Free</a></li><li class="resources-nav__list-item authorized-access" data-user-for="82c0350d-4c26-4b95-8feb-330fef53cda3"><a class="resources-nav__join" data-en-text="" data-link-type="" href="https://zoom.us/join" target="_top">Join<span class="visually-hidden"> Join</span></a></li><li class="resources-nav__list-item authorized-access" data-user-for="82c0350d-4c26-4b95-8feb-330fef53cda3"><button aria-expanded="false" aria-haspopup="true" class="resources-nav__dropdown-joinrestricted">Join</button><div class="resources-nav__dropdown-list-joinrestricted"><ul><li class="resources-nav__dropdown-list-item"><a class="resources-nav__dropdown-link" data-en-text="" data-link-type="" href="https://zoom.us/join" target="_blank">By Meeting ID<span class="visually-hidden"> By Meeting ID</span></a><a class="resources-nav__dropdown-link" data-en-text="" data-link-type="" href="https://zoom.us/calendar/list" target="_blank">Public event list<span class="visually-hidden"> Public event list</span></a></li></ul></div></li><li class="resources-nav__list-item authorized-access" data-user-for="82c0350d-4c26-4b95-8feb-330fef53cda3"><button aria-expanded="false" aria-haspopup="true" class="resources-nav__dropdownrestricted">Host</button><div class="resources-nav__dropdown-listrestricted"><ul><li class="resources-nav__dropdown-list-item"><a class="resources-nav__dropdown-link" data-en-text="" data-link-type="" href="https://zoom.us/start/videomeeting" target="_blank">With Video On</a><a class="resources-nav__dropdown-link" data-en-text="" data-link-type="" href="https://zoom.us/start/webmeeting" target="_blank">With Video Off</a><a class="resources-nav__dropdown-link" data-en-text="" data-link-type="" href="https://zoom.us/start/sharemeeting" target="_blank">Screen Share Only</a></li></ul></div></li><li class="resources-nav__list-item authorized-access" data-user-for="82c0350d-4c26-4b95-8feb-330fef53cda3"><button aria-expanded="false" aria-haspopup="true" class="resources-nav__dropdown-webapprestricted">Web App</button><div class="resources-nav__dropdown-list-webapprestricted"><ul><li class="resources-nav__dropdown-list-item"><a class="resources-nav__dropdown-link" data-en-text="" data-link-type="" href="https://app.zoom.us/wc?webp=1"><img alt="Home " class="" fetchpriority="auto" id="webApps-home" loading="lazy" src="https://media.zoom.com/images/assets/webApps-sprites.svg/Zz1hZTNiMGNmMDAxOGIxMWVmOTZhM2MyOGQwNmQwMTc4OA==" title="Home">Home</img><span class="visually-hidden"> Home</span></a><a class="resources-nav__dropdown-link" data-en-text="" data-link-type="" href="https://app.zoom.us/wc/team-chat?webp=1"><img alt="Team Chat" class="" fetchpriority="auto" id="webApps-teamchat" loading="lazy" src="https://media.zoom.com/images/assets/webApps-sprites.svg/Zz1hZTNiMGNmMDAxOGIxMWVmOTZhM2MyOGQwNmQwMTc4OA==" title="Team Chat">Team Chat</img><span class="visually-hidden"> Team Chat</span></a><a class="resources-nav__dropdown-link" data-en-text="" data-link-type="" href="https://app.zoom.us/wc/phone?webp=1"><img alt="Phone " class="" fetchpriority="auto" id="webApps-phone" loading="lazy" src="https://media.zoom.com/images/assets/webApps-sprites.svg/Zz1hZTNiMGNmMDAxOGIxMWVmOTZhM2MyOGQwNmQwMTc4OA==" title="Phone ">Phone</img><span class="visually-hidden"> Phone</span></a><a class="resources-nav__dropdown-link" data-en-text="" data-link-type="" href="https://app.zoom.us/wc/meetings?webp=1"><img alt="Meetings" class="" fetchpriority="auto" id="webApps-meetings" loading="lazy" src="https://media.zoom.com/images/assets/webApps-sprites.svg/Zz1hZTNiMGNmMDAxOGIxMWVmOTZhM2MyOGQwNmQwMTc4OA==" title="Meetings ">Meetings</img><span class="visually-hidden"> Meetings</span></a><a class="resources-nav__dropdown-link" data-en-text="" data-link-type="" href="https://app.zoom.us/wc/contacts?webp=1"><img alt="Contacts" class="" fetchpriority="auto" id="webApps-contact" loading="lazy" src="https://media.zoom.com/images/assets/webApps-sprites.svg/Zz1hZTNiMGNmMDAxOGIxMWVmOTZhM2MyOGQwNmQwMTc4OA==" title="Contacts">Contacts</img><span class="visually-hidden"> Contacts</span></a><a class="resources-nav__dropdown-link" data-en-text="" data-link-type="" href="https://app.zoom.us/wc/whiteboards?webp=1"><img alt="Whiteboards" class="" fetchpriority="auto" id="webApps-whiteboards" loading="lazy" src="https://media.zoom.com/images/assets/webApps-sprites.svg/Zz1hZTNiMGNmMDAxOGIxMWVmOTZhM2MyOGQwNmQwMTc4OA==" title="Whiteboards">Whiteboards</img><span class="visually-hidden"> Whiteboards</span></a></li></ul></div></li><li class="main-nav__list-item authorized-access" data-user-for="82c0350d-4c26-4b95-8feb-330fef53cda3"><a class="fdn-button fdn-button--button-style-primary fdn-button--button-small" data-en-text="My Account" data-link-type="" href="https://zoom.us/profile">My Account<span class="visually-hidden"> My Account</span></a></li></ul><button aria-expanded="false" aria-haspopup="true" aria-label="Toggle Menu" class="main-nav__hamburger-trigger"><span></span></button></div></div></nav> <nav class="mobile-menu"><div class="mobile-menu__container" data-block-size-ref=""><nav aria-label="Main Navigation" class="mobile-menu__main-nav"><ul class="mobile-menu__list"><li class="mobile-menu__list-item"><a aria-label="Search" class="mobile-menu__search" href="/en/search/"><img alt="Search" height="12" src="/dist/assets/icons/icon-search-gray.svg" width="12"></img>Search</a></li><li class="mobile-menu__list-item"><button aria-controls="panel-1" class="mobile-menu__accordion js-accordion-trigger">Products</button><section aria-label="Products" class="mobile-megamenu megamenu-products js-accordion-panel"><div class="mobile-megamenu-products-wrapper"><div class="mobile-megamenu-products--title"><div class="mobile-megamenu-products--subtitle"><a href="/en/ai-assistant/"><img alt="AI Companion" class="nav-title-logo" fetchpriority="auto" loading="lazy" src="https://media.zoom.com/images/assets/Full-Color.svg/Zz0zZTU4NjkxMmUwNDAxMWVlOGRjNWFhZTRmMzFmZjlkNg==" title="AI Companion"></img></a></div><div class="mobile-megamenu-products--description"><p>Empowering you to increase productivity, improve team effectiveness, and enhance skills. <a href="/en/ai-assistant/">Learn more</a></p></div></div><div class="mobile-megamenu__bottom"><div class="mobile-megamenu__column"><div class="mobile-megamenu__column__zoomWorkplace column"><div class="mobile-megamenu__head"><div class="mobile-megamenu__column-title"><a href="/en/products/collaboration-tools/"><img alt="Zoom Workplace" class="nav-title-logo" fetchpriority="auto" loading="lazy" src="https://media.zoom.com/images/assets/logo_product_ZM-workplace_1-line_color-RGB+3.svg/Zz01MTA2NTc2MGUwM2UxMWVlOTkyNDkyMTRhMzBjNjAxZg==" title="Zoom Workplace"></img></a><span><img class="megamenu__list-item-icon" src="/dist/assets/icons/icon-right-bloom.svg" alt="" /></span></div></div><div class="mobile-megamenu__column--block"><div class="mobile-megamenu__workplace__column"><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item-heading--disabled">Communication</li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Meetings" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/one-meetings.svg/Zz01YTBmNDRkMmVhOGMxMWVkODExZDRhYjdlM2I2YjFmNQ==" title="Meetings" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/virtual-meetings/">Meetings</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Team Chat" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/product-team-chat.svg/Zz1lZGNhYmY5MmU0NGUxMWVkYjM1OGEyNzVhMWI2ODM4Yw==" title="Team Chat" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/team-chat/">Team Chat</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Phone" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/product-phone.svg/Zz1lZDNmZDE4NGU0NGUxMWVkOTZiZTllNDY0OTU3ZDg4Zg==" title="Phone" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/voip-phone/">Phone</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Mail & Calendar" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mail+calendar+Icon.svg/Zz00MWE3YmZiMGRiYmMxMWVlYWQzZjkyZDMwZWIwZDkwYw==" title="Mail & Calendar" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/email-calendar/">Mail & Calendar</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Scheduler" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/appointment-scheduler.svg/Zz01MTRiNTg1ZTM1MGYxMWVlYjc3NmQ2NTU5Nzc3NzFhOQ==" title="Scheduler" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/appointment-scheduler/">Scheduler</a></div></li></ul></div><div class="mobile-megamenu__workplace__column"><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item-heading--disabled">Productivity</li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Docs" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_docs.svg/Zz0zNTAwYmRkNGRiYzExMWVlYjY2NWNlOTkyMzIwMjc2OA==" title="Docs" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/collaborative-docs/">Docs</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Whiteboard" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/product-whiteboard.svg/Zz1lZDJjOTczNmU0NGUxMWVkOGFmNmI2NWQ2NDcyM2M3Mg==" title="Whiteboard" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/online-whiteboard/">Whiteboard</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Clips" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/product-clips.svg/Zz00OTAyYWM5NjVjNTcxMWVlOTA5MDU2NmQ1MzA1MjExNQ==" title="Clips" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/video-recording/">Clips</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Notes" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/Notes-Logo.svg/Zz02MmFkNzBjYWRiYzAxMWVlOWYzNDZhZTY1ZDYyODc3MA==" title="Notes" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/productivity/">Tasks</a></div></li><li class="mobile-megamenu__list-item-heading--disabled">Apps & Integrations</li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="App Marketplace" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/developer-marketplace.svg/Zz02OWE4YzY1OGVhOTUxMWVkODU1MWU2NWI4Njg2NmUxNA==" title="App Marketplace" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="https://marketplace.zoom.us/workplace-apps">App Marketplace</a></div></li></ul></div><div class="mobile-megamenu__workplace__column"><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item-heading--disabled">Spaces</li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Rooms" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/Rooms.svg/Zz02ODUyMWZiZWRiYzMxMWVlOTExYjA2NmQzNDk4YmEzNQ==" title="Rooms" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/meeting-rooms/">Rooms</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Workspace Reservations" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_workspace-reservation.svg/Zz1jY2EzMDQ1NmRiYzMxMWVlYmFhMGVhMDc5Nzg3Mjk1OA==" title="Workspace Reservations" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/meeting-rooms/features/workspace/">Workspace Reservation</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Digital Signage" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/digital+sign.svg/Zz04ZmQ1MGJlMGRiYzQxMWVlODNlYjBhZjZlZjU5YjMxYw==" title="Digital Signage" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/meeting-rooms/features/workspace/">Digital Signage</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Visitor Management" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/visitor-manage.svg/Zz00Mjc3ZDUwY2RiYzUxMWVlOTI3N2VhMDc5Nzg3Mjk1OA==" title="Visitor Management" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/meeting-rooms/features/workspace/#visitor-management">Visitor Management</a></div></li><li class="mobile-megamenu__list-item-heading--disabled">Employee Engagement</li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Workvivo" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/workvivo-zm.svg/Zz00OTI4MjQ4MDVjNTcxMWVlYjY2ZTFlZThhMTdjNjk4Yg==" title="Workvivo" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/workvivo/">Workvivo</a></div></li></ul></div></div></div></div></div><div class="mobile-megamenu__bottom"><div class="mobile-megamenu__column"><div class="mobile-megamenu__column__businessService column"><div class="mobile-megamenu__head"><div class="mobile-megamenu__column-title"><a href="/en/products/business-services/">Business Services</a><span><img class="megamenu__list-item-icon" src="/dist/assets/icons/icon-right-bloom.svg" alt="" /></span></div></div><div class="mobile-megamenu__column--block"><div class="mobile-megamenu__workplace__column"><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item-heading--disabled">Customer Experience</li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Contact Center" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/cc-contact-center.svg/Zz01OTgzNDIwMmVhOGMxMWVkYWEwOWNhMjZkMjg1ODQxMg==" title="Contact Center" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/contact-center/">Contact Center</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Virtual Agent" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/product-virtual-agent.svg/Zz1lZTMzZjllNGU0NGUxMWVkOGRiN2I2NWQ2NDcyM2M3Mg==" title="Virtual Agent" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/virtual-agent/">Virtual Agent</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Workforce Engagement Management" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_workforce-engagement-management.svg/Zz1kMTNkNDdmZWU3MzIxMWVlOGQwYTgyM2JmOTdlNjdmNA==" title="Workforce Engagement Management" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/workforce-engagement-management/">Workforce Engagement</a></div></li></ul></div><div class="mobile-megamenu__workplace__column"><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item-heading--disabled">Marketing</li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Events" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_events.svg/Zz0wNDhmOTg1NGRiY2MxMWVlYjQ3MWQyNTdlYzNkN2VhZg==" title="Events" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/event-platform/">Events</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Sessions" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_sessions.svg/Zz0yZTUzYjZjNGRiY2QxMWVlOTRlODNhZWU2NWQ2NTAxNA==" title="Sessions" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/single-session-events/">Sessions</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Webinars" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_webinars.svg/Zz03Y2QyMWY1Y2RiY2QxMWVlOTVlZDEyMzJmZDU0MGZkZQ==" title="Webinars" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/webinars/">Webinars</a></div></li></ul></div><div class="mobile-megamenu__workplace__column"><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item-heading--disabled">Sales</li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Revenue Accelerator" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_revenue-accelerator.svg/Zz1kZjRjZWQ2YWRiY2QxMWVlYmRhNmFhMDkzYjQ2OGZiZA==" title="Revenue Accelerator" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/conversation-intelligence/">Revenue Accelerator</a></div></li><li class="mobile-megamenu__list-item-heading--disabled">Developer Tools</li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="APIs & SDKs" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_revenue-accelerator.svg/Zz05MTQ1ZmQ4MGRiY2YxMWVlYjI1MmYyMTViMGQ3YTJlNA==" title="APIs & SDKs" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/video-sdk/">APIs & SDKs</a></div></li></ul></div></div></div></div></div></div><div class="mobile-megamenu__actionBar"><ul><li><a class="fdn-button fdn-button--button-style-primary fdn-button--button-small" href="/en/products/">Discover all products</a></li><li><a class="fdn-button fdn-button--button-style-textLink fdn-button--button-small" href="https://zoom.us/pricing">Plans & pricing</a></li></ul></div></section></li><li class="mobile-menu__list-item"><button aria-controls="panel-2" class="mobile-menu__accordion js-accordion-trigger">Solutions</button><section aria-label="Solutions" class="mobile-megamenu megamenu-solutions js-accordion-panel"><div class="mobile-megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title"><a href="/en/industry/"><span class="visually-hidden">By industry</span>By industry</a><span><img class="megamenu__list-item-icon" src="/dist/assets/icons/icon-right-bloom.svg" alt="" /></span></div></div><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/industry/education/"><span class="visually-hidden">Education</span>Education</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/industry/finance/"><span class="visually-hidden">Financial Services</span>Financial Services</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/industry/government/"><span class="visually-hidden">Government</span>Government</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/industry/healthcare/"><span class="visually-hidden">Healthcare</span>Healthcare</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/industry/manufacturing/"><span class="visually-hidden">Manufacturing</span>Manufacturing</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/industry/retail/"><span class="visually-hidden">Retail</span>Retail</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/frontline-workers/"><span class="visually-hidden">Frontline</span>Frontline</a></div></li></ul></div></div><div class="mobile-megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title">By audience</div></div><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/audiences/small-business/"><span class="visually-hidden">Small and Midsized Businesses</span>Small and Midsized Businesses</a></div></li><li class="megamenu__list-item disabled"><div class="megamenu__list-item-heading"><p class="megamenu__list-item-heading--disabled">Enterprise</p></div><ul><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/audiences/information-technology/"><span class="visually-hidden">Information Technology</span>Information Technology</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/audiences/cx/"><span class="visually-hidden">Customer Experience</span>Customer Experience</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/audiences/sales-and-revenue/"><span class="visually-hidden">Sales and Revenue</span>Sales and Revenue</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/audiences/av-facilities/"><span class="visually-hidden">Facilities</span>Facilities</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/audiences/marketing-events/"><span class="visually-hidden">Marketing and Events</span>Marketing and Events</a></div></li></ul></li></ul></div></div><div class="mobile-megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title"><a href="https://developers.zoom.us/docs/">For developers</a><span><img class="megamenu__list-item-icon" src="/dist/assets/icons/icon-right-bloom.svg" alt="" /></span></div></div><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/video-sdk/"><span class="visually-hidden">Video SDK</span>Video SDK</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://developers.zoom.us/docs/meeting-sdk/"><span class="visually-hidden">Meeting SDK</span>Meeting SDK</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://marketplace.zoom.us/"><span class="visually-hidden">App Marketplace</span>App Marketplace</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://developers.zoom.us/docs/api/"><span class="visually-hidden">APIs</span>APIs</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://developers.zoom.us/docs/api/rest/webhook-reference/"><span class="visually-hidden">Webhooks</span>Webhooks</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/zoom-apps/"><span class="visually-hidden">Zoom Apps</span>Zoom Apps</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://developers.zoom.us/docs/"><span class="visually-hidden">Developer Solutions</span>Developer Solutions</a></div></li></ul></div></div><div class="mobile-megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title"><a href="https://partner.zoom.us/"><span class="visually-hidden">For partners</span>For partners</a><span><img class="megamenu__list-item-icon" src="/dist/assets/icons/icon-right-bloom.svg" alt="" /></span></div></div><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://partner.zoom.us/solutions/"><span class="visually-hidden">Partner Solutions</span>Partner Solutions</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://partner.zoom.us/partner-locator/"><span class="visually-hidden">Find a Partner</span>Find a Partner</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://partner.zoom.us/"><span class="visually-hidden">Become a Partner</span>Become a Partner</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://mypartnerportal.zoom.us/"><span class="visually-hidden">Partner Portal</span>Partner Portal</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://mypartnerportal.zoom.us/?sso=21&RelayState=/pages/38/home"><span class="visually-hidden">Partner Learning Center</span>Partner Learning Center</a></div></li></ul></div></div><div class="mobile-megamenu-products-wrapper"></div></section></li><li class="mobile-menu__list-item"><button aria-controls="panel-3" class="mobile-menu__accordion js-accordion-trigger">Resources</button><section aria-label="Resources" class="mobile-megamenu megamenu-resources js-accordion-panel"><div class="mobile-megamenu__highlight mobile-megamenu__highlight--mobile"><div class="mobile-megamenu__highlight-item"><img alt="Download the Zoom app" class="mobile-megamenu__highlight-item-image" fetchpriority="auto" height="50" loading="lazy" src="https://media.zoom.com/images/assets/Resources-ZoomClient.png/Zz05YzJhYzg5NGM0NjkxMWVkYWI2NDEyZjk5ZTY0ZGM3Nw==" title="Download the Zoom app" width="50"></img><div class="mobile-megamenu__highlight-item-heading"><a href="https://zoom.us/download"><span class="visually-hidden">Download Center</span>Download the Zoom app</a></div></div><div class="mobile-megamenu__highlight-item"><img alt="Zoom Virtual Backgrounds" class="mobile-megamenu__highlight-item-image" fetchpriority="auto" height="50" loading="lazy" src="https://media.zoom.com/images/assets/Resources-VirtualBG.png/Zz01MTc3YTRkNmE2YTExMWVmOWEyNTMyZDUxNWJkZWVjOA==" title="Zoom Virtual Backgrounds" width="50"></img><div class="mobile-megamenu__highlight-item-heading"><a href="/en/products/virtual-meetings/features/virtual-background-library/"><span class="visually-hidden">Browse backgrounds</span>Zoom Virtual Backgrounds</a></div></div></div><div class="mobile-megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title">Explore</div></div><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/blog/"><span class="visually-hidden">Zoom Blog</span>Zoom Blog</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/resources/"><span class="visually-hidden">Resource Library</span>Resource Library</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://ev.zoom.us/"><span class="visually-hidden">Webinars & Events</span>Webinars & Events</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/customer-stories/all/"><span class="visually-hidden">Customer Stories</span>Customer Stories</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/trust/"><span class="visually-hidden">Zoom Trust Center</span>Zoom Trust Center</a></div></li></ul></div></div><div class="mobile-megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title">Connect & Learn</div></div><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://community.zoom.com/"><span class="visually-hidden">Zoom Community</span>Zoom Community</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://learning.zoom.us/learn"><span class="visually-hidden">Learning Center</span>Learning Center</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://learn-zoom.us/show-me"><span class="visually-hidden">How-to Videos</span>How-to Videos</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://events.zoom.us/eo/AsGmtVcsNuaXLrlYNfkaKSphxX-acfgoGLA3gKJv74EKmPPf34Bc~AggLXsr32QYFjq8BlYLZ5I06Dg"><span class="visually-hidden">Customer Success Hub</span>Customer Success Hub</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/products/resources/tech-library/"><span class="visually-hidden">Technical Content Library</span>Technical Content Library</a></div></li></ul></div></div><div class="mobile-megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title">Hardware & Services</div></div><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://explore.zoom.us/en/global-services/"><span class="visually-hidden">Global Services</span>Global Services</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/hardware/"><span class="visually-hidden">Hardware Options</span>Hardware Options</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/products/cmk/"><span class="visually-hidden">Customer Managed Key</span>Customer Managed Key</a></div></li></ul></div></div><div class="mobile-megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title">Support</div></div><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://support.zoom.com/hc/en"><span class="visually-hidden">Customer Support</span>Customer Support</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://explore.zoom.us/en/support-plans/"><span class="visually-hidden">Premier Support</span>Premier Support</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://developers.zoom.us/support/"><span class="visually-hidden">Developer Support</span>Developer Support</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://explore.zoom.us/en/support-plans/developer/"><span class="visually-hidden">Premier Developer Support</span>Premier Developer Support</a></div></li></ul></div></div><div class="mobile-megamenu-products-wrapper"></div><div class="mobile-megamenu__highlight"><div class="mobile-megamenu__highlight-item"><img alt="Download the Zoom app" class="mobile-megamenu__highlight-item-image" fetchpriority="auto" height="50" loading="lazy" src="https://media.zoom.com/images/assets/Resources-ZoomClient.png/Zz05YzJhYzg5NGM0NjkxMWVkYWI2NDEyZjk5ZTY0ZGM3Nw==" title="Download the Zoom app" width="50"></img><div class="mobile-megamenu__highlight-item-heading"><a href="https://zoom.us/download"><span class="visually-hidden">Download Center</span>Download the Zoom app</a></div></div><div class="mobile-megamenu__highlight-item"><img alt="Zoom Virtual Backgrounds" class="mobile-megamenu__highlight-item-image" fetchpriority="auto" height="50" loading="lazy" src="https://media.zoom.com/images/assets/Resources-VirtualBG.png/Zz01MTc3YTRkNmE2YTExMWVmOWEyNTMyZDUxNWJkZWVjOA==" title="Zoom Virtual Backgrounds" width="50"></img><div class="mobile-megamenu__highlight-item-heading"><a href="/en/products/virtual-meetings/features/virtual-background-library/"><span class="visually-hidden">Browse backgrounds</span>Zoom Virtual Backgrounds</a></div></div></div></section></li><li class="mobile-menu__list-item"><a class="mobile-menu__link" href="https://zoom.us/pricing"><span class="visually-hidden">Plans & Pricing</span>Plans & Pricing</a></li></ul></nav><nav aria-label="Secondary Navigation" class="mobile-menu__secondary-nav"><ul class="mobile-menu__list"><li class="mobile-menu__list-item"><a class="mobile-menu__link" href="https://support.zoom.com/hc/en"><span class="visually-hidden">Support</span>Support</a></li><li class="mobile-menu__list-item"><a class="mobile-menu__link" href="tel:65 8003211528">65 8003211528</a></li><li class="mobile-menu__list-item"><a class="mobile-menu__link" href="/en/contact/contact-sales/"><span class="visually-hidden">Contact Sales</span>Contact Sales</a></li><li class="mobile-menu__list-item"><a class="mobile-menu__link" href="/en/contact/live-demo/">Request a Demo</a></li></ul></nav><div class="mobile-menu__buttons-container " data-user-for="97af72b4-4108-4885-b753-f02a39956839"><a class="fdn-button fdn-button--button-style-tertiary" href="https://zoom.us/signin"><span class="visually-hidden">to your Zoom account</span>Sign In</a><a class="fdn-button fdn-button--button-style-primary" href="https://zoom.us/signup">Sign Up Free</a></div><div class="mobile-menu__buttons-container restricted item-center authorized-access" data-user-for="82c0350d-4c26-4b95-8feb-330fef53cda3"><a class="fdn-button fdn-button--button-style-primary" href="https://zoom.us/profile"><span class="visually-hidden">My Account</span>My Account</a></div></div></nav> </header> <main role="main" id="main" class="content-max-width"> <section class="hero hero--dark hero--no-line hero--spaces hero--with-image hero--simple-image " data-cmp-is="hero"> <div class="hero__container"> <div class="hero__content"> <a href="https://www.workvivo.com/workplace/" target="_blank" class="fdn-alert-banner" aria-live="polite" role="alert" aria-label="Learn more" data-link-type="" data-en-text="" data-cmp-is="alert-banner"> <div class="fdn-alert-banner__icon"></div> <span class="fdn-alert-banner__text">Meta retires Workplace, names Workvivo as migration partner</span> <span class="fdn-alert-banner__link">Learn more</span> </a> <div class="hero__product"> <img title="product-logo-workvivo" alt="product-logo-workvivo" class="hero__product-logo" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/product-logo-workvivo.svg/Zz1hYjYxYWY2MDY0MDcxMWVlODkwODA2ZTk3OGM4NjIyOA==?t=20250217094205 2x" src="https://media.zoom.com/images/assets/product-logo-workvivo.svg/Zz1hYjYxYWY2MDY0MDcxMWVlODkwODA2ZTk3OGM4NjIyOA==?t=20250217094205" /> </div> <h1 class="hero__title">The digital heart of your company</h1> <div class="hero__body-text "> <p>Simplify communication and drive engagement with the world’s leading employee experience platform.</p> </div> <div class="hero__cta"> <a href="https://www.workvivo.com/request-demo-zoom/" target="_blank" class="fdn-button fdn-button--button-style-primary fdn-button--button-large js-analytics-cta" title="Book a demo" data-title="" rel="noopener noreferrer" data-link-type="" data-en-text="" >Book a demo</a> </div> </div> <img width="1280" height="958" title="The digital heart of your company" alt="The digital heart of your company" class="hero__image" loading="eager" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/workvivo-banner.png/Zz0wYjllMmFiNDY0MDUxMWVlYjk3MDFhMWY4MDhhZTAyOA==?t=20250217094205 2x" src="https://media.zoom.com/images/assets/workvivo-banner.png/Zz0wYjllMmFiNDY0MDUxMWVlYjk3MDFhMWY4MDhhZTAyOA==?t=20250217094205" /> </div> </section> <div class="module-columns layout-2-columns theme-white module-spacing-top-default module-spacing-medium module-padding-top-default module-padding-default " id="workplace-announcement"> <div class="wrapper"> </headline> <div class="column column-1"> <div class="fdn-copy-block fdn-copy-block--icon-small fdn-copy-block--light fdn-copy-block--vertical-center" id="69289e1b-293c-439d-83be-346fa71321a0-1"> <h3 class="fdn-copy-block__title">Meta retires Workplace, names Workvivo as its migration partner</h3> <div class="fdn-copy-block__sub-title"> <p>Meta has named Workvivo its only preferred migration partner. Together with Meta, Workvivo is creating seamless migration pathways for Workplace users</p> </div> <div class="fdn-copy-block__btn-container"> <span> <a href="https://www.workvivo.com/workplace/" target="_blank" class="fdn-button fdn-button--button-style-primary fdn-button--button-small js-analytics-cta" title="Learn more" data-title="" rel="noopener noreferrer" data-link-type="" data-en-text="" >Learn more<span class="visually-hidden"> Learn more</span></a> </span> </div> </div> </div> <div class="column column-2"> <a class="fdn-image-card large-radius js-analytics-cta" id="image-right" href="javascript:void(0);" data-img="true" data-link-type="" data-en-text=""> <img width="1280" height="958" title="Workvivo" alt="Workvivo" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/Workvivo+Workplace/Zz05NTdhMGY0NDEyMTIxMWVmYTY0N2QyNDQyNDM3YmE1YQ==?t=20250217094205 2x" src="https://media.zoom.com/images/assets/Workvivo+Workplace/Zz05NTdhMGY0NDEyMTIxMWVmYTY0N2QyNDQyNDM3YmE1YQ==?t=20250217094205" /> </a> </div> </div> </div> <div class="module-columns layout-2-columns theme-light module-spacing-top-medium module-spacing-medium module-padding-top-default module-padding-default " id="first-2-column"> <div class="wrapper"> </headline> <div class="column column-1"> <div class="fdn-autoImage" id="image-left-1"> <div class="fdn-autoImage--container aspect-ratio-5-4"> <img width="1280" height="958" title="Communication" alt="Communication" class="large-radius" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/1-communications.png/Zz04ZjEyMGUzZTY0MDkxMWVlOGMyZTBlZGExMGMwYTRkMA==?t=20250217094205 2x" src="https://media.zoom.com/images/assets/1-communications.png/Zz04ZjEyMGUzZTY0MDkxMWVlOGMyZTBlZGExMGMwYTRkMA==?t=20250217094205" /> </div> </div> </div> <div class="column column-2"> <div class="fdn-copy-block fdn-copy-block--icon-small fdn-copy-block--light fdn-copy-block--vertical-center" id="553f6a6e-5ac5-4859-a8d3-93090e2e3622-2"> <div class="fdn-copy-block__eyebrow">Communication</div> <h3 class="fdn-copy-block__title">Employee communication that works for everyone</h3> <div class="fdn-copy-block__sub-title"> <p>There are many ways to communicate and synchronize your staff, from desk to frontline, using one digital platform.</p> </div> <ul class="fdn-copy-block__body-text-two-column"> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-text"> <p>Activity Feed</p> </div> </div> </li> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-text"> <p>Digital Signage</p> </div> </div> </li> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-text"> <p>Livestream</p> </div> </div> </li> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-text"> <p>Podcast</p> </div> </div> </li> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-text"> <p>Chat</p> </div> </div> </li> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-text"> <p>Newsletter</p> </div> </div> </li> </ul> </div> </div> </div> </div> <div class="module-columns layout-2-columns theme-light module-spacing-top-medium module-spacing-medium module-padding-top-default module-padding-default module-columns-reverse " id="second-2-column"> <div class="wrapper"> </headline> <div class="column column-1"> <div class="fdn-copy-block fdn-copy-block--icon-small fdn-copy-block--light fdn-copy-block--vertical-center" id="6aeb508e-950e-4647-bb3f-093bd1ce4a63-1"> <div class="fdn-copy-block__eyebrow">Engagement</div> <h3 class="fdn-copy-block__title">Foster a sense of belonging for your people</h3> <div class="fdn-copy-block__sub-title"> <p>Create a stronger connection between your employees, their culture, and values. Achieve this through a unified employee experience that prioritizes recognition and engagement.</p> </div> <ul class="fdn-copy-block__body-text-two-column"> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-text"> <p>Social Feed</p> </div> </div> </li> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-text"> <p>Events</p> </div> </div> </li> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-text"> <p>Say-Hi Videos</p> </div> </div> </li> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-text"> <p>Goals & Values</p> </div> </div> </li> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-text"> <p>Shout-Outs</p> </div> </div> </li> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-text"> <p>Community Spaces</p> </div> </div> </li> </ul> </div> </div> <div class="column column-2"> <div class="fdn-autoImage" id="image-right"> <div class="fdn-autoImage--container aspect-ratio-5-4"> <img width="1280" height="958" title="Engagement" alt="Engagement" class="large-radius" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/2-engagement.png/Zz04ZWUwOWNhYTY0MDkxMWVlYjYyYTFhZjlkZDEyZGVkZQ==?t=20250217094205 2x" src="https://media.zoom.com/images/assets/2-engagement.png/Zz04ZWUwOWNhYTY0MDkxMWVlYjYyYTFhZjlkZDEyZGVkZQ==?t=20250217094205" /> </div> </div> </div> </div> </div> <div class="module-columns layout-2-columns theme-light module-spacing-top-medium module-spacing-medium module-padding-top-default module-padding-default " id="third-2-column"> <div class="wrapper"> </headline> <div class="column column-1"> <div class="fdn-autoImage" id="image-left"> <div class="fdn-autoImage--container aspect-ratio-5-4"> <img width="1280" height="958" title=" Digital workplace" alt=" Digital workplace" class="large-radius" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/3-digital_workplace.png/Zz04ZWQ0ODY0YTY0MDkxMWVlOTVmNWIyNmZhNWQ3ZWUyMA==?t=20250217094205 2x" src="https://media.zoom.com/images/assets/3-digital_workplace.png/Zz04ZWQ0ODY0YTY0MDkxMWVlOTVmNWIyNmZhNWQ3ZWUyMA==?t=20250217094205" /> </div> </div> </div> <div class="column column-2"> <div class="fdn-copy-block fdn-copy-block--icon-small fdn-copy-block--light fdn-copy-block--vertical-center" id="c3a310b7-b761-423f-b0db-81c0310990a1-2"> <div class="fdn-copy-block__eyebrow">Digital workplace</div> <h3 class="fdn-copy-block__title">The first human-centric intranet platform</h3> <div class="fdn-copy-block__sub-title"> <p>Our modern social intranet streamlines communication, makes it easy to find resources, and enhances productivity. Unlike relics of the past – people actually use it.</p> </div> <ul class="fdn-copy-block__body-text-two-column"> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-text"> <p>Documents</p> </div> </div> </li> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-text"> <p>Pages (wiki)</p> </div> </div> </li> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-text"> <p>App Launcher</p> </div> </div> </li> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-text"> <p>Search</p> </div> </div> </li> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-text"> <p>100+ Integrations</p> </div> </div> </li> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-text"> <p>API Framework</p> </div> </div> </li> </ul> </div> </div> </div> </div> <div class="module-columns layout-2-columns theme-light module-spacing-top-medium module-spacing-medium module-padding-top-default module-padding-default module-columns-reverse " id="fourth-2-column"> <div class="wrapper"> </headline> <div class="column column-1"> <div class="fdn-copy-block fdn-copy-block--icon-small fdn-copy-block--light fdn-copy-block--vertical-center" id="64fedb95-de90-4014-b7d3-ed3d4ad88b9e-1"> <div class="fdn-copy-block__eyebrow">Analytics and insights</div> <h3 class="fdn-copy-block__title">Insights to drive engagement and retention</h3> <div class="fdn-copy-block__sub-title"> <p>Collect employee opinions, feedback, and sentiments using multi-touch approaches that reach and engage people in real-time.</p> </div> <ul class="fdn-copy-block__body-text-two-column"> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-text"> <p>Surveys</p> </div> </div> </li> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-text"> <p>Dashboards</p> </div> </div> </li> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-text"> <p>Polls</p> </div> </div> </li> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-text"> <p>Adoption</p> </div> </div> </li> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-text"> <p>Content Analytics</p> </div> </div> </li> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-text"> <p>Read & Acknowledge</p> </div> </div> </li> </ul> </div> </div> <div class="column column-2"> <div class="fdn-autoImage" id="image-right"> <div class="fdn-autoImage--container aspect-ratio-5-4"> <img width="1280" height="958" title="Analytics and insights" alt="Analytics and insights" class="large-radius" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/4-analytics.png/Zz04ZTkzYWRlNjY0MDkxMWVlOGIyYWMyOGYxNTFiMmFjMg==?t=20250217094205 2x" src="https://media.zoom.com/images/assets/4-analytics.png/Zz04ZTkzYWRlNjY0MDkxMWVlOGIyYWMyOGYxNTFiMmFjMg==?t=20250217094205" /> </div> </div> </div> </div> </div> <section class="fdn-logo-slide fdn-logo-slide__bg-off-white module-spacing-top-zero module-spacing-zero module-padding-top-medium module-padding-medium " data-cmp-is="fdn-logo-slide" aria-label="Accessibility Text for the Logo Slide component"> <div class="body-container"> <div class="fdn-logo-slide__header-container"> <h2 class="fdn-logo-slide__header">The world’s number one employee experience platform for millions of users</h2> </div> </div> <div class="fdn-logo-slide__slider"> <div class="fdn-logo-slide__slides"> <div class="fdn-logo-slide__group"> <div class="fdn-logo-slide__slide"> <img title="Telus International" alt="Telus International" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/telus-1.svg/Zz05Mjk5MDdmZTY0MWYxMWVlODcwMTcyNzgxOGMyZTYyZg==?t=20250217094205 2x" src="https://media.zoom.com/images/assets/telus-1.svg/Zz05Mjk5MDdmZTY0MWYxMWVlODcwMTcyNzgxOGMyZTYyZg==?t=20250217094205" /> </div> <div class="fdn-logo-slide__slide"> <img title="Hoover" alt="Hoover" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/hoover-1.svg/Zz04MmQ0ZGQzZTY0MWYxMWVlYjIyMGIyOGIyMGU2NTM2MA==?t=20250217094205 2x" src="https://media.zoom.com/images/assets/hoover-1.svg/Zz04MmQ0ZGQzZTY0MWYxMWVlYjIyMGIyOGIyMGU2NTM2MA==?t=20250217094205" /> </div> <div class="fdn-logo-slide__slide"> <img title="Clipper" alt="Clipper" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/clipper-1.svg/Zz04MzEyNTkzZTY0MWYxMWVlODA5NGY2YzY2Y2MxZDgyNw==?t=20250217094205 2x" src="https://media.zoom.com/images/assets/clipper-1.svg/Zz04MzEyNTkzZTY0MWYxMWVlODA5NGY2YzY2Y2MxZDgyNw==?t=20250217094205" /> </div> <div class="fdn-logo-slide__slide"> <img title="Bupa" alt="Bupa" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/bupa-1.svg/Zz04MmUzY2UyMDY0MWYxMWVlOGVmZjlhODBmNjgxYzQ1ZA==?t=20250217094205 2x" src="https://media.zoom.com/images/assets/bupa-1.svg/Zz04MmUzY2UyMDY0MWYxMWVlOGVmZjlhODBmNjgxYzQ1ZA==?t=20250217094205" /> </div> <div class="fdn-logo-slide__slide"> <img title="Motherson" alt="Motherson" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/logo-1.svg/Zz04MmVkYTRjYzY0MWYxMWVlYjdjMGRhMDYyMDg2ZDNjMQ==?t=20250217094205 2x" src="https://media.zoom.com/images/assets/logo-1.svg/Zz04MmVkYTRjYzY0MWYxMWVlYjdjMGRhMDYyMDg2ZDNjMQ==?t=20250217094205" /> </div> <div class="fdn-logo-slide__slide"> <img title="Netgear" alt="Netgear" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/netgear-logo.svg/Zz04M2I2NTQ1ODY0MWYxMWVlODNhOTcyZGQ4ZWU4Yzk3ZA==?t=20250217094205 2x" src="https://media.zoom.com/images/assets/netgear-logo.svg/Zz04M2I2NTQ1ODY0MWYxMWVlODNhOTcyZGQ4ZWU4Yzk3ZA==?t=20250217094205" /> </div> <div class="fdn-logo-slide__slide"> <img title="RyanAir" alt="RyanAir" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/ryanair-1.svg/Zz05MmE5ODllNDY0MWYxMWVlOWZiYWE2MGFiOTRkMDU1MA==?t=20250217094205 2x" src="https://media.zoom.com/images/assets/ryanair-1.svg/Zz05MmE5ODllNDY0MWYxMWVlOWZiYWE2MGFiOTRkMDU1MA==?t=20250217094205" /> </div> </div> <div class="fdn-logo-slide__group"> <div class="fdn-logo-slide__slide"> <img title="Telus International" alt="Telus International" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/telus-1.svg/Zz05Mjk5MDdmZTY0MWYxMWVlODcwMTcyNzgxOGMyZTYyZg==?t=20250217094205 2x" src="https://media.zoom.com/images/assets/telus-1.svg/Zz05Mjk5MDdmZTY0MWYxMWVlODcwMTcyNzgxOGMyZTYyZg==?t=20250217094205" /> </div> <div class="fdn-logo-slide__slide"> <img title="Hoover" alt="Hoover" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/hoover-1.svg/Zz04MmQ0ZGQzZTY0MWYxMWVlYjIyMGIyOGIyMGU2NTM2MA==?t=20250217094205 2x" src="https://media.zoom.com/images/assets/hoover-1.svg/Zz04MmQ0ZGQzZTY0MWYxMWVlYjIyMGIyOGIyMGU2NTM2MA==?t=20250217094205" /> </div> <div class="fdn-logo-slide__slide"> <img title="Clipper" alt="Clipper" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/clipper-1.svg/Zz04MzEyNTkzZTY0MWYxMWVlODA5NGY2YzY2Y2MxZDgyNw==?t=20250217094205 2x" src="https://media.zoom.com/images/assets/clipper-1.svg/Zz04MzEyNTkzZTY0MWYxMWVlODA5NGY2YzY2Y2MxZDgyNw==?t=20250217094205" /> </div> <div class="fdn-logo-slide__slide"> <img title="Bupa" alt="Bupa" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/bupa-1.svg/Zz04MmUzY2UyMDY0MWYxMWVlOGVmZjlhODBmNjgxYzQ1ZA==?t=20250217094205 2x" src="https://media.zoom.com/images/assets/bupa-1.svg/Zz04MmUzY2UyMDY0MWYxMWVlOGVmZjlhODBmNjgxYzQ1ZA==?t=20250217094205" /> </div> <div class="fdn-logo-slide__slide"> <img title="Motherson" alt="Motherson" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/logo-1.svg/Zz04MmVkYTRjYzY0MWYxMWVlYjdjMGRhMDYyMDg2ZDNjMQ==?t=20250217094205 2x" src="https://media.zoom.com/images/assets/logo-1.svg/Zz04MmVkYTRjYzY0MWYxMWVlYjdjMGRhMDYyMDg2ZDNjMQ==?t=20250217094205" /> </div> <div class="fdn-logo-slide__slide"> <img title="Netgear" alt="Netgear" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/netgear-logo.svg/Zz04M2I2NTQ1ODY0MWYxMWVlODNhOTcyZGQ4ZWU4Yzk3ZA==?t=20250217094205 2x" src="https://media.zoom.com/images/assets/netgear-logo.svg/Zz04M2I2NTQ1ODY0MWYxMWVlODNhOTcyZGQ4ZWU4Yzk3ZA==?t=20250217094205" /> </div> <div class="fdn-logo-slide__slide"> <img title="RyanAir" alt="RyanAir" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/ryanair-1.svg/Zz05MmE5ODllNDY0MWYxMWVlOWZiYWE2MGFiOTRkMDU1MA==?t=20250217094205 2x" src="https://media.zoom.com/images/assets/ryanair-1.svg/Zz05MmE5ODllNDY0MWYxMWVlOWZiYWE2MGFiOTRkMDU1MA==?t=20250217094205" /> </div> </div> </div> </div> <div class="body-container"> <div class="fdn-logo-slide__button-container"> </div> <div class="fdn-logo-slide__controls"> <button class="fdn-logo-slide__control fdn-logo-slide__control--play" aria-label="Play Slider" hidden></button> <button class="fdn-logo-slide__control fdn-logo-slide__control--pause" aria-label="Pause Slider"></button> </div> </div> </section> <div class="module-columns layout-1-columns theme-light module-spacing-top-medium module-spacing-medium module-padding-top-default module-padding-default " id="faq"> <div class="wrapper"> </headline> <div class="column column-1"> <section class="accordion " aria-labelledby="faq-list" data-cmp-is="accordion" data-disableshowmore="0"> <h2 class="accordion__title" id="faq-list">Frequently Asked Questions</h2> <div class="accordion__content"> <div class="accordion__item"> <button class="accordion__item-button js-accordion-trigger"> What are the benefits of using Workvivo? </button> <div class="accordion__item-content js-accordion-panel"> <p>Workvivo is an employee experience platform (EXP) that simplifies internal communication and drives engagement. Built for the digital-first workplace, our purpose is to engage and emotionally connect people by giving everyone a voice. Our EXP brings company culture to life digitally, helping everyone feel included, appreciated and engaged no matter where they work.</p> </div> </div> <div class="accordion__item"> <button class="accordion__item-button js-accordion-trigger"> Can Workvivo handle large Enterprise customers? </button> <div class="accordion__item-content js-accordion-panel"> <p>Yes! Built for the modern enterprise, Workvivo provides robust communication, engagement and intranet features that enterprises can trust and rely on. Global businesses like Bupa, Amazon, Telus, Motherson, Mercedes, and Ryanair are just a few of the many companies that power their global digital employee experience with Workvivo.</p> </div> </div> <div class="accordion__item"> <button class="accordion__item-button js-accordion-trigger"> How much does Workvivo cost? </button> <div class="accordion__item-content js-accordion-panel"> <p>The price of your platform will depend on how many licences you require and your organization’s specific needs. Please contact us to request a custom quote.</p> </div> </div> <div class="accordion__item"> <button class="accordion__item-button js-accordion-trigger"> Can I purchase add-ons or change my plan later? </button> <div class="accordion__item-content js-accordion-panel"> <p>Yes! Speak with your Workvivo CX Manager to request additional features or to upgrade your account.</p> </div> </div> </div> <button class="accordion__show" aria-label="Show more - adds content above">Show more</button> <button class="accordion__show accordion__show--less" aria-label="Show less - removes content above" hidden>Show less</button> </section> </div> </div> </div> <div class="fdn-basic-cta fdn-basic-cta--dark module-spacing-top-zero module-spacing-zero module-padding-top-medium module-padding-medium " id="cta-container" data-cmp-is="basic-cta"> <h2 class="fdn-basic-cta__header">Find out more about Workvivo today</h2></headline> <div class="fdn-basic-cta__body"> <p>Discover how our employee experience platform can engage and connect your entire organization.</p> </div> <div class="fdn-basic-cta__btn-container"> <a href="https://www.workvivo.com/request-demo-zoom/" target="_blank" class="fdn-button fdn-button--button-style-secondary fdn-button--button-small js-analytics-cta" title="Book a demo" data-title="" rel="noopener noreferrer" data-link-type="" data-en-text="" >Book a demo</a> </div> </div> </main> <footer class="module-footer" id="" data-cmp-is="footer"> <div class="module-footer-top"> <div class="container"> <div class="module-footer-top__primary"> <nav class="module-footer-nav js-module-footer-nav"> <section class="module-footer-nav__section"> <a href="/en/about/" class="module-footer-nav__title js-analytics-cta" title="About" data-title="" data-link-type="" data-en-text="" >About</a> <div class="module-footer-nav__panel"> <ul class="module-footer-nav__list"> <li class="module-footer-nav__item"> <a href="/en/blog/" class="module-footer-nav__link js-analytics-cta" title="Zoom Blog" data-title="" data-link-type="" data-en-text="" >Zoom Blog<span class="visually-hidden"> Zoom Blog</span></a> </li> <li class="module-footer-nav__item"> <a href="/en/customer-stories/all/" class="module-footer-nav__link js-analytics-cta" title="Customers" data-title="" data-link-type="" data-en-text="" >Customers</a> </li> <li class="module-footer-nav__item"> <a href="/en/about/team/" class="module-footer-nav__link js-analytics-cta" title="Our Team" data-title="" data-link-type="" data-en-text="" >Our Team</a> </li> <li class="module-footer-nav__item"> <a href="https://careers.zoom.us/home" class="module-footer-nav__link js-analytics-cta" title="Careers" data-title="" data-link-type="" data-en-text="" >Careers</a> </li> <li class="module-footer-nav__item"> <a href="https://marketplace.zoom.us/" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Integrations" data-title="" data-link-type="" data-en-text="" >Integrations</a> </li> <li class="module-footer-nav__item"> <a href="https://partner.zoom.us/" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Partners" data-title="" data-link-type="" data-en-text="" >Partners</a> </li> <li class="module-footer-nav__item"> <a href="https://investors.zoom.us/" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Investors" data-title="" data-link-type="" data-en-text="" >Investors</a> </li> <li class="module-footer-nav__item"> <a href="https://news.zoom.us/" class="module-footer-nav__link js-analytics-cta" title="Press" data-title="" data-link-type="" data-en-text="" >Press</a> </li> <li class="module-footer-nav__item"> <a href="/en/about/esg-fy2024-impact-report/" class="module-footer-nav__link js-analytics-cta" title="Sustainability & ESG" data-title="" data-link-type="" data-en-text="" >Sustainability & ESG</a> </li> <li class="module-footer-nav__item"> <a href="https://zoomcares.zoom.us/" class="module-footer-nav__link js-analytics-cta" data-title="" data-link-type="" data-en-text="Zoom Cares" >Zoom Cares<span class="visually-hidden"> Zoom Cares</span></a> </li> <li class="module-footer-nav__item"> <a href="/en/about/media-kit/" class="module-footer-nav__link js-analytics-cta" title="Media Kit" data-title="" data-link-type="" data-en-text="" >Media Kit</a> </li> <li class="module-footer-nav__item"> <a href="https://learn-zoom.us/show-me" target="_blank" class="module-footer-nav__link js-analytics-cta" title="How To Videos" data-title="" data-link-type="" data-en-text="" >How To Videos</a> </li> <li class="module-footer-nav__item"> <a href="https://developers.zoom.us/" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Developer Platform" data-title="" data-link-type="" data-en-text="" >Developer Platform</a> </li> <li class="module-footer-nav__item"> <a href="/en/zoom-ventures/" class="module-footer-nav__link js-analytics-cta" title="Zoom Ventures" data-title="" data-link-type="" data-en-text="" >Zoom Ventures</a> </li> <li class="module-footer-nav__item"> <a href="https://shophappy.zoom.us/" class="module-footer-nav__link js-analytics-cta" data-title="" data-link-type="" data-en-text="Zoom Merchandise Store" >Zoom Merchandise Store<span class="visually-hidden"> Zoom Merchandise Store</span></a> </li> </ul> </div> </section> <section class="module-footer-nav__section"> <a href="https://zoom.us/download" target="_blank" class="module-footer-nav__title js-analytics-cta" title="Download" data-title="" data-link-type="" data-en-text="" >Download</a> <div class="module-footer-nav__panel"> <ul class="module-footer-nav__list"> <li class="module-footer-nav__item"> <a href="https://zoom.us/download" class="module-footer-nav__link js-analytics-cta" title="Zoom Workplace App" data-title="" data-link-type="" data-en-text="Zoom Workplace App" >Zoom Workplace App<span class="visually-hidden"> Zoom Workplace App</span></a> </li> <li class="module-footer-nav__item"> <a href="https://zoom.us/download#room_client" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Zoom Rooms App" data-title="" data-link-type="" data-en-text="Zoom Rooms App" >Zoom Rooms App<span class="visually-hidden"> Zoom Rooms App</span></a> </li> <li class="module-footer-nav__item"> <a href="https://zoom.us/download#room_controller" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Zoom Rooms Controller" data-title="" data-link-type="" data-en-text="" >Zoom Rooms Controller</a> </li> <li class="module-footer-nav__item"> <a href="https://zoom.us/download#chrome_ext" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Browser Extension" data-title="" data-link-type="" data-en-text="" >Browser Extension</a> </li> <li class="module-footer-nav__item"> <a href="https://zoom.us/download#outlook_plugin" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Outlook Plug-in" data-title="" data-link-type="" data-en-text="" >Outlook Plug-in</a> </li> <li class="module-footer-nav__item"> <a href="https://zoom.us/download#client_iphone" target="_blank" class="module-footer-nav__link js-analytics-cta" title="iPhone/iPad App" data-title="" data-link-type="" data-en-text="iPhone/iPad App" >iPhone/iPad App<span class="visually-hidden"> iPhone/iPad App</span></a> </li> <li class="module-footer-nav__item"> <a href="https://zoom.us/download#mobile_app" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Android App" data-title="" data-link-type="" data-en-text="Android App" >Android App<span class="visually-hidden"> Android App</span></a> </li> <li class="module-footer-nav__item"> <a href="/en/products/virtual-meetings/features/virtual-background-library/" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Zoom Virtual Backgrounds" data-title="" data-link-type="" data-en-text="" >Zoom Virtual Backgrounds</a> </li> </ul> </div> </section> <section class="module-footer-nav__section"> <a href="/en/contact/contact-sales/" class="module-footer-nav__title js-analytics-cta" title="Sales" data-title="" data-link-type="" data-en-text="" >Sales</a> <div class="module-footer-nav__panel"> <ul class="module-footer-nav__list"> <li class="module-footer-nav__item"> <a href="tel:65 8003211528" class="module-footer-nav__link js-analytics-cta" data-title="" rel="noopener noreferrer" data-link-type="" data-en-text="" >65 8003211528</a> </li> <li class="module-footer-nav__item"> <a href="/en/contact/contact-sales/" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Contact Sales" data-title="" data-link-type="" data-en-text="" >Contact Sales</a> </li> <li class="module-footer-nav__item"> <a href="https://zoom.us/pricing" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Plans and Pricing" data-title="" data-link-type="" data-en-text="" >Plans & Pricing</a> </li> <li class="module-footer-nav__item"> <a href="/en/contact/live-demo/" class="module-footer-nav__link js-analytics-cta" title="Request a Demo" data-title="" data-link-type="" data-en-text="" >Request a Demo</a> </li> <li class="module-footer-nav__item"> <a href="https://ev.zoom.us/" class="module-footer-nav__link js-analytics-cta" title="Webinars and Events" data-title="" data-link-type="" data-en-text="" >Webinars and Events</a> </li> <li class="module-footer-nav__item"> <a href="https://ebc.zoom.us/" class="module-footer-nav__link js-analytics-cta" title="Zoom Experience Center" data-title="" data-link-type="" data-en-text=" Zoom Experience Center" >Zoom Experience Center<span class="visually-hidden"> Zoom Experience Center</span></a> </li> </ul> </div> </section> <section class="module-footer-nav__section"> <a href="https://support.zoom.com/hc/en" target="_blank" class="module-footer-nav__title js-analytics-cta" title="Support" data-title="" data-link-type="" data-en-text="" >Support<span class="visually-hidden"> Support</span></a> <div class="module-footer-nav__panel"> <ul class="module-footer-nav__list"> <li class="module-footer-nav__item"> <a href="https://zoom.us/test" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Test Zoom" data-title="" data-link-type="" data-en-text="" >Test Zoom</a> </li> <li class="module-footer-nav__item"> <a href="https://zoom.us/account" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Account" data-title="" data-link-type="" data-en-text="" >Account</a> </li> <li class="module-footer-nav__item"> <a href="https://support.zoom.com/hc/en" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Support Center" data-title="" data-link-type="" data-en-text="" >Support Center<span class="visually-hidden"> Support Center</span></a> </li> <li class="module-footer-nav__item"> <a href="https://learning.zoom.us/learn" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Learning Center" data-title="" data-link-type="" data-en-text="" >Learning Center</a> </li> <li class="module-footer-nav__item"> <a href="/en/products/resources/tech-library/" class="module-footer-nav__link js-analytics-cta" title="Technical Content Library" data-title="" data-link-type="" data-en-text="" >Technical Content Library<span class="visually-hidden"> Technical Content Library</span></a> </li> <li class="module-footer-nav__item"> <a href="https://zoom.us/feed" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Feedback" data-title="" data-link-type="" data-en-text="" >Feedback</a> </li> <li class="module-footer-nav__item"> <a href="/en/contact/" class="module-footer-nav__link js-analytics-cta" title="Contact Us" data-title="" data-link-type="" data-en-text="" >Contact Us</a> </li> <li class="module-footer-nav__item"> <a href="/en/accessibility/" class="module-footer-nav__link js-analytics-cta" title="Accessibility" data-title="" data-link-type="" data-en-text="" >Accessibility</a> </li> <li class="module-footer-nav__item"> <a href="https://developers.zoom.us/support/" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Developer Support" data-title="" data-link-type="" data-en-text="" >Developer Support</a> </li> <li class="module-footer-nav__item"> <a href="/en/trust/legal-compliance/" class="module-footer-nav__link js-analytics-cta" title="Privacy, Security, Legal Policies, and Modern Slavery Act Transparency Statement" data-title="" data-link-type="" data-en-text="" >Privacy, Security, Legal Policies, and Modern Slavery Act Transparency Statement</a> </li> </ul> </div> </section> <section> <div class="module-footer-dropdown__description visually-hidden"> Language </div> <div class="module-footer-dropdown__title">Language</div> <button data-template="js-language-content" class="module-footer-dropdown__btn tooltip"> English <img class="module-footer-dropdown__svg" src="/dist/assets/icons/icon-triangle.svg" alt="Drop down icon" /> </button> <div id="js-language-content"> <ul class="module-footer-dropdown__list"> <li class="module-footer-dropdown__item"> <a href="/de/products/workvivo/" target="_self" data-locale="de-DE" class="module-footer-dropdown__link ">Deutsch</a> </li> <li class="module-footer-dropdown__item"> <a href="/en/products/workvivo/" target="_self" data-locale="en-US" class="module-footer-dropdown__link ">English</a> </li> <li class="module-footer-dropdown__item"> <a href="/es/products/workvivo/" target="_self" data-locale="es-ES" class="module-footer-dropdown__link ">Español</a> </li> <li class="module-footer-dropdown__item"> <a href="/fr/products/workvivo/" target="_self" data-locale="fr-FR" class="module-footer-dropdown__link ">Français</a> </li> <li class="module-footer-dropdown__item"> <a href="/id/products/workvivo/" target="_self" data-locale="id-ID" class="module-footer-dropdown__link ">Indonesia</a> </li> <li class="module-footer-dropdown__item"> <a href="/it/products/workvivo/" target="_self" data-locale="it-IT" class="module-footer-dropdown__link ">Italiano</a> </li> <li class="module-footer-dropdown__item"> <a href="/ja/products/workvivo/" target="_self" data-locale="jp-JP" class="module-footer-dropdown__link ">日本語</a> </li> <li class="module-footer-dropdown__item"> <a href="/ko/products/workvivo/" target="_self" data-locale="ko-KO" class="module-footer-dropdown__link ">한국어</a> </li> <li class="module-footer-dropdown__item"> <a href="/nl/products/workvivo/" target="_self" data-locale="nl-NL" class="module-footer-dropdown__link ">Nederlands</a> </li> <li class="module-footer-dropdown__item"> <a href="/pl/products/workvivo/" target="_self" data-locale="pl-PL" class="module-footer-dropdown__link ">Polski</a> </li> <li class="module-footer-dropdown__item"> <a href="/pt/products/workvivo/" target="_self" data-locale="pt-PT" class="module-footer-dropdown__link ">Português</a> </li> <li class="module-footer-dropdown__item"> <a href="/ru/products/workvivo/" target="_self" data-locale="ru-RU" class="module-footer-dropdown__link ">Русский</a> </li> <li class="module-footer-dropdown__item"> <a href="/sv/products/workvivo/" target="_self" data-locale="sv-SE" class="module-footer-dropdown__link ">Svenska</a> </li> <li class="module-footer-dropdown__item"> <a href="/tr/products/workvivo/" target="_self" data-locale="tr-TR" class="module-footer-dropdown__link ">Türkçe</a> </li> <li class="module-footer-dropdown__item"> <a href="/vi/products/workvivo/" target="_self" data-locale="vi-VN" class="module-footer-dropdown__link ">Tiếng Việt</a> </li> <li class="module-footer-dropdown__item"> <a href="/zh-cn/products/workvivo/" target="_self" data-locale="zh-CN" class="module-footer-dropdown__link ">中文(简体,中国)</a> </li> <li class="module-footer-dropdown__item"> <a href="/zh-tw/products/workvivo/" target="_self" data-locale="zh-TW" class="module-footer-dropdown__link ">中文(繁體,台灣)</a> </li> </ul> </div> <div class="module-footer-dropdown__description visually-hidden"> Currency </div> <div class="module-footer-dropdown__title">Currency</div> <button data-template="js-currency-content" class="module-footer-dropdown__btn tooltip"> Singapore Dollars $ <img class="module-footer-dropdown__svg" src="/dist/assets/icons/icon-triangle.svg" alt="Drop down icon" /> </button> <div id="js-currency-content"> <ul class="module-footer-dropdown__list"> <li class="module-footer-dropdown__item" id="USD" data-currency-value="USD" data-country-value="US"> <button class="module-footer-dropdown__link ">US Dollar $</button> </li> <li class="module-footer-dropdown__item" id="SGD" data-currency-value="SGD" data-country-value="SG"> <button class="module-footer-dropdown__link active">Singapore Dollars $</button> </li> </ul> </div> <input id="GeoLocation" name="GeoLocation" type="hidden" value="SG" /> <script type="text/javascript" nonce="BUKZniEVAcw2LnXtabixHqvQjhqNEqBeG3Glo8UIDcQ="> const allCurrencyList = [{"currencyAbbreviation":"AUD","displayName":"Australian Dollar","currencySymbol":"AU$","isSelected":false},{"currencyAbbreviation":"BRL","displayName":"Brazillian Real","currencySymbol":"R$","isSelected":false},{"currencyAbbreviation":"CAD","displayName":"Canadian Dollar","currencySymbol":"CA$","isSelected":false},{"currencyAbbreviation":"DKK","displayName":"Danish Krone","currencySymbol":"kr","isSelected":false},{"currencyAbbreviation":"AED","displayName":"Emirati Dirham","currencySymbol":"د.إ","isSelected":false},{"currencyAbbreviation":"EUR","displayName":"Euro","currencySymbol":"€","isSelected":false},{"currencyAbbreviation":"HKD","displayName":"Hong Kong Dollars","currencySymbol":"$","isSelected":false},{"currencyAbbreviation":"INR","displayName":"Indian Rupee","currencySymbol":"₹","isSelected":false},{"currencyAbbreviation":"IDR","displayName":"Indonesian Rupiah","currencySymbol":"Rp","isSelected":false},{"currencyAbbreviation":"JPY","displayName":"Japanese Yen","currencySymbol":"¥","isSelected":false},{"currencyAbbreviation":"MYR","displayName":"Malaysian Ringgit","currencySymbol":"RM","isSelected":false},{"currencyAbbreviation":"MXN","displayName":"Mexican Peso","currencySymbol":"$","isSelected":false},{"currencyAbbreviation":"NZD","displayName":"New Zealand Dollar","currencySymbol":"NZ$","isSelected":false},{"currencyAbbreviation":"NOK","displayName":"Norwegian Krone","currencySymbol":"kr","isSelected":false},{"currencyAbbreviation":"PHP","displayName":"Philippine Peso","currencySymbol":"₱","isSelected":false},{"currencyAbbreviation":"PLN","displayName":"Polish Zloty","currencySymbol":"zł","isSelected":false},{"currencyAbbreviation":"GBP","displayName":"Pound Sterling","currencySymbol":"£","isSelected":false},{"currencyAbbreviation":"SAR","displayName":"Saudi Riyal","currencySymbol":"﷼","isSelected":false},{"currencyAbbreviation":"SGD","displayName":"Singapore Dollars","currencySymbol":"$","isSelected":true},{"currencyAbbreviation":"R","displayName":"South African Rand","currencySymbol":"R","isSelected":false},{"currencyAbbreviation":"KRW","displayName":"South Korean Won","currencySymbol":"₩","isSelected":false},{"currencyAbbreviation":"SEK","displayName":"Swedish Krona","currencySymbol":"kr","isSelected":false},{"currencyAbbreviation":"CHF","displayName":"Swiss Fran","currencySymbol":"CHF","isSelected":false},{"currencyAbbreviation":"USD","displayName":"US Dollar","currencySymbol":"$","isSelected":false},{"currencyAbbreviation":"VND","displayName":"Vietnamese Dong","currencySymbol":"₫","isSelected":false}] </script> <ul class="social__list"> <li class="social__item"> <a href="https://blog.zoom.us/" target="" class="social__link" title="Blog"> <img alt="" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/social-wordpress.svg/Zz1kMWRlNjQ5YWEzY2MxMWVkYmRiOGU2ZWE4YmQ4Y2E3MQ==?t=20250214120000" /> </a> </li> <li class="social__item"> <a href="https://www.linkedin.com/company/zoom/" rel="noopener noreferrer" target="_blank" class="social__link" title="Linked In"> <img alt="" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/social-linkedin.svg/Zz1kMWM5ZTI4NmEzY2MxMWVkOWJmZTU2NjcwZmJiNzBlNQ==?t=20250214120000" /> </a> </li> <li class="social__item"> <a href="https://twitter.com/zoom" rel="noopener noreferrer" target="_blank" class="social__link" title="Twitter"> <img alt="" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/twitter-x.svg/Zz0yMTQxYzM5NDVkMzQxMWVlYmZjMGQ2ZWM3ZWM3MGU2OQ==?t=20250214120000" /> </a> </li> <li class="social__item"> <a href="https://www.youtube.com/zoommeetings" rel="noopener noreferrer" target="_blank" class="social__link" title="YouTube"> <img alt="" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/social-youtube.svg/Zz1kMWViYTM5NGEzY2MxMWVkYmExMGJhNjNmYjRkMmQyYQ==?t=20250214120000" /> </a> </li> <li class="social__item"> <a href="https://www.facebook.com/zoom" rel="noopener noreferrer" target="_blank" class="social__link" title="Facebook"> <img alt="" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/social-facebook.svg/Zz1kMWMzYzNlMmEzY2MxMWVkYjhkYzU2NjcwZmJiNzBlNQ==?t=20250214120000" /> </a> </li> <li class="social__item"> <a href="https://www.instagram.com/zoom/" rel="noopener noreferrer" target="_blank" class="social__link" title="Instagram"> <img alt="" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/social-instagram.svg/Zz1kMWNiMGZmOGEzY2MxMWVkODkwM2U2ZWE4YmQ4Y2E3MQ==?t=20250214120000" /> </a> </li> </ul> </section> </nav> </div> </div> </div> <div class="module-footer-bottom"> <div class="container"> <div class="module-footer-bottom__primary"> <div class="module-footer__logo-dropdown"> <div class="logo-copyright"> <div class="copyright"> Copyright ©2025 Zoom Communications, Inc. All rights reserved. </div> </div> </div> <div class="utility-nav"> <ul class="utility-nav__list"> <li class="utility-nav__item"> <a href="/en/trust/terms/" class="utility-nav__link js-analytics-cta" title="Terms" data-title="" data-link-type="" data-en-text="" >Terms</a> </li> <li class="utility-nav__item"> <a href="/en/trust/privacy/privacy-statement/" class="utility-nav__link js-analytics-cta" title="Privacy" data-title="" data-link-type="" data-en-text="" >Privacy</a> </li> <li class="utility-nav__item"> <a href="/en/trust/" class="utility-nav__link js-analytics-cta" title="Trust Center" data-title="" data-link-type="" data-en-text="" >Trust Center</a> </li> <li class="utility-nav__item"> <a href="https://explore.zoom.us/en/acceptable-use-guidelines/" target="_top" class="utility-nav__link js-analytics-cta" title="Acceptable Use Guidelines" data-title="" data-link-type="" data-en-text="" >Acceptable Use Guidelines</a> </li> <li class="utility-nav__item"> <a href="/en/trust/legal-compliance/" class="utility-nav__link js-analytics-cta" title="Legal and Compliance" data-title="" data-link-type="" data-en-text="" >Legal & Compliance</a> </li> <li class="utility-nav__item"> <a id="ot-do-not-sell" class="ot-sdk-show-settings" style="cursor: pointer"> <img src="https://media.zoom.com/images/assets/privacyoptions.png/Zz0xMzFhOTdlYTM1MzUxMWVlOTBjN2UyZTQ3MjNmN2MyMg==" alt="" /> Your Privacy Choices </a> </li> <li class="utility-nav__item"> <a class="ot-sdk-show-settings" style="cursor: pointer"> Cookie Preferences </a> </li> </ul> </div> </div> </div> </div> </footer> <script type="application/ld+json" nonce="BUKZniEVAcw2LnXtabixHqvQjhqNEqBeG3Glo8UIDcQ=">{ "@context": "https://schema.org/", "@type": "FAQPage", "mainEntity": [ { "@type": "Question", "name": "What are the benefits of using Workvivo?", "acceptedAnswer": { "@type": "Answer", "text": "\u003Cp\u003EWorkvivo is an employee experience platform (EXP) that simplifies internal communication and drives engagement. Built for the digital-first workplace, our purpose is to engage and emotionally connect people by giving everyone a voice. Our EXP brings company culture to life digitally, helping everyone feel included, appreciated and engaged no matter where they work.\u003C/p\u003E" } }, { "@type": "Question", "name": "Can Workvivo handle large Enterprise customers?", "acceptedAnswer": { "@type": "Answer", "text": "\u003Cp\u003EYes! Built for the modern enterprise, Workvivo provides robust communication, engagement and intranet features that enterprises can trust and rely on. Global businesses like Bupa, Amazon, Telus, Motherson, Mercedes, and Ryanair are just a few of the many companies that power their global digital employee experience with Workvivo.\u003C/p\u003E" } }, { "@type": "Question", "name": "How much does Workvivo cost?", "acceptedAnswer": { "@type": "Answer", "text": "\u003Cp\u003EThe price of your platform will depend on how many licences you require and your organization\u0026rsquo;s specific needs. Please contact us to request a custom quote.\u003C/p\u003E" } }, { "@type": "Question", "name": "Can I purchase add-ons or change my plan later?", "acceptedAnswer": { "@type": "Answer", "text": "\u003Cp\u003EYes! Speak with your Workvivo CX Manager to request additional features or to upgrade your account.\u003C/p\u003E" } } ] }</script> <script src="/dist/zoomv.main.min.js?t=638750480520000000" nonce="BUKZniEVAcw2LnXtabixHqvQjhqNEqBeG3Glo8UIDcQ="></script> <script defer="defer" nonce="BUKZniEVAcw2LnXtabixHqvQjhqNEqBeG3Glo8UIDcQ=" src="/Util/Find/epi-util/find.js"></script> <script nonce="BUKZniEVAcw2LnXtabixHqvQjhqNEqBeG3Glo8UIDcQ="> document.addEventListener('DOMContentLoaded',function(){if(typeof FindApi === 'function'){var api = new FindApi();api.setApplicationUrl('/');api.setServiceApiBaseUrl('/find_v2/');api.processEventFromCurrentUri();api.bindWindowEvents();api.bindAClickEvent();api.sendBufferedEvents();}}) </script> <script nonce="BUKZniEVAcw2LnXtabixHqvQjhqNEqBeG3Glo8UIDcQ=" src="/ClientResources/Scripts/CoveoJsSearch.js?t=638750480020000000" type="text/javascript"></script> <script nonce="BUKZniEVAcw2LnXtabixHqvQjhqNEqBeG3Glo8UIDcQ=" src="/ClientResources/Scripts/coveo-en.js?t=638750480020000000" type="text/javascript"></script> <script nonce="BUKZniEVAcw2LnXtabixHqvQjhqNEqBeG3Glo8UIDcQ=" type="text/javascript"> var user_locale = 'en-us'; var user_language = 'English'; String.toLocaleString({ 'en-us': { "ZoomPlaceholder": "Enter search here...", "ZoomHeader": "What are you looking for?", "All": "All", "Support": "Support", "Videos": "Videos", "Source": "Source", "Explore Zoom": "Explore Zoom", "Solutions": "Solutions", "Support Articles": "Support Articles", "Community": "Community" } }); String["locale"] = user_locale; var APIKey_Search = 'xxf1623479-48a6-4dce-8475-28e0b0720fbc'; Coveo.SearchEndpoint.configureCloudV2Endpoint('', APIKey_Search, 'https://platform.cloud.coveo.com/rest/search'); document.addEventListener('DOMContentLoaded', function () { const standaloneSearchBoxRoot = document.querySelector('#standaloneSearchbox'); Coveo.initSearchbox(standaloneSearchBoxRoot, "/en/search/", { Analytics: { searchHub: 'Marketing', }, Searchbox: { placeholder: "ZoomPlaceholder" } }); document.querySelector('.FlyoutButton').addEventListener('click', function () { document.querySelector(".CoveoSearchbox").classList.toggle('transition-hidden'); document.querySelector(".FlyoutButton").classList.toggle('transition-hidden'); }); Coveo.$$(document.getElementById('standaloneSearchbox')).on(Coveo.InitializationEvents.afterComponentsInitialization, function (e, args) { document.querySelector(".magic-box-clear").addEventListener('click', function (e) { document.querySelector(".CoveoSearchbox").classList.toggle('transition-hidden'); document.querySelector(".FlyoutButton").classList.toggle('transition-hidden'); }); }); }) </script> <script crossorigin="anonymous" nonce="BUKZniEVAcw2LnXtabixHqvQjhqNEqBeG3Glo8UIDcQ=" src="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.js" type="text/javascript"></script> <script opt-use-csp-nonce="true" type="text/javascript" nonce="BUKZniEVAcw2LnXtabixHqvQjhqNEqBeG3Glo8UIDcQ="> function OptanonWrapper() { let trustDom = document.getElementById('ot-do-not-sell'); if (trustDom) { trustDom.innerHTML = '<img alt=\"\" src=\"https://media.zoom.com/images/assets/privacyoptions.png/Zz0xMzFhOTdlYTM1MzUxMWVlOTBjN2UyZTQ3MjNmN2MyMg==" />Your Privacy Choices'; } var oneTrustConsentId = OneTrust.getDataSubjectId(); var activeGroups = (OnetrustActiveGroups || '').split(','); activeGroups = activeGroups.filter(function (v) { return v !== ''; }); // send Optimizely events when Performance consent is given if (activeGroups.indexOf('C0002') > -1 && typeof sendOptimizelyEvents === 'function') { sendOptimizelyEvents(oneTrustConsentId); } // send Optimizely events when Targeting consent is given// create `OnetrustActiveGroups` cookie var oneTrustActiveCookie = activeGroups.length ? activeGroups.join('') : ''; var date = new Date(); date.setTime(date.getTime() + (365 * 24 * 60 * 60 * 1000)); var expires = "; expires=" + date.toUTCString(); document.cookie = "OnetrustActiveGroups=" + oneTrustActiveCookie + expires + "; path=/; secure=true; domain=" + ".zoom.com"; }</script> <script type="text/javascript" nonce="BUKZniEVAcw2LnXtabixHqvQjhqNEqBeG3Glo8UIDcQ="> function getFromParam(name) { var reg = new RegExp('(^|&)' + name + '=([^&]*)(&|$)'); var r = window.location.search.substr(1).match(reg); if (r != null) return decodeURIComponent(r[2]); return ''; } if ('1' == getFromParam('onlycontent')) { var mainLinks = document.querySelectorAll('main a'); mainLinks.forEach(function(link) { var href = link.getAttribute('href'); if (href.indexOf('mailto:') > -1) { var textInsideAnchor = link.textContent || link.innerText; link.outerHTML = textInsideAnchor; } if (href !== undefined && href.indexOf('mailto:') === -1) { var params = window.location.href.slice(window.location.href.indexOf('?') + 0); var baseUrl = href.split('?')[0]; link.setAttribute('href', baseUrl + params); } }); var sheet = document.createElement('style') sheet.innerHTML = 'header,footer,.livesdk__invitation,#onetrust-consent-sdk{ display:none !important; }'; document.body.appendChild(sheet); } if ('1' == getFromParam('nohyperlink')) { var links = document.querySelectorAll('a'); for(var i = 0; i < links.length; i++) { var anchorElement = links[i]; var spanElement = document.createElement('span'); spanElement.innerHTML = anchorElement.innerHTML; anchorElement.parentNode.replaceChild(spanElement, anchorElement); } }</script> <style> header.header-v3>.main-nav ul li>div[class^="resources-nav__dropdown-"], header.header-v3>.resources-nav ul li>div[class^="resources-nav__dropdown-"] { min-width: max-content; } .height-holder:has(.blog-detail-speaker) { height: 100%!important; } .hardware-detailed .hardware-fdn-autoImage img { max-height: 400px; } @media(min-width: 1025px) and (max-width: 1200px) { .header-v3.header:has(.main-nav__logo--blog) .main-nav__left .main-nav__list li:not(:last-child) { display: none; } .header-v3.header:has(.main-nav__logo--blog) .main-nav__right .main-nav__list-item a.fdn-button { font-size: 12px; } } @media(min-width: 1025px) and (max-width: 1200px) { .main-nav__container:has(.main-nav__logo--blog) .main-nav__hamburger-trigger { display: flex !important; } .header-v3.header:has(.main-nav__logo--blog) nav.mobile-menu { display: block; } } .fdn-image-card .fdn-hero-banner-card__tag-list li:hover { border: 1px solid #e0e0e6; color: #666487; } .grid-landing-page__mobile-filters span { padding-right: 0; } .grid-landing-page__mobile-filters span .grid-landing-page__mobile-filters-sort { padding-right: 0.625rem; } @media (min-width: 1025px) { .fdn-icon-block li { align-items: center; } .testimonial-carousel .swiper-slide { padding-top: 3.125rem; } .testimonial-carousel .swiper-slide:only-child{ padding-top: 1.25rem; } } .customer-stories-hero__video-wrapper .blog-video-player .jwplayer{ max-width: 100%; max-height: 54vw; } .cmp-card-customer-story .customer-story-card__arrow-wrap { width: 100%; } .cmp-card-customer-story:hover .customer-story-card__story-link { white-space: normal; } .customer-story-card .customer-story-card__content { margin-bottom: 20px; } body:has(.fdn-copy-block) .fdn-stories-wrapper .fdn-copy-block__sub-title h2 { font-size: 1.25rem; margin-top: 20px; margin-bottom: 10px; } @media (min-width: 1025px) { body:has(.fdn-copy-block) .fdn-stories-wrapper .fdn-copy-block__sub-title h2 { font-size: 1.5rem; margin-top: 40px; margin-bottom: 10px; } } </style> <script type="text/javascript" data-lazy-load-campaign-url="_blank" data-apikey="AM_FKF55QOG_vdWum455Vg" src="https://us01ccistatic.zoom.us/us01cci/web-sdk/chat-client.js" defer nonce="BUKZniEVAcw2LnXtabixHqvQjhqNEqBeG3Glo8UIDcQ="></script> <script type="text/javascript" nonce="BUKZniEVAcw2LnXtabixHqvQjhqNEqBeG3Glo8UIDcQ=">var skip_to_chat = document.querySelector('.skip_to_chat'); if(skip_to_chat){ skip_to_chat.addEventListener('click', function(event) { event.preventDefault(); var elementToFocus = document.querySelector('.livesdk__invitation'); if (elementToFocus) { elementToFocus.focus(); elementToFocus.addEventListener('keydown', function(event) { if (event.key === 'Enter') { elementToFocus.click(); } }); } }); }</script> </body> </html>