{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/5sRfRlSQ4nWtKEbxqjqY/eq4yc6OYCKQpkVlotXn0/zzKfvPRit.js", "ssg:https://framerusercontent.com/modules/iSZ7U7OcJFalB3P8CKZf/K8zJ4BShPRm6eHfcGtmU/cLMYEWgtR.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (9f979fb)\nimport{jsx as _jsx,jsxs as _jsxs}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=[\"w6gnc65m3\",\"yawJ2g4y6\",\"Z90J0pJSr\",\"IRJz2cCDV\",\"hpJjvE4Dh\",\"M1sbK6XFU\",\"fpg5U1kQU\",\"bQLPNvoqx\",\"kDbhAApu0\",\"D83jChnDa\"];const serializationHash=\"framer-8QIcv\";const variantClassNames={bQLPNvoqx:\"framer-v-49d1fw\",D83jChnDa:\"framer-v-1demxt6\",fpg5U1kQU:\"framer-v-1ck8vaf\",hpJjvE4Dh:\"framer-v-19fipml\",IRJz2cCDV:\"framer-v-1ownvg7\",kDbhAApu0:\"framer-v-1iem799\",M1sbK6XFU:\"framer-v-mbtwjb\",w6gnc65m3:\"framer-v-qsjl4b\",yawJ2g4y6:\"framer-v-190ngki\",Z90J0pJSr:\"framer-v-1k5u1wg\"};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 transitions={default:{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 humanReadableVariantMap={\"Auto Layout\":\"kDbhAApu0\",\"Calendar Booked\":\"Z90J0pJSr\",\"Convert Website Traffic\":\"w6gnc65m3\",\"Smart FAQ Answers\":\"yawJ2g4y6\",\"SMS Whatsapp\":\"hpJjvE4Dh\",\"Take Over Conversation\":\"IRJz2cCDV\",Cloning:\"bQLPNvoqx\",Search:\"D83jChnDa\",Subflows:\"M1sbK6XFU\",Versioning:\"fpg5U1kQU\"};const getProps=({height,id,radius,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,pWO15gPPi:radius!==null&&radius!==void 0?radius:props.pWO15gPPi,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"w6gnc65m3\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,pWO15gPPi,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"w6gnc65m3\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"hpJjvE4Dh\",\"D83jChnDa\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"IRJz2cCDV\",\"kDbhAApu0\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"Z90J0pJSr\",\"bQLPNvoqx\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"yawJ2g4y6\",\"fpg5U1kQU\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if([\"yawJ2g4y6\",\"Z90J0pJSr\",\"IRJz2cCDV\",\"hpJjvE4Dh\",\"fpg5U1kQU\",\"bQLPNvoqx\",\"kDbhAApu0\",\"D83jChnDa\"].includes(baseVariant))return false;return true;};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:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,background:{alt:\"\",fit:\"fill\",intrinsicHeight:724,intrinsicWidth:672},className:cx(serializationHash,...sharedStyleClassNames,\"framer-qsjl4b\",className,classNames),\"data-framer-name\":\"Convert Website Traffic\",layoutDependency:layoutDependency,layoutId:\"w6gnc65m3\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:pWO15gPPi,borderBottomRightRadius:pWO15gPPi,borderTopLeftRadius:pWO15gPPi,borderTopRightRadius:pWO15gPPi,...style},...addPropertyOverrides({bQLPNvoqx:{\"data-framer-name\":\"Cloning\"},D83jChnDa:{\"data-framer-name\":\"Search\"},fpg5U1kQU:{\"data-framer-name\":\"Versioning\"},hpJjvE4Dh:{\"data-framer-name\":\"SMS Whatsapp\"},IRJz2cCDV:{\"data-framer-name\":\"Take Over Conversation\"},kDbhAApu0:{\"data-framer-name\":\"Auto Layout\"},M1sbK6XFU:{\"data-framer-name\":\"Subflows\"},yawJ2g4y6:{\"data-framer-name\":\"Smart FAQ Answers\"},Z90J0pJSr:{\"data-framer-name\":\"Calendar Booked\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:724,intrinsicWidth:672,pixelHeight:1448,pixelWidth:1344,src:\"https://framerusercontent.com/images/qTosqhZisGy231hF5qfh76yV2ek.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/qTosqhZisGy231hF5qfh76yV2ek.png?scale-down-to=1024 950w, https://framerusercontent.com/images/qTosqhZisGy231hF5qfh76yV2ek.png 1344w\"},className:\"framer-1463ype\",\"data-framer-name\":\"sms_whatsapp\",layoutDependency:layoutDependency,layoutId:\"Nuo2OFLeo\",...addPropertyOverrides({D83jChnDa:{background:{alt:\"Search\",intrinsicHeight:742,intrinsicWidth:688,pixelHeight:742,pixelWidth:688,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/epZ4NZGFvs6uo3EorQyxTKUZyzk.png\",srcSet:\"https://framerusercontent.com/images/epZ4NZGFvs6uo3EorQyxTKUZyzk.png 688w\"}},hpJjvE4Dh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:724,intrinsicWidth:672,pixelHeight:1448,pixelWidth:1344,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/qTosqhZisGy231hF5qfh76yV2ek.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/qTosqhZisGy231hF5qfh76yV2ek.png?scale-down-to=1024 950w, https://framerusercontent.com/images/qTosqhZisGy231hF5qfh76yV2ek.png 1344w\"}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:724,intrinsicWidth:672,pixelHeight:1448,pixelWidth:1344,src:\"https://framerusercontent.com/images/WYT4zBhxeK1Ij6aagIj1gFPmTuU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/WYT4zBhxeK1Ij6aagIj1gFPmTuU.png?scale-down-to=1024 950w, https://framerusercontent.com/images/WYT4zBhxeK1Ij6aagIj1gFPmTuU.png 1344w\"},className:\"framer-15luyre\",\"data-framer-name\":\"take_over_conversation\",layoutDependency:layoutDependency,layoutId:\"P1eVfqj2f\",...addPropertyOverrides({IRJz2cCDV:{background:{alt:\"Live chat\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1900,pixelHeight:2048,pixelWidth:1900,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/fhRAWIUmOQ7Qek11exi9LL1T4.png\",srcSet:\"https://framerusercontent.com/images/fhRAWIUmOQ7Qek11exi9LL1T4.png?scale-down-to=1024 950w, https://framerusercontent.com/images/fhRAWIUmOQ7Qek11exi9LL1T4.png 1900w\"}},kDbhAApu0:{background:{alt:\"Auto layout\",intrinsicHeight:742,intrinsicWidth:688,pixelHeight:742,pixelWidth:688,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/9HgJ68UlZrdze0E0dLnSBLuqneg.png\",srcSet:\"https://framerusercontent.com/images/9HgJ68UlZrdze0E0dLnSBLuqneg.png 688w\"}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:724,intrinsicWidth:672,pixelHeight:1448,pixelWidth:1344,src:\"https://framerusercontent.com/images/QGxoqZ8JViiVqTLZS4FbV0eQQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/QGxoqZ8JViiVqTLZS4FbV0eQQ.png?scale-down-to=1024 950w, https://framerusercontent.com/images/QGxoqZ8JViiVqTLZS4FbV0eQQ.png 1344w\"},className:\"framer-2rlzw6\",\"data-framer-name\":\"calendar_booked\",layoutDependency:layoutDependency,layoutId:\"MDjGPC0JZ\",...addPropertyOverrides({bQLPNvoqx:{background:{alt:\"Cloning\",intrinsicHeight:742,intrinsicWidth:688,pixelHeight:742,pixelWidth:688,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/GStowuPzFBiy8CvIuEq8dMPxEw.png\",srcSet:\"https://framerusercontent.com/images/GStowuPzFBiy8CvIuEq8dMPxEw.png 688w\"}},Z90J0pJSr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:724,intrinsicWidth:672,pixelHeight:1448,pixelWidth:1344,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/QGxoqZ8JViiVqTLZS4FbV0eQQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/QGxoqZ8JViiVqTLZS4FbV0eQQ.png?scale-down-to=1024 950w, https://framerusercontent.com/images/QGxoqZ8JViiVqTLZS4FbV0eQQ.png 1344w\"}}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:724,intrinsicWidth:672,pixelHeight:1448,pixelWidth:1344,src:\"https://framerusercontent.com/images/k7lSCumI6xtRb2E8rert318PiI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/k7lSCumI6xtRb2E8rert318PiI.png?scale-down-to=1024 950w, https://framerusercontent.com/images/k7lSCumI6xtRb2E8rert318PiI.png 1344w\"},className:\"framer-1uwv16h\",\"data-framer-name\":\"smart_faq_answers\",layoutDependency:layoutDependency,layoutId:\"bcRuvQ8rM\",...addPropertyOverrides({fpg5U1kQU:{background:{alt:\"Versioning\",fit:\"fill\",intrinsicHeight:742,intrinsicWidth:688,pixelHeight:742,pixelWidth:688,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/Qb995wOIaPzB7ILnGZyzdtdjjs.png\",srcSet:\"https://framerusercontent.com/images/Qb995wOIaPzB7ILnGZyzdtdjjs.png 688w\"}},yawJ2g4y6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:724,intrinsicWidth:672,pixelHeight:1448,pixelWidth:1344,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/k7lSCumI6xtRb2E8rert318PiI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/k7lSCumI6xtRb2E8rert318PiI.png?scale-down-to=1024 950w, https://framerusercontent.com/images/k7lSCumI6xtRb2E8rert318PiI.png 1344w\"}}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:724,intrinsicWidth:672,pixelHeight:1448,pixelWidth:1344,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/kiqWcojpsN3u0khHr82zVs3i8x4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kiqWcojpsN3u0khHr82zVs3i8x4.png?scale-down-to=1024 950w, https://framerusercontent.com/images/kiqWcojpsN3u0khHr82zVs3i8x4.png 1344w\"},className:\"framer-nqlc2b\",\"data-framer-name\":\"convert_website_traff\",layoutDependency:layoutDependency,layoutId:\"Hjwn2estD\",...addPropertyOverrides({M1sbK6XFU:{background:{alt:\"Subflows\",fit:\"fill\",intrinsicHeight:742,intrinsicWidth:688,pixelHeight:742,pixelWidth:688,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/Ys2YlxUgfipfM0GUMpd0lP0wws.png\",srcSet:\"https://framerusercontent.com/images/Ys2YlxUgfipfM0GUMpd0lP0wws.png 688w\"}}},baseVariant,gestureVariant)})]})})})});});const css=['.framer-8QIcv[data-border=\"true\"]::after, .framer-8QIcv [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8QIcv.framer-chkvss, .framer-8QIcv .framer-chkvss { display: block; }\",\".framer-8QIcv.framer-qsjl4b { height: 724px; overflow: hidden; position: relative; width: 672px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8QIcv .framer-1463ype, .framer-8QIcv .framer-15luyre, .framer-8QIcv .framer-2rlzw6, .framer-8QIcv .framer-1uwv16h, .framer-8QIcv .framer-nqlc2b { aspect-ratio: 0.9281767955801105 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 724px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-8QIcv.framer-v-190ngki.framer-qsjl4b, .framer-8QIcv.framer-v-1k5u1wg.framer-qsjl4b, .framer-8QIcv.framer-v-1ownvg7.framer-qsjl4b, .framer-8QIcv.framer-v-19fipml.framer-qsjl4b, .framer-8QIcv.framer-v-mbtwjb.framer-qsjl4b, .framer-8QIcv.framer-v-1ck8vaf.framer-qsjl4b, .framer-8QIcv.framer-v-49d1fw.framer-qsjl4b, .framer-8QIcv.framer-v-1iem799.framer-qsjl4b, .framer-8QIcv.framer-v-1demxt6.framer-qsjl4b { aspect-ratio: 0.9281767955801105 / 1; height: var(--framer-aspect-ratio-supported, 724px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 724\n * @framerIntrinsicWidth 672\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"yawJ2g4y6\":{\"layout\":[\"fixed\",\"fixed\"]},\"Z90J0pJSr\":{\"layout\":[\"fixed\",\"fixed\"]},\"IRJz2cCDV\":{\"layout\":[\"fixed\",\"fixed\"]},\"hpJjvE4Dh\":{\"layout\":[\"fixed\",\"fixed\"]},\"M1sbK6XFU\":{\"layout\":[\"fixed\",\"fixed\"]},\"fpg5U1kQU\":{\"layout\":[\"fixed\",\"fixed\"]},\"bQLPNvoqx\":{\"layout\":[\"fixed\",\"fixed\"]},\"kDbhAApu0\":{\"layout\":[\"fixed\",\"fixed\"]},\"D83jChnDa\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"pWO15gPPi\":\"radius\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerzzKfvPRit=withCSS(Component,css,\"framer-8QIcv\");export default FramerzzKfvPRit;FramerzzKfvPRit.displayName=\"Switcher Illustrations\";FramerzzKfvPRit.defaultProps={height:724,width:672};addPropertyControls(FramerzzKfvPRit,{variant:{options:[\"w6gnc65m3\",\"yawJ2g4y6\",\"Z90J0pJSr\",\"IRJz2cCDV\",\"hpJjvE4Dh\",\"M1sbK6XFU\",\"fpg5U1kQU\",\"bQLPNvoqx\",\"kDbhAApu0\",\"D83jChnDa\"],optionTitles:[\"Convert Website Traffic\",\"Smart FAQ Answers\",\"Calendar Booked\",\"Take Over Conversation\",\"SMS Whatsapp\",\"Subflows\",\"Versioning\",\"Cloning\",\"Auto Layout\",\"Search\"],title:\"Variant\",type:ControlType.Enum},pWO15gPPi:{defaultValue:0,title:\"Radius\",type:ControlType.Number}});addFonts(FramerzzKfvPRit,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzzKfvPRit\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"pWO15gPPi\\\":\\\"radius\\\"}\",\"framerIntrinsicHeight\":\"724\",\"framerIntrinsicWidth\":\"672\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yawJ2g4y6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Z90J0pJSr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IRJz2cCDV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hpJjvE4Dh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"M1sbK6XFU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fpg5U1kQU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bQLPNvoqx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kDbhAApu0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"D83jChnDa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./zzKfvPRit.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/cuu5YZVkCB7hLY3UDk8S/AXdvHuG7QeD8fkhZzoBI/agjz7zSJc.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/2TZ7iMbFgQI4asq6FlM4/70Aq3Ss96phRNa1pzm2M/EchpJdlyP.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/A209jr6oX6853pZ38wgk/ClFrTUPXqu9KvOS5zrsR/mu2jI7aeA.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/odvxQwalFjyq9qKHAzhn/IhtLK2U8gKRFMsv2XbJr/oAOKXB0z3.js\";import IconsS24px from\"https://framerusercontent.com/modules/mx4lwE6pwKFWfQOLUFDx/ecpvacZgrAiRVKr4ooru/mtAQK_9Lu.js\";import ButtonWithArrowLink from\"https://framerusercontent.com/modules/u04wdZ21km5L8rP68Plb/KQkgn9P4aSJVhdfLmVoQ/ODrmPgqIF.js\";import IconsL40pxBWMerged from\"https://framerusercontent.com/modules/7yWxfAgvodCL21WQdt4x/HpDKK58karzY2U3ZzJuf/zqhnQrOcO.js\";import SwitcherIllustrations from\"https://framerusercontent.com/modules/5sRfRlSQ4nWtKEbxqjqY/eq4yc6OYCKQpkVlotXn0/zzKfvPRit.js\";const IconsL40pxBWMergedFonts=getFonts(IconsL40pxBWMerged);const IconsS24pxFonts=getFonts(IconsS24px);const ButtonWithArrowLinkFonts=getFonts(ButtonWithArrowLink);const SwitcherIllustrationsFonts=getFonts(SwitcherIllustrations);const IconsL40pxBWMergedControls=getPropertyControls(IconsL40pxBWMerged);const SwitcherIllustrationsControls=getPropertyControls(SwitcherIllustrations);const cycleOrder=[\"N4nfwCn7S\",\"rN1sPWOlI\",\"E6YuOdxhJ\",\"nv0I56SxQ\"];const serializationHash=\"framer-bzeZq\";const variantClassNames={E6YuOdxhJ:\"framer-v-1xvvcde\",N4nfwCn7S:\"framer-v-88p6os\",nv0I56SxQ:\"framer-v-1wsym2s\",rN1sPWOlI:\"framer-v-1lu8yzc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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 humanReadableEnumMap={\"24h Support\":\"EHbnQe3a4\",\"Answer FAQ\":\"QiAMn5CXa\",\"Arrow Down\":\"d34oIjHIb\",\"Arrow Left\":\"WvO01VjuB\",\"Arrow Right\":\"RNzZseIpR\",\"Arrow Up\":\"iP1AFOtYB\",\"Audit Log\":\"CF3ZYeoiV\",\"Auto Layout\":\"L9C7LES_d\",\"Calendar Booked\":\"wcfI1gXUp\",\"Chatbot Conversation\":\"tE81Uh8B_\",\"Convert Traffic\":\"mgviA1c8P\",\"Custom Dashboards\":\"S9hhEvkbA\",\"Custom Integration\":\"oefUj1dlm\",\"Engage User SMS\":\"oqJaidQ7n\",\"Enhanced Limits\":\"A2mUrQPZ3\",\"Input Bot Builder\":\"MUSQDD2OY\",\"Product Customization\":\"TujNS7kTO\",Call:\"D1s29bYSL\",Cloning:\"CGXKHk2yj\",Close:\"gtXP8oXgz\",Mail:\"eRIcGRm02\",Placeholder:\"z47FvuRrU\",Play:\"hoHbgiVBL\",Pro:\"Kv1VPx_ZK\",Search:\"P14jQovu0\",Subflow:\"Sr9yAqiGW\",Training:\"I3nFdxKuA\",Versioning:\"UOjyRnfn9\",Workspaces:\"wTLVrN2gK\"};const humanReadableEnumMap1={\"Auto Layout\":\"kDbhAApu0\",\"Calendar Booked\":\"Z90J0pJSr\",\"Convert Website Traffic\":\"w6gnc65m3\",\"Smart FAQ Answers\":\"yawJ2g4y6\",\"SMS Whatsapp\":\"hpJjvE4Dh\",\"Take Over Conversation\":\"IRJz2cCDV\",Cloning:\"bQLPNvoqx\",Search:\"D83jChnDa\",Subflows:\"M1sbK6XFU\",Versioning:\"fpg5U1kQU\"};const humanReadableVariantMap={\"Desktop \u2022 Active\":\"rN1sPWOlI\",\"Desktop \u2022 Idle\":\"N4nfwCn7S\",\"Mobile \u2022 Collapsed\":\"nv0I56SxQ\",\"Mobile \u2022\\xa0Expanded\":\"E6YuOdxhJ\"};const getProps=({content,height,iconVariant,id,imageVariant,link,tap,title,width,withIcon,withLink,...props})=>{return{...props,DGHXjtYPl:humanReadableEnumMap[iconVariant]??iconVariant??props.DGHXjtYPl??\"mgviA1c8P\",djpFV4ln_:link??props.djpFV4ln_,dOdbDQpa8:withIcon??props.dOdbDQpa8??true,dxN3LaCMe:tap??props.dxN3LaCMe,LQEdj8tHY:withLink??props.LQEdj8tHY??true,TseIcqIdj:humanReadableEnumMap1[imageVariant]??imageVariant??props.TseIcqIdj??\"w6gnc65m3\",variant:humanReadableVariantMap[props.variant]??props.variant??\"N4nfwCn7S\",WeAtBpiiJ:title??props.WeAtBpiiJ??\"Convert website traffic into qualified leads (50)\",xO6MMvaSp:content??props.xO6MMvaSp??\"Train your chatbot with your website or files \\u2028and have your chatbot ready to go. With the power of ChatGPT answer any question like a pro and wow your users.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,WeAtBpiiJ,xO6MMvaSp,djpFV4ln_,DGHXjtYPl,TseIcqIdj,dxN3LaCMe,LQEdj8tHY,dOdbDQpa8,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"N4nfwCn7S\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap7r1ho8=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(dxN3LaCMe){const res=await dxN3LaCMe(...args);if(res===false)return false;}});const onTap15zr9cc=activeVariantCallback(async(...args)=>{setVariant(\"E6YuOdxhJ\");});const onTap1f05xrh=activeVariantCallback(async(...args)=>{setVariant(\"nv0I56SxQ\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"E6YuOdxhJ\",\"nv0I56SxQ\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"rN1sPWOlI\",\"E6YuOdxhJ\"].includes(baseVariant))return true;return false;};const isDisplayed2=value=>{if(baseVariant===\"E6YuOdxhJ\")return false;return value;};const isDisplayed3=()=>{if(baseVariant===\"E6YuOdxhJ\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-88p6os\",className,classNames),\"data-framer-name\":\"Desktop \u2022 Idle\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"N4nfwCn7S\",onTap:onTap7r1ho8,ref:refBinding,style:{backgroundColor:\"var(--token-6e5ebeb1-6658-4c11-a48e-e694bc24191a, rgba(255, 255, 255, 0))\",...style},variants:{rN1sPWOlI:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({E6YuOdxhJ:{\"data-framer-name\":\"Mobile \u2022\\xa0Expanded\",\"data-highlight\":undefined,onTap:undefined},nv0I56SxQ:{\"data-framer-name\":\"Mobile \u2022 Collapsed\",\"data-highlight\":undefined,onTap:undefined},rN1sPWOlI:{\"data-framer-name\":\"Desktop \u2022 Active\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s3aler\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"kKc5hm90f\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},variants:{E6YuOdxhJ:{backgroundColor:\"rgba(0, 0, 0, 0)\"},nv0I56SxQ:{backgroundColor:\"rgba(0, 0, 0, 0)\"},rN1sPWOlI:{backgroundColor:\"var(--token-a9c97668-7b23-4a69-8e23-3a045b2aa36e, rgb(20, 20, 20))\"}},...addPropertyOverrides({nv0I56SxQ:{\"data-highlight\":true,onTap:onTap15zr9cc}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oc2zns\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"QjNcvpAw7\",...addPropertyOverrides({E6YuOdxhJ:{\"data-highlight\":true,onTap:onTap1f05xrh}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1om1e5p\",layoutDependency:layoutDependency,layoutId:\"Hc_wYz4vb\",children:[dOdbDQpa8&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lr6v1l-container\",layoutDependency:layoutDependency,layoutId:\"wOdm7U_Ms-container\",nodeId:\"wOdm7U_Ms\",rendersWithMotion:true,scopeId:\"cLMYEWgtR\",children:/*#__PURE__*/_jsx(IconsL40pxBWMerged,{height:\"100%\",id:\"wOdm7U_Ms\",layoutId:\"wOdm7U_Ms\",Oz41KdANk:DGHXjtYPl,style:{height:\"100%\",width:\"100%\"},variant:\"sSYzgYcao\",width:\"100%\",...addPropertyOverrides({rN1sPWOlI:{variant:\"Oihe_nkgx\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t4tbr3\",\"data-styles-preset\":\"agjz7zSJc\",children:\"Convert website traffic into qualified leads (50)\"})}),className:\"framer-1i7zgbn\",\"data-framer-name\":\"hero-sub\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sXjc9FFk4\",text:WeAtBpiiJ,variants:{rN1sPWOlI:{\"--extracted-r6o4lv\":\"var(--token-006a22c7-eca3-48bd-ad7d-c17be241e6e1, rgb(225, 245, 250))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({E6YuOdxhJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15u6gam\",\"data-styles-preset\":\"oAOKXB0z3\",style:{\"--framer-text-alignment\":\"left\"},children:\"Convert website traffic into qualified leads (50)\"})})},nv0I56SxQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15u6gam\",\"data-styles-preset\":\"oAOKXB0z3\",style:{\"--framer-text-alignment\":\"left\"},children:\"Convert website traffic into qualified leads (50)\"})})},rN1sPWOlI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t4tbr3\",\"data-styles-preset\":\"agjz7zSJc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-006a22c7-eca3-48bd-ad7d-c17be241e6e1, rgb(225, 245, 250)))\"},children:\"Convert website traffic into qualified leads (50)\"})})}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-b3n8l-container\",layoutDependency:layoutDependency,layoutId:\"YwwO54NNh-container\",nodeId:\"YwwO54NNh\",rendersWithMotion:true,scopeId:\"cLMYEWgtR\",style:{rotate:0},variants:{E6YuOdxhJ:{rotate:-180},nv0I56SxQ:{rotate:0}},children:/*#__PURE__*/_jsx(IconsS24px,{height:\"100%\",id:\"YwwO54NNh\",layoutId:\"YwwO54NNh\",style:{height:\"100%\",width:\"100%\"},variant:\"YaVGZ3Hpz\",width:\"100%\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ltns56\",layoutDependency:layoutDependency,layoutId:\"nzNFu9I7N\",children:[isDisplayed2(dOdbDQpa8)&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-qcf6sh\",\"data-framer-name\":\"Spacer\",layoutDependency:layoutDependency,layoutId:\"QNyvX8kYJ\",style:{backgroundColor:\"var(--token-6e5ebeb1-6658-4c11-a48e-e694bc24191a, rgba(255, 255, 255, 0))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uq299v\",layoutDependency:layoutDependency,layoutId:\"zbSieTJ8y\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1g0l74l\",\"data-styles-preset\":\"mu2jI7aeA\",children:\"Convert website traffic into qualified leads (50)\"})}),className:\"framer-16p6ny\",\"data-framer-name\":\"hero-sub\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nVdJFLKaT\",text:xO6MMvaSp,variants:{rN1sPWOlI:{\"--extracted-r6o4lv\":\"var(--token-006a22c7-eca3-48bd-ad7d-c17be241e6e1, rgb(225, 245, 250))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({E6YuOdxhJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dv31zn\",\"data-styles-preset\":\"EchpJdlyP\",children:\"Train your chatbot with your website or files \\u2028\\u2028and have your chatbot ready to go. With the power of ChatGPT answer any question like a pro and wow your users.\"})})},rN1sPWOlI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1g0l74l\",\"data-styles-preset\":\"mu2jI7aeA\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-006a22c7-eca3-48bd-ad7d-c17be241e6e1, rgb(225, 245, 250)))\"},children:\"Train your chatbot with your website or files \\u2028\\u2028and have your chatbot ready to go. With the power of ChatGPT answer any question like a pro and wow your users.\"})})}},baseVariant,gestureVariant)}),LQEdj8tHY&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wmufc0-container\",layoutDependency:layoutDependency,layoutId:\"Km9OEZmhe-container\",nodeId:\"Km9OEZmhe\",rendersWithMotion:true,scopeId:\"cLMYEWgtR\",children:/*#__PURE__*/_jsx(ButtonWithArrowLink,{height:\"100%\",id:\"Km9OEZmhe\",k1hREpFLr:\"Oihe_nkgx\",layoutId:\"Km9OEZmhe\",style:{width:\"100%\"},variant:\"yhYV3VSqz\",VRBRihQjX:djpFV4ln_,width:\"100%\",XZ_v6rw9j:\"Learn more\",yWghVhThf:\"var(--token-006a22c7-eca3-48bd-ad7d-c17be241e6e1, rgb(225, 245, 250))\",...addPropertyOverrides({E6YuOdxhJ:{k1hREpFLr:\"sSYzgYcao\",yWghVhThf:\"var(--token-a9c97668-7b23-4a69-8e23-3a045b2aa36e, rgb(20, 20, 20))\"}},baseVariant,gestureVariant)})})})]})]})]}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-o77jx6\",\"data-framer-name\":\"Point Image\",layoutDependency:layoutDependency,layoutId:\"JOt4Zoif8\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:724,...addPropertyOverrides({E6YuOdxhJ:{width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 520px)`,y:(componentViewport?.y||0)+0+351+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bs5b1c-container\",layoutDependency:layoutDependency,layoutId:\"kUynoelbs-container\",nodeId:\"kUynoelbs\",rendersWithMotion:true,scopeId:\"cLMYEWgtR\",children:/*#__PURE__*/_jsx(SwitcherIllustrations,{height:\"100%\",id:\"kUynoelbs\",layoutId:\"kUynoelbs\",pWO15gPPi:16,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:TseIcqIdj,width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bzeZq.framer-u3uyon, .framer-bzeZq .framer-u3uyon { display: block; }\",\".framer-bzeZq.framer-88p6os { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 480px; }\",\".framer-bzeZq .framer-s3aler { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 28px 32px 28px 32px; position: relative; width: 100%; }\",\".framer-bzeZq .framer-oc2zns { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bzeZq .framer-1om1e5p { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-bzeZq .framer-1lr6v1l-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-bzeZq .framer-1i7zgbn { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-bzeZq .framer-b3n8l-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-bzeZq .framer-ltns56 { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bzeZq .framer-qcf6sh { align-self: stretch; flex: none; height: auto; overflow: visible; position: relative; width: 64px; }\",\".framer-bzeZq .framer-uq299v { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-bzeZq .framer-16p6ny { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-bzeZq .framer-wmufc0-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-bzeZq .framer-o77jx6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bzeZq .framer-bs5b1c-container { aspect-ratio: 0.9281767955801105 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 215px); max-width: 520px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bzeZq.framer-88p6os, .framer-bzeZq .framer-s3aler, .framer-bzeZq .framer-oc2zns, .framer-bzeZq .framer-1om1e5p, .framer-bzeZq .framer-ltns56, .framer-bzeZq .framer-uq299v, .framer-bzeZq .framer-o77jx6 { gap: 0px; } .framer-bzeZq.framer-88p6os > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-bzeZq.framer-88p6os > :first-child, .framer-bzeZq .framer-s3aler > :first-child, .framer-bzeZq .framer-uq299v > :first-child { margin-top: 0px; } .framer-bzeZq.framer-88p6os > :last-child, .framer-bzeZq .framer-s3aler > :last-child, .framer-bzeZq .framer-uq299v > :last-child { margin-bottom: 0px; } .framer-bzeZq .framer-s3aler > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-bzeZq .framer-oc2zns > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-bzeZq .framer-oc2zns > :first-child, .framer-bzeZq .framer-1om1e5p > :first-child, .framer-bzeZq .framer-ltns56 > :first-child, .framer-bzeZq .framer-o77jx6 > :first-child { margin-left: 0px; } .framer-bzeZq .framer-oc2zns > :last-child, .framer-bzeZq .framer-1om1e5p > :last-child, .framer-bzeZq .framer-ltns56 > :last-child, .framer-bzeZq .framer-o77jx6 > :last-child { margin-right: 0px; } .framer-bzeZq .framer-1om1e5p > *, .framer-bzeZq .framer-o77jx6 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-bzeZq .framer-ltns56 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-bzeZq .framer-uq299v > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-bzeZq.framer-v-1xvvcde.framer-88p6os { cursor: unset; width: 360px; }\",\".framer-bzeZq.framer-v-1xvvcde .framer-s3aler { gap: 12px; padding: 16px 16px 26px 16px; }\",\".framer-bzeZq.framer-v-1xvvcde .framer-oc2zns { cursor: pointer; gap: 16px; }\",\".framer-bzeZq.framer-v-1xvvcde .framer-1om1e5p, .framer-bzeZq.framer-v-1wsym2s .framer-oc2zns, .framer-bzeZq.framer-v-1wsym2s .framer-1om1e5p { gap: 16px; }\",\".framer-bzeZq.framer-v-1xvvcde .framer-bs5b1c-container { height: var(--framer-aspect-ratio-supported, 391px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bzeZq.framer-v-1xvvcde .framer-s3aler, .framer-bzeZq.framer-v-1xvvcde .framer-oc2zns, .framer-bzeZq.framer-v-1xvvcde .framer-1om1e5p { gap: 0px; } .framer-bzeZq.framer-v-1xvvcde .framer-s3aler > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-bzeZq.framer-v-1xvvcde .framer-s3aler > :first-child { margin-top: 0px; } .framer-bzeZq.framer-v-1xvvcde .framer-s3aler > :last-child { margin-bottom: 0px; } .framer-bzeZq.framer-v-1xvvcde .framer-oc2zns > *, .framer-bzeZq.framer-v-1xvvcde .framer-1om1e5p > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-bzeZq.framer-v-1xvvcde .framer-oc2zns > :first-child, .framer-bzeZq.framer-v-1xvvcde .framer-1om1e5p > :first-child { margin-left: 0px; } .framer-bzeZq.framer-v-1xvvcde .framer-oc2zns > :last-child, .framer-bzeZq.framer-v-1xvvcde .framer-1om1e5p > :last-child { margin-right: 0px; } }\",\".framer-bzeZq.framer-v-1wsym2s.framer-88p6os { cursor: unset; }\",\".framer-bzeZq.framer-v-1wsym2s .framer-s3aler { cursor: pointer; gap: 12px; padding: 16px 16px 26px 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bzeZq.framer-v-1wsym2s .framer-s3aler, .framer-bzeZq.framer-v-1wsym2s .framer-oc2zns, .framer-bzeZq.framer-v-1wsym2s .framer-1om1e5p { gap: 0px; } .framer-bzeZq.framer-v-1wsym2s .framer-s3aler > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-bzeZq.framer-v-1wsym2s .framer-s3aler > :first-child { margin-top: 0px; } .framer-bzeZq.framer-v-1wsym2s .framer-s3aler > :last-child { margin-bottom: 0px; } .framer-bzeZq.framer-v-1wsym2s .framer-oc2zns > *, .framer-bzeZq.framer-v-1wsym2s .framer-1om1e5p > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-bzeZq.framer-v-1wsym2s .framer-oc2zns > :first-child, .framer-bzeZq.framer-v-1wsym2s .framer-1om1e5p > :first-child { margin-left: 0px; } .framer-bzeZq.framer-v-1wsym2s .framer-oc2zns > :last-child, .framer-bzeZq.framer-v-1wsym2s .framer-1om1e5p > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 114\n * @framerIntrinsicWidth 480\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rN1sPWOlI\":{\"layout\":[\"fixed\",\"auto\"]},\"E6YuOdxhJ\":{\"layout\":[\"fixed\",\"auto\"]},\"nv0I56SxQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"WeAtBpiiJ\":\"title\",\"xO6MMvaSp\":\"content\",\"djpFV4ln_\":\"link\",\"DGHXjtYPl\":\"iconVariant\",\"TseIcqIdj\":\"imageVariant\",\"dxN3LaCMe\":\"tap\",\"LQEdj8tHY\":\"withLink\",\"dOdbDQpa8\":\"withIcon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercLMYEWgtR=withCSS(Component,css,\"framer-bzeZq\");export default FramercLMYEWgtR;FramercLMYEWgtR.displayName=\"Landing Page Items/Value Prop Pills\";FramercLMYEWgtR.defaultProps={height:114,width:480};addPropertyControls(FramercLMYEWgtR,{variant:{options:[\"N4nfwCn7S\",\"rN1sPWOlI\",\"E6YuOdxhJ\",\"nv0I56SxQ\"],optionTitles:[\"Desktop \u2022 Idle\",\"Desktop \u2022 Active\",\"Mobile \u2022\\xa0Expanded\",\"Mobile \u2022 Collapsed\"],title:\"Variant\",type:ControlType.Enum},WeAtBpiiJ:{defaultValue:\"Convert website traffic into qualified leads (50)\",displayTextArea:true,title:\"Title\",type:ControlType.String},xO6MMvaSp:{defaultValue:\"Train your chatbot with your website or files \\u2028and have your chatbot ready to go. With the power of ChatGPT answer any question like a pro and wow your users.\",displayTextArea:true,title:\"Content\",type:ControlType.String},djpFV4ln_:{title:\"Link\",type:ControlType.Link},DGHXjtYPl:IconsL40pxBWMergedControls?.[\"Oz41KdANk\"]&&{...IconsL40pxBWMergedControls[\"Oz41KdANk\"],defaultValue:\"mgviA1c8P\",description:undefined,hidden:undefined,title:\"Icon Variant\"},TseIcqIdj:SwitcherIllustrationsControls?.[\"variant\"]&&{...SwitcherIllustrationsControls[\"variant\"],defaultValue:\"w6gnc65m3\",description:undefined,hidden:undefined,title:\"Image Variant\"},dxN3LaCMe:{title:\"Tap\",type:ControlType.EventHandler},LQEdj8tHY:{defaultValue:true,title:\"With Link\",type:ControlType.Boolean},dOdbDQpa8:{defaultValue:true,title:\"With Icon\",type:ControlType.Boolean}});addFonts(FramercLMYEWgtR,[{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\"}]},...IconsL40pxBWMergedFonts,...IconsS24pxFonts,...ButtonWithArrowLinkFonts,...SwitcherIllustrationsFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercLMYEWgtR\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"114\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"480\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rN1sPWOlI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"E6YuOdxhJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nv0I56SxQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"WeAtBpiiJ\\\":\\\"title\\\",\\\"xO6MMvaSp\\\":\\\"content\\\",\\\"djpFV4ln_\\\":\\\"link\\\",\\\"DGHXjtYPl\\\":\\\"iconVariant\\\",\\\"TseIcqIdj\\\":\\\"imageVariant\\\",\\\"dxN3LaCMe\\\":\\\"tap\\\",\\\"LQEdj8tHY\\\":\\\"withLink\\\",\\\"dOdbDQpa8\\\":\\\"withIcon\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "radius", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "pWO15gPPi", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "css", "FramerzzKfvPRit", "withCSS", "zzKfvPRit_default", "addPropertyControls", "ControlType", "addFonts", "IconsL40pxBWMergedFonts", "getFonts", "zqhnQrOcO_default", "IconsS24pxFonts", "mtAQK_9Lu_default", "ButtonWithArrowLinkFonts", "ODrmPgqIF_default", "SwitcherIllustrationsFonts", "zzKfvPRit_default", "IconsL40pxBWMergedControls", "getPropertyControls", "SwitcherIllustrationsControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableEnumMap1", "humanReadableVariantMap", "getProps", "content", "height", "iconVariant", "id", "imageVariant", "link", "tap", "title", "width", "withIcon", "withLink", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "WeAtBpiiJ", "xO6MMvaSp", "djpFV4ln_", "DGHXjtYPl", "TseIcqIdj", "dxN3LaCMe", "LQEdj8tHY", "dOdbDQpa8", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap7r1ho8", "args", "onTap15zr9cc", "onTap1f05xrh", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramercLMYEWgtR", "withCSS", "cLMYEWgtR_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
