{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js", "ssg:https://framerusercontent.com/modules/gjBUGsOLQnITofxLIovW/oJweuhOBl3KECTZYuFvg/hscn8vx4B.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState,useSyncExternalStore}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));let _isBot=null;function isBot(){if(_isBot===null)_isBot=/bot|-Google|Google-|yandex|ia_archiver/iu.test(navigator.userAgent);return _isBot;}const emptySubscribe=()=>()=>{};/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);// https://tkdodo.eu/blog/avoiding-hydration-mismatches-with-use-sync-external-store#usesyncexternalstore\nconst iframeIsDefaultVisible=useSyncExternalStore(emptySubscribe,// bots should not have display:none on the iframe\n()=>isBot(),()=>false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\");// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(// bots shouldn't autoplay the video but see the iframe in the DOM\n!iframeIsDefaultVisible&&(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo)){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{title:title||\"Youtube Video\",style:{...videoStyle,display:showVideo||iframeIsDefaultVisible?undefined:\"none\"},src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp,loading:\"lazy\"}):null,showVideo||iframeIsDefaultVisible?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicWidth\":\"560\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (9f1494d)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,withCSS}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Download from\"https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js\";import AdvancedOverlay from\"https://framerusercontent.com/modules/rWTAASs1j5vzZB6k18jG/x5h1SMllZzg10K4dGJHi/Overlay.js\";import Footer from\"#framer/local/canvasComponent/oVSyE5nmS/oVSyE5nmS.js\";import CTA from\"#framer/local/canvasComponent/sUAd3ypwY/sUAd3ypwY.js\";import HubspotOverlayForm from\"#framer/local/canvasComponent/x81rr7o9g/x81rr7o9g.js\";import Navigation from\"#framer/local/canvasComponent/y6IVmw92W/y6IVmw92W.js\";import Popup from\"#framer/local/canvasComponent/yxmfLZyJQ/yxmfLZyJQ.js\";import*as sharedStyle1 from\"#framer/local/css/aPK8xlHr3/aPK8xlHr3.js\";import*as sharedStyle from\"#framer/local/css/kRYuhcTcz/kRYuhcTcz.js\";import*as sharedStyle2 from\"#framer/local/css/mTO7UFQUn/mTO7UFQUn.js\";import*as sharedStyle3 from\"#framer/local/css/xU_WpCeZp/xU_WpCeZp.js\";import metadataProvider from\"#framer/local/webPageMetadata/hscn8vx4B/hscn8vx4B.js\";const NavigationFonts=getFonts(Navigation);const CTAFonts=getFonts(CTA);const HubspotOverlayFormFonts=getFonts(HubspotOverlayForm);const YouTubeFonts=getFonts(YouTube);const DownloadFonts=getFonts(Download);const FooterFonts=getFonts(Footer);const PopupFonts=getFonts(Popup);const AdvancedOverlayFonts=getFonts(AdvancedOverlay);const breakpoints={E03vyuemz:\"(min-width: 810px) and (max-width: 1199px)\",gC5mh0lmQ:\"(min-width: 1200px)\",UupfzB1MA:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Kv1zJ\";const variantClassNames={E03vyuemz:\"framer-v-fxjyvs\",gC5mh0lmQ:\"framer-v-oej8kg\",UupfzB1MA:\"framer-v-1adwji4\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"gC5mh0lmQ\",Phone:\"UupfzB1MA\",Tablet:\"E03vyuemz\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"gC5mh0lmQ\"};};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);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const zl1qxW7WF3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const PxcBbjhVm3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"gC5mh0lmQ\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-oej8kg\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8fs0df-container\",nodeId:\"NHuxmOCls\",scopeId:\"hscn8vx4B\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E03vyuemz:{variant:\"AByeL8_W3\"},UupfzB1MA:{variant:\"XMJTASqGb\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"NHuxmOCls\",layoutId:\"NHuxmOCls\",style:{height:\"100%\",width:\"100%\"},variant:\"KPthck111\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8ngwfu\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tzmmo\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yumf4m\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-yilgfq\",\"data-styles-preset\":\"kRYuhcTcz\",children:\"Make Every Call Interaction Count\"})}),className:\"framer-1ldxu0u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17mcyib\",\"data-styles-preset\":\"aPK8xlHr3\",children:\"Get a smart, automated summary of your last call with Aviso\u2019s Conversational Intelligence. Send us a call link and know what truly happened on the call.\"})}),className:\"framer-1o8s8p0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E03vyuemz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Please make sure you're sharing a publicly accessible Zoom/Gong/Chorus/Sybill link.\"})})},UupfzB1MA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Please make sure you're sharing a publicly accessible Zoom/Gong/Chorus/Sybill link.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Please make sure you're sharing a publicly accessible Zoom/Gong/Chorus/Sybill link.\"})}),className:\"framer-1o1lncx\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x5vgrq\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E03vyuemz:{y:(componentViewport?.y||0)+0+80+0+60+0+314+10},UupfzB1MA:{y:(componentViewport?.y||0)+0+80+0+0+60+0+0+314+10}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:(componentViewport?.y||0)+0+80+0+70.5+0+298+10,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1ajl4lb-container\",id:\"1ajl4lb\",nodeId:\"ffTPSBHRn\",scopeId:\"hscn8vx4B\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E03vyuemz:{variant:\"NEMiss5dL\"},UupfzB1MA:{variant:\"NEMiss5dL\"}},children:/*#__PURE__*/_jsx(CTA,{BQsktEUSb:\"rgb(240, 78, 69)\",dokqkteWW:\"rgb(255, 255, 255)\",GfUT0QoAc:\"rgb(255, 255, 255)\",height:\"100%\",id:\"ffTPSBHRn\",j5hkksqcg:\"var(--token-eefdec83-aa59-420a-b5d6-e47764f513c9, rgb(240, 78, 69))\",layoutId:\"ffTPSBHRn\",Njil5uLZ7:\"Get Free Summary\",variant:\"Pht74xd2a\",Vh6K_4lTe:\"ArrowRight\",width:\"100%\",Y39GohiV6:false,zl1qxW7WF:zl1qxW7WF3bnx0g({overlay})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1yv0o2n\"),\"data-framer-portal-id\":\"1ajl4lb\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"ZCnZlMRxB\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E03vyuemz:{width:\"45vw\"},UupfzB1MA:{width:\"85vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"35vw\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-2sgzik-container\"),\"data-framer-portal-id\":\"1ajl4lb\",inComponentSlot:true,nodeId:\"iN8EeN3FJ\",rendersWithMotion:true,scopeId:\"hscn8vx4B\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E03vyuemz:{variant:\"ILlLxAvYd\"},UupfzB1MA:{variant:\"ILlLxAvYd\"}},children:/*#__PURE__*/_jsx(HubspotOverlayForm,{cSFXcEx19:\"Get your free call summary\",height:\"100%\",id:\"iN8EeN3FJ\",layoutId:\"iN8EeN3FJ\",O8mu9XXtf:\"531684\",style:{width:\"100%\"},variant:\"COzSQBvhp\",width:\"100%\",zAw6GvxxN:\"b8656618-1942-4dba-a23f-472e0f7b1605\"})})})})})]}),getContainer())})})]})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ihwq7\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ptl3f0-container\",isModuleExternal:true,nodeId:\"vwrHsC2JD\",scopeId:\"hscn8vx4B\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,height:\"100%\",id:\"vwrHsC2JD\",isMixedBorderRadius:false,isRed:true,layoutId:\"vwrHsC2JD\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:8,topRightRadius:8,url:\"https://youtu.be/NwIOHCdNiws\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14wucwy\",\"data-framer-name\":\"Diagram\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kkl4k7\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1zkh0i\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1t9e73i\",\"data-styles-preset\":\"mTO7UFQUn\",style:{\"--framer-text-alignment\":\"center\"},children:\"Plays Nice With Your Sales Stack\"})}),className:\"framer-1v94tnn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m4cqfk\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E03vyuemz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+575+0+60+63.2+0+0),sizes:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 60px) * 0.8)`,src:\"https://framerusercontent.com/images/kqwtCt0VfRmBvyEyY1qxmmyTILw.png\",srcSet:\"https://framerusercontent.com/images/kqwtCt0VfRmBvyEyY1qxmmyTILw.png?scale-down-to=512 512w,https://framerusercontent.com/images/kqwtCt0VfRmBvyEyY1qxmmyTILw.png 966w\"}},UupfzB1MA:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+985+0+0+40+63.2+0+0),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 60px)`,src:\"https://framerusercontent.com/images/kqwtCt0VfRmBvyEyY1qxmmyTILw.png\",srcSet:\"https://framerusercontent.com/images/kqwtCt0VfRmBvyEyY1qxmmyTILw.png?scale-down-to=512 512w,https://framerusercontent.com/images/kqwtCt0VfRmBvyEyY1qxmmyTILw.png 966w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+580+0+60+63.2+0+0),sizes:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 80px) * 0.8)`,src:\"https://framerusercontent.com/images/kqwtCt0VfRmBvyEyY1qxmmyTILw.png\",srcSet:\"https://framerusercontent.com/images/kqwtCt0VfRmBvyEyY1qxmmyTILw.png?scale-down-to=512 512w,https://framerusercontent.com/images/kqwtCt0VfRmBvyEyY1qxmmyTILw.png 966w\"},className:\"framer-1n2ggvk\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5jwnh5\",\"data-framer-name\":\"Sunmmary\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4zwo6s\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aumik7\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1t9e73i\",\"data-styles-preset\":\"mTO7UFQUn\",style:{\"--framer-text-alignment\":\"center\"},children:\"Get X-Ray Vision Into Your Last Call\"})}),className:\"framer-1xn31rd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wk076l\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v2ha8i\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-9mpx22\",\"data-styles-preset\":\"xU_WpCeZp\",children:\"Know what happened on call\"})}),className:\"framer-1n5xr9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17mcyib\",\"data-styles-preset\":\"aPK8xlHr3\",children:\"Aviso\u2019s Notetaker bot and Auto-Summarization give you a gist of what happened on every call. Alongside key seller KPIs, buyer intent metrics, and next step.\"})}),className:\"framer-1rkl7vt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a3yqev\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E03vyuemz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1158.2+0+113.2+30+0+-66.4),sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 110px) / 1.4, 1px)`,src:\"https://framerusercontent.com/images/kySKNZfh8tTOO0QTnFjMY9n3VE.png\",srcSet:\"https://framerusercontent.com/images/kySKNZfh8tTOO0QTnFjMY9n3VE.png?scale-down-to=512 512w,https://framerusercontent.com/images/kySKNZfh8tTOO0QTnFjMY9n3VE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kySKNZfh8tTOO0QTnFjMY9n3VE.png 1200w\"}},UupfzB1MA:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1528.2+0+83.2+40+187.2+0+0),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 60px)`,src:\"https://framerusercontent.com/images/kySKNZfh8tTOO0QTnFjMY9n3VE.png\",srcSet:\"https://framerusercontent.com/images/kySKNZfh8tTOO0QTnFjMY9n3VE.png?scale-down-to=512 512w,https://framerusercontent.com/images/kySKNZfh8tTOO0QTnFjMY9n3VE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kySKNZfh8tTOO0QTnFjMY9n3VE.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1163.2+0+113.2+40+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 130px) * 0.6, 1px)`,src:\"https://framerusercontent.com/images/kySKNZfh8tTOO0QTnFjMY9n3VE.png\",srcSet:\"https://framerusercontent.com/images/kySKNZfh8tTOO0QTnFjMY9n3VE.png?scale-down-to=512 512w,https://framerusercontent.com/images/kySKNZfh8tTOO0QTnFjMY9n3VE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kySKNZfh8tTOO0QTnFjMY9n3VE.png 1200w\"},className:\"framer-18wrdup\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hweta5\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3vueuf\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E03vyuemz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1158.2+0+320.4+30+0+-66.4),sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 110px) / 1.4, 1px)`,src:\"https://framerusercontent.com/images/1nQr0tV5pL9pLAvXJcLjDvdn7z0.png\",srcSet:\"https://framerusercontent.com/images/1nQr0tV5pL9pLAvXJcLjDvdn7z0.png?scale-down-to=512 512w,https://framerusercontent.com/images/1nQr0tV5pL9pLAvXJcLjDvdn7z0.png 900w\"}},UupfzB1MA:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1528.2+0+610.4+40+187.2+0+0),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 60px)`,src:\"https://framerusercontent.com/images/1nQr0tV5pL9pLAvXJcLjDvdn7z0.png\",srcSet:\"https://framerusercontent.com/images/1nQr0tV5pL9pLAvXJcLjDvdn7z0.png?scale-down-to=512 512w,https://framerusercontent.com/images/1nQr0tV5pL9pLAvXJcLjDvdn7z0.png 900w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1163.2+0+463.2+40+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 130px) * 0.6, 1px)`,src:\"https://framerusercontent.com/images/1nQr0tV5pL9pLAvXJcLjDvdn7z0.png\",srcSet:\"https://framerusercontent.com/images/1nQr0tV5pL9pLAvXJcLjDvdn7z0.png?scale-down-to=512 512w,https://framerusercontent.com/images/1nQr0tV5pL9pLAvXJcLjDvdn7z0.png 900w\"},className:\"framer-sdflvw\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-66wxzy\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-9mpx22\",\"data-styles-preset\":\"xU_WpCeZp\",children:\"Conduct effective coaching sessions\"})}),className:\"framer-141w046\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17mcyib\",\"data-styles-preset\":\"aPK8xlHr3\",children:\"Spot rep weaknesses like speaking too often, feature-pitching, or unanswered objections. And use the tactics top performers use to turn every rep into a rockstar.\"})}),className:\"framer-pegh9y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-md8drv\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f4wwqa\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-9mpx22\",\"data-styles-preset\":\"xU_WpCeZp\",children:\"Know what led to buyers gaining or losing interest\"})}),className:\"framer-wqub2y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17mcyib\",\"data-styles-preset\":\"aPK8xlHr3\",children:\"Learn the aspects driving buyer sentiment so you fine-tune your pitch based on what topics, themes, and phrases created excitement/ raised objections.\"})}),className:\"framer-8js65g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zz1ayt\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E03vyuemz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1158.2+0+527.6+30+0+-66.4),sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 110px) / 1.4, 1px)`,src:\"https://framerusercontent.com/images/6EKMXsS5SvV7WCvOeirKMmLejnc.png\",srcSet:\"https://framerusercontent.com/images/6EKMXsS5SvV7WCvOeirKMmLejnc.png?scale-down-to=512 512w,https://framerusercontent.com/images/6EKMXsS5SvV7WCvOeirKMmLejnc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6EKMXsS5SvV7WCvOeirKMmLejnc.png 1200w\"}},UupfzB1MA:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1528.2+0+1137.6+40+187.2+0+0),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 60px)`,src:\"https://framerusercontent.com/images/6EKMXsS5SvV7WCvOeirKMmLejnc.png\",srcSet:\"https://framerusercontent.com/images/6EKMXsS5SvV7WCvOeirKMmLejnc.png?scale-down-to=512 512w,https://framerusercontent.com/images/6EKMXsS5SvV7WCvOeirKMmLejnc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6EKMXsS5SvV7WCvOeirKMmLejnc.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1163.2+0+813.2+40+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 130px) * 0.6, 1px)`,src:\"https://framerusercontent.com/images/6EKMXsS5SvV7WCvOeirKMmLejnc.png\",srcSet:\"https://framerusercontent.com/images/6EKMXsS5SvV7WCvOeirKMmLejnc.png?scale-down-to=512 512w,https://framerusercontent.com/images/6EKMXsS5SvV7WCvOeirKMmLejnc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6EKMXsS5SvV7WCvOeirKMmLejnc.png 1200w\"},className:\"framer-1ohl6hn\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v26l7c\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3tmpzy\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E03vyuemz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1158.2+0+734.8+30+0+-66.4),sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 110px) / 1.4, 1px)`,src:\"https://framerusercontent.com/images/vutY6t9ywXY7NbmlSj7DTYuNsU.png\",srcSet:\"https://framerusercontent.com/images/vutY6t9ywXY7NbmlSj7DTYuNsU.png?scale-down-to=512 512w,https://framerusercontent.com/images/vutY6t9ywXY7NbmlSj7DTYuNsU.png 900w\"}},UupfzB1MA:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1528.2+0+1664.8+40+187.2+0+0),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 60px)`,src:\"https://framerusercontent.com/images/vutY6t9ywXY7NbmlSj7DTYuNsU.png\",srcSet:\"https://framerusercontent.com/images/vutY6t9ywXY7NbmlSj7DTYuNsU.png?scale-down-to=512 512w,https://framerusercontent.com/images/vutY6t9ywXY7NbmlSj7DTYuNsU.png 900w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1163.2+0+1163.2+40+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 130px) * 0.6, 1px)`,src:\"https://framerusercontent.com/images/vutY6t9ywXY7NbmlSj7DTYuNsU.png\",srcSet:\"https://framerusercontent.com/images/vutY6t9ywXY7NbmlSj7DTYuNsU.png?scale-down-to=512 512w,https://framerusercontent.com/images/vutY6t9ywXY7NbmlSj7DTYuNsU.png 900w\"},className:\"framer-1gff1vg\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7rhq49\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-9mpx22\",\"data-styles-preset\":\"xU_WpCeZp\",children:\"Gauge what topics motivate and excite buyers\"})}),className:\"framer-1tw4m1t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17mcyib\",\"data-styles-preset\":\"aPK8xlHr3\",children:\"Aviso adds insights based on buyer body language, expressions, and tonality to the transcript. Focus on deals with the most positive signals.\"})}),className:\"framer-1v2b49m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fc5400\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5c2xt3\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-9mpx22\",\"data-styles-preset\":\"xU_WpCeZp\",children:\"Distinguish genuine intent from deceptive responses\"})}),className:\"framer-if9uac\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17mcyib\",\"data-styles-preset\":\"aPK8xlHr3\",children:\"By tracking non-verbal communication with Aviso\u2019s Mehrabian Rule insights and deception with the Pinocchio Effect report, you\u2019ll judge deals based on truth, not bias.\"})}),className:\"framer-1kh3b5s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gj9x3o\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E03vyuemz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1158.2+0+942+30+0+-66.4),sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 110px) / 1.4, 1px)`,src:\"https://framerusercontent.com/images/9GlToAPQpXIlZ5iK4WZSKXrxfJg.png\",srcSet:\"https://framerusercontent.com/images/9GlToAPQpXIlZ5iK4WZSKXrxfJg.png?scale-down-to=512 512w,https://framerusercontent.com/images/9GlToAPQpXIlZ5iK4WZSKXrxfJg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9GlToAPQpXIlZ5iK4WZSKXrxfJg.png 1200w\"}},UupfzB1MA:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1528.2+0+2192+40+187.2+0+0),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 60px)`,src:\"https://framerusercontent.com/images/9GlToAPQpXIlZ5iK4WZSKXrxfJg.png\",srcSet:\"https://framerusercontent.com/images/9GlToAPQpXIlZ5iK4WZSKXrxfJg.png?scale-down-to=512 512w,https://framerusercontent.com/images/9GlToAPQpXIlZ5iK4WZSKXrxfJg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9GlToAPQpXIlZ5iK4WZSKXrxfJg.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1163.2+0+1513.2+40+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 130px) * 0.6, 1px)`,src:\"https://framerusercontent.com/images/9GlToAPQpXIlZ5iK4WZSKXrxfJg.png\",srcSet:\"https://framerusercontent.com/images/9GlToAPQpXIlZ5iK4WZSKXrxfJg.png?scale-down-to=512 512w,https://framerusercontent.com/images/9GlToAPQpXIlZ5iK4WZSKXrxfJg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9GlToAPQpXIlZ5iK4WZSKXrxfJg.png 1200w\"},className:\"framer-162222\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lt8m2z\",\"data-framer-name\":\"Sunmmary\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i4hbuf\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k5v99w\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E03vyuemz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2357.4+0+0+30+0+3.6),positionX:\"center\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 110px) / 1.4, 1px)`,src:\"https://framerusercontent.com/images/0n38UKLqiUCnBoAQkJzRDSk1lM.png\",srcSet:\"https://framerusercontent.com/images/0n38UKLqiUCnBoAQkJzRDSk1lM.png?scale-down-to=1024 956w,https://framerusercontent.com/images/0n38UKLqiUCnBoAQkJzRDSk1lM.png 1507w\"}},UupfzB1MA:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4307.4+0+0+40+327.2+0+0),positionX:\"center\",positionY:\"top\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 60px)`,src:\"https://framerusercontent.com/images/0n38UKLqiUCnBoAQkJzRDSk1lM.png\",srcSet:\"https://framerusercontent.com/images/0n38UKLqiUCnBoAQkJzRDSk1lM.png?scale-down-to=1024 956w,https://framerusercontent.com/images/0n38UKLqiUCnBoAQkJzRDSk1lM.png 1507w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3076.4+0+0+63.6+0+0),positionX:\"center\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 130px) * 0.6, 1px)`,src:\"https://framerusercontent.com/images/0n38UKLqiUCnBoAQkJzRDSk1lM.png\",srcSet:\"https://framerusercontent.com/images/0n38UKLqiUCnBoAQkJzRDSk1lM.png?scale-down-to=1024 956w,https://framerusercontent.com/images/0n38UKLqiUCnBoAQkJzRDSk1lM.png 1507w\"},className:\"framer-1h1myc0\",\"data-border\":true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dhdsdv\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1t9e73i\",\"data-styles-preset\":\"mTO7UFQUn\",children:\"Get Conversation Intelligence Insights\"})}),className:\"framer-12jak08\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17mcyib\",\"data-styles-preset\":\"aPK8xlHr3\",children:\"Just upload your call recording link and get conversation insights with Aviso's Conversational Intelligence.\"})}),className:\"framer-1lgzkqd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i20olk\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E03vyuemz:{y:(componentViewport?.y||0)+0+2357.4+0+0+30+0+187.2+10},UupfzB1MA:{y:(componentViewport?.y||0)+0+4307.4+0+0+40+0+0+187.2+10}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:(componentViewport?.y||0)+0+3076.4+0+0+60+0+187.2+10,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-u2fcsn-container\",id:\"u2fcsn\",nodeId:\"arL9XbOBD\",scopeId:\"hscn8vx4B\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E03vyuemz:{variant:\"NEMiss5dL\"},UupfzB1MA:{variant:\"NEMiss5dL\"}},children:/*#__PURE__*/_jsx(CTA,{BQsktEUSb:\"rgb(240, 78, 69)\",dokqkteWW:\"rgb(255, 255, 255)\",GfUT0QoAc:\"rgb(255, 255, 255)\",height:\"100%\",id:\"arL9XbOBD\",j5hkksqcg:\"var(--token-eefdec83-aa59-420a-b5d6-e47764f513c9, rgb(240, 78, 69))\",layoutId:\"arL9XbOBD\",Njil5uLZ7:\"Get Free Summary\",variant:\"Pht74xd2a\",Vh6K_4lTe:\"ArrowRight\",width:\"100%\",Y39GohiV6:false,zl1qxW7WF:zl1qxW7WF3bnx0g({overlay:overlay1})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1pqb5w6\"),\"data-framer-portal-id\":\"u2fcsn\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"FFtu5neYP\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E03vyuemz:{width:\"45vw\"},UupfzB1MA:{width:\"85vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"35vw\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1r8ph8b-container\"),\"data-framer-portal-id\":\"u2fcsn\",inComponentSlot:true,nodeId:\"H3uMN8_ZA\",rendersWithMotion:true,scopeId:\"hscn8vx4B\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E03vyuemz:{variant:\"ILlLxAvYd\"},UupfzB1MA:{variant:\"ILlLxAvYd\"}},children:/*#__PURE__*/_jsx(HubspotOverlayForm,{cSFXcEx19:\"Get your free call summary\",height:\"100%\",id:\"H3uMN8_ZA\",layoutId:\"H3uMN8_ZA\",O8mu9XXtf:\"531684\",style:{width:\"100%\"},variant:\"COzSQBvhp\",width:\"100%\",zAw6GvxxN:\"b8656618-1942-4dba-a23f-472e0f7b1605\"})})})})})]}),getContainer())})})]})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mli7u7\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-148gsyf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"FhYtg3AWf\",scopeId:\"hscn8vx4B\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UupfzB1MA:{srcFile:undefined}},children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"FhYtg3AWf\",layoutId:\"FhYtg3AWf\",srcFile:\"https://framerusercontent.com/assets/9GjMOsdIZYO0HZnpfBuuHuf0vPU.pdf\",srcType:\"Upload\",srcURL:\"\",style:{height:\"100%\",width:\"100%\"},styleOptions:{backgroundColor:\"rgb(17, 17, 17)\",borderRadius:50,color:\"rgb(255, 255, 255)\",gap:5,padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10},text:\"Download\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E03vyuemz:{y:(componentViewport?.y||0)+0+2357.4+0+0+30+0+256.2+0+0},UupfzB1MA:{y:(componentViewport?.y||0)+0+4307.4+0+0+40+0+0+256.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:(componentViewport?.y||0)+0+3076.4+0+0+60+0+256.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bgweql-container\",nodeId:\"Lw97UytQz\",scopeId:\"hscn8vx4B\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E03vyuemz:{variant:\"DHnr3fiH4\"},UupfzB1MA:{variant:\"DHnr3fiH4\"}},children:/*#__PURE__*/_jsx(CTA,{BQsktEUSb:\"rgb(240, 78, 69)\",dokqkteWW:\"rgb(255, 255, 255)\",GfUT0QoAc:\"rgb(255, 255, 255)\",height:\"100%\",id:\"Lw97UytQz\",j5hkksqcg:\"var(--token-eefdec83-aa59-420a-b5d6-e47764f513c9, rgb(240, 78, 69))\",layoutId:\"Lw97UytQz\",Njil5uLZ7:\"View Sample Transcript\",variant:\"MojREjteU\",Vh6K_4lTe:\"DownloadSimple\",width:\"100%\",Y39GohiV6:false})})})})})]})]})]})}),/*#__PURE__*/_jsx(Overlay,{children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E03vyuemz:{y:(componentViewport?.y||0)+0+2754.6},UupfzB1MA:{y:(componentViewport?.y||0)+0+4974.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:733,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3503.6,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-v1qbd9-container\",id:\"v1qbd9\",nodeId:\"b9Uw_hZZK\",scopeId:\"hscn8vx4B\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E03vyuemz:{variant:\"EuqWzZr2B\"},UupfzB1MA:{variant:\"K8eeIoSd0\"}},children:/*#__PURE__*/_jsx(Footer,{c9YmYerwN:\"Get Free Summary\",height:\"100%\",id:\"b9Uw_hZZK\",KpcTdDdAu:\"Get 1-Click Conversation Summary Of Your Call\",layoutId:\"b9Uw_hZZK\",PxcBbjhVm:PxcBbjhVm3bnx0g({overlay:overlay2}),style:{width:\"100%\"},V8DHm4KfK:true,variant:\"ZRiCWMcVj\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-17cb1wm\"),\"data-framer-portal-id\":\"v1qbd9\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"zu2qBfYZG\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E03vyuemz:{width:\"45vw\"},UupfzB1MA:{width:\"85vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"35vw\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-150p842-container\"),\"data-framer-portal-id\":\"v1qbd9\",inComponentSlot:true,nodeId:\"z_e1gRCCX\",rendersWithMotion:true,scopeId:\"hscn8vx4B\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E03vyuemz:{variant:\"ILlLxAvYd\"},UupfzB1MA:{variant:\"ILlLxAvYd\"}},children:/*#__PURE__*/_jsx(HubspotOverlayForm,{cSFXcEx19:\"Get your free call summary\",height:\"100%\",id:\"z_e1gRCCX\",layoutId:\"z_e1gRCCX\",O8mu9XXtf:\"531684\",style:{width:\"100%\"},variant:\"COzSQBvhp\",width:\"100%\",zAw6GvxxN:\"b8656618-1942-4dba-a23f-472e0f7b1605\"})})})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gavx2q-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kUUKb9DZk\",scopeId:\"hscn8vx4B\",children:/*#__PURE__*/_jsx(AdvancedOverlay,{backgroundColor:\"rgba(240, 78, 69, 0.75)\",blockScroll:true,delay:3,exitIntent:true,height:\"100%\",id:\"kUUKb9DZk\",layoutId:\"kUUKb9DZk\",style:{height:\"100%\",width:\"100%\"},visibility:\"day\",width:\"100%\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:\"720px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-6oig8m-container\",inComponentSlot:true,nodeId:\"cgQofaoTN\",rendersWithMotion:true,scopeId:\"hscn8vx4B\",children:/*#__PURE__*/_jsx(Popup,{height:\"100%\",id:\"cgQofaoTN\",layoutId:\"cgQofaoTN\",variant:\"VSCmF6oeT\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Kv1zJ.framer-1b7nrtl, .framer-Kv1zJ .framer-1b7nrtl { display: block; }\",\".framer-Kv1zJ.framer-oej8kg { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-Kv1zJ .framer-8fs0df-container { flex: none; height: 80px; position: sticky; top: 0px; width: 100%; z-index: 3; }\",\".framer-Kv1zJ .framer-8ngwfu { align-content: center; align-items: center; background-color: var(--token-c4d63f7e-0cf2-44e6-aec2-5ab40fbd1f41, #f0f0ff); 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-Kv1zJ .framer-1tzmmo { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 60px 40px 60px 40px; position: relative; width: 1px; }\",\".framer-Kv1zJ .framer-1yumf4m { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Kv1zJ .framer-1ldxu0u, .framer-Kv1zJ .framer-1o8s8p0, .framer-Kv1zJ .framer-1o1lncx, .framer-Kv1zJ .framer-1v94tnn, .framer-Kv1zJ .framer-1xn31rd, .framer-Kv1zJ .framer-1n5xr9, .framer-Kv1zJ .framer-141w046, .framer-Kv1zJ .framer-wqub2y, .framer-Kv1zJ .framer-1tw4m1t, .framer-Kv1zJ .framer-if9uac, .framer-Kv1zJ .framer-12jak08 { --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-Kv1zJ .framer-x5vgrq, .framer-Kv1zJ .framer-i20olk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Kv1zJ .framer-1ajl4lb-container, .framer-Kv1zJ .framer-u2fcsn-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Kv1zJ.framer-1yv0o2n, .framer-Kv1zJ.framer-1pqb5w6 { background-color: rgba(240, 78, 69, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 4; }\",\".framer-Kv1zJ.framer-2sgzik-container, .framer-Kv1zJ.framer-1r8ph8b-container { flex: none; height: auto; left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 35%; z-index: 4; }\",\".framer-Kv1zJ .framer-1ihwq7, .framer-Kv1zJ .framer-1a3yqev, .framer-Kv1zJ .framer-3vueuf, .framer-Kv1zJ .framer-zz1ayt, .framer-Kv1zJ .framer-3tmpzy, .framer-Kv1zJ .framer-1gj9x3o, .framer-Kv1zJ .framer-1k5v99w { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.6 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Kv1zJ .framer-ptl3f0-container { aspect-ratio: 1.5368421052631578 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 380px); position: relative; width: 100%; }\",\".framer-Kv1zJ .framer-14wucwy { 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-Kv1zJ .framer-kkl4k7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 60px 40px 60px 40px; position: relative; width: 1px; }\",\".framer-Kv1zJ .framer-1zkh0i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 45%; }\",\".framer-Kv1zJ .framer-1m4cqfk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 80%; }\",\".framer-Kv1zJ .framer-1n2ggvk { aspect-ratio: 2.24 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 400px); position: relative; width: 100%; }\",\".framer-Kv1zJ .framer-5jwnh5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-Kv1zJ .framer-4zwo6s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 60px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-Kv1zJ .framer-1aumik7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 65%; }\",\".framer-Kv1zJ .framer-wk076l, .framer-Kv1zJ .framer-hweta5, .framer-Kv1zJ .framer-md8drv, .framer-Kv1zJ .framer-1v26l7c, .framer-Kv1zJ .framer-1fc5400 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 40px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-Kv1zJ .framer-v2ha8i, .framer-Kv1zJ .framer-66wxzy, .framer-Kv1zJ .framer-f4wwqa, .framer-Kv1zJ .framer-7rhq49, .framer-Kv1zJ .framer-5c2xt3, .framer-Kv1zJ .framer-1dhdsdv { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.4 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Kv1zJ .framer-1rkl7vt, .framer-Kv1zJ .framer-pegh9y, .framer-Kv1zJ .framer-8js65g, .framer-Kv1zJ .framer-1v2b49m, .framer-Kv1zJ .framer-1kh3b5s, .framer-Kv1zJ .framer-1lgzkqd { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Kv1zJ .framer-18wrdup, .framer-Kv1zJ .framer-1ohl6hn, .framer-Kv1zJ .framer-162222 { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 482px); position: relative; width: 100%; }\",\".framer-Kv1zJ .framer-sdflvw, .framer-Kv1zJ .framer-1gff1vg { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 481px); position: relative; width: 100%; }\",\".framer-Kv1zJ .framer-1lt8m2z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Kv1zJ .framer-i4hbuf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 60px 40px 60px 40px; position: relative; width: 100%; }\",\".framer-Kv1zJ .framer-1h1myc0 { --border-bottom-width: 2px; --border-color: var(--token-e773861b-3234-4a84-9f49-2ef3394da7c9, #e0e0ff); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; aspect-ratio: 1.3333333333333333 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 481px); position: relative; width: 100%; }\",\".framer-Kv1zJ .framer-1mli7u7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Kv1zJ .framer-148gsyf-container { bottom: 0px; flex: none; height: 90%; opacity: 0; position: absolute; right: 0px; width: 100%; z-index: 1; }\",\".framer-Kv1zJ .framer-1bgweql-container { flex: none; height: auto; pointer-events: none; position: relative; width: auto; z-index: 1; }\",\".framer-Kv1zJ .framer-v1qbd9-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Kv1zJ.framer-17cb1wm { background-color: rgba(240, 78, 69, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 2; }\",\".framer-Kv1zJ.framer-150p842-container { flex: none; height: auto; left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 35%; z-index: 2; }\",\".framer-Kv1zJ .framer-1gavx2q-container { flex: none; height: 1px; position: relative; width: 1px; z-index: 5; }\",\".framer-Kv1zJ .framer-6oig8m-container { height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Kv1zJ.framer-oej8kg, .framer-Kv1zJ .framer-8ngwfu, .framer-Kv1zJ .framer-1tzmmo, .framer-Kv1zJ .framer-1yumf4m, .framer-Kv1zJ .framer-x5vgrq, .framer-Kv1zJ .framer-1ihwq7, .framer-Kv1zJ .framer-14wucwy, .framer-Kv1zJ .framer-kkl4k7, .framer-Kv1zJ .framer-1zkh0i, .framer-Kv1zJ .framer-1m4cqfk, .framer-Kv1zJ .framer-5jwnh5, .framer-Kv1zJ .framer-4zwo6s, .framer-Kv1zJ .framer-1aumik7, .framer-Kv1zJ .framer-wk076l, .framer-Kv1zJ .framer-v2ha8i, .framer-Kv1zJ .framer-1a3yqev, .framer-Kv1zJ .framer-hweta5, .framer-Kv1zJ .framer-3vueuf, .framer-Kv1zJ .framer-66wxzy, .framer-Kv1zJ .framer-md8drv, .framer-Kv1zJ .framer-f4wwqa, .framer-Kv1zJ .framer-zz1ayt, .framer-Kv1zJ .framer-1v26l7c, .framer-Kv1zJ .framer-3tmpzy, .framer-Kv1zJ .framer-7rhq49, .framer-Kv1zJ .framer-1fc5400, .framer-Kv1zJ .framer-5c2xt3, .framer-Kv1zJ .framer-1gj9x3o, .framer-Kv1zJ .framer-1lt8m2z, .framer-Kv1zJ .framer-i4hbuf, .framer-Kv1zJ .framer-1k5v99w, .framer-Kv1zJ .framer-1dhdsdv, .framer-Kv1zJ .framer-i20olk, .framer-Kv1zJ .framer-1mli7u7 { gap: 0px; } .framer-Kv1zJ.framer-oej8kg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Kv1zJ.framer-oej8kg > :first-child, .framer-Kv1zJ .framer-1yumf4m > :first-child, .framer-Kv1zJ .framer-1ihwq7 > :first-child, .framer-Kv1zJ .framer-kkl4k7 > :first-child, .framer-Kv1zJ .framer-1zkh0i > :first-child, .framer-Kv1zJ .framer-1m4cqfk > :first-child, .framer-Kv1zJ .framer-5jwnh5 > :first-child, .framer-Kv1zJ .framer-4zwo6s > :first-child, .framer-Kv1zJ .framer-1aumik7 > :first-child, .framer-Kv1zJ .framer-v2ha8i > :first-child, .framer-Kv1zJ .framer-1a3yqev > :first-child, .framer-Kv1zJ .framer-3vueuf > :first-child, .framer-Kv1zJ .framer-66wxzy > :first-child, .framer-Kv1zJ .framer-f4wwqa > :first-child, .framer-Kv1zJ .framer-zz1ayt > :first-child, .framer-Kv1zJ .framer-3tmpzy > :first-child, .framer-Kv1zJ .framer-7rhq49 > :first-child, .framer-Kv1zJ .framer-5c2xt3 > :first-child, .framer-Kv1zJ .framer-1gj9x3o > :first-child, .framer-Kv1zJ .framer-1lt8m2z > :first-child, .framer-Kv1zJ .framer-1k5v99w > :first-child, .framer-Kv1zJ .framer-1dhdsdv > :first-child, .framer-Kv1zJ .framer-1mli7u7 > :first-child { margin-top: 0px; } .framer-Kv1zJ.framer-oej8kg > :last-child, .framer-Kv1zJ .framer-1yumf4m > :last-child, .framer-Kv1zJ .framer-1ihwq7 > :last-child, .framer-Kv1zJ .framer-kkl4k7 > :last-child, .framer-Kv1zJ .framer-1zkh0i > :last-child, .framer-Kv1zJ .framer-1m4cqfk > :last-child, .framer-Kv1zJ .framer-5jwnh5 > :last-child, .framer-Kv1zJ .framer-4zwo6s > :last-child, .framer-Kv1zJ .framer-1aumik7 > :last-child, .framer-Kv1zJ .framer-v2ha8i > :last-child, .framer-Kv1zJ .framer-1a3yqev > :last-child, .framer-Kv1zJ .framer-3vueuf > :last-child, .framer-Kv1zJ .framer-66wxzy > :last-child, .framer-Kv1zJ .framer-f4wwqa > :last-child, .framer-Kv1zJ .framer-zz1ayt > :last-child, .framer-Kv1zJ .framer-3tmpzy > :last-child, .framer-Kv1zJ .framer-7rhq49 > :last-child, .framer-Kv1zJ .framer-5c2xt3 > :last-child, .framer-Kv1zJ .framer-1gj9x3o > :last-child, .framer-Kv1zJ .framer-1lt8m2z > :last-child, .framer-Kv1zJ .framer-1k5v99w > :last-child, .framer-Kv1zJ .framer-1dhdsdv > :last-child, .framer-Kv1zJ .framer-1mli7u7 > :last-child { margin-bottom: 0px; } .framer-Kv1zJ .framer-8ngwfu > *, .framer-Kv1zJ .framer-14wucwy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Kv1zJ .framer-8ngwfu > :first-child, .framer-Kv1zJ .framer-1tzmmo > :first-child, .framer-Kv1zJ .framer-x5vgrq > :first-child, .framer-Kv1zJ .framer-14wucwy > :first-child, .framer-Kv1zJ .framer-wk076l > :first-child, .framer-Kv1zJ .framer-hweta5 > :first-child, .framer-Kv1zJ .framer-md8drv > :first-child, .framer-Kv1zJ .framer-1v26l7c > :first-child, .framer-Kv1zJ .framer-1fc5400 > :first-child, .framer-Kv1zJ .framer-i4hbuf > :first-child, .framer-Kv1zJ .framer-i20olk > :first-child { margin-left: 0px; } .framer-Kv1zJ .framer-8ngwfu > :last-child, .framer-Kv1zJ .framer-1tzmmo > :last-child, .framer-Kv1zJ .framer-x5vgrq > :last-child, .framer-Kv1zJ .framer-14wucwy > :last-child, .framer-Kv1zJ .framer-wk076l > :last-child, .framer-Kv1zJ .framer-hweta5 > :last-child, .framer-Kv1zJ .framer-md8drv > :last-child, .framer-Kv1zJ .framer-1v26l7c > :last-child, .framer-Kv1zJ .framer-1fc5400 > :last-child, .framer-Kv1zJ .framer-i4hbuf > :last-child, .framer-Kv1zJ .framer-i20olk > :last-child { margin-right: 0px; } .framer-Kv1zJ .framer-1tzmmo > *, .framer-Kv1zJ .framer-wk076l > *, .framer-Kv1zJ .framer-hweta5 > *, .framer-Kv1zJ .framer-md8drv > *, .framer-Kv1zJ .framer-1v26l7c > *, .framer-Kv1zJ .framer-1fc5400 > *, .framer-Kv1zJ .framer-i4hbuf > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-Kv1zJ .framer-1yumf4m > *, .framer-Kv1zJ .framer-1ihwq7 > *, .framer-Kv1zJ .framer-1zkh0i > *, .framer-Kv1zJ .framer-1m4cqfk > *, .framer-Kv1zJ .framer-1aumik7 > *, .framer-Kv1zJ .framer-v2ha8i > *, .framer-Kv1zJ .framer-1a3yqev > *, .framer-Kv1zJ .framer-3vueuf > *, .framer-Kv1zJ .framer-66wxzy > *, .framer-Kv1zJ .framer-f4wwqa > *, .framer-Kv1zJ .framer-zz1ayt > *, .framer-Kv1zJ .framer-3tmpzy > *, .framer-Kv1zJ .framer-7rhq49 > *, .framer-Kv1zJ .framer-5c2xt3 > *, .framer-Kv1zJ .framer-1gj9x3o > *, .framer-Kv1zJ .framer-1k5v99w > *, .framer-Kv1zJ .framer-1dhdsdv > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Kv1zJ .framer-x5vgrq > *, .framer-Kv1zJ .framer-i20olk > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-Kv1zJ .framer-kkl4k7 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Kv1zJ .framer-5jwnh5 > *, .framer-Kv1zJ .framer-1lt8m2z > *, .framer-Kv1zJ .framer-1mli7u7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Kv1zJ .framer-4zwo6s > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-Kv1zJ[data-border=\"true\"]::after, .framer-Kv1zJ [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: 810px) and (max-width: 1199px) { .framer-Kv1zJ.framer-oej8kg { width: 810px; } .framer-Kv1zJ .framer-1tzmmo { gap: 20px; padding: 60px 30px 60px 30px; } .framer-Kv1zJ .framer-1yumf4m { flex: 1 0 0px; } .framer-Kv1zJ.framer-2sgzik-container, .framer-Kv1zJ.framer-1r8ph8b-container, .framer-Kv1zJ.framer-150p842-container { width: 45%; } .framer-Kv1zJ .framer-1ihwq7, .framer-Kv1zJ .framer-1a3yqev, .framer-Kv1zJ .framer-3vueuf, .framer-Kv1zJ .framer-zz1ayt, .framer-Kv1zJ .framer-3tmpzy, .framer-Kv1zJ .framer-1gj9x3o, .framer-Kv1zJ .framer-1k5v99w { align-self: stretch; flex: 1 0 0px; height: auto; } .framer-Kv1zJ .framer-ptl3f0-container { height: var(--framer-aspect-ratio-supported, 237px); } .framer-Kv1zJ .framer-kkl4k7 { padding: 60px 30px 60px 30px; } .framer-Kv1zJ .framer-1n2ggvk { height: var(--framer-aspect-ratio-supported, 268px); } .framer-Kv1zJ .framer-4zwo6s { padding: 60px 30px 0px 30px; } .framer-Kv1zJ .framer-wk076l, .framer-Kv1zJ .framer-hweta5, .framer-Kv1zJ .framer-md8drv, .framer-Kv1zJ .framer-1v26l7c, .framer-Kv1zJ .framer-1fc5400 { padding: 30px 30px 0px 30px; } .framer-Kv1zJ .framer-18wrdup, .framer-Kv1zJ .framer-sdflvw, .framer-Kv1zJ .framer-1ohl6hn, .framer-Kv1zJ .framer-1gff1vg, .framer-Kv1zJ .framer-162222, .framer-Kv1zJ .framer-1h1myc0 { height: var(--framer-aspect-ratio-supported, 375px); } .framer-Kv1zJ .framer-i4hbuf { padding: 30px 30px 60px 30px; } .framer-Kv1zJ .framer-1mli7u7 { align-content: flex-start; align-items: flex-start; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Kv1zJ .framer-1tzmmo { gap: 0px; } .framer-Kv1zJ .framer-1tzmmo > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Kv1zJ .framer-1tzmmo > :first-child { margin-left: 0px; } .framer-Kv1zJ .framer-1tzmmo > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 809px) { .framer-Kv1zJ.framer-oej8kg { width: 390px; } .framer-Kv1zJ .framer-8ngwfu, .framer-Kv1zJ .framer-14wucwy { flex-direction: column; } .framer-Kv1zJ .framer-1tzmmo { flex: none; flex-direction: column; gap: 10px; justify-content: flex-start; padding: 60px 30px 60px 30px; width: 100%; } .framer-Kv1zJ .framer-1yumf4m { -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); background-color: rgba(240, 240, 255, 0.5); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; padding: 0px 0px 20px 0px; width: 100%; z-index: 1; } .framer-Kv1zJ.framer-2sgzik-container, .framer-Kv1zJ.framer-1r8ph8b-container, .framer-Kv1zJ.framer-150p842-container { width: 85%; } .framer-Kv1zJ .framer-1ihwq7 { flex: none; width: 100%; } .framer-Kv1zJ .framer-ptl3f0-container { height: var(--framer-aspect-ratio-supported, 215px); } .framer-Kv1zJ .framer-kkl4k7 { flex: none; padding: 40px 30px 40px 30px; width: 100%; } .framer-Kv1zJ .framer-1zkh0i { order: 0; width: 100%; } .framer-Kv1zJ .framer-1m4cqfk { order: 1; width: 100%; } .framer-Kv1zJ .framer-1n2ggvk { height: var(--framer-aspect-ratio-supported, 147px); } .framer-Kv1zJ .framer-5jwnh5, .framer-Kv1zJ .framer-1lt8m2z { gap: 0px; } .framer-Kv1zJ .framer-4zwo6s { gap: 20px; padding: 40px 30px 0px 30px; } .framer-Kv1zJ .framer-1aumik7 { order: 0; width: 80%; } .framer-Kv1zJ .framer-wk076l, .framer-Kv1zJ .framer-hweta5, .framer-Kv1zJ .framer-md8drv, .framer-Kv1zJ .framer-1v26l7c, .framer-Kv1zJ .framer-1fc5400, .framer-Kv1zJ .framer-i4hbuf { flex-direction: column; gap: 20px; padding: 40px 30px 0px 30px; } .framer-Kv1zJ .framer-v2ha8i, .framer-Kv1zJ .framer-66wxzy, .framer-Kv1zJ .framer-f4wwqa, .framer-Kv1zJ .framer-7rhq49, .framer-Kv1zJ .framer-5c2xt3, .framer-Kv1zJ .framer-1dhdsdv { flex: none; order: 0; width: 100%; } .framer-Kv1zJ .framer-1a3yqev, .framer-Kv1zJ .framer-3vueuf, .framer-Kv1zJ .framer-zz1ayt, .framer-Kv1zJ .framer-3tmpzy, .framer-Kv1zJ .framer-1gj9x3o, .framer-Kv1zJ .framer-1k5v99w { flex: none; order: 1; width: 100%; } .framer-Kv1zJ .framer-18wrdup, .framer-Kv1zJ .framer-1ohl6hn, .framer-Kv1zJ .framer-162222, .framer-Kv1zJ .framer-1h1myc0 { height: var(--framer-aspect-ratio-supported, 248px); } .framer-Kv1zJ .framer-sdflvw, .framer-Kv1zJ .framer-1gff1vg { height: var(--framer-aspect-ratio-supported, 247px); } .framer-Kv1zJ .framer-1mli7u7 { align-content: flex-start; align-items: flex-start; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Kv1zJ .framer-8ngwfu, .framer-Kv1zJ .framer-1tzmmo, .framer-Kv1zJ .framer-14wucwy, .framer-Kv1zJ .framer-5jwnh5, .framer-Kv1zJ .framer-4zwo6s, .framer-Kv1zJ .framer-wk076l, .framer-Kv1zJ .framer-hweta5, .framer-Kv1zJ .framer-md8drv, .framer-Kv1zJ .framer-1v26l7c, .framer-Kv1zJ .framer-1fc5400, .framer-Kv1zJ .framer-1lt8m2z, .framer-Kv1zJ .framer-i4hbuf { gap: 0px; } .framer-Kv1zJ .framer-8ngwfu > *, .framer-Kv1zJ .framer-1tzmmo > *, .framer-Kv1zJ .framer-14wucwy > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Kv1zJ .framer-8ngwfu > :first-child, .framer-Kv1zJ .framer-1tzmmo > :first-child, .framer-Kv1zJ .framer-14wucwy > :first-child, .framer-Kv1zJ .framer-5jwnh5 > :first-child, .framer-Kv1zJ .framer-4zwo6s > :first-child, .framer-Kv1zJ .framer-wk076l > :first-child, .framer-Kv1zJ .framer-hweta5 > :first-child, .framer-Kv1zJ .framer-md8drv > :first-child, .framer-Kv1zJ .framer-1v26l7c > :first-child, .framer-Kv1zJ .framer-1fc5400 > :first-child, .framer-Kv1zJ .framer-1lt8m2z > :first-child, .framer-Kv1zJ .framer-i4hbuf > :first-child { margin-top: 0px; } .framer-Kv1zJ .framer-8ngwfu > :last-child, .framer-Kv1zJ .framer-1tzmmo > :last-child, .framer-Kv1zJ .framer-14wucwy > :last-child, .framer-Kv1zJ .framer-5jwnh5 > :last-child, .framer-Kv1zJ .framer-4zwo6s > :last-child, .framer-Kv1zJ .framer-wk076l > :last-child, .framer-Kv1zJ .framer-hweta5 > :last-child, .framer-Kv1zJ .framer-md8drv > :last-child, .framer-Kv1zJ .framer-1v26l7c > :last-child, .framer-Kv1zJ .framer-1fc5400 > :last-child, .framer-Kv1zJ .framer-1lt8m2z > :last-child, .framer-Kv1zJ .framer-i4hbuf > :last-child { margin-bottom: 0px; } .framer-Kv1zJ .framer-5jwnh5 > *, .framer-Kv1zJ .framer-1lt8m2z > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Kv1zJ .framer-4zwo6s > *, .framer-Kv1zJ .framer-wk076l > *, .framer-Kv1zJ .framer-hweta5 > *, .framer-Kv1zJ .framer-md8drv > *, .framer-Kv1zJ .framer-1v26l7c > *, .framer-Kv1zJ .framer-1fc5400 > *, .framer-Kv1zJ .framer-i4hbuf > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5424\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"E03vyuemz\":{\"layout\":[\"fixed\",\"auto\"]},\"UupfzB1MA\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const Framerhscn8vx4B=withCSS(Component,css,\"framer-Kv1zJ\");export default Framerhscn8vx4B;Framerhscn8vx4B.displayName=\"Miki Aviso Ai Chief Of Staff\";Framerhscn8vx4B.defaultProps={height:5424,width:1200};addFonts(Framerhscn8vx4B,[{explicitInter:true,fonts:[{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:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]},...NavigationFonts,...CTAFonts,...HubspotOverlayFormFonts,...YouTubeFonts,...DownloadFonts,...FooterFonts,...PopupFonts,...AdvancedOverlayFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerhscn8vx4B\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"5424\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"E03vyuemz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UupfzB1MA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "_isBot", "isBot", "navigator", "emptySubscribe", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "iframeIsDefaultVisible", "de", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "NavigationFonts", "getFonts", "y6IVmw92W_default", "CTAFonts", "sUAd3ypwY_default", "HubspotOverlayFormFonts", "x81rr7o9g_default", "YouTubeFonts", "Youtube", "DownloadFonts", "Download", "FooterFonts", "oVSyE5nmS_default", "PopupFonts", "yxmfLZyJQ_default", "AdvancedOverlayFonts", "AdvancedOverlay", "breakpoints", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "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", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "zl1qxW7WF3bnx0g", "overlay", "loadMore", "args", "PxcBbjhVm3bnx0g", "scopingClassNames", "cx", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "y6IVmw92W_default", "RichText2", "x", "l", "sUAd3ypwY_default", "AnimatePresence", "Ga", "x81rr7o9g_default", "Youtube", "getLoadingLazyAtYPosition", "Image2", "overlay1", "Download", "overlay2", "oVSyE5nmS_default", "AdvancedOverlay", "yxmfLZyJQ_default", "css", "Framerhscn8vx4B", "withCSS", "hscn8vx4B_default", "addFonts", "NavigationFonts", "CTAFonts", "HubspotOverlayFormFonts", "YouTubeFonts", "DownloadFonts", "FooterFonts", "PopupFonts", "AdvancedOverlayFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
