{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/semPrVuFPsLSlYR3g8QS/1ds757pkHu3jd2y2Abo8/n_kc4odvH.js", "ssg:https://framerusercontent.com/modules/joVjwQhsBdPbwwGSDwI9/ESkHnALWt8WtNLkI6MSz/ZUi4VOj9Z.js", "ssg:https://framerusercontent.com/modules/VSsWy9TDNBoAlxw33tHV/EJQIDvMRMghB4bupMbDm/UitsprZoR.js", "ssg:https://framerusercontent.com/modules/dIdgwkjjuZFL7JGyO6EE/9P89kGSq1jvCJLSaQJQD/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (3969033)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"vkVW_i8H9\",\"pYMlXyD67\",\"DZErwHx5C\"];const serializationHash=\"framer-Qbx99\";const variantClassNames={DZErwHx5C:\"framer-v-1l1zn18\",pYMlXyD67:\"framer-v-1rjoly\",vkVW_i8H9:\"framer-v-2kwh4w\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Width - 40%\":\"DZErwHx5C\",\"Width - 60%\":\"vkVW_i8H9\",\"Width - 80%\":\"pYMlXyD67\"};const getProps=({height,id,imageLogo,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,K73YWsrS4:imageLogo!==null&&imageLogo!==void 0?imageLogo:props.K73YWsrS4,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"vkVW_i8H9\",xotRNAe7R:link!==null&&link!==void 0?link:props.xotRNAe7R};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,K73YWsrS4,xotRNAe7R,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vkVW_i8H9\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:xotRNAe7R,nodeId:\"vkVW_i8H9\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\"},className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-2kwh4w\",className,classNames)} framer-h61jdl`,\"data-border\":true,\"data-framer-name\":\"Width - 60%\",layoutDependency:layoutDependency,layoutId:\"vkVW_i8H9\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(217, 217, 217)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,boxShadow:\"3px 4px 13px 0px rgba(0, 0, 0, 0.07)\",...style},...addPropertyOverrides({DZErwHx5C:{\"data-framer-name\":\"Width - 40%\"},pYMlXyD67:{\"data-framer-name\":\"Width - 80%\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||147)-0-44)/2+0+0)),pixelHeight:29,pixelWidth:150,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.6)`,...toResponsiveImage(K73YWsrS4),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-cd9ccb\",layoutDependency:layoutDependency,layoutId:\"eWjd0bg7O\",...addPropertyOverrides({DZErwHx5C:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||147)-0-44)/2+0+0)),pixelHeight:29,pixelWidth:150,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.4)`,...toResponsiveImage(K73YWsrS4),...{positionX:\"center\",positionY:\"center\"}}},pYMlXyD67:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||147)-0-44)/2+0+0)),pixelHeight:29,pixelWidth:150,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.8)`,...toResponsiveImage(K73YWsrS4),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Qbx99.framer-h61jdl, .framer-Qbx99 .framer-h61jdl { display: block; }\",\".framer-Qbx99.framer-2kwh4w { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 147px; justify-content: center; padding: 0px; position: relative; text-decoration: none; width: 147px; }\",\".framer-Qbx99 .framer-cd9ccb { aspect-ratio: 2.659090909090909 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); min-width: 60%; overflow: visible; position: relative; width: 60%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Qbx99.framer-2kwh4w { gap: 0px; } .framer-Qbx99.framer-2kwh4w > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Qbx99.framer-2kwh4w > :first-child { margin-top: 0px; } .framer-Qbx99.framer-2kwh4w > :last-child { margin-bottom: 0px; } }\",\".framer-Qbx99.framer-v-1rjoly .framer-cd9ccb { height: var(--framer-aspect-ratio-supported, 44px); min-width: 80%; width: 80%; }\",\".framer-Qbx99.framer-v-1l1zn18 .framer-cd9ccb { height: var(--framer-aspect-ratio-supported, 22px); min-width: 40%; width: 40%; }\",'.framer-Qbx99[data-border=\"true\"]::after, .framer-Qbx99 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 147\n * @framerIntrinsicWidth 147\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"pYMlXyD67\":{\"layout\":[\"fixed\",\"fixed\"]},\"DZErwHx5C\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"K73YWsrS4\":\"imageLogo\",\"xotRNAe7R\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framern_kc4odvH=withCSS(Component,css,\"framer-Qbx99\");export default Framern_kc4odvH;Framern_kc4odvH.displayName=\"Dialer Logo\";Framern_kc4odvH.defaultProps={height:147,width:147};addPropertyControls(Framern_kc4odvH,{variant:{options:[\"vkVW_i8H9\",\"pYMlXyD67\",\"DZErwHx5C\"],optionTitles:[\"Width - 60%\",\"Width - 80%\",\"Width - 40%\"],title:\"Variant\",type:ControlType.Enum},K73YWsrS4:{title:\"Image Logo\",type:ControlType.ResponsiveImage},xotRNAe7R:{title:\"Link\",type:ControlType.Link}});addFonts(Framern_kc4odvH,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framern_kc4odvH\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"147\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"147\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"K73YWsrS4\\\":\\\"imageLogo\\\",\\\"xotRNAe7R\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pYMlXyD67\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DZErwHx5C\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./n_kc4odvH.map", "// Generated by Framer (575e68f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"LLD5IDcBq\"];const serializationHash=\"framer-vaXI2\";const variantClassNames={LLD5IDcBq:\"framer-v-8d1t0a\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,image,width,...props})=>{var _ref;return{...props,eZqfcBEVe:(_ref=image!==null&&image!==void 0?image:props.eZqfcBEVe)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/3F19fcK9u8cP9fKgD8TWiEqjOUI.svg\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,eZqfcBEVe,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LLD5IDcBq\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fit\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(eZqfcBEVe),...{positionX:\"center\",positionY:\"center\"}},className:cx(serializationHash,...sharedStyleClassNames,\"framer-8d1t0a\",className,classNames),\"data-framer-name\":\"Logo Item\",layoutDependency:layoutDependency,layoutId:\"LLD5IDcBq\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style}})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vaXI2.framer-1vhm709, .framer-vaXI2 .framer-1vhm709 { display: block; }\",\".framer-vaXI2.framer-8d1t0a { height: 42px; overflow: hidden; position: relative; width: 166px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42\n * @framerIntrinsicWidth 166\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"eZqfcBEVe\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZUi4VOj9Z=withCSS(Component,css,\"framer-vaXI2\");export default FramerZUi4VOj9Z;FramerZUi4VOj9Z.displayName=\"Logo item\";FramerZUi4VOj9Z.defaultProps={height:42,width:166};addPropertyControls(FramerZUi4VOj9Z,{eZqfcBEVe:{__defaultAssetReference:\"data:framer/asset-reference,3F19fcK9u8cP9fKgD8TWiEqjOUI.svg?originalFilename=beqom.svg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerZUi4VOj9Z,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZUi4VOj9Z\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"166\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"eZqfcBEVe\\\":\\\"image\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"42\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZUi4VOj9Z.map", "// Generated by Framer (575e68f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-lSlxQ .framer-styles-preset-16txa3c:not(.rich-text-wrapper), .framer-lSlxQ .framer-styles-preset-16txa3c.rich-text-wrapper a { --framer-link-current-text-color: #707070; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #707070; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #707070; --framer-link-text-decoration: underline; }\"];export const className=\"framer-lSlxQ\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4458791)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useRouteElementId,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import ReadmoreButton from\"#framer/local/canvasComponent/MkRNYXF4g/MkRNYXF4g.js\";import DialerLogo from\"#framer/local/canvasComponent/n_kc4odvH/n_kc4odvH.js\";import TalkToSales from\"#framer/local/canvasComponent/O3i_IILHm/O3i_IILHm.js\";import LogoItem from\"#framer/local/canvasComponent/ZUi4VOj9Z/ZUi4VOj9Z.js\";import*as sharedStyle2 from\"#framer/local/css/D3AdDz1yV/D3AdDz1yV.js\";import*as sharedStyle3 from\"#framer/local/css/k4KwAAQ4C/k4KwAAQ4C.js\";import*as sharedStyle1 from\"#framer/local/css/oIpJwqspa/oIpJwqspa.js\";import*as sharedStyle6 from\"#framer/local/css/OSEyQYWt6/OSEyQYWt6.js\";import*as sharedStyle4 from\"#framer/local/css/rdBVR9UcH/rdBVR9UcH.js\";import*as sharedStyle5 from\"#framer/local/css/UitsprZoR/UitsprZoR.js\";import*as sharedStyle from\"#framer/local/css/VtNArlmSk/VtNArlmSk.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const ReadmoreButtonFonts=getFonts(ReadmoreButton);const LogoItemFonts=getFonts(LogoItem);const EmbedFonts=getFonts(Embed);const DialerLogoFonts=getFonts(DialerLogo);const TalkToSalesFonts=getFonts(TalkToSales);const breakpoints={ghvjEAe9L:\"(min-width: 810px) and (max-width: 1099px)\",ux_kL6L0_:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1440px)\",Zl8v1bBm7:\"(min-width: 1100px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-nolN6\";const variantClassNames={ghvjEAe9L:\"framer-v-xjifso\",ux_kL6L0_:\"framer-v-tw2geq\",WQLkyLRf1:\"framer-v-72rtr7\",Zl8v1bBm7:\"framer-v-pulc27\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Smaller Desktop\":\"Zl8v1bBm7\",Desktop:\"WQLkyLRf1\",Phone:\"ux_kL6L0_\",Tablet:\"ghvjEAe9L\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"ghvjEAe9L\",\"ux_kL6L0_\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"ghvjEAe9L\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"ghvjEAe9L\")return false;return true;};const elementId=useRouteElementId(\"I8J4KVfGc\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"btdb4mwts\");const ref2=React.useRef(null);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-94579265-c8f3-4cea-a797-6da87bf85e01, rgb(255, 255, 255)); } @media (max-width: 809px) { html body { background: var(--token-b9f865f2-ccb6-4bb0-8005-285ef41da7ff, rgb(250, 255, 0)); } }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12212cj\",\"data-framer-name\":\"Banner\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uqxyhc\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u66d9a\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sjmfsl\",\"data-framer-name\":\"Content + Form\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v88xgi\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-3d4bf7c7-ca08-45be-8fcf-dc3e220c2958, rgb(23, 23, 23))\"},children:\"Real-Time Call Coaching Platform\"})})},ux_kL6L0_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-3d4bf7c7-ca08-45be-8fcf-dc3e220c2958, rgb(23, 23, 23))\"},children:\"Real-Time Call Coaching Platform\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--token-3d4bf7c7-ca08-45be-8fcf-dc3e220c2958, rgb(23, 23, 23))\"},children:\"Real-Time Call Coaching Platform\"})}),className:\"framer-izpjjk\",fonts:[\"FS;Poppins-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-wsajfq\",\"data-styles-preset\":\"VtNArlmSk\",children:\"Run Remote Call Blitzes That Don\u2019t Suck\"})}),className:\"framer-1akhgtl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d8qyjk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-ptj2k9\",\"data-styles-preset\":\"oIpJwqspa\",children:[\"Clone Your A-Players With \",/*#__PURE__*/_jsx(\"strong\",{children:\"Instant\"}),\" And \",/*#__PURE__*/_jsx(\"strong\",{children:\"Scalable\"}),\" Call Coaching\"]})}),className:\"framer-1shx9r5\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-2dru57 hidden-xjifso hidden-tw2geq\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c7fzhi\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`min(max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 124px) / 2, 1px), 500px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nk6xeu-container\",nodeId:\"KMttKclaG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReadmoreButton,{CYRnxWI90:\"rgba(255, 255, 255, 0)\",height:\"100%\",id:\"KMttKclaG\",JnmikDW_e:{borderColor:\"rgba(23, 23, 23, 0.8)\",borderStyle:\"solid\",borderWidth:3},km4F_Ei13:\"rgba(105, 105, 105, 0.24)\",kyWSt8t0l:\"#interactive\",layoutId:\"KMttKclaG\",OzNXo0Mbh:\"rgb(0, 0, 0)\",rz_ZLvPFK:false,style:{height:\"100%\",width:\"100%\"},VaoBIL7uc:18,width:\"100%\",xmnEulJWs:{borderColor:\"var(--token-3d4bf7c7-ca08-45be-8fcf-dc3e220c2958, rgb(23, 23, 23))\",borderStyle:\"solid\",borderWidth:3},zBToPTHIL:\"Try Interactive Demo\"})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jzs0dg hidden-72rtr7 hidden-pulc27 hidden-tw2geq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:168.5,intrinsicWidth:300,pixelHeight:337,pixelWidth:600,positionX:\"left\",positionY:\"top\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1140px) - 64px, 1000px)`,src:\"https://framerusercontent.com/images/E1hK9QmtVJkeoUswsqktjCFXjv0.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/E1hK9QmtVJkeoUswsqktjCFXjv0.gif?scale-down-to=512 512w,https://framerusercontent.com/images/E1hK9QmtVJkeoUswsqktjCFXjv0.gif 600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:168.5,intrinsicWidth:300,pixelHeight:337,pixelWidth:600,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/E1hK9QmtVJkeoUswsqktjCFXjv0.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/E1hK9QmtVJkeoUswsqktjCFXjv0.gif?scale-down-to=512 512w,https://framerusercontent.com/images/E1hK9QmtVJkeoUswsqktjCFXjv0.gif 600w\"},className:\"framer-15jx13o\",\"data-framer-name\":\"main_gif_lp\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-qdlv29 hidden-xjifso\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ux_kL6L0_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:168.5,intrinsicWidth:300,pixelHeight:337,pixelWidth:600,positionX:\"left\",positionY:\"top\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1140px) - 32px, 1000px)`,src:\"https://framerusercontent.com/images/E1hK9QmtVJkeoUswsqktjCFXjv0.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/E1hK9QmtVJkeoUswsqktjCFXjv0.gif?scale-down-to=512 512w,https://framerusercontent.com/images/E1hK9QmtVJkeoUswsqktjCFXjv0.gif 600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:168.5,intrinsicWidth:300,pixelHeight:337,pixelWidth:600,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 124px) / 2, 1px)`,src:\"https://framerusercontent.com/images/E1hK9QmtVJkeoUswsqktjCFXjv0.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/E1hK9QmtVJkeoUswsqktjCFXjv0.gif?scale-down-to=512 512w,https://framerusercontent.com/images/E1hK9QmtVJkeoUswsqktjCFXjv0.gif 600w\"},className:\"framer-julwhb\",\"data-framer-name\":\"main_gif_lp\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pd1o9s\",\"data-framer-name\":\"Sales Leaders\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-y0cc2x\",\"data-styles-preset\":\"D3AdDz1yV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3d4bf7c7-ca08-45be-8fcf-dc3e220c2958, rgb(23, 23, 23))\"},children:[\"Trusted by \",/*#__PURE__*/_jsx(\"strong\",{children:\"sales leaders\"}),\" and \",/*#__PURE__*/_jsx(\"strong\",{children:\"reps\"}),\" at top sales orgs\"]})}),className:\"framer-13mqk29\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9krhqf\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:40,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 96px) / 2, 50px)`},ux_kL6L0_:{height:40,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 64px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 214px) / 6, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-175sc0z-container\",nodeId:\"Zo17HNCIe\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{eZqfcBEVe:addImageAlt({pixelHeight:40,pixelWidth:150,positionX:\"50%\",positionY:\"50%\",src:\"https://framerusercontent.com/images/3F19fcK9u8cP9fKgD8TWiEqjOUI.svg\"},\"\")}},children:/*#__PURE__*/_jsx(LogoItem,{eZqfcBEVe:addImageAlt({pixelHeight:40,pixelWidth:150,positionX:\"0%\",positionY:\"50%\",src:\"https://framerusercontent.com/images/3F19fcK9u8cP9fKgD8TWiEqjOUI.svg\"},\"\"),height:\"100%\",id:\"Zo17HNCIe\",layoutId:\"Zo17HNCIe\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:40,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 96px) / 2, 50px)`},ux_kL6L0_:{height:40,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 64px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 214px) / 6, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-l35u08-container\",nodeId:\"pEvyRpcoZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LogoItem,{eZqfcBEVe:addImageAlt({pixelHeight:40,pixelWidth:206,src:\"https://framerusercontent.com/images/QOmBHtqYRI1FkX1WQKL4h0Kk.svg\"},\"\"),height:\"100%\",id:\"pEvyRpcoZ\",layoutId:\"pEvyRpcoZ\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:40,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 96px) / 2, 50px)`},ux_kL6L0_:{height:40,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 64px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 214px) / 6, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vz267j-container\",nodeId:\"F2Qo19qsI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LogoItem,{eZqfcBEVe:addImageAlt({pixelHeight:40,pixelWidth:114,src:\"https://framerusercontent.com/images/tvTEVj9HazarADj3rnCGbyEDOpM.svg\"},\"\"),height:\"100%\",id:\"F2Qo19qsI\",layoutId:\"F2Qo19qsI\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:40,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 96px) / 2, 50px)`},ux_kL6L0_:{height:40,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 64px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 214px) / 6, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sdz3gt-container\",nodeId:\"kK7Vl8Odr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LogoItem,{eZqfcBEVe:addImageAlt({pixelHeight:40,pixelWidth:179,src:\"https://framerusercontent.com/images/fufRDosxe3Wg15WsjYfOSiCo.svg\"},\"\"),height:\"100%\",id:\"kK7Vl8Odr\",layoutId:\"kK7Vl8Odr\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:40,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 96px) / 2, 50px)`},ux_kL6L0_:{height:40,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 64px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 214px) / 6, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-j5gr2l-container\",nodeId:\"U1_kHUR9g\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LogoItem,{eZqfcBEVe:addImageAlt({pixelHeight:40,pixelWidth:230,src:\"https://framerusercontent.com/images/bYd8Vuc8QyRwpqxduLSnTe8MYM.svg\"},\"\"),height:\"100%\",id:\"U1_kHUR9g\",layoutId:\"U1_kHUR9g\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:40,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 96px) / 2, 50px)`},ux_kL6L0_:{height:40,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 64px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 214px) / 6, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ruvwq1-container\",nodeId:\"owytPZZnw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LogoItem,{eZqfcBEVe:addImageAlt({pixelHeight:42,pixelWidth:139,src:\"https://framerusercontent.com/images/qSN5vE1tIM6hgkhnniPhU3YvxU.svg\"},\"\"),height:\"100%\",id:\"owytPZZnw\",layoutId:\"owytPZZnw\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-cibkwl hidden-xjifso hidden-tw2geq\",\"data-framer-name\":\"Try the 3-Minute Interactive Demo - Section\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s3oay0\",\"data-framer-name\":\"Wrapper\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yjrb9u\",\"data-framer-name\":\"H2 Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ozhgxj\",\"data-styles-preset\":\"k4KwAAQ4C\",children:\"Try the 3-Minute Interactive Demo\"})}),className:\"framer-12ih4ci\",\"data-framer-name\":\"H2 - Try the 3-Minute Interactive Demo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t0v2gf-container\",isModuleExternal:true,nodeId:\"dlibiMUkd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"dlibiMUkd\",layoutId:\"dlibiMUkd\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://app.callblitz.com/interactive-demo\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1quglzn\",\"data-framer-name\":\"Remote Call Blitzes Made Easy - Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bprm7u\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ozhgxj\",\"data-styles-preset\":\"k4KwAAQ4C\",style:{\"--framer-text-alignment\":\"left\"},children:\"Remote Call Blitzes Made Easy\"})})},ux_kL6L0_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ozhgxj\",\"data-styles-preset\":\"k4KwAAQ4C\",style:{\"--framer-text-alignment\":\"left\"},children:\"Remote Call Blitzes Made Easy\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ozhgxj\",\"data-styles-preset\":\"k4KwAAQ4C\",children:\"Remote Call Blitzes Made Easy\"})}),className:\"framer-1iwy19c\",\"data-framer-name\":\"H2 - Remove Call...\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d3uq28\",\"data-framer-name\":\"Be Together\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tjaxtn\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1aeesgw\",\"data-framer-name\":\"blitzed\",fill:\"black\",intrinsicHeight:71,intrinsicWidth:71,svg:'<svg width=\"71\" height=\"71\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"71\" height=\"71\" rx=\"6\" fill=\"#FAFF00\"/><path d=\"M36.458 14.083c-.83-.24-1.805.034-2.371.923L19.333 38.19c-.893 1.402.115 3.227 1.778 3.227h12.646v12.646c0 2.108 2.754 2.898 3.886 1.12l14.754-23.185c.893-1.401-.115-3.227-1.778-3.227H37.973V16.125c0-1.054-.685-1.8-1.515-2.042Z\" fill=\"#171717\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5gz185\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ozhgxj\",\"data-styles-preset\":\"k4KwAAQ4C\",children:\"Be Together\"})}),className:\"framer-z07ivt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w99a2b\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-ptj2k9\",\"data-styles-preset\":\"oIpJwqspa\",style:{\"--framer-text-color\":\"var(--token-1691ddf3-69d2-4e17-bef3-691be5e36d50, rgb(73, 73, 73))\"},children:[\"Get the best of both worlds - \",/*#__PURE__*/_jsx(\"strong\",{children:\"remote work\"}),\" and the unbeatable \",/*#__PURE__*/_jsx(\"strong\",{children:\"energy of a sales floor\"}),\".\"]})}),className:\"framer-1dgz8iu\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t787kc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-ptj2k9\",\"data-styles-preset\":\"oIpJwqspa\",style:{\"--framer-text-color\":\"var(--token-1691ddf3-69d2-4e17-bef3-691be5e36d50, rgb(73, 73, 73))\"},children:[\"All of the \",/*#__PURE__*/_jsx(\"strong\",{children:\"familiar essentials\"}),\" from your existing video conferencing tool.\"]})}),className:\"framer-15tx0m3\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ezsfqd\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dowzzs\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-134spuo\",\"data-framer-name\":\"round_check\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:40,svg:'<svg width=\"40\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M18.198.072c-2.383.226-5.047.984-7.11 2.023-2.133 1.078-4.367 2.782-5.898 4.5C2.19 9.97.487 13.87.073 18.306c-.32 3.485.43 7.414 2.03 10.586 1.079 2.133 2.782 4.367 4.5 5.899 3.376 3 7.274 4.703 11.712 5.117 3.484.32 7.414-.43 10.586-2.031 2.133-1.079 4.367-2.782 5.898-4.5 3-3.375 4.703-7.274 5.117-11.711.32-3.485-.43-7.414-2.03-10.586-1.079-2.133-2.782-4.367-4.5-5.899-3.376-3-7.274-4.703-11.712-5.117-.976-.086-2.5-.086-3.476.008Zm12.351 14.062c1.532 1.672 1.57 1.727 1.43 1.86-.086.078-3.258 2.968-7.063 6.414-3.804 3.453-7.015 6.367-7.132 6.476l-.22.196-4.366-4.367-4.375-4.376 1.656-1.656 1.664-1.664 2.781 2.781c1.532 1.532 2.82 2.766 2.852 2.743a852.52 852.52 0 0 0 5.617-5.086c3.055-2.774 5.555-5.047 5.563-5.047.007 0 .726.773 1.593 1.726Z\" fill=\"#000\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-ptj2k9\",\"data-styles-preset\":\"oIpJwqspa\",style:{\"--framer-text-color\":\"var(--token-1691ddf3-69d2-4e17-bef3-691be5e36d50, rgb(73, 73, 73))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Short learning curve\"}),\" for your reps - it\u2019s just like Zoom/Google Meet/MS Teams.\"]})}),className:\"framer-1mm349k\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m4klq\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-wsim5j\",\"data-framer-name\":\"round_check\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:40,svg:'<svg width=\"40\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M18.198.072c-2.383.226-5.047.984-7.11 2.023-2.133 1.078-4.367 2.782-5.898 4.5C2.19 9.97.487 13.87.073 18.306c-.32 3.485.43 7.414 2.03 10.586 1.079 2.133 2.782 4.367 4.5 5.899 3.376 3 7.274 4.703 11.712 5.117 3.484.32 7.414-.43 10.586-2.031 2.133-1.079 4.367-2.782 5.898-4.5 3-3.375 4.703-7.274 5.117-11.711.32-3.485-.43-7.414-2.03-10.586-1.079-2.133-2.782-4.367-4.5-5.899-3.376-3-7.274-4.703-11.712-5.117-.976-.086-2.5-.086-3.476.008Zm12.351 14.062c1.532 1.672 1.57 1.727 1.43 1.86-.086.078-3.258 2.968-7.063 6.414-3.804 3.453-7.015 6.367-7.132 6.476l-.22.196-4.366-4.367-4.375-4.376 1.656-1.656 1.664-1.664 2.781 2.781c1.532 1.532 2.82 2.766 2.852 2.743a852.52 852.52 0 0 0 5.617-5.086c3.055-2.774 5.555-5.047 5.563-5.047.007 0 .726.773 1.593 1.726Z\" fill=\"#000\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-ptj2k9\",\"data-styles-preset\":\"oIpJwqspa\",style:{\"--framer-text-color\":\"var(--token-1691ddf3-69d2-4e17-bef3-691be5e36d50, rgb(73, 73, 73))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Feels like being in office.\"}),\" Need to grab a rep for a quick 1-on-1? Use the breakout rooms feature.\"]})}),className:\"framer-16fm1v5\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wqhybe\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{background:{alt:\"\",fit:\"fill\",pixelHeight:600,pixelWidth:660,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1204px) - 64px, 1px)`,src:\"https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png\",srcSet:\"https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png?scale-down-to=512 512w,https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png 660w\"}},ux_kL6L0_:{background:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:600,pixelWidth:660,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 124px) / 2, 1px)`,src:\"https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png\",srcSet:\"https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png?scale-down-to=512 512w,https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png 660w\"},className:\"framer-5j3lry\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:539,intrinsicWidth:960,pixelHeight:539,pixelWidth:960,sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1204px) - 64px, 1px) - 56px, 1000px)`,src:\"https://framerusercontent.com/images/kndTfcnujxvkS7HOru72IfT8pg.gif\",srcSet:\"https://framerusercontent.com/images/kndTfcnujxvkS7HOru72IfT8pg.gif?scale-down-to=512 512w,https://framerusercontent.com/images/kndTfcnujxvkS7HOru72IfT8pg.gif 960w\"}},ux_kL6L0_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:539,intrinsicWidth:960,pixelHeight:539,pixelWidth:960,sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1204px) - 32px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/kndTfcnujxvkS7HOru72IfT8pg.gif\",srcSet:\"https://framerusercontent.com/images/kndTfcnujxvkS7HOru72IfT8pg.gif?scale-down-to=512 512w,https://framerusercontent.com/images/kndTfcnujxvkS7HOru72IfT8pg.gif 960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:539,intrinsicWidth:960,pixelHeight:539,pixelWidth:960,sizes:`min(max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 124px) / 2, 1px) - 56px, 1000px)`,src:\"https://framerusercontent.com/images/kndTfcnujxvkS7HOru72IfT8pg.gif\",srcSet:\"https://framerusercontent.com/images/kndTfcnujxvkS7HOru72IfT8pg.gif?scale-down-to=512 512w,https://framerusercontent.com/images/kndTfcnujxvkS7HOru72IfT8pg.gif 960w\"},className:\"framer-hvvpsi\",\"data-framer-name\":\"be_together\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jg2vk4\",\"data-framer-name\":\"Dial Together\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ug6fkj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{background:{alt:\"\",fit:\"fill\",pixelHeight:600,pixelWidth:660,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1204px) - 64px, 1px)`,src:\"https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png\",srcSet:\"https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png?scale-down-to=512 512w,https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png 660w\"}},ux_kL6L0_:{background:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:600,pixelWidth:660,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 124px) / 2, 1px)`,src:\"https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png\",srcSet:\"https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png?scale-down-to=512 512w,https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png 660w\"},className:\"framer-n0q9oy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:592,intrinsicWidth:960,pixelHeight:592,pixelWidth:960,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1204px) - 64px, 1px) - 56px)`,src:\"https://framerusercontent.com/images/o0HwEx9tzcjuuXF9WLbRKqgtwc.gif\",srcSet:\"https://framerusercontent.com/images/o0HwEx9tzcjuuXF9WLbRKqgtwc.gif?scale-down-to=512 512w,https://framerusercontent.com/images/o0HwEx9tzcjuuXF9WLbRKqgtwc.gif 960w\"}},ux_kL6L0_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:592,intrinsicWidth:960,pixelHeight:592,pixelWidth:960,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1204px) - 32px, 1px)`,src:\"https://framerusercontent.com/images/o0HwEx9tzcjuuXF9WLbRKqgtwc.gif\",srcSet:\"https://framerusercontent.com/images/o0HwEx9tzcjuuXF9WLbRKqgtwc.gif?scale-down-to=512 512w,https://framerusercontent.com/images/o0HwEx9tzcjuuXF9WLbRKqgtwc.gif 960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:592,intrinsicWidth:960,pixelHeight:592,pixelWidth:960,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 124px) / 2, 1px) - 56px)`,src:\"https://framerusercontent.com/images/o0HwEx9tzcjuuXF9WLbRKqgtwc.gif\",srcSet:\"https://framerusercontent.com/images/o0HwEx9tzcjuuXF9WLbRKqgtwc.gif?scale-down-to=512 512w,https://framerusercontent.com/images/o0HwEx9tzcjuuXF9WLbRKqgtwc.gif 960w\"},className:\"framer-1qinwd1\",\"data-framer-name\":\"dial_together\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15jnnwk\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-md1bj4\",\"data-framer-name\":\"blitzed\",fill:\"black\",intrinsicHeight:71,intrinsicWidth:71,svg:'<svg width=\"71\" height=\"71\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"71\" height=\"71\" rx=\"6\" fill=\"#FAFF00\"/><path d=\"M36.458 14.083c-.83-.24-1.805.034-2.371.923L19.333 38.19c-.893 1.402.115 3.227 1.778 3.227h12.646v12.646c0 2.108 2.754 2.898 3.886 1.12l14.754-23.185c.893-1.401-.115-3.227-1.778-3.227H37.973V16.125c0-1.054-.685-1.8-1.515-2.042Z\" fill=\"#171717\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tdwm6z\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ozhgxj\",\"data-styles-preset\":\"k4KwAAQ4C\",children:\"Dial Together\"})}),className:\"framer-1m6wp9c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vfn9ml\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-ptj2k9\",\"data-styles-preset\":\"oIpJwqspa\",style:{\"--framer-text-color\":\"var(--token-1691ddf3-69d2-4e17-bef3-691be5e36d50, rgb(73, 73, 73))\"},children:[\"Our real-time integration with your dialer enables all of your \",/*#__PURE__*/_jsx(\"strong\",{children:\"reps to dial at the same time\"}),\" without disrupting each other.\"]})}),className:\"framer-1dld6j3\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vzpcv1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-ptj2k9\",\"data-styles-preset\":\"oIpJwqspa\",style:{\"--framer-text-color\":\"var(--token-1691ddf3-69d2-4e17-bef3-691be5e36d50, rgb(73, 73, 73))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Maximize the productivity\"}),\" of your remote call blitzes.\"]})}),className:\"framer-1qtusbg\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14m64l2\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vass9d\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-12qzvml\",\"data-framer-name\":\"round_check\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:40,svg:'<svg width=\"40\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M18.198.072c-2.383.226-5.047.984-7.11 2.023-2.133 1.078-4.367 2.782-5.898 4.5C2.19 9.97.487 13.87.073 18.306c-.32 3.485.43 7.414 2.03 10.586 1.079 2.133 2.782 4.367 4.5 5.899 3.376 3 7.274 4.703 11.712 5.117 3.484.32 7.414-.43 10.586-2.031 2.133-1.079 4.367-2.782 5.898-4.5 3-3.375 4.703-7.274 5.117-11.711.32-3.485-.43-7.414-2.03-10.586-1.079-2.133-2.782-4.367-4.5-5.899-3.376-3-7.274-4.703-11.712-5.117-.976-.086-2.5-.086-3.476.008Zm12.351 14.062c1.532 1.672 1.57 1.727 1.43 1.86-.086.078-3.258 2.968-7.063 6.414-3.804 3.453-7.015 6.367-7.132 6.476l-.22.196-4.366-4.367-4.375-4.376 1.656-1.656 1.664-1.664 2.781 2.781c1.532 1.532 2.82 2.766 2.852 2.743a852.52 852.52 0 0 0 5.617-5.086c3.055-2.774 5.555-5.047 5.563-5.047.007 0 .726.773 1.593 1.726Z\" fill=\"#000\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-ptj2k9\",\"data-styles-preset\":\"oIpJwqspa\",style:{\"--framer-text-color\":\"var(--token-1691ddf3-69d2-4e17-bef3-691be5e36d50, rgb(73, 73, 73))\"},children:[\"No more dialing one at a time, no more manual muting/unmuting. \",/*#__PURE__*/_jsx(\"strong\",{children:\"It\u2019s all automated by CallBlitz.\"})]})}),className:\"framer-15ws16p\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vcd4ys\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-h8iwzn\",\"data-framer-name\":\"round_check\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:40,svg:'<svg width=\"40\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M18.198.072c-2.383.226-5.047.984-7.11 2.023-2.133 1.078-4.367 2.782-5.898 4.5C2.19 9.97.487 13.87.073 18.306c-.32 3.485.43 7.414 2.03 10.586 1.079 2.133 2.782 4.367 4.5 5.899 3.376 3 7.274 4.703 11.712 5.117 3.484.32 7.414-.43 10.586-2.031 2.133-1.079 4.367-2.782 5.898-4.5 3-3.375 4.703-7.274 5.117-11.711.32-3.485-.43-7.414-2.03-10.586-1.079-2.133-2.782-4.367-4.5-5.899-3.376-3-7.274-4.703-11.712-5.117-.976-.086-2.5-.086-3.476.008Zm12.351 14.062c1.532 1.672 1.57 1.727 1.43 1.86-.086.078-3.258 2.968-7.063 6.414-3.804 3.453-7.015 6.367-7.132 6.476l-.22.196-4.366-4.367-4.375-4.376 1.656-1.656 1.664-1.664 2.781 2.781c1.532 1.532 2.82 2.766 2.852 2.743a852.52 852.52 0 0 0 5.617-5.086c3.055-2.774 5.555-5.047 5.563-5.047.007 0 .726.773 1.593 1.726Z\" fill=\"#000\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-ptj2k9\",\"data-styles-preset\":\"oIpJwqspa\",style:{\"--framer-text-color\":\"var(--token-1691ddf3-69d2-4e17-bef3-691be5e36d50, rgb(73, 73, 73))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"ZERO change to how your reps dial.\"}),\" We fit right into their workflow. No extra clicks during call blocks.\"]})}),className:\"framer-1u16sfs\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fhlz9z\",\"data-framer-name\":\" Coach Effectively\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mj3pyi\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-vc5a9g\",\"data-framer-name\":\"blitzed\",fill:\"black\",intrinsicHeight:71,intrinsicWidth:71,svg:'<svg width=\"71\" height=\"71\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"71\" height=\"71\" rx=\"6\" fill=\"#FAFF00\"/><path d=\"M36.458 14.083c-.83-.24-1.805.034-2.371.923L19.333 38.19c-.893 1.402.115 3.227 1.778 3.227h12.646v12.646c0 2.108 2.754 2.898 3.886 1.12l14.754-23.185c.893-1.401-.115-3.227-1.778-3.227H37.973V16.125c0-1.054-.685-1.8-1.515-2.042Z\" fill=\"#171717\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t3dl2p\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ozhgxj\",\"data-styles-preset\":\"k4KwAAQ4C\",children:\"Coach Effectively\"})}),className:\"framer-1l5ye7t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8jlmfc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-ptj2k9\",\"data-styles-preset\":\"oIpJwqspa\",style:{\"--framer-text-color\":\"var(--token-1691ddf3-69d2-4e17-bef3-691be5e36d50, rgb(73, 73, 73))\"},children:[\"Real-time, right in the moment, make those lessons stick. Capitalize on all \",/*#__PURE__*/_jsx(\"strong\",{children:\"one-to-one\"}),\" and \",/*#__PURE__*/_jsx(\"strong\",{children:\"one-to-many\"}),\" coachable moments.\"]})}),className:\"framer-1k6sy3l\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zj9f9e\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i8r7h2\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-lncdq8\",\"data-framer-name\":\"round_check\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:40,svg:'<svg width=\"40\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M18.198.072c-2.383.226-5.047.984-7.11 2.023-2.133 1.078-4.367 2.782-5.898 4.5C2.19 9.97.487 13.87.073 18.306c-.32 3.485.43 7.414 2.03 10.586 1.079 2.133 2.782 4.367 4.5 5.899 3.376 3 7.274 4.703 11.712 5.117 3.484.32 7.414-.43 10.586-2.031 2.133-1.079 4.367-2.782 5.898-4.5 3-3.375 4.703-7.274 5.117-11.711.32-3.485-.43-7.414-2.03-10.586-1.079-2.133-2.782-4.367-4.5-5.899-3.376-3-7.274-4.703-11.712-5.117-.976-.086-2.5-.086-3.476.008Zm12.351 14.062c1.532 1.672 1.57 1.727 1.43 1.86-.086.078-3.258 2.968-7.063 6.414-3.804 3.453-7.015 6.367-7.132 6.476l-.22.196-4.366-4.367-4.375-4.376 1.656-1.656 1.664-1.664 2.781 2.781c1.532 1.532 2.82 2.766 2.852 2.743a852.52 852.52 0 0 0 5.617-5.086c3.055-2.774 5.555-5.047 5.563-5.047.007 0 .726.773 1.593 1.726Z\" fill=\"#000\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-ptj2k9\",\"data-styles-preset\":\"oIpJwqspa\",style:{\"--framer-text-color\":\"var(--token-1691ddf3-69d2-4e17-bef3-691be5e36d50, rgb(73, 73, 73))\"},children:[\"While the rep\u2019s on a call send instant \",/*#__PURE__*/_jsx(\"strong\",{children:\"written coaching messages\"}),\" to the rep\u2019s screen or \",/*#__PURE__*/_jsx(\"strong\",{children:\"whisper\"}),\".\"]})}),className:\"framer-1et1is6\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m45ily\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-614vhv\",\"data-framer-name\":\"round_check\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:40,svg:'<svg width=\"40\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M18.198.072c-2.383.226-5.047.984-7.11 2.023-2.133 1.078-4.367 2.782-5.898 4.5C2.19 9.97.487 13.87.073 18.306c-.32 3.485.43 7.414 2.03 10.586 1.079 2.133 2.782 4.367 4.5 5.899 3.376 3 7.274 4.703 11.712 5.117 3.484.32 7.414-.43 10.586-2.031 2.133-1.079 4.367-2.782 5.898-4.5 3-3.375 4.703-7.274 5.117-11.711.32-3.485-.43-7.414-2.03-10.586-1.079-2.133-2.782-4.367-4.5-5.899-3.376-3-7.274-4.703-11.712-5.117-.976-.086-2.5-.086-3.476.008Zm12.351 14.062c1.532 1.672 1.57 1.727 1.43 1.86-.086.078-3.258 2.968-7.063 6.414-3.804 3.453-7.015 6.367-7.132 6.476l-.22.196-4.366-4.367-4.375-4.376 1.656-1.656 1.664-1.664 2.781 2.781c1.532 1.532 2.82 2.766 2.852 2.743a852.52 852.52 0 0 0 5.617-5.086c3.055-2.774 5.555-5.047 5.563-5.047.007 0 .726.773 1.593 1.726Z\" fill=\"#000\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-ptj2k9\",\"data-styles-preset\":\"oIpJwqspa\",style:{\"--framer-text-color\":\"var(--token-1691ddf3-69d2-4e17-bef3-691be5e36d50, rgb(73, 73, 73))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Speak with voice\"}),\" to any other reps shadowing a call alongside you. No disruption to the caller.\"]})}),className:\"framer-3431s8\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17z6hmr\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1d0rncw\",\"data-framer-name\":\"round_check\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:40,svg:'<svg width=\"40\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M18.198.072c-2.383.226-5.047.984-7.11 2.023-2.133 1.078-4.367 2.782-5.898 4.5C2.19 9.97.487 13.87.073 18.306c-.32 3.485.43 7.414 2.03 10.586 1.079 2.133 2.782 4.367 4.5 5.899 3.376 3 7.274 4.703 11.712 5.117 3.484.32 7.414-.43 10.586-2.031 2.133-1.079 4.367-2.782 5.898-4.5 3-3.375 4.703-7.274 5.117-11.711.32-3.485-.43-7.414-2.03-10.586-1.079-2.133-2.782-4.367-4.5-5.899-3.376-3-7.274-4.703-11.712-5.117-.976-.086-2.5-.086-3.476.008Zm12.351 14.062c1.532 1.672 1.57 1.727 1.43 1.86-.086.078-3.258 2.968-7.063 6.414-3.804 3.453-7.015 6.367-7.132 6.476l-.22.196-4.366-4.367-4.375-4.376 1.656-1.656 1.664-1.664 2.781 2.781c1.532 1.532 2.82 2.766 2.852 2.743a852.52 852.52 0 0 0 5.617-5.086c3.055-2.774 5.555-5.047 5.563-5.047.007 0 .726.773 1.593 1.726Z\" fill=\"#000\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-ptj2k9\",\"data-styles-preset\":\"oIpJwqspa\",style:{\"--framer-text-color\":\"var(--token-1691ddf3-69d2-4e17-bef3-691be5e36d50, rgb(73, 73, 73))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Debrief a call\"}),\" after it\u2019s over in an isolated audio room with the caller and any other reps that were listening.\"]})}),className:\"framer-16kgfk0\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-44bafg\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1nuanzg\",\"data-framer-name\":\"round_check\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:40,svg:'<svg width=\"40\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M18.198.072c-2.383.226-5.047.984-7.11 2.023-2.133 1.078-4.367 2.782-5.898 4.5C2.19 9.97.487 13.87.073 18.306c-.32 3.485.43 7.414 2.03 10.586 1.079 2.133 2.782 4.367 4.5 5.899 3.376 3 7.274 4.703 11.712 5.117 3.484.32 7.414-.43 10.586-2.031 2.133-1.079 4.367-2.782 5.898-4.5 3-3.375 4.703-7.274 5.117-11.711.32-3.485-.43-7.414-2.03-10.586-1.079-2.133-2.782-4.367-4.5-5.899-3.376-3-7.274-4.703-11.712-5.117-.976-.086-2.5-.086-3.476.008Zm12.351 14.062c1.532 1.672 1.57 1.727 1.43 1.86-.086.078-3.258 2.968-7.063 6.414-3.804 3.453-7.015 6.367-7.132 6.476l-.22.196-4.366-4.367-4.375-4.376 1.656-1.656 1.664-1.664 2.781 2.781c1.532 1.532 2.82 2.766 2.852 2.743a852.52 852.52 0 0 0 5.617-5.086c3.055-2.774 5.555-5.047 5.563-5.047.007 0 .726.773 1.593 1.726Z\" fill=\"#000\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-ptj2k9\",\"data-styles-preset\":\"oIpJwqspa\",style:{\"--framer-text-color\":\"var(--token-1691ddf3-69d2-4e17-bef3-691be5e36d50, rgb(73, 73, 73))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Post-blitz coaching\"}),\" - store & tag call recordings and build a library of best practices.\"]})}),className:\"framer-1o93uti\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15mzw63\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{background:{alt:\"\",fit:\"fill\",pixelHeight:600,pixelWidth:660,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1204px) - 64px, 1px)`,src:\"https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png\",srcSet:\"https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png?scale-down-to=512 512w,https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png 660w\"}},ux_kL6L0_:{background:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:600,pixelWidth:660,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 124px) / 2, 1px)`,src:\"https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png\",srcSet:\"https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png?scale-down-to=512 512w,https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png 660w\"},className:\"framer-17s2rw8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:336,intrinsicWidth:600,pixelHeight:336,pixelWidth:600,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1204px) - 64px, 1px) - 56px)`,src:\"https://framerusercontent.com/images/h2CXmLjDlqQPurGhyGBVu9wsUo.gif\",srcSet:\"https://framerusercontent.com/images/h2CXmLjDlqQPurGhyGBVu9wsUo.gif?scale-down-to=512 512w,https://framerusercontent.com/images/h2CXmLjDlqQPurGhyGBVu9wsUo.gif 600w\"}},ux_kL6L0_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:336,intrinsicWidth:600,pixelHeight:336,pixelWidth:600,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1204px) - 32px, 1px)`,src:\"https://framerusercontent.com/images/h2CXmLjDlqQPurGhyGBVu9wsUo.gif\",srcSet:\"https://framerusercontent.com/images/h2CXmLjDlqQPurGhyGBVu9wsUo.gif?scale-down-to=512 512w,https://framerusercontent.com/images/h2CXmLjDlqQPurGhyGBVu9wsUo.gif 600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:336,intrinsicWidth:600,pixelHeight:336,pixelWidth:600,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 124px) / 2, 1px) - 56px)`,src:\"https://framerusercontent.com/images/h2CXmLjDlqQPurGhyGBVu9wsUo.gif\",srcSet:\"https://framerusercontent.com/images/h2CXmLjDlqQPurGhyGBVu9wsUo.gif?scale-down-to=512 512w,https://framerusercontent.com/images/h2CXmLjDlqQPurGhyGBVu9wsUo.gif 600w\"},className:\"framer-9khhly\",\"data-framer-name\":\"coach_effectively\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ps2un1\",\"data-framer-name\":\" Build The Right Culture \",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mpnxz2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{background:{alt:\"\",fit:\"fill\",pixelHeight:600,pixelWidth:660,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1204px) - 64px, 1px)`,src:\"https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png\",srcSet:\"https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png?scale-down-to=512 512w,https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png 660w\"}},ux_kL6L0_:{background:{alt:\"\",fit:\"fill\",pixelHeight:600,pixelWidth:660,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1204px) - 32px, 1px)`,src:\"https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png\",srcSet:\"https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png?scale-down-to=512 512w,https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png 660w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:600,pixelWidth:660,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 124px) / 2, 1px)`,src:\"https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png\",srcSet:\"https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png?scale-down-to=512 512w,https://framerusercontent.com/images/FASnUxZVpnqQmfmbmXCnYC1A.png 660w\"},className:\"framer-ib4m43\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:339,intrinsicWidth:600,pixelHeight:339,pixelWidth:600,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1204px) - 64px, 1px) - 56px)`,src:\"https://framerusercontent.com/images/2QQOyIyJGFbWPEMkU87XaFDaA24.gif\",srcSet:\"https://framerusercontent.com/images/2QQOyIyJGFbWPEMkU87XaFDaA24.gif?scale-down-to=512 512w,https://framerusercontent.com/images/2QQOyIyJGFbWPEMkU87XaFDaA24.gif 600w\"}},ux_kL6L0_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:339,intrinsicWidth:600,pixelHeight:339,pixelWidth:600,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1204px) - 32px, 1px)`,src:\"https://framerusercontent.com/images/2QQOyIyJGFbWPEMkU87XaFDaA24.gif\",srcSet:\"https://framerusercontent.com/images/2QQOyIyJGFbWPEMkU87XaFDaA24.gif?scale-down-to=512 512w,https://framerusercontent.com/images/2QQOyIyJGFbWPEMkU87XaFDaA24.gif 600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:339,intrinsicWidth:600,pixelHeight:339,pixelWidth:600,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 124px) / 2, 1px) - 56px)`,src:\"https://framerusercontent.com/images/2QQOyIyJGFbWPEMkU87XaFDaA24.gif\",srcSet:\"https://framerusercontent.com/images/2QQOyIyJGFbWPEMkU87XaFDaA24.gif?scale-down-to=512 512w,https://framerusercontent.com/images/2QQOyIyJGFbWPEMkU87XaFDaA24.gif 600w\"},className:\"framer-1875w6j\",\"data-framer-name\":\"build_culture\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bbo60o\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1c1hxyy\",\"data-framer-name\":\"blitzed\",fill:\"black\",intrinsicHeight:71,intrinsicWidth:71,svg:'<svg width=\"71\" height=\"71\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"71\" height=\"71\" rx=\"6\" fill=\"#FAFF00\"/><path d=\"M36.458 14.083c-.83-.24-1.805.034-2.371.923L19.333 38.19c-.893 1.402.115 3.227 1.778 3.227h12.646v12.646c0 2.108 2.754 2.898 3.886 1.12l14.754-23.185c.893-1.401-.115-3.227-1.778-3.227H37.973V16.125c0-1.054-.685-1.8-1.515-2.042Z\" fill=\"#171717\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zmnw4c\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ozhgxj\",\"data-styles-preset\":\"k4KwAAQ4C\",style:{\"--framer-text-alignment\":\"left\"},children:\"Build The Right Culture\"})}),className:\"framer-197y9jl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4b57og\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ptj2k9\",\"data-styles-preset\":\"oIpJwqspa\",style:{\"--framer-text-color\":\"var(--token-1691ddf3-69d2-4e17-bef3-691be5e36d50, rgb(73, 73, 73))\"},children:\"Cultivate an environment where cold calling is FUN. Because we all know - reps that dial more are reps that book more meetings & build more pipe.\"})}),className:\"framer-15cm1ew\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-62hgan\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11rwsix\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-11woke\",\"data-framer-name\":\"round_check\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:40,svg:'<svg width=\"40\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M18.198.072c-2.383.226-5.047.984-7.11 2.023-2.133 1.078-4.367 2.782-5.898 4.5C2.19 9.97.487 13.87.073 18.306c-.32 3.485.43 7.414 2.03 10.586 1.079 2.133 2.782 4.367 4.5 5.899 3.376 3 7.274 4.703 11.712 5.117 3.484.32 7.414-.43 10.586-2.031 2.133-1.079 4.367-2.782 5.898-4.5 3-3.375 4.703-7.274 5.117-11.711.32-3.485-.43-7.414-2.03-10.586-1.079-2.133-2.782-4.367-4.5-5.899-3.376-3-7.274-4.703-11.712-5.117-.976-.086-2.5-.086-3.476.008Zm12.351 14.062c1.532 1.672 1.57 1.727 1.43 1.86-.086.078-3.258 2.968-7.063 6.414-3.804 3.453-7.015 6.367-7.132 6.476l-.22.196-4.366-4.367-4.375-4.376 1.656-1.656 1.664-1.664 2.781 2.781c1.532 1.532 2.82 2.766 2.852 2.743a852.52 852.52 0 0 0 5.617-5.086c3.055-2.774 5.555-5.047 5.563-5.047.007 0 .726.773 1.593 1.726Z\" fill=\"#000\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-ptj2k9\",\"data-styles-preset\":\"oIpJwqspa\",style:{\"--framer-text-color\":\"var(--token-1691ddf3-69d2-4e17-bef3-691be5e36d50, rgb(73, 73, 73))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"GIFs\"}),\" - because every sales floor needs some hype\"]})}),className:\"framer-146t6k3\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xchflp\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1hg96op\",\"data-framer-name\":\"round_check\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:40,svg:'<svg width=\"40\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M18.198.072c-2.383.226-5.047.984-7.11 2.023-2.133 1.078-4.367 2.782-5.898 4.5C2.19 9.97.487 13.87.073 18.306c-.32 3.485.43 7.414 2.03 10.586 1.079 2.133 2.782 4.367 4.5 5.899 3.376 3 7.274 4.703 11.712 5.117 3.484.32 7.414-.43 10.586-2.031 2.133-1.079 4.367-2.782 5.898-4.5 3-3.375 4.703-7.274 5.117-11.711.32-3.485-.43-7.414-2.03-10.586-1.079-2.133-2.782-4.367-4.5-5.899-3.376-3-7.274-4.703-11.712-5.117-.976-.086-2.5-.086-3.476.008Zm12.351 14.062c1.532 1.672 1.57 1.727 1.43 1.86-.086.078-3.258 2.968-7.063 6.414-3.804 3.453-7.015 6.367-7.132 6.476l-.22.196-4.366-4.367-4.375-4.376 1.656-1.656 1.664-1.664 2.781 2.781c1.532 1.532 2.82 2.766 2.852 2.743a852.52 852.52 0 0 0 5.617-5.086c3.055-2.774 5.555-5.047 5.563-5.047.007 0 .726.773 1.593 1.726Z\" fill=\"#000\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-ptj2k9\",\"data-styles-preset\":\"oIpJwqspa\",style:{\"--framer-text-color\":\"var(--token-1691ddf3-69d2-4e17-bef3-691be5e36d50, rgb(73, 73, 73))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Drive friendly competition\"}),\" among your reps with a live leaderboard\"]})}),className:\"framer-xy7ox9\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rmu2ni\",\"data-framer-name\":\"Build Your A-Team - Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-anaexi\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5nmqu\",\"data-framer-name\":\"H2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ozhgxj\",\"data-styles-preset\":\"k4KwAAQ4C\",style:{\"--framer-text-alignment\":\"left\"},children:\"Build Your A-Team\"})})},ux_kL6L0_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ozhgxj\",\"data-styles-preset\":\"k4KwAAQ4C\",style:{\"--framer-text-alignment\":\"left\"},children:\"Build Your A-Team\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ozhgxj\",\"data-styles-preset\":\"k4KwAAQ4C\",children:\"Build Your A-Team\"})}),className:\"framer-1jwtjjr\",\"data-framer-name\":\"H2 -  Build Your A-Team\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6pf5tz\",\"data-framer-name\":\"Without/With CallBlitz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i84u05\",\"data-framer-name\":\"Side\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19vqhds\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ozhgxj\",\"data-styles-preset\":\"k4KwAAQ4C\",style:{\"--framer-text-alignment\":\"center\"},children:\"Without CallBlitz\"})}),className:\"framer-1imlasb\",\"data-framer-name\":\"H3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t0pchs\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d60rpo\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ah4pu5\",\"data-framer-name\":\"Emoji\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28px\"},children:\"\uD83D\uDE14\"})})},ux_kL6L0_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28px\"},children:\"\uD83D\uDE14\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"44px\"},children:\"\uD83D\uDE14\"})}),className:\"framer-crgibe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-18qdu9d\",\"data-styles-preset\":\"rdBVR9UcH\",children:[\"Reps dial alone\",/*#__PURE__*/_jsx(\"strong\",{children:\" during call blocks\"})]})}),className:\"framer-1a55h00\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ssv9am\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e6yxf4\",\"data-framer-name\":\"Emoji\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28px\"},children:\"\uD83D\uDCA9\"})})},ux_kL6L0_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28px\"},children:\"\uD83D\uDCA9\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"44px\"},children:\"\uD83D\uDCA9\"})}),className:\"framer-lrcjv2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-18qdu9d\",\"data-styles-preset\":\"rdBVR9UcH\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Reps call \"}),\"bad numbers on purpose\",/*#__PURE__*/_jsx(\"strong\",{children:\" to hit activity targets\"})]})}),className:\"framer-put1f3\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kku725\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-r1xm7e\",\"data-framer-name\":\"Emoji\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28px\"},children:\"\u2753\"})})},ux_kL6L0_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28px\"},children:\"\u2753\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"44px\"},children:\"\u2753\"})}),className:\"framer-13pj93x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-18qdu9d\",\"data-styles-preset\":\"rdBVR9UcH\",children:[\"Bad practices\",/*#__PURE__*/_jsx(\"strong\",{children:\" go unchecked\"})]})}),className:\"framer-113ebqh\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nj1ymy\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-h5gzv2\",\"data-framer-name\":\"Emoji\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28px\"},children:\"\uD83E\uDD26\uD83C\uDFFB\u200D\u2642\uFE0F\"})})},ux_kL6L0_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28px\"},children:\"\uD83E\uDD26\uD83C\uDFFB\u200D\u2642\uFE0F\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"44px\"},children:\"\uD83E\uDD26\uD83C\uDFFB\u200D\u2642\uFE0F\"})}),className:\"framer-lyxm74\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-18qdu9d\",\"data-styles-preset\":\"rdBVR9UcH\",children:[\"Cold calling\",/*#__PURE__*/_jsx(\"strong\",{children:\" feels like a \"}),\"chore\"]})}),className:\"framer-a48vkd\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z2a8dr\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lz0y2s\",\"data-framer-name\":\"Emoji\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28px\"},children:\"\uD83D\uDC4E\uD83C\uDFFE\"})})},ux_kL6L0_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28px\"},children:\"\uD83D\uDC4E\uD83C\uDFFE\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"44px\"},children:\"\uD83D\uDC4E\uD83C\uDFFE\"})}),className:\"framer-vitk9f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-18qdu9d\",\"data-styles-preset\":\"rdBVR9UcH\",children:[\"Omni-channel \",/*#__PURE__*/_jsx(\"strong\",{children:\"outreach\"}),\" ineffective\"]})}),className:\"framer-o42o57\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v2jdo0\",\"data-framer-name\":\"Side\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-e1hyyd\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ozhgxj\",\"data-styles-preset\":\"k4KwAAQ4C\",style:{\"--framer-text-alignment\":\"center\"},children:\"With CallBlitz\"})}),className:\"framer-1eplj3m\",\"data-framer-name\":\"H3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-167wt73\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1repboi\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-82xccq\",\"data-framer-name\":\"Emoji\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28px\"},children:\"\u2764\uFE0F\"})})},ux_kL6L0_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28px\"},children:\"\u2764\uFE0F\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"44px\"},children:\"\u2764\uFE0F\"})}),className:\"framer-189zowz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-18qdu9d\",\"data-styles-preset\":\"rdBVR9UcH\",children:[\"Reps dial together \",/*#__PURE__*/_jsx(\"strong\",{children:\"as a\"}),\" TEAM\"]})}),className:\"framer-10yj7dy\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1blnqat\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xq9yc3\",\"data-framer-name\":\"Emoji\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28px\"},children:\"\uD83E\uDD17\"})})},ux_kL6L0_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28px\"},children:\"\uD83E\uDD17\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"44px\"},children:\"\uD83E\uDD17\"})}),className:\"framer-1j8zx2m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-18qdu9d\",\"data-styles-preset\":\"rdBVR9UcH\",children:[\"Reps \",/*#__PURE__*/_jsx(\"strong\",{children:\"actually\"}),\" want \",/*#__PURE__*/_jsx(\"strong\",{children:\"to\"}),\" cold call\"]})}),className:\"framer-k7hpfp\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h2j7kl\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jr645h\",\"data-framer-name\":\"Emoji\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28px\"},children:\"\u2705\"})})},ux_kL6L0_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28px\"},children:\"\u2705\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"44px\"},children:\"\u2705\"})}),className:\"framer-1fddk4n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-18qdu9d\",\"data-styles-preset\":\"rdBVR9UcH\",children:[\"Verify talk tracks \",/*#__PURE__*/_jsx(\"strong\",{children:\"and\"}),\" call quality \",/*#__PURE__*/_jsx(\"strong\",{children:\"as they happen\"})]})}),className:\"framer-tan8jf\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aw5v7s\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bkripe\",\"data-framer-name\":\"Emoji\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28px\"},children:\"\uD83D\uDE0E\"})})},ux_kL6L0_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28px\"},children:\"\uD83D\uDE0E\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"44px\"},children:\"\uD83D\uDE0E\"})}),className:\"framer-8p5weh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-18qdu9d\",\"data-styles-preset\":\"rdBVR9UcH\",children:[\"You, fearless leader, \",/*#__PURE__*/_jsx(\"strong\",{children:\"dial with your team in the trenches #streetcred\"})]})}),className:\"framer-n1jiyo\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s0m7ng\",\"data-framer-name\":\"List Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10himxv\",\"data-framer-name\":\"Emoji\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28px\"},children:\"\uD83E\uDD11\"})})},ux_kL6L0_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28px\"},children:\"\uD83E\uDD11\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"44px\"},children:\"\uD83E\uDD11\"})}),className:\"framer-ileg9g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-18qdu9d\",\"data-styles-preset\":\"rdBVR9UcH\",children:[\"SPIFFS, \",/*#__PURE__*/_jsx(\"strong\",{children:\"live competitions\"}),\", more meetings booked, \",/*#__PURE__*/_jsx(\"strong\",{children:\"more quota HIT\"})]})}),className:\"framer-1mpx373\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zggy2u\",\"data-framer-name\":\"Integrates With Your Dialer - Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yfo56p\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6mxdol\",\"data-framer-name\":\"H2 + Subtitle\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ozhgxj\",\"data-styles-preset\":\"k4KwAAQ4C\",style:{\"--framer-text-alignment\":\"left\"},children:\"Integrates With Your Dialer\"})})},ux_kL6L0_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ozhgxj\",\"data-styles-preset\":\"k4KwAAQ4C\",style:{\"--framer-text-alignment\":\"left\"},children:\"Integrates With Your Dialer\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ozhgxj\",\"data-styles-preset\":\"k4KwAAQ4C\",children:\"Integrates With Your Dialer\"})}),className:\"framer-1lp0og6\",\"data-framer-name\":\"H2  - Integrates With Your Dialer \",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1scf5a9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(112, 112, 112)\"},children:[\"Hassle-free setup, all your reps need to dial is our \",/*#__PURE__*/_jsx(Link,{href:\"https://chromewebstore.google.com/detail/callblitz/fdbhmjegladchpleeblggjndkkbhgneg\",motionChild:true,nodeId:\"FsOIjQBr_\",openInNewTab:true,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16txa3c\",\"data-styles-preset\":\"UitsprZoR\",children:\"Chrome extension.\"})})]})})},ux_kL6L0_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(112, 112, 112)\"},children:[\"Hassle-free setup, all your reps need to dial is our \",/*#__PURE__*/_jsx(Link,{href:\"https://chromewebstore.google.com/detail/callblitz/fdbhmjegladchpleeblggjndkkbhgneg\",motionChild:true,nodeId:\"FsOIjQBr_\",openInNewTab:true,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16txa3c\",\"data-styles-preset\":\"UitsprZoR\",children:\"Chrome extension.\"})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(112, 112, 112)\"},children:[\"Hassle-free setup, all your reps need to dial is our \",/*#__PURE__*/_jsx(Link,{href:\"https://chromewebstore.google.com/detail/callblitz/fdbhmjegladchpleeblggjndkkbhgneg\",motionChild:true,nodeId:\"FsOIjQBr_\",openInNewTab:true,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16txa3c\",\"data-styles-preset\":\"UitsprZoR\",children:\"Chrome extension.\"})})]})}),className:\"framer-1nryxyc\",fonts:[\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cxl3vn\",\"data-framer-name\":\"Dialer Logos\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{fOWCYVQrd:\"outreach\"},unresolvedPathSlugs:{fOWCYVQrd:{collectionId:\"e3FYu8gOV\",collectionItemId:\"AZREP9YSZ\"}},webPageId:\"dQRORJ3be\"},implicitPathVariables:undefined},{href:{pathVariables:{fOWCYVQrd:\"outreach\"},unresolvedPathSlugs:{fOWCYVQrd:{collectionId:\"e3FYu8gOV\",collectionItemId:\"AZREP9YSZ\"}},webPageId:\"dQRORJ3be\"},implicitPathVariables:undefined},{href:{pathVariables:{fOWCYVQrd:\"outreach\"},unresolvedPathSlugs:{fOWCYVQrd:{collectionId:\"e3FYu8gOV\",collectionItemId:\"AZREP9YSZ\"}},webPageId:\"dQRORJ3be\"},implicitPathVariables:undefined},{href:{pathVariables:{fOWCYVQrd:\"outreach\"},unresolvedPathSlugs:{fOWCYVQrd:{collectionId:\"e3FYu8gOV\",collectionItemId:\"AZREP9YSZ\"}},webPageId:\"dQRORJ3be\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 79px) / 2, 50px)`},ux_kL6L0_:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 47px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:147,width:\"147px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1517r1v-container\",nodeId:\"IREzEBkoH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{variant:\"DZErwHx5C\",xotRNAe7R:resolvedLinks[2]},ux_kL6L0_:{variant:\"pYMlXyD67\",xotRNAe7R:resolvedLinks[3]},Zl8v1bBm7:{xotRNAe7R:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(DialerLogo,{height:\"100%\",id:\"IREzEBkoH\",K73YWsrS4:addImageAlt({pixelHeight:29,pixelWidth:150,src:\"https://framerusercontent.com/images/5IXJJtYwEQgi8RiNNqAcoG0E.svg\"},\"\"),layoutId:\"IREzEBkoH\",style:{height:\"100%\",width:\"100%\"},variant:\"vkVW_i8H9\",width:\"100%\",xotRNAe7R:resolvedLinks[0]})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{fOWCYVQrd:\"salesloft\"},unresolvedPathSlugs:{fOWCYVQrd:{collectionId:\"e3FYu8gOV\",collectionItemId:\"VFsueb81c\"}},webPageId:\"dQRORJ3be\"},implicitPathVariables:undefined},{href:{pathVariables:{fOWCYVQrd:\"salesloft\"},unresolvedPathSlugs:{fOWCYVQrd:{collectionId:\"e3FYu8gOV\",collectionItemId:\"VFsueb81c\"}},webPageId:\"dQRORJ3be\"},implicitPathVariables:undefined},{href:{pathVariables:{fOWCYVQrd:\"salesloft\"},unresolvedPathSlugs:{fOWCYVQrd:{collectionId:\"e3FYu8gOV\",collectionItemId:\"VFsueb81c\"}},webPageId:\"dQRORJ3be\"},implicitPathVariables:undefined},{href:{pathVariables:{fOWCYVQrd:\"salesloft\"},unresolvedPathSlugs:{fOWCYVQrd:{collectionId:\"e3FYu8gOV\",collectionItemId:\"VFsueb81c\"}},webPageId:\"dQRORJ3be\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 79px) / 2, 50px)`},ux_kL6L0_:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 47px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:147,width:\"147px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4dg8xq-container\",nodeId:\"pJmtRfF8L\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{variant:\"DZErwHx5C\",xotRNAe7R:resolvedLinks1[2]},ux_kL6L0_:{variant:\"pYMlXyD67\",xotRNAe7R:resolvedLinks1[3]},Zl8v1bBm7:{xotRNAe7R:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(DialerLogo,{height:\"100%\",id:\"pJmtRfF8L\",K73YWsrS4:addImageAlt({pixelHeight:32,pixelWidth:144,src:\"https://framerusercontent.com/images/1GnUpMg4dDbE9VvpcJxOaMVTys.svg\"},\"\"),layoutId:\"pJmtRfF8L\",style:{height:\"100%\",width:\"100%\"},variant:\"vkVW_i8H9\",width:\"100%\",xotRNAe7R:resolvedLinks1[0]})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{fOWCYVQrd:\"hubspot\"},unresolvedPathSlugs:{fOWCYVQrd:{collectionId:\"e3FYu8gOV\",collectionItemId:\"p9uFmahe4\"}},webPageId:\"dQRORJ3be\"},implicitPathVariables:undefined},{href:{pathVariables:{fOWCYVQrd:\"hubspot\"},unresolvedPathSlugs:{fOWCYVQrd:{collectionId:\"e3FYu8gOV\",collectionItemId:\"p9uFmahe4\"}},webPageId:\"dQRORJ3be\"},implicitPathVariables:undefined},{href:{pathVariables:{fOWCYVQrd:\"hubspot\"},unresolvedPathSlugs:{fOWCYVQrd:{collectionId:\"e3FYu8gOV\",collectionItemId:\"p9uFmahe4\"}},webPageId:\"dQRORJ3be\"},implicitPathVariables:undefined},{href:{pathVariables:{fOWCYVQrd:\"hubspot\"},unresolvedPathSlugs:{fOWCYVQrd:{collectionId:\"e3FYu8gOV\",collectionItemId:\"p9uFmahe4\"}},webPageId:\"dQRORJ3be\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 79px) / 2, 50px)`},ux_kL6L0_:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 47px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:147,width:\"147px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-tukl4i-container\",nodeId:\"xwS09u01_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{variant:\"DZErwHx5C\",xotRNAe7R:resolvedLinks2[2]},ux_kL6L0_:{variant:\"pYMlXyD67\",xotRNAe7R:resolvedLinks2[3]},Zl8v1bBm7:{xotRNAe7R:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(DialerLogo,{height:\"100%\",id:\"xwS09u01_\",K73YWsrS4:addImageAlt({pixelHeight:31,pixelWidth:106,src:\"https://framerusercontent.com/images/AOGRveJxCeZE5U8V9B6tt5ZqYDU.svg\"},\"\"),layoutId:\"xwS09u01_\",style:{height:\"100%\",width:\"100%\"},variant:\"vkVW_i8H9\",width:\"100%\",xotRNAe7R:resolvedLinks2[0]})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 79px) / 2, 50px)`},ux_kL6L0_:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 47px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:147,width:\"147px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pb646d-container\",nodeId:\"QmjZfBUMc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{variant:\"DZErwHx5C\"},ux_kL6L0_:{variant:\"pYMlXyD67\"}},children:/*#__PURE__*/_jsx(DialerLogo,{height:\"100%\",id:\"QmjZfBUMc\",K73YWsrS4:addImageAlt({pixelHeight:30,pixelWidth:110,src:\"https://framerusercontent.com/images/GEVQFq1hKce3aVsdcePRAzjA.svg\"},\"\"),layoutId:\"QmjZfBUMc\",style:{height:\"100%\",width:\"100%\"},variant:\"vkVW_i8H9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 79px) / 2, 50px)`},ux_kL6L0_:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 47px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:147,width:\"147px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y1nplc-container\",nodeId:\"szVeY1bpC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{variant:\"DZErwHx5C\"}},children:/*#__PURE__*/_jsx(DialerLogo,{height:\"100%\",id:\"szVeY1bpC\",K73YWsrS4:addImageAlt({pixelHeight:40,pixelWidth:160,src:\"https://framerusercontent.com/images/GFVOTobh0MbgMiEbLc8Gzacz9I.svg\"},\"\"),layoutId:\"szVeY1bpC\",style:{height:\"100%\",width:\"100%\"},variant:\"vkVW_i8H9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 79px) / 2, 50px)`},ux_kL6L0_:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 47px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:147,width:\"147px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-emqpm1-container\",nodeId:\"bgFUwePgc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{variant:\"DZErwHx5C\"}},children:/*#__PURE__*/_jsx(DialerLogo,{height:\"100%\",id:\"bgFUwePgc\",K73YWsrS4:addImageAlt({pixelHeight:114,pixelWidth:477,src:\"https://framerusercontent.com/images/bIAlRj1oyW93yhvL4idrp5fh0.svg\"},\"\"),layoutId:\"bgFUwePgc\",style:{height:\"100%\",width:\"100%\"},variant:\"vkVW_i8H9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 79px) / 2, 50px)`},ux_kL6L0_:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 47px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:147,width:\"147px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e9wvvc-container\",nodeId:\"QaEMx0MKp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{variant:\"DZErwHx5C\"}},children:/*#__PURE__*/_jsx(DialerLogo,{height:\"100%\",id:\"QaEMx0MKp\",K73YWsrS4:addImageAlt({pixelHeight:938,pixelWidth:2550,src:\"https://framerusercontent.com/images/BjSE5XY0ieIQ5KBPSXBmIqXSU.svg\",srcSet:\"https://framerusercontent.com/images/BjSE5XY0ieIQ5KBPSXBmIqXSU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/BjSE5XY0ieIQ5KBPSXBmIqXSU.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BjSE5XY0ieIQ5KBPSXBmIqXSU.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BjSE5XY0ieIQ5KBPSXBmIqXSU.svg 2550w\"},\"\"),layoutId:\"QaEMx0MKp\",style:{height:\"100%\",width:\"100%\"},variant:\"vkVW_i8H9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 79px) / 2, 50px)`},ux_kL6L0_:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 47px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:147,width:\"147px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ndgva7-container\",nodeId:\"XyvA4yYS1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{variant:\"DZErwHx5C\"}},children:/*#__PURE__*/_jsx(DialerLogo,{height:\"100%\",id:\"XyvA4yYS1\",K73YWsrS4:addImageAlt({pixelHeight:41,pixelWidth:127,src:\"https://framerusercontent.com/images/P0oFgBmMNEACGYOcPkCbpWh0.svg\"},\"\"),layoutId:\"XyvA4yYS1\",style:{height:\"100%\",width:\"100%\"},variant:\"vkVW_i8H9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 79px) / 2, 50px)`},ux_kL6L0_:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 47px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:147,width:\"147px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ipxwe4-container\",nodeId:\"H3FBEUJ2i\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{variant:\"DZErwHx5C\"}},children:/*#__PURE__*/_jsx(DialerLogo,{height:\"100%\",id:\"H3FBEUJ2i\",K73YWsrS4:addImageAlt({pixelHeight:64,pixelWidth:92,src:\"https://framerusercontent.com/images/T4pRb1BerC7nnC5TKU5Sy4GKZU.svg\"},\"\"),layoutId:\"H3FBEUJ2i\",style:{height:\"100%\",width:\"100%\"},variant:\"vkVW_i8H9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 79px) / 2, 50px)`},ux_kL6L0_:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 47px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:147,width:\"147px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uwie0y-container\",nodeId:\"xuhiXe0ua\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{variant:\"DZErwHx5C\"}},children:/*#__PURE__*/_jsx(DialerLogo,{height:\"100%\",id:\"xuhiXe0ua\",K73YWsrS4:addImageAlt({pixelHeight:157,pixelWidth:665,src:\"https://framerusercontent.com/images/gDmDUEPKj69vGX5MBXmmfuVQ.svg\",srcSet:\"https://framerusercontent.com/images/gDmDUEPKj69vGX5MBXmmfuVQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/gDmDUEPKj69vGX5MBXmmfuVQ.svg 665w\"},\"\"),layoutId:\"xuhiXe0ua\",style:{height:\"100%\",width:\"100%\"},variant:\"vkVW_i8H9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{fOWCYVQrd:\"aircall\"},unresolvedPathSlugs:{fOWCYVQrd:{collectionId:\"e3FYu8gOV\",collectionItemId:\"G96QHvPST\"}},webPageId:\"dQRORJ3be\"},implicitPathVariables:undefined},{href:{pathVariables:{fOWCYVQrd:\"aircall\"},unresolvedPathSlugs:{fOWCYVQrd:{collectionId:\"e3FYu8gOV\",collectionItemId:\"G96QHvPST\"}},webPageId:\"dQRORJ3be\"},implicitPathVariables:undefined},{href:{pathVariables:{fOWCYVQrd:\"aircall\"},unresolvedPathSlugs:{fOWCYVQrd:{collectionId:\"e3FYu8gOV\",collectionItemId:\"G96QHvPST\"}},webPageId:\"dQRORJ3be\"},implicitPathVariables:undefined},{href:{pathVariables:{fOWCYVQrd:\"aircall\"},unresolvedPathSlugs:{fOWCYVQrd:{collectionId:\"e3FYu8gOV\",collectionItemId:\"G96QHvPST\"}},webPageId:\"dQRORJ3be\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 79px) / 2, 50px)`},ux_kL6L0_:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 47px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:147,width:\"147px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uxlqw8-container\",nodeId:\"iN__J0yBM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{variant:\"DZErwHx5C\",xotRNAe7R:resolvedLinks3[2]},ux_kL6L0_:{xotRNAe7R:resolvedLinks3[3]},Zl8v1bBm7:{xotRNAe7R:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(DialerLogo,{height:\"100%\",id:\"iN__J0yBM\",K73YWsrS4:addImageAlt({pixelHeight:40,pixelWidth:140,src:\"https://framerusercontent.com/images/qfKqOMcjY929pbzeWIlOFmXt2Hs.svg\"},\"\"),layoutId:\"iN__J0yBM\",style:{height:\"100%\",width:\"100%\"},variant:\"vkVW_i8H9\",width:\"100%\",xotRNAe7R:resolvedLinks3[0]})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 79px) / 2, 50px)`},ux_kL6L0_:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 47px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:147,width:\"147px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qrrp7d-container\",nodeId:\"Dgh83WH_k\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{variant:\"DZErwHx5C\"}},children:/*#__PURE__*/_jsx(DialerLogo,{height:\"100%\",id:\"Dgh83WH_k\",K73YWsrS4:addImageAlt({pixelHeight:26,pixelWidth:189,src:\"https://framerusercontent.com/images/6YQLOwbDLAdlChO6l7eiSMqu988.svg\"},\"\"),layoutId:\"Dgh83WH_k\",style:{height:\"100%\",width:\"100%\"},variant:\"vkVW_i8H9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 79px) / 2, 50px)`},ux_kL6L0_:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 47px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:147,width:\"147px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-c5iwmt-container\",nodeId:\"CR06mTfeP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{variant:\"DZErwHx5C\"}},children:/*#__PURE__*/_jsx(DialerLogo,{height:\"100%\",id:\"CR06mTfeP\",K73YWsrS4:addImageAlt({pixelHeight:64,pixelWidth:237,src:\"https://framerusercontent.com/images/RtSfVohs5N6PBaqBtXslYKbFCRk.svg\"},\"\"),layoutId:\"CR06mTfeP\",style:{height:\"100%\",width:\"100%\"},variant:\"vkVW_i8H9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 79px) / 2, 50px)`},ux_kL6L0_:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 47px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:147,width:\"147px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5wpknf-container\",nodeId:\"lm5xn1vGR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{variant:\"DZErwHx5C\"}},children:/*#__PURE__*/_jsx(DialerLogo,{height:\"100%\",id:\"lm5xn1vGR\",K73YWsrS4:addImageAlt({pixelHeight:146,pixelWidth:961,src:\"https://framerusercontent.com/images/pRDPiYNnR9PPus4V2KpIkheEkE.svg\",srcSet:\"https://framerusercontent.com/images/pRDPiYNnR9PPus4V2KpIkheEkE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/pRDPiYNnR9PPus4V2KpIkheEkE.svg 961w\"},\"\"),layoutId:\"lm5xn1vGR\",style:{height:\"100%\",width:\"100%\"},variant:\"vkVW_i8H9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 79px) / 2, 50px)`},ux_kL6L0_:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 47px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:147,width:\"147px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4vsrog-container\",nodeId:\"REAOBDZDN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{variant:\"DZErwHx5C\"}},children:/*#__PURE__*/_jsx(DialerLogo,{height:\"100%\",id:\"REAOBDZDN\",K73YWsrS4:addImageAlt({pixelHeight:189,pixelWidth:1033,src:\"https://framerusercontent.com/images/C6oM9kNbeRT7yVxqworoOxlPgs.svg\",srcSet:\"https://framerusercontent.com/images/C6oM9kNbeRT7yVxqworoOxlPgs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/C6oM9kNbeRT7yVxqworoOxlPgs.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/C6oM9kNbeRT7yVxqworoOxlPgs.svg 1033w\"},\"\"),layoutId:\"REAOBDZDN\",style:{height:\"100%\",width:\"100%\"},variant:\"vkVW_i8H9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 79px) / 2, 50px)`},ux_kL6L0_:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 47px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:147,width:\"147px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-10ghvug-container\",nodeId:\"GUZ2GavVk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{variant:\"DZErwHx5C\"}},children:/*#__PURE__*/_jsx(DialerLogo,{height:\"100%\",id:\"GUZ2GavVk\",K73YWsrS4:addImageAlt({pixelHeight:64,pixelWidth:166,src:\"https://framerusercontent.com/images/ReEN08EGd8ps82SD9GGVrV4ennI.svg\"},\"\"),layoutId:\"GUZ2GavVk\",style:{height:\"100%\",width:\"100%\"},variant:\"vkVW_i8H9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 79px) / 2, 50px)`},ux_kL6L0_:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 47px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:147,width:\"147px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-8aqspo-container\",nodeId:\"l6T6mA0s1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{variant:\"DZErwHx5C\"}},children:/*#__PURE__*/_jsx(DialerLogo,{height:\"100%\",id:\"l6T6mA0s1\",K73YWsrS4:addImageAlt({pixelHeight:420,pixelWidth:1853,src:\"https://framerusercontent.com/images/EJHTSRSW8nsMG3R2E0XqtmhiV9s.svg\",srcSet:\"https://framerusercontent.com/images/EJHTSRSW8nsMG3R2E0XqtmhiV9s.svg?scale-down-to=512 512w,https://framerusercontent.com/images/EJHTSRSW8nsMG3R2E0XqtmhiV9s.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/EJHTSRSW8nsMG3R2E0XqtmhiV9s.svg 1853w\"},\"\"),layoutId:\"l6T6mA0s1\",style:{height:\"100%\",width:\"100%\"},variant:\"vkVW_i8H9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 79px) / 2, 50px)`},ux_kL6L0_:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 47px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:147,width:\"147px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hrlm4x-container\",nodeId:\"mSl40HB_Z\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{variant:\"DZErwHx5C\"}},children:/*#__PURE__*/_jsx(DialerLogo,{height:\"100%\",id:\"mSl40HB_Z\",K73YWsrS4:addImageAlt({pixelHeight:269,pixelWidth:1737,src:\"https://framerusercontent.com/images/ChvLbug8e868iytdPBhg945QA.svg\",srcSet:\"https://framerusercontent.com/images/ChvLbug8e868iytdPBhg945QA.svg?scale-down-to=512 512w,https://framerusercontent.com/images/ChvLbug8e868iytdPBhg945QA.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ChvLbug8e868iytdPBhg945QA.svg 1737w\"},\"\"),layoutId:\"mSl40HB_Z\",style:{height:\"100%\",width:\"100%\"},variant:\"vkVW_i8H9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 79px) / 2, 50px)`},ux_kL6L0_:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 47px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:147,width:\"147px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ryykq0-container\",nodeId:\"pMoROfvhL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{variant:\"DZErwHx5C\"}},children:/*#__PURE__*/_jsx(DialerLogo,{height:\"100%\",id:\"pMoROfvhL\",K73YWsrS4:addImageAlt({pixelHeight:32,pixelWidth:158,src:\"https://framerusercontent.com/images/63L7kgcYyZtV2xMO5oE0vkZEGto.svg\"},\"\"),layoutId:\"pMoROfvhL\",style:{height:\"100%\",width:\"100%\"},variant:\"vkVW_i8H9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 79px) / 2, 50px)`},ux_kL6L0_:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 47px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:147,width:\"147px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-8fo0oe-container\",nodeId:\"OJrF09dXV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{variant:\"DZErwHx5C\"}},children:/*#__PURE__*/_jsx(DialerLogo,{height:\"100%\",id:\"OJrF09dXV\",K73YWsrS4:addImageAlt({pixelHeight:60,pixelWidth:171,src:\"https://framerusercontent.com/images/XlgAWAso4j5dGhF3pBNgJnCr9I.svg\"},\"\"),layoutId:\"OJrF09dXV\",style:{height:\"100%\",width:\"100%\"},variant:\"vkVW_i8H9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 79px) / 2, 50px)`},ux_kL6L0_:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 47px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:147,width:\"147px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-6xqyhe-container\",nodeId:\"G_bIx5QiX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{variant:\"DZErwHx5C\"}},children:/*#__PURE__*/_jsx(DialerLogo,{height:\"100%\",id:\"G_bIx5QiX\",K73YWsrS4:addImageAlt({pixelHeight:32,pixelWidth:150,src:\"https://framerusercontent.com/images/3Tl4otyEGKe2VaEnSTib17TxBYo.svg\"},\"\"),layoutId:\"G_bIx5QiX\",style:{height:\"100%\",width:\"100%\"},variant:\"vkVW_i8H9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 79px) / 2, 50px)`},ux_kL6L0_:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 47px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:147,width:\"147px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-sqsy20-container\",nodeId:\"UvfDydHHB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{variant:\"DZErwHx5C\"}},children:/*#__PURE__*/_jsx(DialerLogo,{height:\"100%\",id:\"UvfDydHHB\",K73YWsrS4:addImageAlt({pixelHeight:26,pixelWidth:114,src:\"https://framerusercontent.com/images/nPU6fzODSYh0eNdM8A2vvA1t8.svg\"},\"\"),layoutId:\"UvfDydHHB\",style:{height:\"100%\",width:\"100%\"},variant:\"vkVW_i8H9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 79px) / 2, 50px)`},ux_kL6L0_:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 47px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:147,width:\"147px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-11zaxt5-container\",nodeId:\"PLCwP4rs2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{variant:\"DZErwHx5C\"}},children:/*#__PURE__*/_jsx(DialerLogo,{height:\"100%\",id:\"PLCwP4rs2\",K73YWsrS4:addImageAlt({pixelHeight:285,pixelWidth:2838,src:\"https://framerusercontent.com/images/KMXa7mHkcdf42q4hyM8NuwKO8.svg\",srcSet:\"https://framerusercontent.com/images/KMXa7mHkcdf42q4hyM8NuwKO8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/KMXa7mHkcdf42q4hyM8NuwKO8.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KMXa7mHkcdf42q4hyM8NuwKO8.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KMXa7mHkcdf42q4hyM8NuwKO8.svg 2838w\"},\"\"),layoutId:\"PLCwP4rs2\",style:{height:\"100%\",width:\"100%\"},variant:\"vkVW_i8H9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 79px) / 2, 50px)`},ux_kL6L0_:{height:162,width:`max((min(${componentViewport?.width||\"100vw\"}, 1204px) - 47px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:147,width:\"147px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-fa0ftk-container\",nodeId:\"QelI8E0lz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{variant:\"DZErwHx5C\"}},children:/*#__PURE__*/_jsx(DialerLogo,{height:\"100%\",id:\"QelI8E0lz\",K73YWsrS4:addImageAlt({pixelHeight:334,pixelWidth:1495,src:\"https://framerusercontent.com/images/5oEcSJevmOSOXPfh3vfHrenIyQ.svg\",srcSet:\"https://framerusercontent.com/images/5oEcSJevmOSOXPfh3vfHrenIyQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/5oEcSJevmOSOXPfh3vfHrenIyQ.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5oEcSJevmOSOXPfh3vfHrenIyQ.svg 1495w\"},\"\"),layoutId:\"QelI8E0lz\",style:{height:\"100%\",width:\"100%\"},variant:\"vkVW_i8H9\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xfrv2e\",\"data-framer-name\":\"Sales Leaders & Reps Love Us - Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-103dea0\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n6s29r\",\"data-framer-name\":\"H2 + Subtitle\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ozhgxj\",\"data-styles-preset\":\"k4KwAAQ4C\",style:{\"--framer-text-alignment\":\"left\"},children:\"Sales Leaders & Reps Love Us\"})})},ux_kL6L0_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ozhgxj\",\"data-styles-preset\":\"k4KwAAQ4C\",style:{\"--framer-text-alignment\":\"left\"},children:\"Sales Leaders & Reps Love Us\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ozhgxj\",\"data-styles-preset\":\"k4KwAAQ4C\",children:\"Sales Leaders & Reps Love Us\"})}),className:\"framer-19ku4yj\",\"data-framer-name\":\"H2  - Integrates With Your Dialer \",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wi2rkj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(112, 112, 112)\"},children:\"(and we love them right back!)\"})})},ux_kL6L0_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(112, 112, 112)\"},children:\"(and we love them right back!)\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(112, 112, 112)\"},children:\"(and we love them right back!)\"})}),className:\"framer-eszvqg\",fonts:[\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-143wdwi\",\"data-framer-name\":\"Review Cards\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-148isca\",\"data-border\":true,\"data-framer-name\":\"Review Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-go38jf\",\"data-framer-name\":\"Review Card - Header\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/EIeiX88ORVNsHKiCdi4X03hNHQ.png\"},className:\"framer-1oashfx\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h9psao\",\"data-framer-name\":\"Info\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-y0cc2x\",\"data-styles-preset\":\"D3AdDz1yV\",style:{\"--framer-text-color\":\"var(--token-3d4bf7c7-ca08-45be-8fcf-dc3e220c2958, rgb(23, 23, 23))\"},children:\"Matthew Ogla\"})}),className:\"framer-1tg4t80\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ptj2k9\",\"data-styles-preset\":\"oIpJwqspa\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.royal4.com/\",motionChild:true,nodeId:\"fK2vbGg5w\",openInNewTab:true,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qyyalq\",\"data-styles-preset\":\"OSEyQYWt6\",children:\"SDR Manager, Royal4\"})})})}),className:\"framer-1fodrbv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i8q9ca\",\"data-framer-name\":\"Review Card - Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-18qdu9d\",\"data-styles-preset\":\"rdBVR9UcH\",style:{\"--framer-text-color\":\"var(--token-3d4bf7c7-ca08-45be-8fcf-dc3e220c2958, rgb(23, 23, 23))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"CallBlitz has helped our SDR team in many facets. The tool has allowed for a channel to \"}),\"train, coach and develop\",/*#__PURE__*/_jsx(\"strong\",{children:\" all of our \"}),\"new and veteran SDRs\",/*#__PURE__*/_jsx(\"strong\",{children:\".\"})]})}),className:\"framer-1o2q0q7\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-18qdu9d\",\"data-styles-preset\":\"rdBVR9UcH\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"We have been able to \"}),\"monitor our numbers in live sessions\",/*#__PURE__*/_jsx(\"strong\",{children:\" and it has given us the opportunity to take that next step as an SDR Team.\"})]})}),className:\"framer-qt5lcn\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qhwbej\",\"data-border\":true,\"data-framer-name\":\"Review Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xntbi3\",\"data-framer-name\":\"Review Card - Header\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/mPEIBCOzM50JjFuumgWOQK8JA.png\"},className:\"framer-do8hni\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zsrg64\",\"data-framer-name\":\"Info\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-y0cc2x\",\"data-styles-preset\":\"D3AdDz1yV\",style:{\"--framer-text-color\":\"var(--token-3d4bf7c7-ca08-45be-8fcf-dc3e220c2958, rgb(23, 23, 23))\"},children:\"Greg Woodward\"})}),className:\"framer-18b3q7m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ptj2k9\",\"data-styles-preset\":\"oIpJwqspa\",children:/*#__PURE__*/_jsx(Link,{href:\"https://woodwardstrategies.com/home\",motionChild:true,nodeId:\"hxDrdX2Y6\",openInNewTab:true,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qyyalq\",\"data-styles-preset\":\"OSEyQYWt6\",children:\"CEO, Woodward Strategies\"})})})}),className:\"framer-193c8b6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mna4vn\",\"data-framer-name\":\"Review Card - Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-18qdu9d\",\"data-styles-preset\":\"rdBVR9UcH\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"We use CallBlitz in my sales training program for B2B companies. Hearing live calls and having live calls (as a group) is the \"}),\"fastest way to ramp outbound prospecting\",/*#__PURE__*/_jsx(\"strong\",{children:\" across a sales team.\"})]})}),className:\"framer-qdwya2\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-18qdu9d\",\"data-styles-preset\":\"rdBVR9UcH\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"CallBlitz enables this and it gives sales reps \"}),\"the proximity they need to put their training into action\",/*#__PURE__*/_jsx(\"strong\",{children:\" and be the best they can be on the phone.\"})]})}),className:\"framer-1erqmq2\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rrj7ig\",\"data-border\":true,\"data-framer-name\":\"Review Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lasbpz\",\"data-framer-name\":\"Review Card - Header\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/nsfINSlS5KyzCU60u3g2h3JRrY.png\"},className:\"framer-gtu423\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fv6d9h\",\"data-framer-name\":\"Info\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-y0cc2x\",\"data-styles-preset\":\"D3AdDz1yV\",style:{\"--framer-text-color\":\"var(--token-3d4bf7c7-ca08-45be-8fcf-dc3e220c2958, rgb(23, 23, 23))\"},children:\"Jaime Boyette\"})}),className:\"framer-rgw04v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ptj2k9\",\"data-styles-preset\":\"oIpJwqspa\",children:/*#__PURE__*/_jsx(Link,{href:\"https://edynamiclearning.com/\",motionChild:true,nodeId:\"uhbZ070CS\",openInNewTab:true,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qyyalq\",\"data-styles-preset\":\"OSEyQYWt6\",children:\"BDR Manager, eDynamic Learning\"})})})}),className:\"framer-16zau0v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8ogvo0\",\"data-framer-name\":\"Review Card - Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-18qdu9d\",\"data-styles-preset\":\"rdBVR9UcH\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Our 2 newest BDRs both had \"}),\"double-digit first month meetings\",/*#__PURE__*/_jsx(\"strong\",{children:\" \"}),\"booked\",/*#__PURE__*/_jsx(\"strong\",{children:\" because they\u2019ve had the opportunity to \"}),\"listen to so many calls\",/*#__PURE__*/_jsx(\"strong\",{children:\" as well as make \"}),\"calls with feedback\",/*#__PURE__*/_jsx(\"strong\",{children:\" during their training.\"})]})}),className:\"framer-1bz3uzq\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18qdu9d\",\"data-styles-preset\":\"rdBVR9UcH\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"I can honestly say CallBlitz is more beneficial than any other tool we use!\"})})}),className:\"framer-bw8a7i\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ps1i7x\",\"data-border\":true,\"data-framer-name\":\"Review Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14ma6x2\",\"data-framer-name\":\"Review Card - Header\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/zwWhlrCWOvwRp0Sh9McCb3eklE.png\"},className:\"framer-18ozcn1\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10sujii\",\"data-framer-name\":\"Info\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-y0cc2x\",\"data-styles-preset\":\"D3AdDz1yV\",style:{\"--framer-text-color\":\"var(--token-3d4bf7c7-ca08-45be-8fcf-dc3e220c2958, rgb(23, 23, 23))\"},children:\"Mig Karen Ramirez\"})}),className:\"framer-ofuaaj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ptj2k9\",\"data-styles-preset\":\"oIpJwqspa\",children:/*#__PURE__*/_jsx(Link,{href:\"https://productschool.com/\",motionChild:true,nodeId:\"m_5bLlw7O\",openInNewTab:true,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qyyalq\",\"data-styles-preset\":\"OSEyQYWt6\",children:\"SDR, Product School\"})})})}),className:\"framer-p2tjmp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6regkc\",\"data-framer-name\":\"Review Card - Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-18qdu9d\",\"data-styles-preset\":\"rdBVR9UcH\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"I love using CallBlitz, because it creates \"}),\"camraderie\",/*#__PURE__*/_jsx(\"strong\",{children:\" between our SDR team. We are working remotely and thousands of miles away from each other, but with Callblitz, \"}),\"it feels as if they are just a few inches away from me\",/*#__PURE__*/_jsx(\"strong\",{children:\".\"})]})}),className:\"framer-1h7pktx\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--token-3d4bf7c7-ca08-45be-8fcf-dc3e220c2958, rgb(23, 23, 23))\"},children:[\"I also love how we can \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"listen to each others calls\"}),\" and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"coach each other\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1leHRyYWJvbGQ=\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"800\"},children:\" \"}),\"every step of the way. Gracias, Team CallBlitz!\"]})}),fonts:[\"FS;Poppins-regular\",\"FS;Poppins-extrabold\"]},ux_kL6L0_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--token-3d4bf7c7-ca08-45be-8fcf-dc3e220c2958, rgb(23, 23, 23))\"},children:[\"I also love how we can \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"listen to each others calls\"}),\" and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"coach each other\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1leHRyYWJvbGQ=\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"800\"},children:\" \"}),\"every step of the way. Gracias, Team CallBlitz!\"]})}),fonts:[\"FS;Poppins-regular\",\"FS;Poppins-extrabold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-18qdu9d\",\"data-styles-preset\":\"rdBVR9UcH\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"I also love how we can \"}),\"listen to each others calls\",/*#__PURE__*/_jsx(\"strong\",{children:\" and \"}),\"coach each other\",/*#__PURE__*/_jsx(\"strong\",{children:\" every step of the way. Gracias, Team CallBlitz!\"})]})}),className:\"framer-1jcobs8\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-odwabd\",\"data-border\":true,\"data-framer-name\":\"Review Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11e3zhz\",\"data-framer-name\":\"Review Card - Header\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/8Ss3Gz37tf4VLrCbgEAlcmL2Lc.png\"},className:\"framer-19txkx1\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l24bmi\",\"data-framer-name\":\"Info\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-y0cc2x\",\"data-styles-preset\":\"D3AdDz1yV\",style:{\"--framer-text-color\":\"var(--token-3d4bf7c7-ca08-45be-8fcf-dc3e220c2958, rgb(23, 23, 23))\"},children:\"Anastasia Durante\"})}),className:\"framer-c39kl7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ptj2k9\",\"data-styles-preset\":\"oIpJwqspa\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.edynamiclearning.com/\",motionChild:true,nodeId:\"swDLXNgjz\",openInNewTab:true,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qyyalq\",\"data-styles-preset\":\"OSEyQYWt6\",children:\"BDR, eDynamic Learning\"})})})}),className:\"framer-27qie4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-998nhi\",\"data-framer-name\":\"Review Card - Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-18qdu9d\",\"data-styles-preset\":\"rdBVR9UcH\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"CallBlitz has been a \"}),\"game changer \",/*#__PURE__*/_jsx(\"strong\",{children:'for our \"call blitzing\" experience '}),\"compared to Zoom\",/*#__PURE__*/_jsx(\"strong\",{children:\". My team went from making 2-3 calls each in an hour to 15+ calls using CallBlitz.\"})]})}),className:\"framer-1pmsdrj\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-18qdu9d\",\"data-styles-preset\":\"rdBVR9UcH\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"The opportunity to bounce back and forth between team members, \"}),\"listen in\",/*#__PURE__*/_jsx(\"strong\",{children:\" and \"}),\"give each other feedback\",/*#__PURE__*/_jsx(\"strong\",{children:\" allows us the \"}),\"best use of our time\",/*#__PURE__*/_jsx(\"strong\",{children:\".\"})]})}),className:\"framer-12nbcfc\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wz5uuq-container\",nodeId:\"bHAQDKHjK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ghvjEAe9L:{variant:\"BUWaQwHey\"},ux_kL6L0_:{variant:\"VVZBXXI54\"},Zl8v1bBm7:{variant:\"iG7K1CWXU\"}},children:/*#__PURE__*/_jsx(TalkToSales,{height:\"100%\",id:\"bHAQDKHjK\",layoutId:\"bHAQDKHjK\",style:{width:\"100%\"},variant:\"JyH4Pcnvx\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nolN6.framer-lux5qc, .framer-nolN6 .framer-lux5qc { display: block; }\",\".framer-nolN6.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-94579265-c8f3-4cea-a797-6da87bf85e01, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-nolN6 .framer-12212cj { align-content: center; align-items: center; background-color: var(--token-b9f865f2-ccb6-4bb0-8005-285ef41da7ff, #faff00); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-uqxyhc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1140px; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-1u66d9a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 60px 0px 90px 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-sjmfsl { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-nolN6 .framer-1v88xgi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-izpjjk, .framer-nolN6 .framer-1akhgtl, .framer-nolN6 .framer-1shx9r5, .framer-nolN6 .framer-13mqk29, .framer-nolN6 .framer-12ih4ci, .framer-nolN6 .framer-1iwy19c, .framer-nolN6 .framer-1dgz8iu, .framer-nolN6 .framer-15tx0m3, .framer-nolN6 .framer-1dld6j3, .framer-nolN6 .framer-1qtusbg, .framer-nolN6 .framer-1k6sy3l, .framer-nolN6 .framer-197y9jl, .framer-nolN6 .framer-15cm1ew, .framer-nolN6 .framer-1jwtjjr, .framer-nolN6 .framer-1imlasb, .framer-nolN6 .framer-1eplj3m, .framer-nolN6 .framer-1lp0og6, .framer-nolN6 .framer-19ku4yj, .framer-nolN6 .framer-1o2q0q7, .framer-nolN6 .framer-qt5lcn, .framer-nolN6 .framer-qdwya2, .framer-nolN6 .framer-1erqmq2, .framer-nolN6 .framer-1bz3uzq, .framer-nolN6 .framer-bw8a7i, .framer-nolN6 .framer-1h7pktx, .framer-nolN6 .framer-1jcobs8, .framer-nolN6 .framer-1pmsdrj, .framer-nolN6 .framer-12nbcfc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-nolN6 .framer-d8qyjk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-2dru57 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 500px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-1c7fzhi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-nk6xeu-container { flex: none; height: 50px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-1jzs0dg { align-content: center; align-items: center; aspect-ratio: 1.6150341685649203 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 124px); justify-content: flex-start; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-15jx13o { flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-nolN6 .framer-qdlv29 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-nolN6 .framer-julwhb { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-nolN6 .framer-1pd1o9s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-9krhqf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: 98px; justify-content: flex-start; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-175sc0z-container, .framer-nolN6 .framer-l35u08-container, .framer-nolN6 .framer-1vz267j-container, .framer-nolN6 .framer-1sdz3gt-container, .framer-nolN6 .framer-j5gr2l-container, .framer-nolN6 .framer-ruvwq1-container { flex: 1 0 0px; height: 42px; position: relative; width: 1px; }\",\".framer-nolN6 .framer-cibkwl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-s3oay0, .framer-nolN6 .framer-bprm7u { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1204px; overflow: hidden; padding: 120px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-yjrb9u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 80px 0px; position: relative; width: 95%; }\",\".framer-nolN6 .framer-1t0v2gf-container { flex: none; height: 650px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-1quglzn, .framer-nolN6 .framer-1scf5a9, .framer-nolN6 .framer-1wi2rkj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-1d3uq28 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-1tjaxtn, .framer-nolN6 .framer-15jnnwk, .framer-nolN6 .framer-1mj3pyi, .framer-nolN6 .framer-1bbo60o { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-nolN6 .framer-1aeesgw, .framer-nolN6 .framer-md1bj4, .framer-nolN6 .framer-vc5a9g, .framer-nolN6 .framer-1c1hxyy { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: relative; width: 50px; }\",\".framer-nolN6 .framer-5gz185, .framer-nolN6 .framer-tdwm6z, .framer-nolN6 .framer-t3dl2p, .framer-nolN6 .framer-zmnw4c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-z07ivt, .framer-nolN6 .framer-1m6wp9c, .framer-nolN6 .framer-1l5ye7t, .framer-nolN6 .framer-crgibe, .framer-nolN6 .framer-lrcjv2, .framer-nolN6 .framer-13pj93x, .framer-nolN6 .framer-lyxm74, .framer-nolN6 .framer-vitk9f, .framer-nolN6 .framer-189zowz, .framer-nolN6 .framer-1j8zx2m, .framer-nolN6 .framer-1fddk4n, .framer-nolN6 .framer-8p5weh, .framer-nolN6 .framer-ileg9g, .framer-nolN6 .framer-1tg4t80, .framer-nolN6 .framer-18b3q7m, .framer-nolN6 .framer-rgw04v, .framer-nolN6 .framer-ofuaaj, .framer-nolN6 .framer-c39kl7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-nolN6 .framer-1w99a2b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-t787kc, .framer-nolN6 .framer-vzpcv1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-1ezsfqd, .framer-nolN6 .framer-14m64l2, .framer-nolN6 .framer-zj9f9e, .framer-nolN6 .framer-62hgan { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-1dowzzs, .framer-nolN6 .framer-1m4klq, .framer-nolN6 .framer-vass9d, .framer-nolN6 .framer-1vcd4ys, .framer-nolN6 .framer-i8r7h2, .framer-nolN6 .framer-1m45ily, .framer-nolN6 .framer-17z6hmr, .framer-nolN6 .framer-44bafg, .framer-nolN6 .framer-11rwsix, .framer-nolN6 .framer-xchflp, .framer-nolN6 .framer-d60rpo, .framer-nolN6 .framer-1ssv9am, .framer-nolN6 .framer-1kku725, .framer-nolN6 .framer-nj1ymy, .framer-nolN6 .framer-z2a8dr, .framer-nolN6 .framer-1repboi, .framer-nolN6 .framer-1blnqat, .framer-nolN6 .framer-h2j7kl, .framer-nolN6 .framer-aw5v7s, .framer-nolN6 .framer-s0m7ng { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-134spuo, .framer-nolN6 .framer-wsim5j, .framer-nolN6 .framer-12qzvml, .framer-nolN6 .framer-h8iwzn, .framer-nolN6 .framer-lncdq8, .framer-nolN6 .framer-614vhv, .framer-nolN6 .framer-1d0rncw, .framer-nolN6 .framer-1nuanzg, .framer-nolN6 .framer-11woke, .framer-nolN6 .framer-1hg96op { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 30px; }\",\".framer-nolN6 .framer-1mm349k, .framer-nolN6 .framer-15ws16p, .framer-nolN6 .framer-1et1is6, .framer-nolN6 .framer-146t6k3, .framer-nolN6 .framer-1a55h00, .framer-nolN6 .framer-put1f3, .framer-nolN6 .framer-113ebqh, .framer-nolN6 .framer-a48vkd, .framer-nolN6 .framer-o42o57, .framer-nolN6 .framer-10yj7dy, .framer-nolN6 .framer-k7hpfp, .framer-nolN6 .framer-tan8jf, .framer-nolN6 .framer-n1jiyo, .framer-nolN6 .framer-1mpx373 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-nolN6 .framer-16fm1v5, .framer-nolN6 .framer-1u16sfs, .framer-nolN6 .framer-3431s8, .framer-nolN6 .framer-16kgfk0, .framer-nolN6 .framer-1o93uti, .framer-nolN6 .framer-xy7ox9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; align-self: stretch; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-nolN6 .framer-1wqhybe, .framer-nolN6 .framer-ug6fkj, .framer-nolN6 .framer-15mzw63, .framer-nolN6 .framer-1mpnxz2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-nolN6 .framer-5j3lry, .framer-nolN6 .framer-n0q9oy, .framer-nolN6 .framer-17s2rw8, .framer-nolN6 .framer-ib4m43 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 28px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-nolN6 .framer-hvvpsi { aspect-ratio: 1.7810760667903525 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 272px); max-width: 1000px; overflow: visible; position: relative; width: 100%; }\",\".framer-nolN6 .framer-1jg2vk4, .framer-nolN6 .framer-fhlz9z, .framer-nolN6 .framer-1ps2un1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-1qinwd1 { aspect-ratio: 1.6216216216216217 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 299px); overflow: visible; position: relative; width: 100%; }\",\".framer-nolN6 .framer-vfn9ml, .framer-nolN6 .framer-8jlmfc, .framer-nolN6 .framer-4b57og { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 28px 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-9khhly { aspect-ratio: 1.7857142857142858 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 271px); overflow: visible; position: relative; width: 100%; }\",\".framer-nolN6 .framer-1875w6j { aspect-ratio: 1.7699115044247788 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 273px); overflow: visible; position: relative; width: 100%; }\",\".framer-nolN6 .framer-rmu2ni { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-anaexi, .framer-nolN6 .framer-1yfo56p { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1204px; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-5nmqu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-6pf5tz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 630px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-1i84u05 { align-content: center; align-items: center; background-color: #d9d9d9; border-bottom-left-radius: 12px; border-top-left-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-start; padding: 40px 45px 60px 45px; position: relative; width: 1px; }\",\".framer-nolN6 .framer-19vqhds, .framer-nolN6 .framer-e1hyyd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 70px; justify-content: center; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-1t0pchs, .framer-nolN6 .framer-167wt73 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-ah4pu5, .framer-nolN6 .framer-1e6yxf4, .framer-nolN6 .framer-r1xm7e, .framer-nolN6 .framer-h5gzv2, .framer-nolN6 .framer-lz0y2s, .framer-nolN6 .framer-82xccq, .framer-nolN6 .framer-1xq9yc3, .framer-nolN6 .framer-jr645h, .framer-nolN6 .framer-bkripe, .framer-nolN6 .framer-10himxv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 64px; }\",\".framer-nolN6 .framer-v2jdo0 { align-content: center; align-items: center; background-color: var(--token-b9f865f2-ccb6-4bb0-8005-285ef41da7ff, #faff00); border-bottom-right-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-start; padding: 40px 45px 60px 45px; position: relative; width: 1px; }\",\".framer-nolN6 .framer-zggy2u, .framer-nolN6 .framer-1xfrv2e { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-6mxdol, .framer-nolN6 .framer-n6s29r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-1nryxyc, .framer-nolN6 .framer-eszvqg { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1280px; word-break: break-word; word-wrap: break-word; }\",\".framer-nolN6 .framer-1cxl3vn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-1517r1v-container, .framer-nolN6 .framer-4dg8xq-container, .framer-nolN6 .framer-tukl4i-container, .framer-nolN6 .framer-1pb646d-container, .framer-nolN6 .framer-1y1nplc-container, .framer-nolN6 .framer-emqpm1-container, .framer-nolN6 .framer-1e9wvvc-container, .framer-nolN6 .framer-ndgva7-container, .framer-nolN6 .framer-ipxwe4-container, .framer-nolN6 .framer-1uwie0y-container, .framer-nolN6 .framer-1uxlqw8-container, .framer-nolN6 .framer-1qrrp7d-container, .framer-nolN6 .framer-c5iwmt-container, .framer-nolN6 .framer-5wpknf-container, .framer-nolN6 .framer-4vsrog-container, .framer-nolN6 .framer-10ghvug-container, .framer-nolN6 .framer-8aqspo-container, .framer-nolN6 .framer-hrlm4x-container, .framer-nolN6 .framer-1ryykq0-container, .framer-nolN6 .framer-8fo0oe-container, .framer-nolN6 .framer-6xqyhe-container, .framer-nolN6 .framer-sqsy20-container, .framer-nolN6 .framer-11zaxt5-container, .framer-nolN6 .framer-fa0ftk-container { flex: none; height: 147px; position: relative; width: 147px; }\",\".framer-nolN6 .framer-103dea0 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1204px; overflow: hidden; padding: 0px 32px 120px 32px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-143wdwi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-148isca, .framer-nolN6 .framer-qhwbej, .framer-nolN6 .framer-rrj7ig, .framer-nolN6 .framer-odwabd { --border-bottom-width: 1px; --border-color: #d9d9d9; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: #ffffff; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; max-width: 350px; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-nolN6 .framer-go38jf, .framer-nolN6 .framer-xntbi3, .framer-nolN6 .framer-lasbpz, .framer-nolN6 .framer-14ma6x2, .framer-nolN6 .framer-11e3zhz { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-1oashfx, .framer-nolN6 .framer-do8hni, .framer-nolN6 .framer-gtu423, .framer-nolN6 .framer-18ozcn1, .framer-nolN6 .framer-19txkx1 { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; height: 96px; overflow: hidden; position: relative; width: 96px; will-change: var(--framer-will-change-override, transform); }\",\".framer-nolN6 .framer-h9psao, .framer-nolN6 .framer-10sujii { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: 61px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-nolN6 .framer-1fodrbv, .framer-nolN6 .framer-p2tjmp { flex: 1 0 0px; height: 1px; position: relative; white-space: pre; width: auto; }\",\".framer-nolN6 .framer-1i8q9ca, .framer-nolN6 .framer-1mna4vn, .framer-nolN6 .framer-8ogvo0, .framer-nolN6 .framer-6regkc, .framer-nolN6 .framer-998nhi { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-nolN6 .framer-zsrg64 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: 88px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-nolN6 .framer-193c8b6 { flex: 1 0 0px; height: 1px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-nolN6 .framer-fv6d9h, .framer-nolN6 .framer-1l24bmi { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-nolN6 .framer-16zau0v, .framer-nolN6 .framer-27qie4 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-nolN6 .framer-ps1i7x { --border-bottom-width: 1px; --border-color: #d9d9d9; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 350px; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-nolN6 .framer-1wz5uuq-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-nolN6[data-border=\"true\"]::after, .framer-nolN6 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1100px) and (max-width: 1439px) { .framer-nolN6.framer-72rtr7 { width: 1100px; } .framer-nolN6 .framer-1u66d9a { padding: 60px 0px 70px 0px; } .framer-nolN6 .framer-9krhqf { padding: 30px 0px 30px 0px; } .framer-nolN6 .framer-hvvpsi { height: var(--framer-aspect-ratio-supported, 243px); } .framer-nolN6 .framer-1qinwd1 { height: var(--framer-aspect-ratio-supported, 267px); } .framer-nolN6 .framer-9khhly { height: var(--framer-aspect-ratio-supported, 242px); } .framer-nolN6 .framer-1875w6j { height: var(--framer-aspect-ratio-supported, 244px); } .framer-nolN6 .framer-6pf5tz { height: 676px; } .framer-nolN6 .framer-143wdwi { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; will-change: var(--framer-will-change-override, transform); }}\",\"@media (min-width: 810px) and (max-width: 1099px) { .framer-nolN6.framer-72rtr7 { width: 810px; } .framer-nolN6 .framer-12212cj { padding: 60px 0px 0px 0px; } .framer-nolN6 .framer-1u66d9a { flex-direction: column; gap: 30px; padding: 15px 0px 50px 0px; } .framer-nolN6 .framer-sjmfsl, .framer-nolN6 .framer-1wqhybe { flex: none; width: 100%; } .framer-nolN6 .framer-1jzs0dg { height: var(--framer-aspect-ratio-supported, 462px); } .framer-nolN6 .framer-9krhqf { align-content: unset; align-items: unset; display: grid; gap: 32px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; } .framer-nolN6 .framer-175sc0z-container, .framer-nolN6 .framer-l35u08-container, .framer-nolN6 .framer-1vz267j-container, .framer-nolN6 .framer-1sdz3gt-container, .framer-nolN6 .framer-j5gr2l-container, .framer-nolN6 .framer-ruvwq1-container { align-self: start; flex: none; height: 40px; justify-self: start; width: 100%; } .framer-nolN6 .framer-bprm7u { padding: 35px 32px 0px 32px; } .framer-nolN6 .framer-1d3uq28 { flex-direction: column; gap: 30px; padding: 45px 0px 60px 0px; } .framer-nolN6 .framer-1tjaxtn { flex: none; gap: 10px; width: 100%; } .framer-nolN6 .framer-1w99a2b, .framer-nolN6 .framer-t787kc, .framer-nolN6 .framer-vfn9ml, .framer-nolN6 .framer-vzpcv1, .framer-nolN6 .framer-8jlmfc, .framer-nolN6 .framer-4b57og { padding: 0px 0px 14px 0px; } .framer-nolN6 .framer-hvvpsi { height: var(--framer-aspect-ratio-supported, 388px); } .framer-nolN6 .framer-1jg2vk4, .framer-nolN6 .framer-fhlz9z, .framer-nolN6 .framer-1ps2un1 { flex-direction: column; gap: 30px; padding: 15px 0px 45px 0px; } .framer-nolN6 .framer-ug6fkj, .framer-nolN6 .framer-15mzw63, .framer-nolN6 .framer-1mpnxz2 { flex: none; order: 1; width: 100%; } .framer-nolN6 .framer-1qinwd1 { height: var(--framer-aspect-ratio-supported, 425px); } .framer-nolN6 .framer-15jnnwk, .framer-nolN6 .framer-1mj3pyi, .framer-nolN6 .framer-1bbo60o { flex: none; gap: 10px; order: 0; width: 100%; } .framer-nolN6 .framer-9khhly { height: var(--framer-aspect-ratio-supported, 386px); } .framer-nolN6 .framer-1875w6j { height: var(--framer-aspect-ratio-supported, 390px); } .framer-nolN6 .framer-rmu2ni { padding: 20px 0px 0px 0px; } .framer-nolN6 .framer-5nmqu, .framer-nolN6 .framer-6mxdol { padding: 0px 0px 20px 0px; } .framer-nolN6 .framer-6pf5tz { flex-direction: column; height: min-content; } .framer-nolN6 .framer-1i84u05 { border-bottom-left-radius: unset; border-top-left-radius: unset; flex: none; height: min-content; padding: 40px 30px 40px 30px; width: 100%; } .framer-nolN6 .framer-19vqhds, .framer-nolN6 .framer-e1hyyd { padding: 0px 0px 30px 0px; } .framer-nolN6 .framer-1t0pchs, .framer-nolN6 .framer-167wt73 { gap: 20px; } .framer-nolN6 .framer-ah4pu5, .framer-nolN6 .framer-1e6yxf4, .framer-nolN6 .framer-r1xm7e, .framer-nolN6 .framer-h5gzv2, .framer-nolN6 .framer-lz0y2s, .framer-nolN6 .framer-82xccq, .framer-nolN6 .framer-1xq9yc3, .framer-nolN6 .framer-jr645h, .framer-nolN6 .framer-bkripe, .framer-nolN6 .framer-10himxv { width: 40px; } .framer-nolN6 .framer-v2jdo0 { border-bottom-right-radius: unset; border-top-right-radius: unset; flex: none; height: min-content; padding: 40px 30px 40px 30px; width: 100%; } .framer-nolN6 .framer-zggy2u, .framer-nolN6 .framer-1xfrv2e { padding: 50px 0px 0px 0px; } .framer-nolN6 .framer-1scf5a9, .framer-nolN6 .framer-1wi2rkj { gap: 0px; padding: 15px 0px 0px 0px; } .framer-nolN6 .framer-1nryxyc, .framer-nolN6 .framer-eszvqg { width: 746px; } .framer-nolN6 .framer-1cxl3vn { align-content: unset; align-items: unset; display: grid; grid-auto-rows: 162px; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, 162px); } .framer-nolN6 .framer-1517r1v-container, .framer-nolN6 .framer-4dg8xq-container, .framer-nolN6 .framer-tukl4i-container, .framer-nolN6 .framer-1pb646d-container, .framer-nolN6 .framer-1y1nplc-container, .framer-nolN6 .framer-emqpm1-container, .framer-nolN6 .framer-1e9wvvc-container, .framer-nolN6 .framer-ndgva7-container, .framer-nolN6 .framer-ipxwe4-container, .framer-nolN6 .framer-1uwie0y-container, .framer-nolN6 .framer-1uxlqw8-container, .framer-nolN6 .framer-1qrrp7d-container, .framer-nolN6 .framer-c5iwmt-container, .framer-nolN6 .framer-5wpknf-container, .framer-nolN6 .framer-4vsrog-container, .framer-nolN6 .framer-10ghvug-container, .framer-nolN6 .framer-8aqspo-container, .framer-nolN6 .framer-hrlm4x-container, .framer-nolN6 .framer-1ryykq0-container, .framer-nolN6 .framer-8fo0oe-container, .framer-nolN6 .framer-6xqyhe-container, .framer-nolN6 .framer-sqsy20-container, .framer-nolN6 .framer-11zaxt5-container, .framer-nolN6 .framer-fa0ftk-container { align-self: start; height: 100%; justify-self: start; width: 100%; } .framer-nolN6 .framer-n6s29r { padding: 0px 0px 40px 0px; } .framer-nolN6 .framer-143wdwi { gap: 15px; } .framer-nolN6 .framer-1oashfx, .framer-nolN6 .framer-18ozcn1 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 64px); width: 64px; } .framer-nolN6 .framer-do8hni, .framer-nolN6 .framer-gtu423, .framer-nolN6 .framer-19txkx1 { height: 64px; width: 64px; }}\",\"@media (max-width: 809px) { .framer-nolN6.framer-72rtr7 { background-color: var(--token-b9f865f2-ccb6-4bb0-8005-285ef41da7ff, #faff00); width: 390px; } .framer-nolN6 .framer-12212cj { order: 0; padding: 60px 0px 0px 0px; } .framer-nolN6 .framer-uqxyhc { padding: 0px 16px 20px 16px; } .framer-nolN6 .framer-1u66d9a { flex-direction: column; gap: 20px; padding: 15px 0px 50px 0px; } .framer-nolN6 .framer-sjmfsl { flex: none; order: 0; width: 100%; } .framer-nolN6 .framer-d8qyjk { padding: 10px 0px 20px 0px; } .framer-nolN6 .framer-qdlv29 { align-self: unset; aspect-ratio: 1.6150341685649203 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 222px); max-width: 1000px; order: 2; width: 100%; } .framer-nolN6 .framer-julwhb { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; z-index: 1; } .framer-nolN6 .framer-9krhqf { align-content: unset; align-items: unset; display: grid; gap: 32px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; } .framer-nolN6 .framer-175sc0z-container, .framer-nolN6 .framer-l35u08-container, .framer-nolN6 .framer-1vz267j-container, .framer-nolN6 .framer-1sdz3gt-container, .framer-nolN6 .framer-j5gr2l-container, .framer-nolN6 .framer-ruvwq1-container { align-self: start; flex: none; height: 40px; justify-self: start; width: 100%; } .framer-nolN6 .framer-1quglzn { order: 2; } .framer-nolN6 .framer-bprm7u { padding: 35px 16px 0px 16px; } .framer-nolN6 .framer-1d3uq28, .framer-nolN6 .framer-1jg2vk4, .framer-nolN6 .framer-fhlz9z, .framer-nolN6 .framer-1ps2un1 { flex-direction: column; gap: 30px; padding: 45px 0px 15px 0px; } .framer-nolN6 .framer-1tjaxtn, .framer-nolN6 .framer-1mj3pyi { flex: none; gap: 10px; width: 100%; } .framer-nolN6 .framer-1wqhybe, .framer-nolN6 .framer-15mzw63 { flex: none; width: 100%; } .framer-nolN6 .framer-5j3lry, .framer-nolN6 .framer-n0q9oy, .framer-nolN6 .framer-17s2rw8, .framer-nolN6 .framer-ib4m43 { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; padding: 0px; will-change: unset; } .framer-nolN6 .framer-hvvpsi { height: var(--framer-aspect-ratio-supported, 201px); } .framer-nolN6 .framer-ug6fkj, .framer-nolN6 .framer-1mpnxz2 { flex: none; order: 1; width: 100%; } .framer-nolN6 .framer-1qinwd1 { height: var(--framer-aspect-ratio-supported, 221px); } .framer-nolN6 .framer-15jnnwk, .framer-nolN6 .framer-1bbo60o { flex: none; gap: 10px; order: 0; width: 100%; } .framer-nolN6 .framer-9khhly { height: var(--framer-aspect-ratio-supported, 200px); } .framer-nolN6 .framer-1875w6j { height: var(--framer-aspect-ratio-supported, 202px); } .framer-nolN6 .framer-rmu2ni { order: 3; padding: 50px 0px 0px 0px; } .framer-nolN6 .framer-anaexi, .framer-nolN6 .framer-1yfo56p { padding: 0px 16px 0px 16px; } .framer-nolN6 .framer-5nmqu, .framer-nolN6 .framer-6mxdol { padding: 0px 0px 20px 0px; } .framer-nolN6 .framer-6pf5tz { flex-direction: column; height: min-content; } .framer-nolN6 .framer-1i84u05 { border-bottom-left-radius: unset; border-top-left-radius: unset; flex: none; height: min-content; padding: 40px 30px 40px 30px; width: 100%; } .framer-nolN6 .framer-19vqhds { padding: 0px 0px 30px 0px; } .framer-nolN6 .framer-1t0pchs, .framer-nolN6 .framer-167wt73 { gap: 20px; } .framer-nolN6 .framer-ah4pu5, .framer-nolN6 .framer-1e6yxf4, .framer-nolN6 .framer-r1xm7e, .framer-nolN6 .framer-h5gzv2, .framer-nolN6 .framer-lz0y2s, .framer-nolN6 .framer-82xccq, .framer-nolN6 .framer-1xq9yc3, .framer-nolN6 .framer-jr645h, .framer-nolN6 .framer-bkripe, .framer-nolN6 .framer-10himxv { width: 40px; } .framer-nolN6 .framer-v2jdo0 { flex: none; height: min-content; padding: 40px 30px 40px 30px; width: 100%; } .framer-nolN6 .framer-e1hyyd { height: min-content; padding: 0px 0px 30px 0px; } .framer-nolN6 .framer-zggy2u { order: 4; padding: 50px 0px 0px 0px; } .framer-nolN6 .framer-1scf5a9, .framer-nolN6 .framer-1wi2rkj { gap: 0px; padding: 15px 0px 0px 0px; } .framer-nolN6 .framer-1nryxyc, .framer-nolN6 .framer-eszvqg { flex: 1 0 0px; width: 1px; } .framer-nolN6 .framer-1cxl3vn { align-content: unset; align-items: unset; display: grid; grid-auto-rows: 162px; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, 162px); } .framer-nolN6 .framer-1517r1v-container, .framer-nolN6 .framer-4dg8xq-container, .framer-nolN6 .framer-tukl4i-container, .framer-nolN6 .framer-1pb646d-container, .framer-nolN6 .framer-1y1nplc-container, .framer-nolN6 .framer-emqpm1-container, .framer-nolN6 .framer-1e9wvvc-container, .framer-nolN6 .framer-ndgva7-container, .framer-nolN6 .framer-ipxwe4-container, .framer-nolN6 .framer-1uwie0y-container, .framer-nolN6 .framer-1uxlqw8-container, .framer-nolN6 .framer-1qrrp7d-container, .framer-nolN6 .framer-c5iwmt-container, .framer-nolN6 .framer-5wpknf-container, .framer-nolN6 .framer-4vsrog-container, .framer-nolN6 .framer-10ghvug-container, .framer-nolN6 .framer-8aqspo-container, .framer-nolN6 .framer-hrlm4x-container, .framer-nolN6 .framer-1ryykq0-container, .framer-nolN6 .framer-8fo0oe-container, .framer-nolN6 .framer-6xqyhe-container, .framer-nolN6 .framer-sqsy20-container, .framer-nolN6 .framer-11zaxt5-container, .framer-nolN6 .framer-fa0ftk-container { align-self: start; height: 100%; justify-self: start; width: 100%; } .framer-nolN6 .framer-1xfrv2e { order: 5; padding: 50px 0px 0px 0px; } .framer-nolN6 .framer-103dea0 { padding: 0px 16px 35px 16px; } .framer-nolN6 .framer-n6s29r { padding: 0px 0px 40px 0px; } .framer-nolN6 .framer-143wdwi { gap: 15px; } .framer-nolN6 .framer-148isca, .framer-nolN6 .framer-qhwbej, .framer-nolN6 .framer-rrj7ig, .framer-nolN6 .framer-ps1i7x, .framer-nolN6 .framer-odwabd { max-width: unset; } .framer-nolN6 .framer-1oashfx, .framer-nolN6 .framer-18ozcn1, .framer-nolN6 .framer-19txkx1 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 64px); width: 64px; } .framer-nolN6 .framer-do8hni, .framer-nolN6 .framer-gtu423 { height: 64px; width: 64px; } .framer-nolN6 .framer-1wz5uuq-container { order: 6; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8350\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Zl8v1bBm7\":{\"layout\":[\"fixed\",\"auto\"]},\"ghvjEAe9L\":{\"layout\":[\"fixed\",\"auto\"]},\"ux_kL6L0_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"I8J4KVfGc\":{\"pattern\":\":I8J4KVfGc\",\"name\":\"interactive\"},\"btdb4mwts\":{\"pattern\":\":btdb4mwts\",\"name\":\"interactive\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-nolN6\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8350,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/K4RHKGAGLQZBXEZQT2O2AGSLKJF2E4YC/JRUTXNFPWLFGIEVSSEYOW7EP7TYM3V6A/UCDYLFFGLZRGCFY5GYDYM5LDB52BAR5M.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/GCE3CQJHNQPET5GTQTXRVLUNQRTTGRYD/PW7XXFU476CRE7KBIKF63THLLGCBMQ4S/IX2APREQD7NDYAG5A6YIV4Q2246OG5XH.woff2\",weight:\"800\"}]},...ReadmoreButtonFonts,...LogoItemFonts,...EmbedFonts,...DialerLogoFonts,...TalkToSalesFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerScrollSections\":\"{\\\"I8J4KVfGc\\\":{\\\"pattern\\\":\\\":I8J4KVfGc\\\",\\\"name\\\":\\\"interactive\\\"},\\\"btdb4mwts\\\":{\\\"pattern\\\":\\\":btdb4mwts\\\",\\\"name\\\":\\\"interactive\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Zl8v1bBm7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ghvjEAe9L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ux_kL6L0_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"8350\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "imageLogo", "link", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "K73YWsrS4", "xotRNAe7R", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "Image2", "getLoadingLazyAtYPosition", "css", "Framern_kc4odvH", "withCSS", "n_kc4odvH_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "eZqfcBEVe", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "cx", "serializationHash", "css", "FramerZUi4VOj9Z", "withCSS", "ZUi4VOj9Z_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "ReadmoreButtonFonts", "getFonts", "MkRNYXF4g_default", "LogoItemFonts", "ZUi4VOj9Z_default", "EmbedFonts", "Embed", "DialerLogoFonts", "n_kc4odvH_default", "TalkToSalesFonts", "O3i_IILHm_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "x", "RichText", "ComponentViewportProvider", "Container", "Image2", "SVG", "Link", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
