{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/wRgkYxynElCRm7zrb0BX/Ufh89gXnC9Gj4TpwAYxG/sbfqMYLvJ.js", "ssg:https://framerusercontent.com/modules/lTfmyhlR3BjoWoUA1d1P/Btr7HNalRieCDvILkhd1/OZATmk081.js", "ssg:https://framerusercontent.com/modules/qQs85nwQpASMn5bGxPNA/Mxp5IjUpC2WbR9eGgrVK/AcFpzs0Vr.js", "ssg:https://framerusercontent.com/modules/p0P4MbmI0RKmyQ7Pi1Tw/RxMtTYtlVIYwORiHSLQg/mkY39OzE0.js", "ssg:https://framerusercontent.com/modules/cqcsh7JvNGTRyq0R1eOj/rTY0xiUckGFjUcNI2gWi/IjOYJsMtg.js", "ssg:https://framerusercontent.com/modules/qfIhhgTDwIfX64LYv0Nw/RmWAv9dUt6H19WAXr9Bs/NCHAMG8cv.js", "ssg:https://framerusercontent.com/modules/puq2IQ3cQiAoZSQ4yrkK/xjszdJxLPEf0jH4rLwms/KHC9ipO_P.js", "ssg:https://framer.com/m/framer/icon-nullstate.js@0.7.0", "ssg:https://framer.com/m/phosphor-icons/House.js@0.0.57", "ssg:https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js", "ssg:https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js", "ssg:https://framerusercontent.com/modules/6jA20muZxoRDleu1ejZr/uHRhazJdCLSKBcYsrW9Y/uf3AtTgKm.js", "ssg:https://framerusercontent.com/modules/8A4nY3AAVmhgh4UPsEmg/D4YL4vlXGNiykOorpMHt/iBy79QlOk.js", "ssg:https://framerusercontent.com/modules/gAGJqJ33iltggVdlG66R/TWUfKZP6RpQjFCbjS5rh/WcMloee7m.js", "ssg:https://framerusercontent.com/modules/77aTmVX7lAhA0R3yfhcx/tiBUClJrh9aNg41VvSnx/bFjUd_CeF.js", "ssg:https://framerusercontent.com/modules/nrwt9n7yn6hdBVQFF2Vm/2YKpWFDFpDgIs1miOEWr/hEYx8viWv.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://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{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 isPlayingRef=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 video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.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();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}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;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,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:startTimeProp=0,poster=\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\",playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=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);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=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]);/**\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     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=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=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)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\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",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\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];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\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},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\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...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\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (9f68555)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-medium\",\"FS;Satoshi-bold\",\"FS;Satoshi-bold italic\",\"FS;Satoshi-medium italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CDEBEFT2R7XKNGXSBBLZGMY4MMHZG75P/HEVKDGQCYDZ7Z6CDVR2ZQGBCTUD6ZARH/BKWEE3VKGTFABE37K2DTH625VUSN2N35.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NID3I7RITWZSKXRCJGOCMP5NOADJK6IG/2HLHGD7OBTWCOHW64YXOE5KFXHU4KJHM/ZHME2QIRFR7UPJ47NLY27RCAFY44CKZJ.woff2\",weight:\"500\"}]}];export const css=['.framer-N2d5q .framer-styles-preset-1wx24gf:not(.rich-text-wrapper), .framer-N2d5q .framer-styles-preset-1wx24gf.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.3px; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-38f68815-7867-4cb4-b7c3-02378b3e2eac, #0d0d0d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1099px) and (min-width: 810px) { .framer-N2d5q .framer-styles-preset-1wx24gf:not(.rich-text-wrapper), .framer-N2d5q .framer-styles-preset-1wx24gf.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-38f68815-7867-4cb4-b7c3-02378b3e2eac, #0d0d0d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-N2d5q .framer-styles-preset-1wx24gf:not(.rich-text-wrapper), .framer-N2d5q .framer-styles-preset-1wx24gf.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-38f68815-7867-4cb4-b7c3-02378b3e2eac, #0d0d0d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-N2d5q\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (74b1a33)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/wRgkYxynElCRm7zrb0BX/Ufh89gXnC9Gj4TpwAYxG/sbfqMYLvJ.js\";const cycleOrder=[\"nn9EW_yBu\",\"P17QaFMAL\"];const serializationHash=\"framer-F3m2D\";const variantClassNames={nn9EW_yBu:\"framer-v-ez2ffs\",P17QaFMAL:\"framer-v-c81e4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Active:\"P17QaFMAL\",Inactive:\"nn9EW_yBu\"};const getProps=({click,height,icon,id,text,width,...props})=>{return{...props,BtSZH4unG:icon??props.BtSZH4unG??{src:\"https://framerusercontent.com/images/S3hvWlPpWgqHB1r787YBj3x5KQ.svg\"},Oi01xDewM:text??props.Oi01xDewM??\"Clarity & Direction\",pPaH9xr9H:click??props.pPaH9xr9H,variant:humanReadableVariantMap[props.variant]??props.variant??\"nn9EW_yBu\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,BtSZH4unG,Oi01xDewM,pPaH9xr9H,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"nn9EW_yBu\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap5i0r1n=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(pPaH9xr9H){const res=await pPaH9xr9H(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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-ez2ffs\",className,classNames),\"data-framer-name\":\"Inactive\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"nn9EW_yBu\",onTap:onTap5i0r1n,ref:ref??ref1,style:{...style},...addPropertyOverrides({P17QaFMAL:{\"data-framer-name\":\"Active\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(22+((componentViewport?.height||69.5)-44-22)/2)),pixelHeight:800,pixelWidth:800,sizes:\"22px\",...toResponsiveImage(BtSZH4unG),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-465281\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"Dwz_myTDV\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wx24gf\",\"data-styles-preset\":\"sbfqMYLvJ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e569b6cb-6189-4782-82aa-db4c3cf9a885, rgb(41, 41, 41)))\"},children:\"Our Philosophy\"})}),className:\"framer-18co7xi\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"j2AuVKixp\",style:{\"--extracted-r6o4lv\":\"var(--token-e569b6cb-6189-4782-82aa-db4c3cf9a885, rgb(41, 41, 41))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Oi01xDewM,variants:{P17QaFMAL:{\"--extracted-r6o4lv\":\"var(--token-b7e2bb04-ed50-478a-96be-ade508ab60a9, rgb(6, 39, 80))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({P17QaFMAL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wx24gf\",\"data-styles-preset\":\"sbfqMYLvJ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b7e2bb04-ed50-478a-96be-ade508ab60a9, rgb(6, 39, 80)))\"},children:\"Clarity & Direction\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iesmfk\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"jXV04D3oV\",style:{backgroundColor:\"var(--token-37c73a71-ed98-4730-86d9-6e0a52d466b3, rgb(46, 105, 255))\",opacity:0},variants:{P17QaFMAL:{opacity:1}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-F3m2D.framer-1qibck6, .framer-F3m2D .framer-1qibck6 { display: block; }\",\".framer-F3m2D.framer-ez2ffs { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 22px 0px 22px 0px; position: relative; width: min-content; }\",\".framer-F3m2D .framer-465281 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); overflow: hidden; position: relative; width: 22px; }\",\".framer-F3m2D .framer-18co7xi { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-F3m2D .framer-1iesmfk { bottom: 0px; flex: none; height: 2px; left: 0px; overflow: visible; position: absolute; right: 146px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-F3m2D.framer-ez2ffs { gap: 0px; } .framer-F3m2D.framer-ez2ffs > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-F3m2D.framer-ez2ffs > :first-child { margin-left: 0px; } .framer-F3m2D.framer-ez2ffs > :last-child { margin-right: 0px; } }\",\".framer-F3m2D.framer-v-c81e4 .framer-1iesmfk { right: 0px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 69.5\n * @framerIntrinsicWidth 161.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"P17QaFMAL\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"BtSZH4unG\":\"icon\",\"Oi01xDewM\":\"text\",\"pPaH9xr9H\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOZATmk081=withCSS(Component,css,\"framer-F3m2D\");export default FramerOZATmk081;FramerOZATmk081.displayName=\"Tab Button\";FramerOZATmk081.defaultProps={height:69.5,width:161.5};addPropertyControls(FramerOZATmk081,{variant:{options:[\"nn9EW_yBu\",\"P17QaFMAL\"],optionTitles:[\"Inactive\",\"Active\"],title:\"Variant\",type:ControlType.Enum},BtSZH4unG:{__defaultAssetReference:\"data:framer/asset-reference,S3hvWlPpWgqHB1r787YBj3x5KQ.svg?originalFilename=arrows-reload-01-svgrepo-com+%281%29.svg&preferredSize=auto\",title:\"Icon\",type:ControlType.ResponsiveImage},Oi01xDewM:{defaultValue:\"Clarity & Direction\",displayTextArea:false,title:\"Text\",type:ControlType.String},pPaH9xr9H:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerOZATmk081,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOZATmk081\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"BtSZH4unG\\\":\\\"icon\\\",\\\"Oi01xDewM\\\":\\\"text\\\",\\\"pPaH9xr9H\\\":\\\"click\\\"}\",\"framerIntrinsicWidth\":\"161.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"P17QaFMAL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"69.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OZATmk081.map", "// Generated by Framer (677c5d1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,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/bc60f0Un9W1ueLLkdinb/FBrAb5wGOjUWwOYfKSFF/JBLc2KyNi.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/6eoEANx1NWaGrI5Nbvki/btOiPjTvtGwT95iSJFKs/OsSk4wk17.js\";import TabButton from\"https://framerusercontent.com/modules/lTfmyhlR3BjoWoUA1d1P/Btr7HNalRieCDvILkhd1/OZATmk081.js\";const TabButtonFonts=getFonts(TabButton);const cycleOrder=[\"xS483suSG\",\"FM0CTxzRA\",\"V610y_9gL\",\"CJ5sqZGo1\",\"Tmy4CEyUP\",\"wtshxkayr\"];const serializationHash=\"framer-dTBeB\";const variantClassNames={CJ5sqZGo1:\"framer-v-n3wb8i\",FM0CTxzRA:\"framer-v-ur2mhv\",Tmy4CEyUP:\"framer-v-1ll3a27\",V610y_9gL:\"framer-v-11yw25r\",wtshxkayr:\"framer-v-gy7p20\",xS483suSG:\"framer-v-1ht9r3i\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:.5,type:\"spring\"};const transition2={damping:48,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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 humanReadableVariantMap={\"Mobile-1\":\"CJ5sqZGo1\",\"Mobile-2\":\"Tmy4CEyUP\",\"Mobile-3\":\"wtshxkayr\",\"Tab-01\":\"xS483suSG\",\"Tab-02\":\"FM0CTxzRA\",\"Tab-03\":\"V610y_9gL\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"xS483suSG\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xS483suSG\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const pPaH9xr9H1kkzhkn=activeVariantCallback(async(...args)=>{setVariant(\"xS483suSG\");});const pPaH9xr9Hkbnbf1=activeVariantCallback(async(...args)=>{setVariant(\"CJ5sqZGo1\");});const pPaH9xr9Hrzkisl=activeVariantCallback(async(...args)=>{setVariant(\"FM0CTxzRA\");});const pPaH9xr9Hem8j=activeVariantCallback(async(...args)=>{setVariant(\"Tmy4CEyUP\");});const pPaH9xr9H1b4ktsa=activeVariantCallback(async(...args)=>{setVariant(\"V610y_9gL\");});const pPaH9xr9Hprh9xg=activeVariantCallback(async(...args)=>{setVariant(\"wtshxkayr\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);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-1ht9r3i\",className,classNames),\"data-framer-name\":\"Tab-01\",layoutDependency:layoutDependency,layoutId:\"xS483suSG\",ref:refBinding,style:{...style},...addPropertyOverrides({CJ5sqZGo1:{\"data-framer-name\":\"Mobile-1\"},FM0CTxzRA:{\"data-framer-name\":\"Tab-02\"},Tmy4CEyUP:{\"data-framer-name\":\"Mobile-2\"},V610y_9gL:{\"data-framer-name\":\"Tab-03\"},wtshxkayr:{\"data-framer-name\":\"Mobile-3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-phlxov\",\"data-framer-name\":\"Tabs-Button-Wrapper\",layoutDependency:layoutDependency,layoutId:\"OtfImQHRn\",style:{backgroundColor:\"var(--token-55cd17e0-a25e-40bd-8148-346590ffdf2f, rgb(250, 250, 250))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:69,y:(componentViewport?.y||0)+0+0+0,...addPropertyOverrides({CJ5sqZGo1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 900px) - 44px)`,y:(componentViewport?.y||0)+0+0+7+0},Tmy4CEyUP:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 900px) - 44px)`,y:(componentViewport?.y||0)+0+0+7+0},wtshxkayr:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 900px) - 44px)`,y:(componentViewport?.y||0)+0+0+7+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9vqufh-container\",\"data-framer-name\":\"Tab-01\",layoutDependency:layoutDependency,layoutId:\"SEPOgAsWL-container\",name:\"Tab-01\",nodeId:\"SEPOgAsWL\",rendersWithMotion:true,scopeId:\"AcFpzs0Vr\",style:{opacity:1},variants:{CJ5sqZGo1:{opacity:1},FM0CTxzRA:{opacity:.5},Tmy4CEyUP:{opacity:.5},V610y_9gL:{opacity:.5},wtshxkayr:{opacity:.5}},whileHover:animation,children:/*#__PURE__*/_jsx(TabButton,{BtSZH4unG:addImageAlt({src:\"https://framerusercontent.com/images/t9EfAZXlzmH9AVNCuNe9jSg5ZGI.png\",srcSet:\"https://framerusercontent.com/images/t9EfAZXlzmH9AVNCuNe9jSg5ZGI.png?scale-down-to=512 512w,https://framerusercontent.com/images/t9EfAZXlzmH9AVNCuNe9jSg5ZGI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/t9EfAZXlzmH9AVNCuNe9jSg5ZGI.png 1200w\"},\"\"),height:\"100%\",id:\"SEPOgAsWL\",layoutId:\"SEPOgAsWL\",name:\"Tab-01\",Oi01xDewM:\"Clarity & Direction\",pPaH9xr9H:pPaH9xr9H1kkzhkn,variant:\"P17QaFMAL\",width:\"100%\",...addPropertyOverrides({CJ5sqZGo1:{pPaH9xr9H:pPaH9xr9Hkbnbf1,style:{width:\"100%\"}},FM0CTxzRA:{variant:\"nn9EW_yBu\"},Tmy4CEyUP:{pPaH9xr9H:pPaH9xr9Hkbnbf1,style:{width:\"100%\"},variant:\"nn9EW_yBu\"},V610y_9gL:{variant:\"nn9EW_yBu\"},wtshxkayr:{pPaH9xr9H:pPaH9xr9Hkbnbf1,style:{width:\"100%\"},variant:\"nn9EW_yBu\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:69,y:(componentViewport?.y||0)+0+0+0,...addPropertyOverrides({CJ5sqZGo1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 900px) - 44px)`,y:(componentViewport?.y||0)+0+0+7+79},Tmy4CEyUP:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 900px) - 44px)`,y:(componentViewport?.y||0)+0+0+7+79},wtshxkayr:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 900px) - 44px)`,y:(componentViewport?.y||0)+0+0+7+79}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nzl557-container\",\"data-framer-name\":\"Tab-02\",layoutDependency:layoutDependency,layoutId:\"eHLIUpXAZ-container\",name:\"Tab-02\",nodeId:\"eHLIUpXAZ\",rendersWithMotion:true,scopeId:\"AcFpzs0Vr\",style:{opacity:.5},variants:{FM0CTxzRA:{opacity:1},Tmy4CEyUP:{opacity:1}},whileHover:animation,children:/*#__PURE__*/_jsx(TabButton,{BtSZH4unG:addImageAlt({src:\"https://framerusercontent.com/images/2nROdaoLD0zIOjmBMeQoEePM.png\",srcSet:\"https://framerusercontent.com/images/2nROdaoLD0zIOjmBMeQoEePM.png?scale-down-to=512 512w,https://framerusercontent.com/images/2nROdaoLD0zIOjmBMeQoEePM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2nROdaoLD0zIOjmBMeQoEePM.png 1200w\"},\"\"),height:\"100%\",id:\"eHLIUpXAZ\",layoutId:\"eHLIUpXAZ\",name:\"Tab-02\",Oi01xDewM:\"Systems & Structure\",pPaH9xr9H:pPaH9xr9Hrzkisl,variant:\"nn9EW_yBu\",width:\"100%\",...addPropertyOverrides({CJ5sqZGo1:{pPaH9xr9H:pPaH9xr9Hem8j,style:{width:\"100%\"}},FM0CTxzRA:{variant:\"P17QaFMAL\"},Tmy4CEyUP:{pPaH9xr9H:pPaH9xr9Hem8j,style:{width:\"100%\"},variant:\"P17QaFMAL\"},wtshxkayr:{pPaH9xr9H:pPaH9xr9Hem8j,style:{width:\"100%\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:69,y:(componentViewport?.y||0)+0+0+0,...addPropertyOverrides({CJ5sqZGo1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 900px) - 44px)`,y:(componentViewport?.y||0)+0+0+7+158},Tmy4CEyUP:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 900px) - 44px)`,y:(componentViewport?.y||0)+0+0+7+158},wtshxkayr:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 900px) - 44px)`,y:(componentViewport?.y||0)+0+0+7+158}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-l4zq9b-container\",\"data-framer-name\":\"Tab-03\",layoutDependency:layoutDependency,layoutId:\"zUGgV4Ydy-container\",name:\"Tab-03\",nodeId:\"zUGgV4Ydy\",rendersWithMotion:true,scopeId:\"AcFpzs0Vr\",style:{opacity:.5},variants:{V610y_9gL:{opacity:1},wtshxkayr:{opacity:1}},whileHover:animation,children:/*#__PURE__*/_jsx(TabButton,{BtSZH4unG:addImageAlt({src:\"https://framerusercontent.com/images/ZwQTgnUkdxoyObda62eIuczOXhA.png\",srcSet:\"https://framerusercontent.com/images/ZwQTgnUkdxoyObda62eIuczOXhA.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZwQTgnUkdxoyObda62eIuczOXhA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZwQTgnUkdxoyObda62eIuczOXhA.png 1200w\"},\"\"),height:\"100%\",id:\"zUGgV4Ydy\",layoutId:\"zUGgV4Ydy\",name:\"Tab-03\",Oi01xDewM:\"Growth & Independance\",pPaH9xr9H:pPaH9xr9H1b4ktsa,variant:\"nn9EW_yBu\",width:\"100%\",...addPropertyOverrides({CJ5sqZGo1:{pPaH9xr9H:pPaH9xr9Hprh9xg,style:{width:\"100%\"}},Tmy4CEyUP:{pPaH9xr9H:pPaH9xr9Hprh9xg,style:{width:\"100%\"}},V610y_9gL:{variant:\"P17QaFMAL\"},wtshxkayr:{pPaH9xr9H:pPaH9xr9Hprh9xg,style:{width:\"100%\"},variant:\"P17QaFMAL\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:69,y:(componentViewport?.y||0)+0+0+0,...addPropertyOverrides({CJ5sqZGo1:{y:(componentViewport?.y||0)+0+0+7+237},Tmy4CEyUP:{y:(componentViewport?.y||0)+0+0+7+237},wtshxkayr:{y:(componentViewport?.y||0)+0+0+7+237}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-izseu9-container\",\"data-framer-name\":\"Tab-03\",layoutDependency:layoutDependency,layoutId:\"xKZ0ZMAs1-container\",name:\"Tab-03\",nodeId:\"xKZ0ZMAs1\",rendersWithMotion:true,scopeId:\"AcFpzs0Vr\",style:{opacity:.5},whileHover:animation,children:/*#__PURE__*/_jsx(TabButton,{BtSZH4unG:addImageAlt({src:\"https://framerusercontent.com/images/i8vmfxcOwafQnUCrnUP3HM2ZoTg.png\",srcSet:\"https://framerusercontent.com/images/i8vmfxcOwafQnUCrnUP3HM2ZoTg.png?scale-down-to=512 512w,https://framerusercontent.com/images/i8vmfxcOwafQnUCrnUP3HM2ZoTg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i8vmfxcOwafQnUCrnUP3HM2ZoTg.png 1200w\"},\"\"),height:\"100%\",id:\"xKZ0ZMAs1\",layoutId:\"xKZ0ZMAs1\",name:\"Tab-03\",Oi01xDewM:\"Preparing for Sale\",pPaH9xr9H:pPaH9xr9H1b4ktsa,variant:\"nn9EW_yBu\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2z5v2w\",\"data-framer-name\":\"Tab-Content-wrapper\",layoutDependency:layoutDependency,layoutId:\"lXP4FaPck\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-dotrsa\",\"data-framer-name\":\"Image-Wrapper\",layoutDependency:layoutDependency,layoutId:\"LPZze_xpX\",style:{backgroundColor:\"var(--token-55cd17e0-a25e-40bd-8148-346590ffdf2f, rgb(250, 250, 250))\",borderBottomLeftRadius:26,borderBottomRightRadius:26,borderTopLeftRadius:26,borderTopRightRadius:26},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Team Discovery\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+123+0+14+0),pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/gkqD4fEaIBqWPJ4rZ1CHZ89hRk.png\"},className:\"framer-pw6wyu\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"TzzQ3hxNj\",style:{borderBottomLeftRadius:22,borderBottomRightRadius:22,borderTopLeftRadius:22,borderTopRightRadius:22},...addPropertyOverrides({CJ5sqZGo1:{background:{alt:\"Team Discovery\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+362+0+0+14+0),pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/gkqD4fEaIBqWPJ4rZ1CHZ89hRk.png\"}},FM0CTxzRA:{background:{alt:\"Team planning work\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+123+0+14+0),pixelHeight:562,pixelWidth:1920,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 50px) / 2, 1px) - 28px)`,src:\"https://framerusercontent.com/images/M2XzJMUeY52TlT6IeWODp7JKY.jpg\",srcSet:\"https://framerusercontent.com/images/M2XzJMUeY52TlT6IeWODp7JKY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/M2XzJMUeY52TlT6IeWODp7JKY.jpg 1000w\"}},Tmy4CEyUP:{background:{alt:\"Team Discovery\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+362+0+0+14+0),pixelHeight:562,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} - 28px)`,src:\"https://framerusercontent.com/images/M2XzJMUeY52TlT6IeWODp7JKY.jpg\",srcSet:\"https://framerusercontent.com/images/M2XzJMUeY52TlT6IeWODp7JKY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/M2XzJMUeY52TlT6IeWODp7JKY.jpg 1000w\"}},V610y_9gL:{background:{alt:\"Working\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+123+0+14+0),pixelHeight:667,pixelWidth:1e3,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 50px) / 2, 1px) - 28px)`,src:\"https://framerusercontent.com/images/ooVca08O79SF4J0UzkyupcwmUo.jpg\",srcSet:\"https://framerusercontent.com/images/ooVca08O79SF4J0UzkyupcwmUo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ooVca08O79SF4J0UzkyupcwmUo.jpg 1000w\"}},wtshxkayr:{background:{alt:\"Team Discovery\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+362+0+0+14+0),pixelHeight:667,pixelWidth:1e3,sizes:`calc(${componentViewport?.width||\"100vw\"} - 28px)`,src:\"https://framerusercontent.com/images/ooVca08O79SF4J0UzkyupcwmUo.jpg\",srcSet:\"https://framerusercontent.com/images/ooVca08O79SF4J0UzkyupcwmUo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ooVca08O79SF4J0UzkyupcwmUo.jpg 1000w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uoe77p\",\"data-framer-name\":\"Text-Wrapper\",layoutDependency:layoutDependency,layoutId:\"sjaVvj5Uv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-27xsh\",\"data-styles-preset\":\"JBLc2KyNi\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-b7e2bb04-ed50-478a-96be-ade508ab60a9, rgb(6, 39, 80)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Clarity & Direction\"})})}),className:\"framer-5jeel3\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"xzOBG9VEs\",style:{\"--extracted-1eung3n\":\"var(--token-b7e2bb04-ed50-478a-96be-ade508ab60a9, rgb(6, 39, 80))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FM0CTxzRA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-27xsh\",\"data-styles-preset\":\"JBLc2KyNi\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-b7e2bb04-ed50-478a-96be-ade508ab60a9, rgb(6, 39, 80)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Structure & Systems\"})})})},Tmy4CEyUP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-27xsh\",\"data-styles-preset\":\"JBLc2KyNi\",children:\"Development:\"})}),fonts:[\"Inter\"]},V610y_9gL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-27xsh\",\"data-styles-preset\":\"JBLc2KyNi\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-b7e2bb04-ed50-478a-96be-ade508ab60a9, rgb(6, 39, 80)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Growth & Independence\"})})})},wtshxkayr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-27xsh\",\"data-styles-preset\":\"JBLc2KyNi\",children:\"Implementation:\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-133dyqj\",\"data-styles-preset\":\"OsSk4wk17\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e4bee715-1a76-4d52-94a9-54840079c030, rgb(66, 66, 66)))\"},children:/*#__PURE__*/_jsx(motion.em,{children:\"The first step is understanding your challenges, defining your goals, and identifying the roadblocks holding you back. Without clarity, it\u2019s impossible to scale effectively.\"})})}),className:\"framer-1eiw1e3\",fonts:[\"Inter\",\"Inter-Italic\"],layoutDependency:layoutDependency,layoutId:\"SW1ocgeK9\",style:{\"--extracted-r6o4lv\":\"var(--token-e4bee715-1a76-4d52-94a9-54840079c030, rgb(66, 66, 66))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FM0CTxzRA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-133dyqj\",\"data-styles-preset\":\"OsSk4wk17\",children:/*#__PURE__*/_jsx(motion.em,{children:\"Scaling a business isn\u2019t about working harder\u2014it\u2019s about working smarter. We build the leadership structure, accountability systems, and processes that allow your team to operate at a high level.\"})})})},Tmy4CEyUP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-133dyqj\",\"data-styles-preset\":\"OsSk4wk17\",children:\"With insights from our discovery phase, we craft a strategic plan designed specifically for your business. Our team of experts develops actionable strategies and solutions that align with your goals.\"})}),fonts:[\"Inter\"]},V610y_9gL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-133dyqj\",\"data-styles-preset\":\"OsSk4wk17\",children:/*#__PURE__*/_jsx(motion.em,{children:\"We don\u2019t just help you grow\u2014we help you create a business that doesn\u2019t rely on you for survival. With the right leadership, systems, and financial discipline in place, you gain the freedom to step back while your business thrives.\"})})})},wtshxkayr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-133dyqj\",\"data-styles-preset\":\"OsSk4wk17\",children:\"The final step is putting the strategy into action. We work closely with your team to implement the plan, ensuring that every detail is executed flawlessly\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dTBeB.framer-1pfiyx8, .framer-dTBeB .framer-1pfiyx8 { display: block; }\",\".framer-dTBeB.framer-1ht9r3i { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 54px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1152px; }\",\".framer-dTBeB .framer-phlxov { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; max-width: 900px; overflow: hidden; padding: 0px 22px 0px 22px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-dTBeB .framer-9vqufh-container, .framer-dTBeB .framer-nzl557-container, .framer-dTBeB .framer-l4zq9b-container, .framer-dTBeB .framer-izseu9-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-dTBeB .framer-2z5v2w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dTBeB .framer-dotrsa { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 14px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dTBeB .framer-pw6wyu { flex: none; height: 347px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-dTBeB .framer-1uoe77p { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-dTBeB .framer-5jeel3 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dTBeB .framer-1eiw1e3 { flex: none; height: auto; max-width: 90%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dTBeB.framer-1ht9r3i, .framer-dTBeB .framer-phlxov, .framer-dTBeB .framer-2z5v2w, .framer-dTBeB .framer-dotrsa, .framer-dTBeB .framer-1uoe77p { gap: 0px; } .framer-dTBeB.framer-1ht9r3i > * { margin: 0px; margin-bottom: calc(54px / 2); margin-top: calc(54px / 2); } .framer-dTBeB.framer-1ht9r3i > :first-child, .framer-dTBeB .framer-dotrsa > :first-child, .framer-dTBeB .framer-1uoe77p > :first-child { margin-top: 0px; } .framer-dTBeB.framer-1ht9r3i > :last-child, .framer-dTBeB .framer-dotrsa > :last-child, .framer-dTBeB .framer-1uoe77p > :last-child { margin-bottom: 0px; } .framer-dTBeB .framer-phlxov > * { margin: 0px; margin-left: calc(28px / 2); margin-right: calc(28px / 2); } .framer-dTBeB .framer-phlxov > :first-child, .framer-dTBeB .framer-2z5v2w > :first-child { margin-left: 0px; } .framer-dTBeB .framer-phlxov > :last-child, .framer-dTBeB .framer-2z5v2w > :last-child { margin-right: 0px; } .framer-dTBeB .framer-2z5v2w > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-dTBeB .framer-dotrsa > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-dTBeB .framer-1uoe77p > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-dTBeB.framer-v-n3wb8i.framer-1ht9r3i, .framer-dTBeB.framer-v-1ll3a27.framer-1ht9r3i, .framer-dTBeB.framer-v-gy7p20.framer-1ht9r3i { gap: 44px; width: 380px; }\",\".framer-dTBeB.framer-v-n3wb8i .framer-phlxov, .framer-dTBeB.framer-v-1ll3a27 .framer-phlxov, .framer-dTBeB.framer-v-gy7p20 .framer-phlxov { flex-direction: column; gap: 10px; padding: 7px 22px 5px 22px; width: 100%; }\",\".framer-dTBeB.framer-v-n3wb8i .framer-9vqufh-container, .framer-dTBeB.framer-v-n3wb8i .framer-nzl557-container, .framer-dTBeB.framer-v-n3wb8i .framer-l4zq9b-container, .framer-dTBeB.framer-v-1ll3a27 .framer-9vqufh-container, .framer-dTBeB.framer-v-1ll3a27 .framer-nzl557-container, .framer-dTBeB.framer-v-1ll3a27 .framer-l4zq9b-container, .framer-dTBeB.framer-v-gy7p20 .framer-9vqufh-container, .framer-dTBeB.framer-v-gy7p20 .framer-nzl557-container, .framer-dTBeB.framer-v-gy7p20 .framer-l4zq9b-container { width: 100%; }\",\".framer-dTBeB.framer-v-n3wb8i .framer-2z5v2w, .framer-dTBeB.framer-v-1ll3a27 .framer-2z5v2w, .framer-dTBeB.framer-v-gy7p20 .framer-2z5v2w { flex-direction: column; gap: 32px; }\",\".framer-dTBeB.framer-v-n3wb8i .framer-dotrsa, .framer-dTBeB.framer-v-1ll3a27 .framer-dotrsa, .framer-dTBeB.framer-v-gy7p20 .framer-dotrsa { flex: none; width: 100%; }\",\".framer-dTBeB.framer-v-n3wb8i .framer-1uoe77p, .framer-dTBeB.framer-v-1ll3a27 .framer-1uoe77p, .framer-dTBeB.framer-v-gy7p20 .framer-1uoe77p { flex: none; gap: 22px; width: 100%; }\",\".framer-dTBeB.framer-v-n3wb8i .framer-1eiw1e3, .framer-dTBeB.framer-v-1ll3a27 .framer-1eiw1e3, .framer-dTBeB.framer-v-gy7p20 .framer-1eiw1e3 { max-width: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dTBeB.framer-v-n3wb8i.framer-1ht9r3i, .framer-dTBeB.framer-v-n3wb8i .framer-phlxov, .framer-dTBeB.framer-v-n3wb8i .framer-2z5v2w, .framer-dTBeB.framer-v-n3wb8i .framer-1uoe77p { gap: 0px; } .framer-dTBeB.framer-v-n3wb8i.framer-1ht9r3i > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-dTBeB.framer-v-n3wb8i.framer-1ht9r3i > :first-child, .framer-dTBeB.framer-v-n3wb8i .framer-phlxov > :first-child, .framer-dTBeB.framer-v-n3wb8i .framer-2z5v2w > :first-child, .framer-dTBeB.framer-v-n3wb8i .framer-1uoe77p > :first-child { margin-top: 0px; } .framer-dTBeB.framer-v-n3wb8i.framer-1ht9r3i > :last-child, .framer-dTBeB.framer-v-n3wb8i .framer-phlxov > :last-child, .framer-dTBeB.framer-v-n3wb8i .framer-2z5v2w > :last-child, .framer-dTBeB.framer-v-n3wb8i .framer-1uoe77p > :last-child { margin-bottom: 0px; } .framer-dTBeB.framer-v-n3wb8i .framer-phlxov > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-dTBeB.framer-v-n3wb8i .framer-2z5v2w > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-dTBeB.framer-v-n3wb8i .framer-1uoe77p > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dTBeB.framer-v-1ll3a27.framer-1ht9r3i, .framer-dTBeB.framer-v-1ll3a27 .framer-phlxov, .framer-dTBeB.framer-v-1ll3a27 .framer-2z5v2w, .framer-dTBeB.framer-v-1ll3a27 .framer-1uoe77p { gap: 0px; } .framer-dTBeB.framer-v-1ll3a27.framer-1ht9r3i > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-dTBeB.framer-v-1ll3a27.framer-1ht9r3i > :first-child, .framer-dTBeB.framer-v-1ll3a27 .framer-phlxov > :first-child, .framer-dTBeB.framer-v-1ll3a27 .framer-2z5v2w > :first-child, .framer-dTBeB.framer-v-1ll3a27 .framer-1uoe77p > :first-child { margin-top: 0px; } .framer-dTBeB.framer-v-1ll3a27.framer-1ht9r3i > :last-child, .framer-dTBeB.framer-v-1ll3a27 .framer-phlxov > :last-child, .framer-dTBeB.framer-v-1ll3a27 .framer-2z5v2w > :last-child, .framer-dTBeB.framer-v-1ll3a27 .framer-1uoe77p > :last-child { margin-bottom: 0px; } .framer-dTBeB.framer-v-1ll3a27 .framer-phlxov > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-dTBeB.framer-v-1ll3a27 .framer-2z5v2w > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-dTBeB.framer-v-1ll3a27 .framer-1uoe77p > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dTBeB.framer-v-gy7p20.framer-1ht9r3i, .framer-dTBeB.framer-v-gy7p20 .framer-phlxov, .framer-dTBeB.framer-v-gy7p20 .framer-2z5v2w, .framer-dTBeB.framer-v-gy7p20 .framer-1uoe77p { gap: 0px; } .framer-dTBeB.framer-v-gy7p20.framer-1ht9r3i > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-dTBeB.framer-v-gy7p20.framer-1ht9r3i > :first-child, .framer-dTBeB.framer-v-gy7p20 .framer-phlxov > :first-child, .framer-dTBeB.framer-v-gy7p20 .framer-2z5v2w > :first-child, .framer-dTBeB.framer-v-gy7p20 .framer-1uoe77p > :first-child { margin-top: 0px; } .framer-dTBeB.framer-v-gy7p20.framer-1ht9r3i > :last-child, .framer-dTBeB.framer-v-gy7p20 .framer-phlxov > :last-child, .framer-dTBeB.framer-v-gy7p20 .framer-2z5v2w > :last-child, .framer-dTBeB.framer-v-gy7p20 .framer-1uoe77p > :last-child { margin-bottom: 0px; } .framer-dTBeB.framer-v-gy7p20 .framer-phlxov > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-dTBeB.framer-v-gy7p20 .framer-2z5v2w > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-dTBeB.framer-v-gy7p20 .framer-1uoe77p > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 498.5\n * @framerIntrinsicWidth 1152\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"FM0CTxzRA\":{\"layout\":[\"fixed\",\"auto\"]},\"V610y_9gL\":{\"layout\":[\"fixed\",\"auto\"]},\"CJ5sqZGo1\":{\"layout\":[\"fixed\",\"auto\"]},\"Tmy4CEyUP\":{\"layout\":[\"fixed\",\"auto\"]},\"wtshxkayr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAcFpzs0Vr=withCSS(Component,css,\"framer-dTBeB\");export default FramerAcFpzs0Vr;FramerAcFpzs0Vr.displayName=\"How it works\";FramerAcFpzs0Vr.defaultProps={height:498.5,width:1152};addPropertyControls(FramerAcFpzs0Vr,{variant:{options:[\"xS483suSG\",\"FM0CTxzRA\",\"V610y_9gL\",\"CJ5sqZGo1\",\"Tmy4CEyUP\",\"wtshxkayr\"],optionTitles:[\"Tab-01\",\"Tab-02\",\"Tab-03\",\"Mobile-1\",\"Mobile-2\",\"Mobile-3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerAcFpzs0Vr,[{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:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]},...TabButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAcFpzs0Vr\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"498.5\",\"framerIntrinsicWidth\":\"1152\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FM0CTxzRA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"V610y_9gL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CJ5sqZGo1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Tmy4CEyUP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wtshxkayr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AcFpzs0Vr.map", "// Generated by Framer (9f68555)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-medium\",\"FS;Satoshi-bold\",\"FS;Satoshi-bold italic\",\"FS;Satoshi-medium italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CDEBEFT2R7XKNGXSBBLZGMY4MMHZG75P/HEVKDGQCYDZ7Z6CDVR2ZQGBCTUD6ZARH/BKWEE3VKGTFABE37K2DTH625VUSN2N35.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NID3I7RITWZSKXRCJGOCMP5NOADJK6IG/2HLHGD7OBTWCOHW64YXOE5KFXHU4KJHM/ZHME2QIRFR7UPJ47NLY27RCAFY44CKZJ.woff2\",weight:\"500\"}]}];export const css=['.framer-E0154 .framer-styles-preset-1dca42r:not(.rich-text-wrapper), .framer-E0154 .framer-styles-preset-1dca42r.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.03em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-38f68815-7867-4cb4-b7c3-02378b3e2eac, #0d0d0d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-E0154 .framer-styles-preset-1dca42r:not(.rich-text-wrapper), .framer-E0154 .framer-styles-preset-1dca42r.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.03em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-38f68815-7867-4cb4-b7c3-02378b3e2eac, #0d0d0d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-E0154 .framer-styles-preset-1dca42r:not(.rich-text-wrapper), .framer-E0154 .framer-styles-preset-1dca42r.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.03em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-38f68815-7867-4cb4-b7c3-02378b3e2eac, #0d0d0d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-E0154\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (677c5d1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,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/p0P4MbmI0RKmyQ7Pi1Tw/RxMtTYtlVIYwORiHSLQg/mkY39OzE0.js\";const serializationHash=\"framer-2EAca\";const variantClassNames={zi5_ZH2wd:\"framer-v-w3bvrl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;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 getProps=({height,id,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"zi5_ZH2wd\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);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-w3bvrl\",className,classNames),\"data-framer-name\":\"Rating\",layoutDependency:layoutDependency,layoutId:\"zi5_ZH2wd\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wk47hn\",\"data-framer-name\":\"Images-wrapper\",layoutDependency:layoutDependency,layoutId:\"WJhlCnsMf\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||44)-0-44)/2)+0),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/WNDu9bW55zhx6oqx14XzChy5JoI.png\"},className:\"framer-1s40mmj\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"NqI9x0xJN\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"var(--token-c9b12220-87c9-4c8c-a21d-cbf1e21628af, rgb(255, 255, 255))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",borderBottomLeftRadius:200,borderBottomRightRadius:200,borderTopLeftRadius:200,borderTopRightRadius:200}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||44)-0-44)/2)+-.3188405797101339),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/jb6XWfd9NUHkbr6kQwzdIXJWjo.png\"},className:\"framer-16ahua\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"juV4sfpEw\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"var(--token-c9b12220-87c9-4c8c-a21d-cbf1e21628af, rgb(255, 255, 255))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",borderBottomLeftRadius:200,borderBottomRightRadius:200,borderTopLeftRadius:200,borderTopRightRadius:200},transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||44)-0-44)/2)+-.3188405797101339),pixelHeight:205,pixelWidth:205,src:\"https://framerusercontent.com/images/mZSCiOt6b6O77wSTHNqPD69KVwM.jpeg\"},className:\"framer-9zh259\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"CH4mz4TEB\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"var(--token-c9b12220-87c9-4c8c-a21d-cbf1e21628af, rgb(255, 255, 255))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",borderBottomLeftRadius:200,borderBottomRightRadius:200,borderTopLeftRadius:200,borderTopRightRadius:200},transformTemplate:transformTemplate1})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uri8v2\",\"data-framer-name\":\"Stars\",layoutDependency:layoutDependency,layoutId:\"JEhn59jMy\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2j64w0\",\"data-framer-name\":\"Stars Item\",layoutDependency:layoutDependency,layoutId:\"j7PUF9gFz\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||44)-0-40)/2)+0+0+0),pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/SSfcKMLPUGz1xqJLBa9a4Gz54U.svg\"},className:\"framer-1fnf29v\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"n0IuZyVMS\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||44)-0-40)/2)+0+0+0),pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/SSfcKMLPUGz1xqJLBa9a4Gz54U.svg\"},className:\"framer-bovnrf\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"kaf7dNbvN\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||44)-0-40)/2)+0+0+0),pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/SSfcKMLPUGz1xqJLBa9a4Gz54U.svg\"},className:\"framer-190ta1l\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"eHnRHSe9Z\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||44)-0-40)/2)+0+0+0),pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/SSfcKMLPUGz1xqJLBa9a4Gz54U.svg\"},className:\"framer-hknkm6\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"CAywW6Mni\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||44)-0-40)/2)+0+0+0),pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/SSfcKMLPUGz1xqJLBa9a4Gz54U.svg\"},className:\"framer-b5o1xf\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"tnoYviabB\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dca42r\",\"data-styles-preset\":\"mkY39OzE0\",children:\"500+ Leaders Served\"})}),className:\"framer-1itpbkd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JT3ncTwJt\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2EAca.framer-1tij1p3, .framer-2EAca .framer-1tij1p3 { display: block; }\",\".framer-2EAca.framer-w3bvrl { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-2EAca .framer-1wk47hn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 105px; }\",\".framer-2EAca .framer-1s40mmj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); overflow: hidden; position: relative; width: 44px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2EAca .framer-16ahua { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); left: 30px; overflow: hidden; position: absolute; top: 49%; width: 44px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-2EAca .framer-9zh259 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); left: 60px; overflow: hidden; position: absolute; top: 49%; width: 44px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-2EAca .framer-1uri8v2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-2EAca .framer-2j64w0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-2EAca .framer-1fnf29v, .framer-2EAca .framer-bovnrf, .framer-2EAca .framer-190ta1l, .framer-2EAca .framer-hknkm6, .framer-2EAca .framer-b5o1xf { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); overflow: hidden; position: relative; width: 12px; }\",\".framer-2EAca .framer-1itpbkd { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2EAca.framer-w3bvrl, .framer-2EAca .framer-1wk47hn, .framer-2EAca .framer-1uri8v2, .framer-2EAca .framer-2j64w0 { gap: 0px; } .framer-2EAca.framer-w3bvrl > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-2EAca.framer-w3bvrl > :first-child, .framer-2EAca .framer-1wk47hn > :first-child, .framer-2EAca .framer-2j64w0 > :first-child { margin-left: 0px; } .framer-2EAca.framer-w3bvrl > :last-child, .framer-2EAca .framer-1wk47hn > :last-child, .framer-2EAca .framer-2j64w0 > :last-child { margin-right: 0px; } .framer-2EAca .framer-1wk47hn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2EAca .framer-1uri8v2 > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-2EAca .framer-1uri8v2 > :first-child { margin-top: 0px; } .framer-2EAca .framer-1uri8v2 > :last-child { margin-bottom: 0px; } .framer-2EAca .framer-2j64w0 > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } }\",...sharedStyle.css,'.framer-2EAca[data-border=\"true\"]::after, .framer-2EAca [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 247\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIjOYJsMtg=withCSS(Component,css,\"framer-2EAca\");export default FramerIjOYJsMtg;FramerIjOYJsMtg.displayName=\"Utility/Rating\";FramerIjOYJsMtg.defaultProps={height:44,width:247};addFonts(FramerIjOYJsMtg,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIjOYJsMtg\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"247\",\"framerIntrinsicHeight\":\"44\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IjOYJsMtg.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/k5Nav5XWEErwviu90HCY/excPNxahJo7JyR1aILyE/njSozvrnr.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/f7c5r83mdfGShoxLBcvM/KMV8agEoNnB7awolzZF2/OsSk4wk17.js\";const enabledGestures={MDPFRRJda:{hover:true}};const cycleOrder=[\"MDPFRRJda\",\"r3z4GOKmH\"];const serializationHash=\"framer-9FF7c\";const variantClassNames={MDPFRRJda:\"framer-v-j2hn4j\",r3z4GOKmH:\"framer-v-4nvzsj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:28,delay:0,mass:.5,stiffness:190,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.create(React.Fragment);const humanReadableVariantMap={\"Initial-State\":\"MDPFRRJda\",Open:\"r3z4GOKmH\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,RFB_dgaI_:(_ref=answer!==null&&answer!==void 0?answer:props.RFB_dgaI_)!==null&&_ref!==void 0?_ref:\"Framer is No code website Building tool\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"MDPFRRJda\",XuhxFlopr:(_ref2=question!==null&&question!==void 0?question:props.XuhxFlopr)!==null&&_ref2!==void 0?_ref2:\"What is Framer\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,XuhxFlopr,RFB_dgaI_,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MDPFRRJda\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap21uyum=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"r3z4GOKmH\");});const onTapejgl9s=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"MDPFRRJda\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-j2hn4j\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Initial-State\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"MDPFRRJda\",onTap:onTap21uyum,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(13, 13, 13, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",opacity:1,...style},variants:{\"MDPFRRJda-hover\":{opacity:.75}},...addPropertyOverrides({\"MDPFRRJda-hover\":{\"data-framer-name\":undefined},r3z4GOKmH:{\"data-framer-name\":\"Open\",onTap:onTapejgl9s}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uqo9bc\",\"data-framer-name\":\"Accordion-Question\",layoutDependency:layoutDependency,layoutId:\"scVEfyy86\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-133dyqj\",\"data-styles-preset\":\"OsSk4wk17\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-38f68815-7867-4cb4-b7c3-02378b3e2eac, rgb(13, 13, 13)))\"},children:\"What is Framer\"})}),className:\"framer-zmn5oh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SyRPP2D13\",style:{\"--extracted-r6o4lv\":\"var(--token-38f68815-7867-4cb4-b7c3-02378b3e2eac, rgb(13, 13, 13))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:XuhxFlopr,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b8hunz\",\"data-framer-name\":\"Icon-wrapper\",layoutDependency:layoutDependency,layoutId:\"jl7Py5SAO\",style:{backgroundColor:\"var(--token-37c73a71-ed98-4730-86d9-6e0a52d466b3, rgb(46, 105, 255))\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1405s9n\",\"data-framer-name\":\"Icon\",fill:\"var(--token-c9b12220-87c9-4c8c-a21d-cbf1e21628af, rgb(255, 255, 255))\",intrinsicHeight:800,intrinsicWidth:800,layoutDependency:layoutDependency,layoutId:\"i2oFHeCb_\",style:{rotate:0},svg:'<svg width=\"800\" height=\"800\" viewBox=\"0 -0.5 21 21\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M21 9v2h-9.45v9h-2.1v-9H0V9h9.45V0h2.1v9z\" fill-rule=\"evenodd\"/></svg>',variants:{r3z4GOKmH:{rotate:-45}},withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3paox2\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"skAnVGfZP\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14mden8\",\"data-styles-preset\":\"njSozvrnr\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e4bee715-1a76-4d52-94a9-54840079c030, rgb(66, 66, 66)))\"},children:\"Framer is No code website Building tool\"})}),className:\"framer-194td1s\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Sn7TWByRc\",style:{\"--extracted-r6o4lv\":\"var(--token-e4bee715-1a76-4d52-94a9-54840079c030, rgb(66, 66, 66))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:RFB_dgaI_,verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9FF7c.framer-vza6lh, .framer-9FF7c .framer-vza6lh { display: block; }\",\".framer-9FF7c.framer-j2hn4j { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 22px 0px 22px 0px; position: relative; width: 541px; }\",\".framer-9FF7c .framer-1uqo9bc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 2px; position: relative; width: 100%; }\",\".framer-9FF7c .framer-zmn5oh { flex: 1 0 0px; height: auto; max-width: 90%; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-9FF7c .framer-1b8hunz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 7px; position: relative; width: min-content; }\",\".framer-9FF7c .framer-1405s9n { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); position: relative; width: 12px; }\",\".framer-9FF7c .framer-3paox2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9FF7c .framer-194td1s { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9FF7c.framer-j2hn4j, .framer-9FF7c .framer-1b8hunz, .framer-9FF7c .framer-3paox2 { gap: 0px; } .framer-9FF7c.framer-j2hn4j > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-9FF7c.framer-j2hn4j > :first-child, .framer-9FF7c .framer-3paox2 > :first-child { margin-top: 0px; } .framer-9FF7c.framer-j2hn4j > :last-child, .framer-9FF7c .framer-3paox2 > :last-child { margin-bottom: 0px; } .framer-9FF7c .framer-1b8hunz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-9FF7c .framer-1b8hunz > :first-child { margin-left: 0px; } .framer-9FF7c .framer-1b8hunz > :last-child { margin-right: 0px; } .framer-9FF7c .framer-3paox2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-9FF7c.framer-v-4nvzsj.framer-j2hn4j { gap: 16px; }\",\".framer-9FF7c.framer-v-4nvzsj .framer-3paox2 { height: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9FF7c.framer-v-4nvzsj.framer-j2hn4j { gap: 0px; } .framer-9FF7c.framer-v-4nvzsj.framer-j2hn4j > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-9FF7c.framer-v-4nvzsj.framer-j2hn4j > :first-child { margin-top: 0px; } .framer-9FF7c.framer-v-4nvzsj.framer-j2hn4j > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-9FF7c[data-border=\"true\"]::after, .framer-9FF7c [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 82\n * @framerIntrinsicWidth 541\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"r3z4GOKmH\":{\"layout\":[\"fixed\",\"auto\"]},\"qIfRsmIuD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"XuhxFlopr\":\"question\",\"RFB_dgaI_\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNCHAMG8cv=withCSS(Component,css,\"framer-9FF7c\");export default FramerNCHAMG8cv;FramerNCHAMG8cv.displayName=\"Accordion\";FramerNCHAMG8cv.defaultProps={height:82,width:541};addPropertyControls(FramerNCHAMG8cv,{variant:{options:[\"MDPFRRJda\",\"r3z4GOKmH\"],optionTitles:[\"Initial-State\",\"Open\"],title:\"Variant\",type:ControlType.Enum},XuhxFlopr:{defaultValue:\"What is Framer\",displayTextArea:true,title:\"Question\",type:ControlType.String},RFB_dgaI_:{defaultValue:\"Framer is No code website Building tool\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerNCHAMG8cv,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNCHAMG8cv\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"XuhxFlopr\\\":\\\"question\\\",\\\"RFB_dgaI_\\\":\\\"answer\\\"}\",\"framerIntrinsicHeight\":\"82\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"r3z4GOKmH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qIfRsmIuD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"541\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NCHAMG8cv.map", "// Generated by Framer (74b1a33)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Accordion from\"https://framerusercontent.com/modules/qfIhhgTDwIfX64LYv0Nw/RmWAv9dUt6H19WAXr9Bs/NCHAMG8cv.js\";const AccordionFonts=getFonts(Accordion);const MotionDivWithFX=withFX(motion.div);const serializationHash=\"framer-lGvEz\";const variantClassNames={OuT7cpmpy:\"framer-v-1r21tou\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:18};const transition2={damping:54,delay:.1,mass:1,stiffness:400,type:\"spring\"};const transition3={damping:54,delay:.2,mass:1,stiffness:400,type:\"spring\"};const transition4={damping:54,delay:.3,mass:1,stiffness:400,type:\"spring\"};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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"OuT7cpmpy\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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-1r21tou\",className,classNames),\"data-framer-name\":\"FAQ\",layoutDependency:layoutDependency,layoutId:\"OuT7cpmpy\",ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||615)-0-450)/2+0+0),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1xp6m7a-container\",\"data-framer-name\":\"Accordion\",layoutDependency:layoutDependency,layoutId:\"KTIdyd2As-container\",name:\"Accordion\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"KTIdyd2As\",layoutId:\"KTIdyd2As\",name:\"Accordion\",RFB_dgaI_:\"We teach business owners how to shift from being the bottleneck to becoming strategic leaders. Through leadership coaching, accountability frameworks, and scalable systems, we help owners build a business that thrives without their constant involvement.\",style:{width:\"100%\"},variant:\"MDPFRRJda\",width:\"100%\",XuhxFlopr:\"How does GNA Inc. help business owners step out of the day-to-day operations?\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||615)-0-450)/2+82+10),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-sm5kgo-container\",\"data-framer-name\":\"Accordion\",layoutDependency:layoutDependency,layoutId:\"yjj79NWmV-container\",name:\"Accordion\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"yjj79NWmV\",layoutId:\"yjj79NWmV\",name:\"Accordion\",RFB_dgaI_:\"Most owners focus on growing revenue but ignore profitability and leadership. If your business is making millions but you\u2019re still the hardest-working person in the company, you don\u2019t own a business\u2014you own a job. We help businesses break free from the \u201Cowner trap\u201D by creating leadership structures that allow them to scale profitably and sustainably.\",style:{width:\"100%\"},variant:\"MDPFRRJda\",width:\"100%\",XuhxFlopr:\"What\u2019s the biggest mistake business owners make when trying to scale??\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||615)-0-450)/2+164+20),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-grb78j-container\",\"data-framer-name\":\"Accordion\",layoutDependency:layoutDependency,layoutId:\"yx4Q1uOV6-container\",name:\"Accordion\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"yx4Q1uOV6\",layoutId:\"yx4Q1uOV6\",name:\"Accordion\",RFB_dgaI_:\"We don\u2019t do theory\u2014we do execution. Our process includes real-world financial analysis, leadership accountability, and measurable performance benchmarks. We track KPIs, job costing, net margins, and operational efficiency to ensure that our strategies aren\u2019t just good ideas\u2014they\u2019re delivering real impact.\",style:{width:\"100%\"},variant:\"MDPFRRJda\",width:\"100%\",XuhxFlopr:\"How do you ensure your strategies actually lead to results?\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||615)-0-450)/2+246+30),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-vc0q2u-container\",\"data-framer-name\":\"Accordion\",layoutDependency:layoutDependency,layoutId:\"firlkpieq-container\",name:\"Accordion\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"firlkpieq\",layoutId:\"firlkpieq\",name:\"Accordion\",RFB_dgaI_:\"Some clients see noticeable shifts in leadership and accountability within weeks, while major profitability and scaling improvements typically take 3 to 6 months of strategic implementation. The speed of results depends on how committed the business owner is to making real changes and holding their team accountable.\",style:{width:\"100%\"},variant:\"MDPFRRJda\",width:\"100%\",XuhxFlopr:\"How long does it take to see measurable improvements?\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||615)-0-450)/2+328+40),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1dihpqx-container\",\"data-framer-name\":\"Accordion\",layoutDependency:layoutDependency,layoutId:\"gdSyJQvV5-container\",name:\"Accordion\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"gdSyJQvV5\",layoutId:\"gdSyJQvV5\",name:\"Accordion\",RFB_dgaI_:\"While we specialize in construction, restoration, and service-based businesses, our frameworks apply to any business that wants to improve leadership, operations, financial mastery, and scalability. Our best-fit clients are business owners who are tired of spinning their wheels, ready to scale profitably, and willing to do the work to create a high-performance culture.\",style:{width:\"100%\"},variant:\"MDPFRRJda\",width:\"100%\",XuhxFlopr:\"What industries does GNA Inc. specialize in, and who are the best-fit clients?\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lGvEz.framer-1nt3133, .framer-lGvEz .framer-1nt3133 { display: block; }\",\".framer-lGvEz.framer-1r21tou { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 541px; }\",\".framer-lGvEz .framer-1xp6m7a-container, .framer-lGvEz .framer-sm5kgo-container, .framer-lGvEz .framer-grb78j-container, .framer-lGvEz .framer-vc0q2u-container, .framer-lGvEz .framer-1dihpqx-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lGvEz.framer-1r21tou { gap: 0px; } .framer-lGvEz.framer-1r21tou > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-lGvEz.framer-1r21tou > :first-child { margin-top: 0px; } .framer-lGvEz.framer-1r21tou > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 615\n * @framerIntrinsicWidth 541\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKHC9ipO_P=withCSS(Component,css,\"framer-lGvEz\");export default FramerKHC9ipO_P;FramerKHC9ipO_P.displayName=\"FAQ-Items\";FramerKHC9ipO_P.defaultProps={height:615,width:541};addFonts(FramerKHC9ipO_P,[{explicitInter:true,fonts:[]},...AccordionFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKHC9ipO_P\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"615\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"541\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KHC9ipO_P.map", "import { jsx as _jsx } from \"react/jsx-runtime\";\nimport * as React from \"react\";\nexport const containerStyles = {\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nconst nullIconStyle = {\n    minWidth: \"10px\",\n    minHeight: \"10px\",\n    maxWidth: \"20px\",\n    maxHeight: \"20px\",\n    width: \"60%\",\n    height: \"60%\"\n};\nconst emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(149, 149, 149, 0.1)\",\n    border: \"1px dashed rgba(149, 149, 149, 0.15)\",\n    color: \"#a5a5a5\",\n    flexDirection: \"column\"\n};\nexport const NullState = /*#__PURE__*/ React.forwardRef((_, ref)=>{\n    return(/*#__PURE__*/ _jsx(\"div\", {\n        style: emptyStateStyle,\n        ref: ref\n    }));\n}) /*\n\n<svg\n                xmlns=\"http://www.w3.org/2000/svg\"\n                viewBox=\"0 0 30 30\"\n                style={nullIconStyle}\n            >\n                <path\n                    d=\"M 12.857 0 C 19.958 0 25.714 5.756 25.714 12.857 C 25.714 19.958 19.958 25.714 12.857 25.714 C 5.756 25.714 0 19.958 0 12.857 C 0 5.756 5.756 0 12.857 0 Z\"\n                    fill=\"#FFFFFF\"\n                ></path>\n                <path\n                    d=\"M 20.357 20.357 L 27.857 27.857\"\n                    fill=\"transparent\"\n                    strokeWidth=\"4.28\"\n                    stroke=\"#FFFFFF\"\n                    strokeLinecap=\"round\"\n                ></path>\n                <g transform=\"translate(9.643 6.429)\">\n                    <path\n                        d=\"M 3.214 12.857 L 3.214 12.857\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.75\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                    ></path>\n                    <path\n                        d=\"M 0 3.214 C 0 1.004 1.843 0 3.214 0 C 4.586 0 6.429 0.603 6.429 3.214 C 6.429 5.826 3.214 5.913 3.214 7.232 C 3.214 8.552 3.214 8.571 3.214 8.571\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.22\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                        strokeLinejoin=\"round\"\n                    ></path>\n                </g>\n            </svg>\n            */ ;\n\nexport const __FramerMetadata__ = {\"exports\":{\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"NullState\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./nullstate.map", "let Component;\nlet IconInner;\nvar Icon = (React) => {\n  if (!Component) {\n    Component = /* @__PURE__ */ new Map([\n      [\n        \"bold\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M222.14,105.85l-80-80a20,20,0,0,0-28.28,0l-80,80A19.86,19.86,0,0,0,28,120v96a12,12,0,0,0,12,12h64a12,12,0,0,0,12-12V164h24v52a12,12,0,0,0,12,12h64a12,12,0,0,0,12-12V120A19.86,19.86,0,0,0,222.14,105.85ZM204,204H164V152a12,12,0,0,0-12-12H104a12,12,0,0,0-12,12v52H52V121.65l76-76,76,76Z\" }))\n      ],\n      [\n        \"duotone\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\n          \"path\",\n          {\n            d: \"M216,120v96H152V152H104v64H40V120a8,8,0,0,1,2.34-5.66l80-80a8,8,0,0,1,11.32,0l80,80A8,8,0,0,1,216,120Z\",\n            opacity: \"0.2\"\n          }\n        ), /* @__PURE__ */ React.createElement(\"path\", { d: \"M219.31,108.68l-80-80a16,16,0,0,0-22.62,0l-80,80A15.87,15.87,0,0,0,32,120v96a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V160h32v56a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V120A15.87,15.87,0,0,0,219.31,108.68ZM208,208H160V152a8,8,0,0,0-8-8H104a8,8,0,0,0-8,8v56H48V120l80-80,80,80Z\" }))\n      ],\n      [\n        \"fill\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M224,120v96a8,8,0,0,1-8,8H160a8,8,0,0,1-8-8V164a4,4,0,0,0-4-4H108a4,4,0,0,0-4,4v52a8,8,0,0,1-8,8H40a8,8,0,0,1-8-8V120a16,16,0,0,1,4.69-11.31l80-80a16,16,0,0,1,22.62,0l80,80A16,16,0,0,1,224,120Z\" }))\n      ],\n      [\n        \"light\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M217.9,110.1l-80-80a14,14,0,0,0-19.8,0l-80,80A13.92,13.92,0,0,0,34,120v96a6,6,0,0,0,6,6h64a6,6,0,0,0,6-6V158h36v58a6,6,0,0,0,6,6h64a6,6,0,0,0,6-6V120A13.92,13.92,0,0,0,217.9,110.1ZM210,210H158V152a6,6,0,0,0-6-6H104a6,6,0,0,0-6,6v58H46V120a2,2,0,0,1,.58-1.42l80-80a2,2,0,0,1,2.84,0l80,80A2,2,0,0,1,210,120Z\" }))\n      ],\n      [\n        \"regular\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M219.31,108.68l-80-80a16,16,0,0,0-22.62,0l-80,80A15.87,15.87,0,0,0,32,120v96a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V160h32v56a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V120A15.87,15.87,0,0,0,219.31,108.68ZM208,208H160V152a8,8,0,0,0-8-8H104a8,8,0,0,0-8,8v56H48V120l80-80,80,80Z\" }))\n      ],\n      [\n        \"thin\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M216.49,111.51l-80-80a12,12,0,0,0-17,0l-80,80A12,12,0,0,0,36,120v96a4,4,0,0,0,4,4h64a4,4,0,0,0,4-4V156h40v60a4,4,0,0,0,4,4h64a4,4,0,0,0,4-4V120A12,12,0,0,0,216.49,111.51ZM212,212H156V152a4,4,0,0,0-4-4H104a4,4,0,0,0-4,4v60H44V120a4,4,0,0,1,1.17-2.83l80-80a4,4,0,0,1,5.66,0l80,80A4,4,0,0,1,212,120Z\" }))\n      ]\n    ]);\n    IconInner = React.forwardRef((props, ref) => /* @__PURE__ */ React.createElement(\"g\", { ref, ...props }, Component.get(props.weight)));\n  }\n  return IconInner;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nvar House_default = Icon;\nexport {\n  __FramerMetadata__,\n  House_default as default\n};\n", "import{useMemo}from\"react\";import{ControlType}from\"framer\";/*\n ** ICON UTILS\n ** Pull as much re-usable logic into here as possible\n ** This will make it easier to replace in all icon components\n */ export const containerStyles={width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};export const defaultEvents={onClick:{type:ControlType.EventHandler},onMouseDown:{type:ControlType.EventHandler},onMouseUp:{type:ControlType.EventHandler},onMouseEnter:{type:ControlType.EventHandler},onMouseLeave:{type:ControlType.EventHandler}};const findByArray=(arr,search)=>arr.find(a=>a.toLowerCase().includes(search));export function getIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// gotta get the exact match first THEN find\n// have a set and try to access ?\nif(selectByList)return iconSelection;if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;}export function useIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// Clean search term\nconst iconSearchResult=useMemo(()=>{if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;},[iconSelection,iconSearch]);const name=selectByList?iconSelection:iconSearchResult;return name;}\nexport const __FramerMetadata__ = {\"exports\":{\"getIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HouseFactory from\"https://framer.com/m/phosphor-icons/House.js@0.0.57\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const iconKeys=[\"Acorn\",\"AddressBook\",\"AddressBookTabs\",\"AirTrafficControl\",\"Airplane\",\"AirplaneInFlight\",\"AirplaneLanding\",\"AirplaneTakeoff\",\"AirplaneTaxiing\",\"AirplaneTilt\",\"Airplay\",\"Alarm\",\"Alien\",\"AlignBottom\",\"AlignBottomSimple\",\"AlignCenterVertical\",\"AlignLeft\",\"AlignLeftSimple\",\"AlignRight\",\"AlignRightSimple\",\"AlignTop\",\"AlignTopSimple\",\"AmazonLogo\",\"Ambulance\",\"Anchor\",\"AnchorSimple\",\"AndroidLogo\",\"Angle\",\"AngularLogo\",\"Aperture\",\"AppStoreLogo\",\"AppWindow\",\"AppleLogo\",\"ApplePodcastsLogo\",\"ApproximateEquals\",\"Archive\",\"ArchiveBox\",\"ArchiveTray\",\"Armchair\",\"ArrowArcLeft\",\"ArrowArcRight\",\"ArrowBendDownLeft\",\"ArrowBendDownRight\",\"ArrowBendLeftDown\",\"ArrowBendLeftUp\",\"ArrowBendRightDown\",\"ArrowBendRightUp\",\"ArrowBendUpLeft\",\"ArrowBendUpRight\",\"ArrowCircleDown\",\"ArrowCircleDownLeft\",\"ArrowCircleDownRight\",\"ArrowCircleLeft\",\"ArrowCircleRight\",\"ArrowCircleUp\",\"ArrowCircleUpLeft\",\"ArrowCircleUpRight\",\"ArrowClockwise\",\"ArrowDown\",\"ArrowDownLeft\",\"ArrowDownRight\",\"ArrowElbowDownLeft\",\"ArrowElbowDownRight\",\"ArrowElbowLeft\",\"ArrowElbowLeftDown\",\"ArrowElbowLeftUp\",\"ArrowElbowRight\",\"ArrowElbowRightDown\",\"ArrowElbowRightUp\",\"ArrowElbowUpLeft\",\"ArrowElbowUpRight\",\"ArrowFatDown\",\"ArrowFatLeft\",\"ArrowFatLineDown\",\"ArrowFatLineLeft\",\"ArrowFatLineRight\",\"ArrowFatLineUp\",\"ArrowFatLinesDown\",\"ArrowFatLinesLeft\",\"ArrowFatLinesRight\",\"ArrowFatLinesUp\",\"ArrowFatRight\",\"ArrowFatUp\",\"ArrowLeft\",\"ArrowLineDown\",\"ArrowLineDownLeft\",\"ArrowLineDownRight\",\"ArrowLineLeft\",\"ArrowLineRight\",\"ArrowLineUp\",\"ArrowLineUpLeft\",\"ArrowLineUpRight\",\"ArrowRight\",\"ArrowSquareDown\",\"ArrowSquareDownLeft\",\"ArrowSquareDownRight\",\"ArrowSquareIn\",\"ArrowSquareLeft\",\"ArrowSquareOut\",\"ArrowSquareRight\",\"ArrowSquareUp\",\"ArrowSquareUpLeft\",\"ArrowSquareUpRight\",\"ArrowUDownLeft\",\"ArrowUDownRight\",\"ArrowULeftDown\",\"ArrowULeftUp\",\"ArrowURightDown\",\"ArrowURightUp\",\"ArrowUUpLeft\",\"ArrowUUpRight\",\"ArrowUp\",\"ArrowUpLeft\",\"ArrowUpRight\",\"ArrowsClockwise\",\"ArrowsDownUp\",\"ArrowsHorizontal\",\"ArrowsIn\",\"ArrowsInCardinal\",\"ArrowsInLineVertical\",\"ArrowsInSimple\",\"ArrowsLeftRight\",\"ArrowsMerge\",\"ArrowsOut\",\"ArrowsOutCardinal\",\"ArrowsOutSimple\",\"ArrowsSplit\",\"ArrowsVertical\",\"Article\",\"ArticleMedium\",\"ArticleNyTimes\",\"Asclepius\",\"Asterisk\",\"AsteriskSimple\",\"At\",\"Atom\",\"Avocado\",\"Axe\",\"Baby\",\"BabyCarriage\",\"Backpack\",\"Backspace\",\"Bag\",\"BagSimple\",\"Balloon\",\"Bandaids\",\"Bank\",\"Barbell\",\"Barcode\",\"Barn\",\"Barricade\",\"Baseball\",\"BaseballCap\",\"BaseballHelmet\",\"Basket\",\"Basketball\",\"Bathtub\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryHigh\",\"BatteryLow\",\"BatteryMedium\",\"BatteryPlus\",\"BatteryPlusVertical\",\"BatteryVerticalEmpty\",\"BatteryVerticalFull\",\"BatteryVerticalHigh\",\"BatteryVerticalLow\",\"BatteryWarning\",\"BeachBall\",\"Beanie\",\"Bed\",\"BeerBottle\",\"BeerStein\",\"BehanceLogo\",\"Bell\",\"BellRinging\",\"BellSimple\",\"BellSimpleRinging\",\"BellSimpleSlash\",\"BellSimpleZ\",\"BellSlash\",\"BellZ\",\"Belt\",\"BezierCurve\",\"Bicycle\",\"Binary\",\"Binoculars\",\"Biohazard\",\"Bird\",\"Blueprint\",\"Bluetooth\",\"BluetoothConnected\",\"BluetoothSlash\",\"BluetoothX\",\"Boat\",\"Bomb\",\"Bone\",\"Book\",\"BookBookmark\",\"BookOpen\",\"BookOpenText\",\"BookOpenUser\",\"BookUser\",\"Bookmark\",\"BookmarkSimple\",\"Bookmarks\",\"BookmarksSimple\",\"Books\",\"Boot\",\"Boules\",\"BoundingBox\",\"BowlFood\",\"BowlSteam\",\"BowlingBall\",\"BoxArrowDown\",\"BoxArrowUp\",\"BoxingGlove\",\"BracketsAngle\",\"BracketsCurly\",\"BracketsRound\",\"BracketsSquare\",\"Brain\",\"Brandy\",\"Bread\",\"Bridge\",\"Briefcase\",\"BriefcaseMetal\",\"Broadcast\",\"Broom\",\"Browser\",\"Browsers\",\"Bug\",\"BugBeetle\",\"BugDroid\",\"Building\",\"BuildingApartment\",\"BuildingOffice\",\"Buildings\",\"Bulldozer\",\"Bus\",\"Butterfly\",\"CableCar\",\"Cactus\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarBlank\",\"CalendarCheck\",\"CalendarDot\",\"CalendarDots\",\"CalendarHeart\",\"CalendarMinus\",\"CalendarPlus\",\"CalendarSlash\",\"CalendarStar\",\"CalendarX\",\"CallBell\",\"Camera\",\"CameraPlus\",\"CameraRotate\",\"CameraSlash\",\"Campfire\",\"Car\",\"CarBattery\",\"CarProfile\",\"CarSimple\",\"Cardholder\",\"Cards\",\"CardsThree\",\"CaretCircleDoubleUp\",\"CaretCircleDown\",\"CaretCircleLeft\",\"CaretCircleRight\",\"CaretCircleUp\",\"CaretCircleUpDown\",\"CaretDoubleDown\",\"CaretDoubleLeft\",\"CaretDoubleRight\",\"CaretDoubleUp\",\"CaretDown\",\"CaretLeft\",\"CaretLineDown\",\"CaretLineLeft\",\"CaretLineRight\",\"CaretLineUp\",\"CaretRight\",\"CaretUp\",\"CaretUpDown\",\"Carrot\",\"CashRegister\",\"CassetteTape\",\"CastleTurret\",\"Cat\",\"CellSignalFull\",\"CellSignalHigh\",\"CellSignalLow\",\"CellSignalMedium\",\"CellSignalNone\",\"CellSignalSlash\",\"CellSignalX\",\"CellTower\",\"Certificate\",\"Chair\",\"Chalkboard\",\"ChalkboardSimple\",\"ChalkboardTeacher\",\"Champagne\",\"ChargingStation\",\"ChartBar\",\"ChartBarHorizontal\",\"ChartDonut\",\"ChartLine\",\"ChartLineDown\",\"ChartLineUp\",\"ChartPie\",\"ChartPieSlice\",\"ChartPolar\",\"ChartScatter\",\"Chat\",\"ChatCentered\",\"ChatCenteredDots\",\"ChatCenteredSlash\",\"ChatCenteredText\",\"ChatCircle\",\"ChatCircleDots\",\"ChatCircleSlash\",\"ChatCircleText\",\"ChatDots\",\"ChatSlash\",\"ChatTeardrop\",\"ChatTeardropDots\",\"ChatTeardropSlash\",\"ChatTeardropText\",\"ChatText\",\"Chats\",\"ChatsCircle\",\"ChatsTeardrop\",\"Check\",\"CheckCircle\",\"CheckFat\",\"CheckSquare\",\"CheckSquareOffset\",\"Checkerboard\",\"Checks\",\"Cheers\",\"Cheese\",\"ChefHat\",\"Cherries\",\"Church\",\"Cigarette\",\"CigaretteSlash\",\"Circle\",\"CircleDashed\",\"CircleHalf\",\"CircleHalfTilt\",\"CircleNotch\",\"CirclesFour\",\"CirclesThree\",\"CirclesThreePlus\",\"Circuitry\",\"City\",\"Clipboard\",\"ClipboardText\",\"Clock\",\"ClockAfternoon\",\"ClockClockwise\",\"ClockCountdown\",\"ClockUser\",\"ClosedCaptioning\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CloudCheck\",\"CloudFog\",\"CloudLightning\",\"CloudMoon\",\"CloudRain\",\"CloudSlash\",\"CloudSnow\",\"CloudSun\",\"CloudWarning\",\"CloudX\",\"Clover\",\"Club\",\"CoatHanger\",\"CodaLogo\",\"Code\",\"CodeBlock\",\"CodeSimple\",\"CodepenLogo\",\"CodesandboxLogo\",\"Coffee\",\"CoffeeBean\",\"Coin\",\"CoinVertical\",\"Coins\",\"Columns\",\"ColumnsPlusLeft\",\"ColumnsPlusRight\",\"Command\",\"Compass\",\"CompassRose\",\"CompassTool\",\"ComputerTower\",\"Confetti\",\"ContactlessPayment\",\"Control\",\"Cookie\",\"CookingPot\",\"Copy\",\"CopySimple\",\"Copyleft\",\"Copyright\",\"CornersIn\",\"CornersOut\",\"Couch\",\"CourtBasketball\",\"Cow\",\"CowboyHat\",\"Cpu\",\"Crane\",\"CraneTower\",\"CreditCard\",\"Cricket\",\"Crop\",\"Cross\",\"Crosshair\",\"CrosshairSimple\",\"Crown\",\"CrownCross\",\"CrownSimple\",\"Cube\",\"CubeFocus\",\"CubeTransparent\",\"CurrencyBtc\",\"CurrencyCircleDollar\",\"CurrencyCny\",\"CurrencyDollar\",\"CurrencyDollarSimple\",\"CurrencyEth\",\"CurrencyEur\",\"CurrencyGbp\",\"CurrencyInr\",\"CurrencyJpy\",\"CurrencyKrw\",\"CurrencyKzt\",\"CurrencyNgn\",\"CurrencyRub\",\"Cursor\",\"CursorClick\",\"CursorText\",\"Cylinder\",\"Database\",\"Desk\",\"Desktop\",\"DesktopTower\",\"Detective\",\"DevToLogo\",\"DeviceMobile\",\"DeviceMobileCamera\",\"DeviceMobileSlash\",\"DeviceMobileSpeaker\",\"DeviceRotate\",\"DeviceTablet\",\"DeviceTabletCamera\",\"DeviceTabletSpeaker\",\"Devices\",\"Diamond\",\"DiamondsFour\",\"DiceFive\",\"DiceFour\",\"DiceOne\",\"DiceSix\",\"DiceThree\",\"DiceTwo\",\"Disc\",\"DiscoBall\",\"DiscordLogo\",\"Divide\",\"Dna\",\"Dog\",\"Door\",\"DoorOpen\",\"Dot\",\"DotOutline\",\"DotsNine\",\"DotsSix\",\"DotsSixVertical\",\"DotsThree\",\"DotsThreeCircle\",\"DotsThreeOutline\",\"DotsThreeVertical\",\"Download\",\"DownloadSimple\",\"Dress\",\"Dresser\",\"DribbbleLogo\",\"Drone\",\"Drop\",\"DropHalf\",\"DropHalfBottom\",\"DropSimple\",\"DropSlash\",\"DropboxLogo\",\"Ear\",\"EarSlash\",\"Egg\",\"EggCrack\",\"Eject\",\"EjectSimple\",\"Elevator\",\"Empty\",\"Engine\",\"Envelope\",\"EnvelopeOpen\",\"EnvelopeSimple\",\"EnvelopeSimpleOpen\",\"Equalizer\",\"Equals\",\"Eraser\",\"EscalatorDown\",\"EscalatorUp\",\"Exam\",\"ExclamationMark\",\"Exclude\",\"ExcludeSquare\",\"Export\",\"Eye\",\"EyeClosed\",\"EyeSlash\",\"Eyedropper\",\"EyedropperSample\",\"Eyeglasses\",\"Eyes\",\"FaceMask\",\"FacebookLogo\",\"Factory\",\"Faders\",\"FadersHorizontal\",\"FalloutShelter\",\"Fan\",\"Farm\",\"FastForward\",\"FastForwardCircle\",\"Feather\",\"FediverseLogo\",\"FigmaLogo\",\"File\",\"FileArchive\",\"FileArrowDown\",\"FileArrowUp\",\"FileAudio\",\"FileC\",\"FileCloud\",\"FileCode\",\"FileCpp\",\"FileCss\",\"FileCsv\",\"FileDashed\",\"FileDoc\",\"FileHtml\",\"FileImage\",\"FileIni\",\"FileJpg\",\"FileJs\",\"FileJsx\",\"FileLock\",\"FileMagnifyingGlass\",\"FileMd\",\"FileMinus\",\"FilePdf\",\"FilePlus\",\"FilePng\",\"FilePpt\",\"FilePy\",\"FileRs\",\"FileSql\",\"FileSvg\",\"FileText\",\"FileTs\",\"FileTsx\",\"FileTxt\",\"FileVideo\",\"FileVue\",\"FileX\",\"FileXls\",\"FileZip\",\"Files\",\"FilmReel\",\"FilmScript\",\"FilmSlate\",\"FilmStrip\",\"Fingerprint\",\"FingerprintSimple\",\"FinnTheHuman\",\"Fire\",\"FireExtinguisher\",\"FireSimple\",\"FireTruck\",\"FirstAid\",\"FirstAidKit\",\"Fish\",\"FishSimple\",\"Flag\",\"FlagBanner\",\"FlagBannerFold\",\"FlagCheckered\",\"FlagPennant\",\"Flame\",\"Flashlight\",\"Flask\",\"FlipHorizontal\",\"FlipVertical\",\"FloppyDisk\",\"FloppyDiskBack\",\"FlowArrow\",\"Flower\",\"FlowerLotus\",\"FlowerTulip\",\"FlyingSaucer\",\"Folder\",\"FolderDashed\",\"FolderLock\",\"FolderMinus\",\"FolderNotch\",\"FolderNotchMinus\",\"FolderNotchOpen\",\"FolderNotchPlus\",\"FolderOpen\",\"FolderPlus\",\"FolderSimple\",\"FolderSimpleDashed\",\"FolderSimpleLock\",\"FolderSimpleMinus\",\"FolderSimplePlus\",\"FolderSimpleStar\",\"FolderSimpleUser\",\"FolderStar\",\"FolderUser\",\"Folders\",\"Football\",\"FootballHelmet\",\"Footprints\",\"ForkKnife\",\"FourK\",\"FrameCorners\",\"FramerLogo\",\"Function\",\"Funnel\",\"FunnelSimple\",\"FunnelSimpleX\",\"FunnelX\",\"GameController\",\"Garage\",\"GasCan\",\"GasPump\",\"Gauge\",\"Gavel\",\"Gear\",\"GearFine\",\"GearSix\",\"GenderFemale\",\"GenderIntersex\",\"GenderMale\",\"GenderNeuter\",\"GenderNonbinary\",\"GenderTransgender\",\"Ghost\",\"Gif\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitDiff\",\"GitFork\",\"GitMerge\",\"GitPullRequest\",\"GithubLogo\",\"GitlabLogo\",\"GitlabLogoSimple\",\"Globe\",\"GlobeHemisphereEast\",\"GlobeHemisphereWest\",\"GlobeSimple\",\"GlobeSimpleX\",\"GlobeStand\",\"GlobeX\",\"Goggles\",\"Golf\",\"GoodreadsLogo\",\"GoogleCardboardLogo\",\"GoogleChromeLogo\",\"GoogleDriveLogo\",\"GoogleLogo\",\"GooglePhotosLogo\",\"GooglePlayLogo\",\"GooglePodcastsLogo\",\"Gps\",\"GpsFix\",\"GpsSlash\",\"Gradient\",\"GraduationCap\",\"Grains\",\"GrainsSlash\",\"Graph\",\"GraphicsCard\",\"GreaterThan\",\"GreaterThanOrEqual\",\"GridFour\",\"GridNine\",\"Guitar\",\"HairDryer\",\"Hamburger\",\"Hammer\",\"Hand\",\"HandArrowDown\",\"HandArrowUp\",\"HandCoins\",\"HandDeposit\",\"HandEye\",\"HandFist\",\"HandGrabbing\",\"HandHeart\",\"HandPalm\",\"HandPeace\",\"HandPointing\",\"HandSoap\",\"HandSwipeLeft\",\"HandSwipeRight\",\"HandTap\",\"HandWaving\",\"HandWithdraw\",\"Handbag\",\"HandbagSimple\",\"HandsClapping\",\"HandsPraying\",\"Handshake\",\"HardDrive\",\"HardDrives\",\"HardHat\",\"Hash\",\"HashStraight\",\"HeadCircuit\",\"Headlights\",\"Headphones\",\"Headset\",\"Heart\",\"HeartBreak\",\"HeartHalf\",\"HeartStraight\",\"HeartStraightBreak\",\"Heartbeat\",\"Hexagon\",\"HighDefinition\",\"HighHeel\",\"Highlighter\",\"HighlighterCircle\",\"Hockey\",\"Hoodie\",\"Horse\",\"Hospital\",\"Hourglass\",\"HourglassHigh\",\"HourglassLow\",\"HourglassMedium\",\"HourglassSimple\",\"HourglassSimpleHigh\",\"HourglassSimpleLow\",\"House\",\"HouseLine\",\"HouseSimple\",\"Hurricane\",\"IceCream\",\"IdentificationBadge\",\"IdentificationCard\",\"Image\",\"ImageBroken\",\"ImageSquare\",\"Images\",\"ImagesSquare\",\"Infinity\",\"Info\",\"InstagramLogo\",\"Intersect\",\"IntersectSquare\",\"IntersectThree\",\"Intersection\",\"Invoice\",\"Island\",\"Jar\",\"JarLabel\",\"Jeep\",\"Joystick\",\"Kanban\",\"Key\",\"KeyReturn\",\"Keyboard\",\"Keyhole\",\"Knife\",\"Ladder\",\"LadderSimple\",\"Lamp\",\"LampPendant\",\"Laptop\",\"Lasso\",\"LastfmLogo\",\"Layout\",\"Leaf\",\"Lectern\",\"Lego\",\"LegoSmiley\",\"LessThan\",\"LessThanOrEqual\",\"LetterCircleH\",\"LetterCircleP\",\"LetterCircleV\",\"Lifebuoy\",\"Lightbulb\",\"LightbulbFilament\",\"Lighthouse\",\"Lightning\",\"LightningA\",\"LightningSlash\",\"LineSegment\",\"LineSegments\",\"LineVertical\",\"Link\",\"LinkBreak\",\"LinkSimple\",\"LinkSimpleBreak\",\"LinkSimpleHorizontal\",\"LinkedinLogo\",\"LinktreeLogo\",\"LinuxLogo\",\"List\",\"ListBullets\",\"ListChecks\",\"ListDashes\",\"ListHeart\",\"ListMagnifyingGlass\",\"ListNumbers\",\"ListPlus\",\"ListStar\",\"Lock\",\"LockKey\",\"LockKeyOpen\",\"LockLaminated\",\"LockLaminatedOpen\",\"LockOpen\",\"LockSimple\",\"LockSimpleOpen\",\"Lockers\",\"Log\",\"MagicWand\",\"Magnet\",\"MagnetStraight\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"Mailbox\",\"MapPin\",\"MapPinArea\",\"MapPinLine\",\"MapPinPlus\",\"MapPinSimple\",\"MapPinSimpleArea\",\"MapPinSimpleLine\",\"MapTrifold\",\"MarkdownLogo\",\"MarkerCircle\",\"Martini\",\"MaskHappy\",\"MaskSad\",\"MastodonLogo\",\"MathOperations\",\"MatrixLogo\",\"Medal\",\"MedalMilitary\",\"MediumLogo\",\"Megaphone\",\"MegaphoneSimple\",\"MemberOf\",\"Memory\",\"MessengerLogo\",\"MetaLogo\",\"Meteor\",\"Metronome\",\"Microphone\",\"MicrophoneSlash\",\"MicrophoneStage\",\"Microscope\",\"MicrosoftExcelLogo\",\"MicrosoftOutlookLogo\",\"MicrosoftTeamsLogo\",\"MicrosoftWordLogo\",\"Minus\",\"MinusCircle\",\"MinusSquare\",\"Money\",\"MoneyWavy\",\"Monitor\",\"MonitorArrowUp\",\"MonitorPlay\",\"Moon\",\"MoonStars\",\"Moped\",\"MopedFront\",\"Mosque\",\"Motorcycle\",\"Mountains\",\"Mouse\",\"MouseLeftClick\",\"MouseMiddleClick\",\"MouseRightClick\",\"MouseScroll\",\"MouseSimple\",\"MusicNote\",\"MusicNoteSimple\",\"MusicNotes\",\"MusicNotesMinus\",\"MusicNotesPlus\",\"MusicNotesSimple\",\"NavigationArrow\",\"Needle\",\"Network\",\"NetworkSlash\",\"NetworkX\",\"Newspaper\",\"NewspaperClipping\",\"NotEquals\",\"NotMemberOf\",\"NotSubsetOf\",\"NotSupersetOf\",\"Notches\",\"Note\",\"NoteBlank\",\"NotePencil\",\"Notebook\",\"Notepad\",\"Notification\",\"NotionLogo\",\"NuclearPlant\",\"NumberCircleEight\",\"NumberCircleFive\",\"NumberCircleFour\",\"NumberCircleNine\",\"NumberCircleOne\",\"NumberCircleSeven\",\"NumberCircleSix\",\"NumberCircleThree\",\"NumberCircleTwo\",\"NumberCircleZero\",\"NumberEight\",\"NumberFive\",\"NumberFour\",\"NumberNine\",\"NumberOne\",\"NumberSeven\",\"NumberSix\",\"NumberSquareEight\",\"NumberSquareFive\",\"NumberSquareFour\",\"NumberSquareNine\",\"NumberSquareOne\",\"NumberSquareSeven\",\"NumberSquareSix\",\"NumberSquareThree\",\"NumberSquareTwo\",\"NumberSquareZero\",\"NumberThree\",\"NumberTwo\",\"NumberZero\",\"Numpad\",\"Nut\",\"NyTimesLogo\",\"Octagon\",\"OfficeChair\",\"Onigiri\",\"OpenAiLogo\",\"Option\",\"Orange\",\"OrangeSlice\",\"Oven\",\"Package\",\"PaintBrush\",\"PaintBrushBroad\",\"PaintBrushHousehold\",\"PaintBucket\",\"PaintRoller\",\"Palette\",\"Panorama\",\"Pants\",\"PaperPlane\",\"PaperPlaneRight\",\"PaperPlaneTilt\",\"Paperclip\",\"PaperclipHorizontal\",\"Parachute\",\"Paragraph\",\"Parallelogram\",\"Park\",\"Password\",\"Path\",\"PatreonLogo\",\"Pause\",\"PauseCircle\",\"PawPrint\",\"PaypalLogo\",\"Peace\",\"Pen\",\"PenNib\",\"PenNibStraight\",\"Pencil\",\"PencilCircle\",\"PencilLine\",\"PencilRuler\",\"PencilSimple\",\"PencilSimpleLine\",\"PencilSimpleSlash\",\"PencilSlash\",\"Pentagon\",\"Pentagram\",\"Pepper\",\"Percent\",\"Person\",\"PersonArmsSpread\",\"PersonSimple\",\"PersonSimpleBike\",\"PersonSimpleCircle\",\"PersonSimpleHike\",\"PersonSimpleRun\",\"PersonSimpleSki\",\"PersonSimpleSwim\",\"PersonSimpleTaiChi\",\"PersonSimpleThrow\",\"PersonSimpleWalk\",\"Perspective\",\"Phone\",\"PhoneCall\",\"PhoneDisconnect\",\"PhoneIncoming\",\"PhoneList\",\"PhoneOutgoing\",\"PhonePause\",\"PhonePlus\",\"PhoneSlash\",\"PhoneTransfer\",\"PhoneX\",\"PhosphorLogo\",\"Pi\",\"PianoKeys\",\"PicnicTable\",\"PictureInPicture\",\"PiggyBank\",\"Pill\",\"PingPong\",\"PintGlass\",\"PinterestLogo\",\"Pinwheel\",\"Pipe\",\"PipeWrench\",\"PixLogo\",\"Pizza\",\"Placeholder\",\"Planet\",\"Plant\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Playlist\",\"Plug\",\"PlugCharging\",\"Plugs\",\"PlugsConnected\",\"Plus\",\"PlusCircle\",\"PlusMinus\",\"PlusSquare\",\"PokerChip\",\"PoliceCar\",\"Polygon\",\"Popcorn\",\"Popsicle\",\"PottedPlant\",\"Power\",\"Prescription\",\"Presentation\",\"PresentationChart\",\"Printer\",\"Prohibit\",\"ProhibitInset\",\"ProjectorScreen\",\"ProjectorScreenChart\",\"Pulse\",\"PushPin\",\"PushPinSimple\",\"PushPinSimpleSlash\",\"PushPinSlash\",\"PuzzlePiece\",\"QrCode\",\"Question\",\"QuestionMark\",\"Queue\",\"Quotes\",\"Rabbit\",\"Racquet\",\"Radical\",\"Radio\",\"RadioButton\",\"Radioactive\",\"Rainbow\",\"RainbowCloud\",\"Ranking\",\"ReadCvLogo\",\"Receipt\",\"ReceiptX\",\"Record\",\"Rectangle\",\"RectangleDashed\",\"Recycle\",\"RedditLogo\",\"Repeat\",\"RepeatOnce\",\"ReplitLogo\",\"Resize\",\"Rewind\",\"RewindCircle\",\"RoadHorizon\",\"Robot\",\"Rocket\",\"RocketLaunch\",\"Rows\",\"RowsPlusBottom\",\"RowsPlusTop\",\"Rss\",\"RssSimple\",\"Rug\",\"Ruler\",\"Sailboat\",\"Scales\",\"Scan\",\"ScanSmiley\",\"Scissors\",\"Scooter\",\"Screencast\",\"Screwdriver\",\"Scribble\",\"ScribbleLoop\",\"Scroll\",\"Seal\",\"SealCheck\",\"SealPercent\",\"SealQuestion\",\"SealWarning\",\"Seat\",\"Seatbelt\",\"SecurityCamera\",\"Selection\",\"SelectionAll\",\"SelectionBackground\",\"SelectionForeground\",\"SelectionInverse\",\"SelectionPlus\",\"SelectionSlash\",\"Shapes\",\"Share\",\"ShareFat\",\"ShareNetwork\",\"Shield\",\"ShieldCheck\",\"ShieldCheckered\",\"ShieldChevron\",\"ShieldPlus\",\"ShieldSlash\",\"ShieldStar\",\"ShieldWarning\",\"ShippingContainer\",\"ShirtFolded\",\"ShootingStar\",\"ShoppingBag\",\"ShoppingBagOpen\",\"ShoppingCart\",\"ShoppingCartSimple\",\"Shovel\",\"Shower\",\"Shrimp\",\"Shuffle\",\"ShuffleAngular\",\"ShuffleSimple\",\"Sidebar\",\"SidebarSimple\",\"Sigma\",\"SignIn\",\"SignOut\",\"Signature\",\"Signpost\",\"SimCard\",\"Siren\",\"SketchLogo\",\"SkipBack\",\"SkipBackCircle\",\"SkipForward\",\"SkipForwardCircle\",\"Skull\",\"SkypeLogo\",\"SlackLogo\",\"Sliders\",\"SlidersHorizontal\",\"Slideshow\",\"Smiley\",\"SmileyAngry\",\"SmileyBlank\",\"SmileyMeh\",\"SmileyMelting\",\"SmileyNervous\",\"SmileySad\",\"SmileySticker\",\"SmileyWink\",\"SmileyXEyes\",\"SnapchatLogo\",\"Sneaker\",\"SneakerMove\",\"Snowflake\",\"SoccerBall\",\"Sock\",\"SolarPanel\",\"SolarRoof\",\"SortAscending\",\"SortDescending\",\"SoundcloudLogo\",\"Spade\",\"Sparkle\",\"SpeakerHifi\",\"SpeakerHigh\",\"SpeakerLow\",\"SpeakerNone\",\"SpeakerSimpleHigh\",\"SpeakerSimpleLow\",\"SpeakerSimpleNone\",\"SpeakerSimpleSlash\",\"SpeakerSimpleX\",\"SpeakerSlash\",\"SpeakerX\",\"Speedometer\",\"Sphere\",\"Spinner\",\"SpinnerBall\",\"SpinnerGap\",\"Spiral\",\"SplitHorizontal\",\"SplitVertical\",\"SpotifyLogo\",\"SprayBottle\",\"Square\",\"SquareHalf\",\"SquareHalfBottom\",\"SquareLogo\",\"SquareSplitVertical\",\"SquaresFour\",\"Stack\",\"StackMinus\",\"StackOverflowLogo\",\"StackPlus\",\"StackSimple\",\"Stairs\",\"Stamp\",\"StandardDefinition\",\"Star\",\"StarAndCrescent\",\"StarFour\",\"StarHalf\",\"StarOfDavid\",\"SteamLogo\",\"SteeringWheel\",\"Steps\",\"Stethoscope\",\"Sticker\",\"Stool\",\"Stop\",\"StopCircle\",\"Storefront\",\"Strategy\",\"StripeLogo\",\"Student\",\"SubsetOf\",\"SubsetProperOf\",\"Subtitles\",\"SubtitlesSlash\",\"Subtract\",\"SubtractSquare\",\"Subway\",\"Suitcase\",\"SuitcaseRolling\",\"SuitcaseSimple\",\"Sun\",\"SunDim\",\"SunHorizon\",\"Sunglasses\",\"SupersetOf\",\"SupersetProperOf\",\"Swap\",\"Swatches\",\"SwimmingPool\",\"Sword\",\"Synagogue\",\"Syringe\",\"TShirt\",\"Table\",\"Tabs\",\"Tag\",\"TagChevron\",\"TagSimple\",\"Target\",\"Taxi\",\"TeaBag\",\"TelegramLogo\",\"Television\",\"TelevisionSimple\",\"TennisBall\",\"Tent\",\"Terminal\",\"TerminalWindow\",\"TestTube\",\"TextAUnderline\",\"TextAa\",\"TextAlignCenter\",\"TextAlignJustify\",\"TextAlignLeft\",\"TextAlignRight\",\"TextB\",\"TextColumns\",\"TextH\",\"TextHFive\",\"TextHFour\",\"TextHOne\",\"TextHSix\",\"TextHThree\",\"TextHTwo\",\"TextIndent\",\"TextItalic\",\"TextOutdent\",\"TextStrikethrough\",\"TextSubscript\",\"TextSuperscript\",\"TextT\",\"TextTSlash\",\"TextUnderline\",\"Textbox\",\"Thermometer\",\"ThermometerCold\",\"ThermometerHot\",\"ThermometerSimple\",\"ThreadsLogo\",\"ThreeD\",\"ThumbsDown\",\"ThumbsUp\",\"Ticket\",\"TidalLogo\",\"TiktokLogo\",\"Tilde\",\"Timer\",\"TipJar\",\"Tipi\",\"Tire\",\"ToggleLeft\",\"ToggleRight\",\"Toilet\",\"ToiletPaper\",\"Toolbox\",\"Tooth\",\"Tornado\",\"Tote\",\"ToteSimple\",\"Towel\",\"Tractor\",\"Trademark\",\"TrademarkRegistered\",\"TrafficCone\",\"TrafficSign\",\"TrafficSignal\",\"Train\",\"TrainRegional\",\"TrainSimple\",\"Tram\",\"Translate\",\"Trash\",\"TrashSimple\",\"Tray\",\"TrayArrowDown\",\"TrayArrowUp\",\"TreasureChest\",\"Tree\",\"TreeEvergreen\",\"TreePalm\",\"TreeStructure\",\"TreeView\",\"TrendDown\",\"TrendUp\",\"Triangle\",\"TriangleDashed\",\"Trolley\",\"TrolleySuitcase\",\"Trophy\",\"Truck\",\"TruckTrailer\",\"TumblrLogo\",\"TwitchLogo\",\"TwitterLogo\",\"Umbrella\",\"UmbrellaSimple\",\"Union\",\"Unite\",\"UniteSquare\",\"Upload\",\"UploadSimple\",\"Usb\",\"User\",\"UserCheck\",\"UserCircle\",\"UserCircleCheck\",\"UserCircleDashed\",\"UserCircleGear\",\"UserCircleMinus\",\"UserCirclePlus\",\"UserFocus\",\"UserGear\",\"UserList\",\"UserMinus\",\"UserPlus\",\"UserRectangle\",\"UserSound\",\"UserSquare\",\"UserSwitch\",\"Users\",\"UsersFour\",\"UsersThree\",\"Van\",\"Vault\",\"VectorThree\",\"VectorTwo\",\"Vibrate\",\"Video\",\"VideoCamera\",\"VideoCameraSlash\",\"VideoConference\",\"Vignette\",\"VinylRecord\",\"VirtualReality\",\"Virus\",\"Visor\",\"Voicemail\",\"Volleyball\",\"Wall\",\"Wallet\",\"Warehouse\",\"Warning\",\"WarningCircle\",\"WarningDiamond\",\"WarningOctagon\",\"WashingMachine\",\"Watch\",\"WaveSawtooth\",\"WaveSine\",\"WaveSquare\",\"WaveTriangle\",\"Waveform\",\"WaveformSlash\",\"Waves\",\"Webcam\",\"WebcamSlash\",\"WebhooksLogo\",\"WechatLogo\",\"WhatsappLogo\",\"Wheelchair\",\"WheelchairMotion\",\"WifiHigh\",\"WifiLow\",\"WifiMedium\",\"WifiNone\",\"WifiSlash\",\"WifiX\",\"Wind\",\"Windmill\",\"WindowsLogo\",\"Wine\",\"Wrench\",\"X\",\"XCircle\",\"XLogo\",\"XSquare\",\"Yarn\",\"YinYang\",\"YoutubeLogo\"];const moduleBaseUrl=\"https://framer.com/m/phosphor-icons/\";const weightOptions=[\"thin\",\"light\",\"regular\",\"bold\",\"fill\",\"duotone\"];const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * PHOSPHOR\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n */export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,weight,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HouseFactory(React):null);async function importModule(){// Get the selected module\ntry{const version=\"0.0.57\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@${version}`;const module=await import(/* webpackIgnore: true */iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch(err){if(isMounted.current)setSelectedIcon(null);}}useEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/_jsx(NullState,{}):null;return /*#__PURE__*/_jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined},focusable:\"false\",color:color,children:/*#__PURE__*/_jsx(SelectedIcon,{color:color,weight:weight})}):emptyState});}Icon.displayName=\"Phosphor\";Icon.defaultProps={width:24,height:24,iconSelection:\"House\",iconSearch:\"House\",color:\"#66F\",selectByList:true,weight:\"regular\",mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Phosphor site](https://phosphoricons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},weight:{type:ControlType.Enum,title:\"Weight\",optionTitles:weightOptions.map(piece=>piece.charAt(0).toUpperCase()+piece.slice(1)),options:weightOptions,defaultValue:Icon.defaultProps.weight},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"24\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Phosphor.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/jMdpZHer2aXYKAltt0De/ZDusouqQeIGS6vla3W75/RqWlnUxLg.js\";const PhosphorFonts=getFonts(Phosphor);const MotionDivWithFX=withFX(motion.div);const serializationHash=\"framer-xwVWL\";const variantClassNames={kBppmIx7N:\"framer-v-11nlim2\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:18};const transition1={damping:52,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition2={bounce:.2,delay:0,duration:.4,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.create(React.Fragment);const getProps=({height,id,text,width,...props})=>{var _ref;return{...props,RqNVO8g2F:(_ref=text!==null&&text!==void 0?text:props.RqNVO8g2F)!==null&&_ref!==void 0?_ref:\"Experienced Team\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,RqNVO8g2F,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"kBppmIx7N\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];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:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(serializationHash,...sharedStyleClassNames,\"framer-11nlim2\",className,classNames),\"data-framer-name\":\"Solution-point\",layoutDependency:layoutDependency,layoutId:\"kBppmIx7N\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-c17jo\",\"data-framer-name\":\"Checkmark\",layoutDependency:layoutDependency,layoutId:\"LHDQdXqQQ\",style:{backgroundColor:\"var(--token-55cd17e0-a25e-40bd-8148-346590ffdf2f, rgb(250, 250, 250))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xl4v1t-container\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"IJLY7JqLP-container\",name:\"Icon\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-37c73a71-ed98-4730-86d9-6e0a52d466b3, rgb(46, 105, 255))\",height:\"100%\",iconSearch:\"Check\",iconSelection:\"House\",id:\"IJLY7JqLP\",layoutId:\"IJLY7JqLP\",mirrored:false,name:\"Icon\",selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ux6xyv\",\"data-styles-preset\":\"RqWlnUxLg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-38f68815-7867-4cb4-b7c3-02378b3e2eac, rgb(13, 13, 13)))\"},children:\"Experienced Team\"})}),className:\"framer-1rkb3a1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CXRo9zM8Z\",style:{\"--extracted-r6o4lv\":\"var(--token-38f68815-7867-4cb4-b7c3-02378b3e2eac, rgb(13, 13, 13))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:RqNVO8g2F,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xwVWL.framer-1y0w9cl, .framer-xwVWL .framer-1y0w9cl { display: block; }\",\".framer-xwVWL.framer-11nlim2 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 514px; }\",\".framer-xwVWL .framer-c17jo { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 22px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 22px; will-change: var(--framer-will-change-override, transform); }\",\".framer-xwVWL .framer-1xl4v1t-container { flex: none; height: 12px; position: relative; width: 12px; }\",\".framer-xwVWL .framer-1rkb3a1 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xwVWL.framer-11nlim2, .framer-xwVWL .framer-c17jo { gap: 0px; } .framer-xwVWL.framer-11nlim2 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-xwVWL.framer-11nlim2 > :first-child, .framer-xwVWL .framer-c17jo > :first-child { margin-left: 0px; } .framer-xwVWL.framer-11nlim2 > :last-child, .framer-xwVWL .framer-c17jo > :last-child { margin-right: 0px; } .framer-xwVWL .framer-c17jo > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 27\n * @framerIntrinsicWidth 514\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"RqNVO8g2F\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Frameruf3AtTgKm=withCSS(Component,css,\"framer-xwVWL\");export default Frameruf3AtTgKm;Frameruf3AtTgKm.displayName=\"Solution point\";Frameruf3AtTgKm.defaultProps={height:27,width:514};addPropertyControls(Frameruf3AtTgKm,{RqNVO8g2F:{defaultValue:\"Experienced Team\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(Frameruf3AtTgKm,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameruf3AtTgKm\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"27\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"RqNVO8g2F\\\":\\\"text\\\"}\",\"framerIntrinsicWidth\":\"514\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./uf3AtTgKm.map", "// Generated by Framer (9f68555)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-medium\",\"FS;Satoshi-bold\",\"FS;Satoshi-bold italic\",\"FS;Satoshi-medium italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CDEBEFT2R7XKNGXSBBLZGMY4MMHZG75P/HEVKDGQCYDZ7Z6CDVR2ZQGBCTUD6ZARH/BKWEE3VKGTFABE37K2DTH625VUSN2N35.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NID3I7RITWZSKXRCJGOCMP5NOADJK6IG/2HLHGD7OBTWCOHW64YXOE5KFXHU4KJHM/ZHME2QIRFR7UPJ47NLY27RCAFY44CKZJ.woff2\",weight:\"500\"}]}];export const css=['.framer-CsBBH .framer-styles-preset-uw75zv:not(.rich-text-wrapper), .framer-CsBBH .framer-styles-preset-uw75zv.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.03em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-38f68815-7867-4cb4-b7c3-02378b3e2eac, #0d0d0d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1099px) and (min-width: 810px) { .framer-CsBBH .framer-styles-preset-uw75zv:not(.rich-text-wrapper), .framer-CsBBH .framer-styles-preset-uw75zv.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 23px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-38f68815-7867-4cb4-b7c3-02378b3e2eac, #0d0d0d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-CsBBH .framer-styles-preset-uw75zv:not(.rich-text-wrapper), .framer-CsBBH .framer-styles-preset-uw75zv.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-38f68815-7867-4cb4-b7c3-02378b3e2eac, #0d0d0d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-CsBBH\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7e4cc89)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}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/8A4nY3AAVmhgh4UPsEmg/D4YL4vlXGNiykOorpMHt/iBy79QlOk.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/fZBcuCMXuzcE60mLBA8a/Q5qRA7Sdxth5Hxr45i1x/RqWlnUxLg.js\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"JKmiAhSDA\",\"w_LyW0cS4\"];const serializationHash=\"framer-P1y8R\";const variantClassNames={JKmiAhSDA:\"framer-v-h25tmc\",w_LyW0cS4:\"framer-v-abyfev\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,x:0,y:14};const transition1={damping:58,delay:.1,mass:1,stiffness:425,type:\"spring\"};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Max Width\":\"JKmiAhSDA\",\"No Max Width\":\"w_LyW0cS4\"};const getProps=({heading,height,icon,id,text,width,...props})=>{return{...props,mlNh9aWrf:icon??props.mlNh9aWrf??{src:\"https://framerusercontent.com/images/3vbxHmPnhcGCGq4okmlPGWrIs8.svg\"},nnswguy0W:heading??props.nnswguy0W??\"Expert Guidance\",variant:humanReadableVariantMap[props.variant]??props.variant??\"JKmiAhSDA\",XD7Kre3t6:text??props.XD7Kre3t6??\"Receive professional insights to make informed estate.\"};};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,mlNh9aWrf,nnswguy0W,XD7Kre3t6,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"JKmiAhSDA\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-h25tmc\",className,classNames),\"data-framer-name\":\"Max Width\",layoutDependency:layoutDependency,layoutId:\"JKmiAhSDA\",ref:refBinding,style:{...style},...addPropertyOverrides({w_LyW0cS4:{\"data-framer-name\":\"No Max Width\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jdzcvw\",\"data-framer-name\":\"Icon-wrapper\",layoutDependency:layoutDependency,layoutId:\"ufEIQZmtW\",style:{backgroundColor:\"var(--token-37c73a71-ed98-4730-86d9-6e0a52d466b3, rgb(46, 105, 255))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+5),pixelHeight:800,pixelWidth:800,sizes:\"44px\",...toResponsiveImage(mlNh9aWrf),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-16qa6pc\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"oySAw5hF4\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18k3zhy\",\"data-framer-name\":\"Text-wrapper\",layoutDependency:layoutDependency,layoutId:\"FpBh7ghmz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-uw75zv\",\"data-styles-preset\":\"iBy79QlOk\",children:\"Expert Guidance\"})}),className:\"framer-1kzasy6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pegO_4L6i\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:nnswguy0W,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ux6xyv\",\"data-styles-preset\":\"RqWlnUxLg\",children:\"Receive professional insights to make informed estate.\"})}),className:\"framer-mnjeeu\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Oq57FxcG0\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:XD7Kre3t6,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-P1y8R.framer-xgndnq, .framer-P1y8R .framer-xgndnq { display: block; }\",\".framer-P1y8R.framer-h25tmc { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 18px 0px; position: relative; width: 349px; }\",\".framer-P1y8R .framer-1jdzcvw { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 54px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 54px; }\",\".framer-P1y8R .framer-16qa6pc { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); overflow: hidden; position: relative; width: 44px; }\",\".framer-P1y8R .framer-18k3zhy { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-P1y8R .framer-1kzasy6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-P1y8R .framer-mnjeeu { flex: none; height: auto; max-width: 260px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-P1y8R.framer-h25tmc, .framer-P1y8R .framer-1jdzcvw, .framer-P1y8R .framer-18k3zhy { gap: 0px; } .framer-P1y8R.framer-h25tmc > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-P1y8R.framer-h25tmc > :first-child, .framer-P1y8R .framer-18k3zhy > :first-child { margin-top: 0px; } .framer-P1y8R.framer-h25tmc > :last-child, .framer-P1y8R .framer-18k3zhy > :last-child { margin-bottom: 0px; } .framer-P1y8R .framer-1jdzcvw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-P1y8R .framer-1jdzcvw > :first-child { margin-left: 0px; } .framer-P1y8R .framer-1jdzcvw > :last-child { margin-right: 0px; } .framer-P1y8R .framer-18k3zhy > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-P1y8R.framer-v-abyfev .framer-mnjeeu { max-width: 95%; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 194\n * @framerIntrinsicWidth 349\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"w_LyW0cS4\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"mlNh9aWrf\":\"icon\",\"nnswguy0W\":\"heading\",\"XD7Kre3t6\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWcMloee7m=withCSS(Component,css,\"framer-P1y8R\");export default FramerWcMloee7m;FramerWcMloee7m.displayName=\"Feature Item\";FramerWcMloee7m.defaultProps={height:194,width:349};addPropertyControls(FramerWcMloee7m,{variant:{options:[\"JKmiAhSDA\",\"w_LyW0cS4\"],optionTitles:[\"Max Width\",\"No Max Width\"],title:\"Variant\",type:ControlType.Enum},mlNh9aWrf:{__defaultAssetReference:\"data:framer/asset-reference,3vbxHmPnhcGCGq4okmlPGWrIs8.svg?originalFilename=documents-svgrepo-com+%281%29.svg&preferredSize=auto\",title:\"Icon\",type:ControlType.ResponsiveImage},nnswguy0W:{defaultValue:\"Expert Guidance\",displayTextArea:false,title:\"Heading\",type:ControlType.String},XD7Kre3t6:{defaultValue:\"Receive professional insights to make informed estate.\",displayTextArea:true,title:\"Text\",type:ControlType.String}});addFonts(FramerWcMloee7m,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWcMloee7m\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"349\",\"framerVariables\":\"{\\\"mlNh9aWrf\\\":\\\"icon\\\",\\\"nnswguy0W\\\":\\\"heading\\\",\\\"XD7Kre3t6\\\":\\\"text\\\"}\",\"framerIntrinsicHeight\":\"194\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w_LyW0cS4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WcMloee7m.map", "// Generated by Framer (c76752e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Instrument Serif-italic\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Instrument Serif\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/instrumentserif/v4/jizHRFtNs2ka5fXjeivQ4LroWlx-6zATjnTNgNq55w.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-lwTJO .framer-styles-preset-2wzvrs:not(.rich-text-wrapper), .framer-lwTJO .framer-styles-preset-2wzvrs.rich-text-wrapper h1 { --framer-font-family: \"Instrument Serif\", \"Instrument Serif Placeholder\", serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 39px; --framer-font-style: italic; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.035em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-38f68815-7867-4cb4-b7c3-02378b3e2eac, #0d0d0d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-lwTJO\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (cf4c6d7)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,Fetcher,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SmoothScroll from\"https://framerusercontent.com/modules/11ESVHhCyl2YUkxbseoQ/1nHvxJd1hqosXG9cD1wF/Smooth_Scroll.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import HowItWorks from\"#framer/local/canvasComponent/AcFpzs0Vr/AcFpzs0Vr.js\";import SectionNavbar from\"#framer/local/canvasComponent/Bc98Nahig/Bc98Nahig.js\";import BlogItem from\"#framer/local/canvasComponent/eirgJHc1B/eirgJHc1B.js\";import Services from\"#framer/local/canvasComponent/EYXDjUBPP/EYXDjUBPP.js\";import Button from\"#framer/local/canvasComponent/hL5g3kPjk/hL5g3kPjk.js\";import ResultItem from\"#framer/local/canvasComponent/I9K5d3ERb/I9K5d3ERb.js\";import UtilityRating from\"#framer/local/canvasComponent/IjOYJsMtg/IjOYJsMtg.js\";import FAQItems from\"#framer/local/canvasComponent/KHC9ipO_P/KHC9ipO_P.js\";import Footer from\"#framer/local/canvasComponent/nosHEQmJO/nosHEQmJO.js\";import SectionTag from\"#framer/local/canvasComponent/R8wjzs80R/R8wjzs80R.js\";import SolutionPoint from\"#framer/local/canvasComponent/uf3AtTgKm/uf3AtTgKm.js\";import CTA from\"#framer/local/canvasComponent/UMfPYrU4I/UMfPYrU4I.js\";import FeatureItem from\"#framer/local/canvasComponent/WcMloee7m/WcMloee7m.js\";import TestimonialSection from\"#framer/local/canvasComponent/ylmpI39V7/ylmpI39V7.js\";import Blogs,{enumToDisplayNameFunctions}from\"#framer/local/collection/hKe5G3eIl/hKe5G3eIl.js\";import Services1 from\"#framer/local/collection/YxBB_e8oE/YxBB_e8oE.js\";import*as sharedStyle2 from\"#framer/local/css/bFjUd_CeF/bFjUd_CeF.js\";import*as sharedStyle from\"#framer/local/css/IBuebZNpT/IBuebZNpT.js\";import*as sharedStyle1 from\"#framer/local/css/NbQT6L1iT/NbQT6L1iT.js\";import*as sharedStyle3 from\"#framer/local/css/njSozvrnr/njSozvrnr.js\";import*as sharedStyle5 from\"#framer/local/css/RqWlnUxLg/RqWlnUxLg.js\";import*as sharedStyle4 from\"#framer/local/css/u1TMq5IXn/u1TMq5IXn.js\";import metadataProvider from\"#framer/local/webPageMetadata/hEYx8viWv/hEYx8viWv.js\";const SectionNavbarFonts=getFonts(SectionNavbar);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonFonts=getFonts(Button);const UtilityRatingFonts=getFonts(UtilityRating);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const SectionTagFonts=getFonts(SectionTag);const FeatureItemFonts=getFonts(FeatureItem);const ImageWithFX=withFX(Image);const ResultItemFonts=getFonts(ResultItem);const SolutionPointFonts=getFonts(SolutionPoint);const VideoFonts=getFonts(Video);const MotionDivWithFX=withFX(motion.div);const ServicesFonts=getFonts(Services);const HowItWorksFonts=getFonts(HowItWorks);const TestimonialSectionFonts=getFonts(TestimonialSection);const BlogItemFonts=getFonts(BlogItem);const FAQItemsFonts=getFonts(FAQItems);const CTAFonts=getFonts(CTA);const FooterFonts=getFonts(Footer);const SmoothScrollFonts=getFonts(SmoothScroll);const breakpoints={sVFhlZAih:\"(min-width: 1200px)\",t6B1ZNwj8:\"(min-width: 810px) and (max-width: 1199px)\",UuTd3h3UJ:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-EbHUV\";const variantClassNames={sVFhlZAih:\"framer-v-hk3yfs\",t6B1ZNwj8:\"framer-v-41tlyy\",UuTd3h3UJ:\"framer-v-cb99lr\"};const transition1={damping:58,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:18};const transition2={damping:58,delay:.4,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition3={damping:58,delay:.5,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:28};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.85,skewX:0,skewY:0,x:0,y:30};const transition4={damping:54,delay:0,mass:1,stiffness:400,type:\"spring\"};const toString=value=>{return typeof value===\"string\"?value:String(value);};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition5={damping:56,delay:.1,mass:1,stiffness:400,type:\"spring\"};const transition6={damping:52,delay:0,mass:1,stiffness:400,type:\"spring\"};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"sVFhlZAih\",Phone:\"UuTd3h3UJ\",Tablet:\"t6B1ZNwj8\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"sVFhlZAih\"};};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,IVIfD_60mbStTs5yIT,CuaFOEkb8bStTs5yIT,isujqcr0bbStTs5yIT,SMe3EBS_ObStTs5yIT,idbStTs5yIT,LQvrFkotlN1YNWAxqE,g4YUUm96oN1YNWAxqE,g6rBkdHL1N1YNWAxqE,tNkTRure6N1YNWAxqE,WYguv7jwYN1YNWAxqE,idN1YNWAxqE,...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 sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const activeLocaleCode=useLocaleCode();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"sVFhlZAih\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-c9b12220-87c9-4c8c-a21d-cbf1e21628af, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-hk3yfs\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:124,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1585k3b-container\",\"data-framer-name\":\"Navbar\",name:\"Navbar\",nodeId:\"CoHy9UfDI\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UuTd3h3UJ:{variant:\"W5m_ouubW\"}},children:/*#__PURE__*/_jsx(SectionNavbar,{height:\"100%\",id:\"CoHy9UfDI\",layoutId:\"CoHy9UfDI\",name:\"Navbar\",style:{width:\"100%\"},variant:\"btByAav3y\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4d1wt2\",\"data-framer-name\":\"Hero-section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2nahyi\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14z3i77\",\"data-framer-name\":\"Main-wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4fg36\",\"data-framer-name\":\"Text-content-Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oey1vc\",\"data-framer-name\":\"Text-Wrapper\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-132nqf1\",\"data-framer-appear-id\":\"132nqf1\",\"data-framer-name\":\"Heading-wrapper\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1usrp2a\",\"data-styles-preset\":\"IBuebZNpT\",style:{\"--framer-text-alignment\":\"center\"},children:\"Lead\"})}),className:\"framer-1cr8m3j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1usrp2a\",\"data-styles-preset\":\"IBuebZNpT\",style:{\"--framer-text-alignment\":\"center\"},children:\"Better. \"})}),className:\"framer-9ahu6w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1usrp2a\",\"data-styles-preset\":\"IBuebZNpT\",style:{\"--framer-text-alignment\":\"center\"},children:\"Scale\"})}),className:\"framer-zb8u71\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1usrp2a\",\"data-styles-preset\":\"IBuebZNpT\",style:{\"--framer-text-alignment\":\"center\"},children:\"Faster\"})}),className:\"framer-zh48yb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1usrp2a\",\"data-styles-preset\":\"IBuebZNpT\",style:{\"--framer-text-alignment\":\"center\"},children:\"&\"})}),className:\"framer-yklocc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UuTd3h3UJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-2wzvrs\",\"data-styles-preset\":\"bFjUd_CeF\",style:{\"--framer-text-alignment\":\"center\"},children:\"Build a Business That Lasts\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1xvyc0l\",\"data-styles-preset\":\"NbQT6L1iT\",style:{\"--framer-text-alignment\":\"center\"},children:\"Build a Business That Lasts\"})}),className:\"framer-19cjn1m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14mden8\",\"data-styles-preset\":\"njSozvrnr\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e4bee715-1a76-4d52-94a9-54840079c030, rgb(82, 82, 82))\"},children:\"Running a business shouldn\u2019t mean running yourself into the ground. Get the strategies, systems, and leadership tools to grow, scale, and lead with confidence\"})}),className:\"framer-456sa0\",\"data-framer-appear-id\":\"456sa0\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1acfzhu\",\"data-framer-appear-id\":\"1acfzhu\",\"data-framer-name\":\"Buttons-wrapper\",initial:animation3,optimized:true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s4s09b-container\",\"data-framer-name\":\"Button\",name:\"Button\",nodeId:\"IKgafMx9A\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"IKgafMx9A\",layoutId:\"IKgafMx9A\",name:\"Button\",Pb6WiuirB:\"20 Questions to Unlock Profit, Performance & Growth\",TnagmA8vA:\"https://gnainc.typeform.com/to/ge2LKkBO\",variant:\"PGvMe3c3B\",VVLyc9YCi:false,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19ivy49-container\",\"data-framer-name\":\"Rating\",name:\"Rating\",nodeId:\"d8VtNNHQp\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(UtilityRating,{height:\"100%\",id:\"d8VtNNHQp\",layoutId:\"d8VtNNHQp\",name:\"Rating\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation4,background:{alt:\"\",fit:\"fill\",pixelHeight:900,pixelWidth:1920,src:\"https://framerusercontent.com/images/qwjI6dhfCz7Ach1PcPgOSGN0k.jpg\"},className:\"framer-zcjbnp\",\"data-framer-appear-id\":\"zcjbnp\",\"data-framer-name\":\"Image\",initial:animation5,optimized:true})]})}),/*#__PURE__*/_jsx(\"section\",{background:{alt:\"\",fit:\"fill\",positionX:\"right\",positionY:\"bottom\"},className:\"framer-1uhv8k2\",\"data-framer-name\":\"Features\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1krld8y\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l846ol\",\"data-framer-name\":\"Heading-Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9wwbp0-container\",\"data-framer-name\":\"Section-Tag\",name:\"Section-Tag\",nodeId:\"mb3b9hLzi\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(SectionTag,{height:\"100%\",id:\"mb3b9hLzi\",layoutId:\"mb3b9hLzi\",name:\"Section-Tag\",OaXHVEg_A:\"Features\",variant:\"iPSP_xFIy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-jaa7lk\",\"data-styles-preset\":\"u1TMq5IXn\",style:{\"--framer-text-alignment\":\"center\"},children:\"Proven expertise to help you grow, lead, and scale with confidence.\"})}),className:\"framer-15kgndo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mf87h2\",\"data-framer-name\":\"Main-wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s2r28e\",\"data-framer-name\":\"Grid-2x\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t6B1ZNwj8:{width:`max((max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 50px, 50px) - 36px) / 2, 50px)`},UuTd3h3UJ:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:194,width:`max((max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 50px) / 2, 50px) - 36px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yg5hxd-container\",\"data-framer-name\":\"Features\",name:\"Features\",nodeId:\"LmbOmUcKP\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t6B1ZNwj8:{variant:\"w_LyW0cS4\"},UuTd3h3UJ:{variant:\"w_LyW0cS4\"}},children:/*#__PURE__*/_jsx(FeatureItem,{height:\"100%\",id:\"LmbOmUcKP\",layoutId:\"LmbOmUcKP\",mlNh9aWrf:addImageAlt({src:\"https://framerusercontent.com/images/PmLVUDZMvyKnRUYGPpm65WBUqU.png\",srcSet:\"https://framerusercontent.com/images/PmLVUDZMvyKnRUYGPpm65WBUqU.png?scale-down-to=512 512w,https://framerusercontent.com/images/PmLVUDZMvyKnRUYGPpm65WBUqU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PmLVUDZMvyKnRUYGPpm65WBUqU.png 1200w\"},\"\"),name:\"Features\",nnswguy0W:\"Strategic Growth Plans\",style:{width:\"100%\"},variant:\"JKmiAhSDA\",width:\"100%\",XD7Kre3t6:\"Customized roadmaps designed to help you scale smarter, not harder.\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t6B1ZNwj8:{width:`max((max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 50px, 50px) - 36px) / 2, 50px)`},UuTd3h3UJ:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:194,width:`max((max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 50px) / 2, 50px) - 36px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ieh084-container\",\"data-framer-name\":\"Features\",name:\"Features\",nodeId:\"OyekVF_Pa\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t6B1ZNwj8:{variant:\"w_LyW0cS4\"},UuTd3h3UJ:{variant:\"w_LyW0cS4\"}},children:/*#__PURE__*/_jsx(FeatureItem,{height:\"100%\",id:\"OyekVF_Pa\",layoutId:\"OyekVF_Pa\",mlNh9aWrf:addImageAlt({src:\"https://framerusercontent.com/images/MAReDbZ2YbP3RqgQe0Yvf6Baos.png\",srcSet:\"https://framerusercontent.com/images/MAReDbZ2YbP3RqgQe0Yvf6Baos.png?scale-down-to=512 512w,https://framerusercontent.com/images/MAReDbZ2YbP3RqgQe0Yvf6Baos.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MAReDbZ2YbP3RqgQe0Yvf6Baos.png 1200w\"},\"\"),name:\"Features\",nnswguy0W:\"Data-Backed Business Insights\",style:{width:\"100%\"},variant:\"JKmiAhSDA\",width:\"100%\",XD7Kre3t6:\"Clear financial and operational analysis to make confident decisions.\\n\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t6B1ZNwj8:{width:`max((max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 50px, 50px) - 36px) / 2, 50px)`},UuTd3h3UJ:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:194,width:`max((max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 50px) / 2, 50px) - 36px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6mded1-container\",\"data-framer-name\":\"Features\",name:\"Features\",nodeId:\"sCk99PAAU\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t6B1ZNwj8:{variant:\"w_LyW0cS4\"},UuTd3h3UJ:{variant:\"w_LyW0cS4\"}},children:/*#__PURE__*/_jsx(FeatureItem,{height:\"100%\",id:\"sCk99PAAU\",layoutId:\"sCk99PAAU\",mlNh9aWrf:addImageAlt({src:\"https://framerusercontent.com/images/lHm74Qb9BHXGpVwsBA3Pb0uVEg.png\",srcSet:\"https://framerusercontent.com/images/lHm74Qb9BHXGpVwsBA3Pb0uVEg.png?scale-down-to=512 512w,https://framerusercontent.com/images/lHm74Qb9BHXGpVwsBA3Pb0uVEg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lHm74Qb9BHXGpVwsBA3Pb0uVEg.png 1200w\"},\"\"),name:\"Features\",nnswguy0W:\"Hands-On Leadership Coaching\",style:{width:\"100%\"},variant:\"JKmiAhSDA\",width:\"100%\",XD7Kre3t6:\"One-on-one guidance to help you step back and empower your team.\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t6B1ZNwj8:{width:`max((max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 50px, 50px) - 36px) / 2, 50px)`},UuTd3h3UJ:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:194,width:`max((max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 50px) / 2, 50px) - 36px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wj8bnn-container\",\"data-framer-name\":\"Features\",name:\"Features\",nodeId:\"KQnYSkNKj\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t6B1ZNwj8:{variant:\"w_LyW0cS4\"},UuTd3h3UJ:{variant:\"w_LyW0cS4\"}},children:/*#__PURE__*/_jsx(FeatureItem,{height:\"100%\",id:\"KQnYSkNKj\",layoutId:\"KQnYSkNKj\",mlNh9aWrf:addImageAlt({src:\"https://framerusercontent.com/images/ngQ4x5FHJhBZ387Y4CDMlxvrs.png\",srcSet:\"https://framerusercontent.com/images/ngQ4x5FHJhBZ387Y4CDMlxvrs.png?scale-down-to=512 512w,https://framerusercontent.com/images/ngQ4x5FHJhBZ387Y4CDMlxvrs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ngQ4x5FHJhBZ387Y4CDMlxvrs.png 1200w\"},\"\"),name:\"Features\",nnswguy0W:\"Practical, No-Fluff Solutions\",style:{width:\"100%\"},variant:\"JKmiAhSDA\",width:\"100%\",XD7Kre3t6:\"Proven frameworks that drive real results\u2014no guesswork, no wasted effort.\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kizu6q\",\"data-framer-name\":\"Image-wrapper\",children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:1563,pixelWidth:1563,src:\"https://framerusercontent.com/images/VlZFYh7C2nWE7WCEInaLEZlKRHs.png\"},className:\"framer-cs4tfk\",\"data-framer-name\":\"Image\"})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1fgwlx1\",\"data-framer-name\":\"Stats\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xs7kb2\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12csdov\",\"data-framer-name\":\"Text-Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1azt30e\",\"data-framer-name\":\"Heading Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wf0lpv-container\",\"data-framer-name\":\"Section-Tag\",name:\"Section-Tag\",nodeId:\"CyK5kA_JN\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(SectionTag,{height:\"100%\",id:\"CyK5kA_JN\",layoutId:\"CyK5kA_JN\",name:\"Section-Tag\",OaXHVEg_A:\"Results\",variant:\"iPSP_xFIy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-jaa7lk\",\"data-styles-preset\":\"u1TMq5IXn\",children:\"Proven Strategies. Measurable Results. Lasting Success\"})}),className:\"framer-1a1k40g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13tq9p5\",\"data-framer-name\":\"Stats-wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t6B1ZNwj8:{width:`max((min(max(min(max(${componentViewport?.width||\"100vw\"} - 50px, 1px), 1100px), 50px) - 28px, (max(min(max(${componentViewport?.width||\"100vw\"} - 50px, 1px), 1100px), 50px) - 28px) * 0.85) - 40px) / 2, 50px)`},UuTd3h3UJ:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 40px, 1100px), 50px) - 40px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:110,width:`max((min(min(max((min(max(${componentViewport?.width||\"100vw\"} - 50px, 1px), 1100px) - 38px) / 2, 1px), 585px) - 28px, (min(max((min(max(${componentViewport?.width||\"100vw\"} - 50px, 1px), 1100px) - 38px) / 2, 1px), 585px) - 28px) * 0.85) - 40px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-aw69vu-container\",\"data-framer-name\":\"Stats-Number\",name:\"Stats-Number\",nodeId:\"zICYqlPNT\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(ResultItem,{FX9ATdBd1:\"Owners who went from being the bottleneck to building teams that drive success.\",height:\"100%\",heUyfsMgj:\"1,000+\",id:\"zICYqlPNT\",layoutId:\"zICYqlPNT\",name:\"Stats-Number\",style:{width:\"100%\"},variant:\"Fd9keGHlq\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t6B1ZNwj8:{width:`max((min(max(min(max(${componentViewport?.width||\"100vw\"} - 50px, 1px), 1100px), 50px) - 28px, (max(min(max(${componentViewport?.width||\"100vw\"} - 50px, 1px), 1100px), 50px) - 28px) * 0.85) - 40px) / 2, 50px)`},UuTd3h3UJ:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 40px, 1100px), 50px) - 40px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:110,width:`max((min(min(max((min(max(${componentViewport?.width||\"100vw\"} - 50px, 1px), 1100px) - 38px) / 2, 1px), 585px) - 28px, (min(max((min(max(${componentViewport?.width||\"100vw\"} - 50px, 1px), 1100px) - 38px) / 2, 1px), 585px) - 28px) * 0.85) - 40px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nuo49k-container\",\"data-framer-name\":\"Stats-Number\",name:\"Stats-Number\",nodeId:\"lKY492FrS\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(ResultItem,{FX9ATdBd1:\"We promise a 1000% ROI. (Some clients measure us at 3,000% ROI)\",height:\"100%\",heUyfsMgj:\"1,000%\",id:\"lKY492FrS\",layoutId:\"lKY492FrS\",name:\"Stats-Number\",style:{width:\"100%\"},variant:\"Fd9keGHlq\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t6B1ZNwj8:{width:`max((min(max(min(max(${componentViewport?.width||\"100vw\"} - 50px, 1px), 1100px), 50px) - 28px, (max(min(max(${componentViewport?.width||\"100vw\"} - 50px, 1px), 1100px), 50px) - 28px) * 0.85) - 40px) / 2, 50px)`},UuTd3h3UJ:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 40px, 1100px), 50px) - 40px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:110,width:`max((min(min(max((min(max(${componentViewport?.width||\"100vw\"} - 50px, 1px), 1100px) - 38px) / 2, 1px), 585px) - 28px, (min(max((min(max(${componentViewport?.width||\"100vw\"} - 50px, 1px), 1100px) - 38px) / 2, 1px), 585px) - 28px) * 0.85) - 40px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pquijp-container\",\"data-framer-name\":\"Stats-Number\",name:\"Stats-Number\",nodeId:\"mVtcQTdsp\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(ResultItem,{FX9ATdBd1:\"Increase in Team Productivity Within 6 Months.\",height:\"100%\",heUyfsMgj:\"250%\",id:\"mVtcQTdsp\",layoutId:\"mVtcQTdsp\",name:\"Stats-Number\",style:{width:\"100%\"},variant:\"Fd9keGHlq\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t6B1ZNwj8:{width:`max((min(max(min(max(${componentViewport?.width||\"100vw\"} - 50px, 1px), 1100px), 50px) - 28px, (max(min(max(${componentViewport?.width||\"100vw\"} - 50px, 1px), 1100px), 50px) - 28px) * 0.85) - 40px) / 2, 50px)`},UuTd3h3UJ:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 40px, 1100px), 50px) - 40px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:110,width:`max((min(min(max((min(max(${componentViewport?.width||\"100vw\"} - 50px, 1px), 1100px) - 38px) / 2, 1px), 585px) - 28px, (min(max((min(max(${componentViewport?.width||\"100vw\"} - 50px, 1px), 1100px) - 38px) / 2, 1px), 585px) - 28px) * 0.85) - 40px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6fji00-container\",\"data-framer-name\":\"Stats-Number\",name:\"Stats-Number\",nodeId:\"qcvxvyoVg\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(ResultItem,{FX9ATdBd1:\"With the right systems and leadership, our clients scale three times faster than industry averages.\",height:\"100%\",heUyfsMgj:\"3X\",id:\"qcvxvyoVg\",layoutId:\"qcvxvyoVg\",name:\"Stats-Number\",style:{width:\"100%\"},variant:\"Fd9keGHlq\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,positionX:\"75.6%\",positionY:\"27.8%\",src:\"https://framerusercontent.com/images/PWsNmR4kAKFnjOtYvX00FvuvO8.png\"},className:\"framer-oo8obb\",\"data-framer-name\":\"Video-Wrapper\"})]})}),/*#__PURE__*/_jsx(\"section\",{background:{alt:\"\",fit:\"fill\",positionX:\"right\",positionY:\"bottom\"},className:\"framer-iu4l71\",\"data-framer-name\":\"Solutions\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bf3gok\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n1dcjm\",\"data-framer-name\":\"Solutions-grid\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-80uxdv\",\"data-framer-name\":\"Heading-Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,children:/*#__PURE__*/_jsx(Container,{className:\"framer-114f3gv-container\",\"data-framer-name\":\"Section-Tag\",name:\"Section-Tag\",nodeId:\"os4YPzL5Z\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(SectionTag,{height:\"100%\",id:\"os4YPzL5Z\",layoutId:\"os4YPzL5Z\",name:\"Section-Tag\",OaXHVEg_A:\"Solutions\",variant:\"iPSP_xFIy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-jaa7lk\",\"data-styles-preset\":\"u1TMq5IXn\",children:\"Giving business owners the clarity, tools, and support to grow with confidence\"})}),className:\"framer-1d60qt2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ocZUn14lg\"},implicitPathVariables:undefined},{href:{webPageId:\"ocZUn14lg\"},implicitPathVariables:undefined},{href:{webPageId:\"ocZUn14lg\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tu5w8g-container\",\"data-framer-name\":\"Button\",name:\"Button\",nodeId:\"ZqGrBimUl\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t6B1ZNwj8:{TnagmA8vA:resolvedLinks[1]},UuTd3h3UJ:{TnagmA8vA:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"ZqGrBimUl\",layoutId:\"ZqGrBimUl\",name:\"Button\",Pb6WiuirB:\"Here's How We Help\",TnagmA8vA:resolvedLinks[0],variant:\"PGvMe3c3B\",VVLyc9YCi:false,width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2w5l1v\",\"data-framer-name\":\"Item-Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t6B1ZNwj8:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 84px) / 2, 50px)`},UuTd3h3UJ:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 108px) / 2, 50px) - 32px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g9h0s0-container\",\"data-framer-name\":\"Bullets\",name:\"Bullets\",nodeId:\"Dvza99JRU\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(SolutionPoint,{height:\"100%\",id:\"Dvza99JRU\",layoutId:\"Dvza99JRU\",name:\"Bullets\",RqNVO8g2F:\"Clear strategies and systems for sustainable business growth.\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t6B1ZNwj8:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 84px) / 2, 50px)`},UuTd3h3UJ:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 108px) / 2, 50px) - 32px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15x6atx-container\",\"data-framer-name\":\"Bullets\",name:\"Bullets\",nodeId:\"RIuu0A9y0\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(SolutionPoint,{height:\"100%\",id:\"RIuu0A9y0\",layoutId:\"RIuu0A9y0\",name:\"Bullets\",RqNVO8g2F:\"Guidance to help you lead effectively without micromanaging.\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t6B1ZNwj8:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 84px) / 2, 50px)`},UuTd3h3UJ:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 108px) / 2, 50px) - 32px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g6upkq-container\",\"data-framer-name\":\"Bullets\",name:\"Bullets\",nodeId:\"G0TAb1Rs4\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(SolutionPoint,{height:\"100%\",id:\"G0TAb1Rs4\",layoutId:\"G0TAb1Rs4\",name:\"Bullets\",RqNVO8g2F:\"Tools to improve team performance and accountability.\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t6B1ZNwj8:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 84px) / 2, 50px)`},UuTd3h3UJ:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 108px) / 2, 50px) - 32px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-129piws-container\",\"data-framer-name\":\"Bullets\",name:\"Bullets\",nodeId:\"Sa1MZN1ZL\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(SolutionPoint,{height:\"100%\",id:\"Sa1MZN1ZL\",layoutId:\"Sa1MZN1ZL\",name:\"Bullets\",RqNVO8g2F:\" Proven frameworks to streamline operations and boost efficiency.\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t6B1ZNwj8:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 84px) / 2, 50px)`},UuTd3h3UJ:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 108px) / 2, 50px) - 32px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hsmoj2-container\",\"data-framer-name\":\"Bullets\",name:\"Bullets\",nodeId:\"UkPepg2kb\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(SolutionPoint,{height:\"100%\",id:\"UkPepg2kb\",layoutId:\"UkPepg2kb\",name:\"Bullets\",RqNVO8g2F:\"Support to navigate challenges and scale with confidence.\",style:{width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\"},className:\"framer-15ov3sn\",\"data-framer-name\":\"Cover-Image\",children:[/*#__PURE__*/_jsx(Fetcher,{requests:[{cacheDuration:0,credentials:\"same-origin\",errorFallbackValue:\"Error\",fallbackValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",resultKeyPath:\"\",resultOutputType:\"string\",url:`https://youtu.be/R_y_rhgVpOY`}],children:fetchResult=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-myz3e3-container\",\"data-framer-name\":\"Video\",isModuleExternal:true,name:\"Video\",nodeId:\"sc1N0rzbp\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:24,bottomLeftRadius:24,bottomRightRadius:24,controls:false,height:\"100%\",id:\"sc1N0rzbp\",isMixedBorderRadius:false,layoutId:\"sc1N0rzbp\",loop:true,muted:true,name:\"Video\",objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/nWmExwpkw0qXNp2QA6M80KI.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/rlQcsoz4HYGfsE8Q4cI2V55pRs.mp4\",srcType:\"URL\",srcUrl:toString(fetchResult[0]),startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:24,topRightRadius:24,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://youtu.be/n4iDP0DFqq0\",motionChild:true,nodeId:\"OfOK9QQM4\",openInNewTab:true,scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-lxuaa2 framer-89vrj0\",\"data-framer-name\":\"Play-Button\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/h4kcdgNzXczh3v02tLnpmPKVR5E.svg\"},className:\"framer-2ew32b\",\"data-framer-name\":\"Icon\"})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{background:{alt:\"\",fit:\"fill\",positionX:\"right\",positionY:\"bottom\"},className:\"framer-u2sl9m\",\"data-framer-name\":\"Services\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1awwvbk\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yngpmu\",\"data-framer-name\":\"Heading-Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w8v8nu-container\",\"data-framer-name\":\"Section-Tag\",name:\"Section-Tag\",nodeId:\"VSvS9mfcR\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(SectionTag,{height:\"100%\",id:\"VSvS9mfcR\",layoutId:\"VSvS9mfcR\",name:\"Section-Tag\",OaXHVEg_A:\"Services\",variant:\"iPSP_xFIy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-jaa7lk\",\"data-styles-preset\":\"u1TMq5IXn\",style:{\"--framer-text-alignment\":\"center\"},children:\"Proven Strategies to Streamline Operations. Increase Profitability.\"})}),className:\"framer-gxkxgn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a842ys\",\"data-framer-name\":\"Services-wrapper\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"bStTs5yIT\",data:Services1,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},orderBy:[{collection:\"bStTs5yIT\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"bStTs5yIT\",name:\"IVIfD_60m\",type:\"Identifier\"},{collection:\"bStTs5yIT\",name:\"CuaFOEkb8\",type:\"Identifier\"},{collection:\"bStTs5yIT\",name:\"isujqcr0b\",type:\"Identifier\"},{collection:\"bStTs5yIT\",name:\"SMe3EBS_O\",type:\"Identifier\"},{collection:\"bStTs5yIT\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({CuaFOEkb8:CuaFOEkb8bStTs5yIT,id:idbStTs5yIT,isujqcr0b:isujqcr0bbStTs5yIT,IVIfD_60m:IVIfD_60mbStTs5yIT,SMe3EBS_O:SMe3EBS_ObStTs5yIT},index)=>{CuaFOEkb8bStTs5yIT??=\"\";isujqcr0bbStTs5yIT??=\"\";SMe3EBS_ObStTs5yIT??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`bStTs5yIT-${idbStTs5yIT}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{SMe3EBS_O:SMe3EBS_ObStTs5yIT},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-bai88m\",\"data-framer-name\":\"Service-card-wrapper\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{SMe3EBS_O:SMe3EBS_ObStTs5yIT},webPageId:\"FGRUgauRO\"},implicitPathVariables:undefined},{href:{pathVariables:{SMe3EBS_O:SMe3EBS_ObStTs5yIT},webPageId:\"FGRUgauRO\"},implicitPathVariables:undefined},{href:{pathVariables:{SMe3EBS_O:SMe3EBS_ObStTs5yIT},webPageId:\"FGRUgauRO\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UuTd3h3UJ:{width:`max(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 50px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:512,width:`max(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 98px) / 3, 50px), 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1abe63d-container\",\"data-framer-name\":\"Service-Card\",name:\"Service-Card\",nodeId:\"E_VQGVVLo\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t6B1ZNwj8:{z8gLVXL1U:resolvedLinks1[1]},UuTd3h3UJ:{z8gLVXL1U:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(Services,{B9dR6MkwY:isujqcr0bbStTs5yIT,ELWXxRJ5r:toResponsiveImage(IVIfD_60mbStTs5yIT),height:\"100%\",id:\"E_VQGVVLo\",layoutId:\"E_VQGVVLo\",name:\"Service-Card\",style:{width:\"100%\"},width:\"100%\",X5eJs8Ib2:CuaFOEkb8bStTs5yIT,z8gLVXL1U:resolvedLinks1[0]})})})})})})})})},idbStTs5yIT);})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{background:{alt:\"\",fit:\"fill\",positionX:\"right\",positionY:\"bottom\"},className:\"framer-1khrdk0\",\"data-framer-name\":\"Process\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vztv0y\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eelbkf\",\"data-framer-name\":\"Heading-Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3koj11-container\",\"data-framer-name\":\"Section-Tag\",name:\"Section-Tag\",nodeId:\"y995Jla9L\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(SectionTag,{height:\"100%\",id:\"y995Jla9L\",layoutId:\"y995Jla9L\",name:\"Section-Tag\",OaXHVEg_A:\"Process\",variant:\"iPSP_xFIy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-jaa7lk\",\"data-styles-preset\":\"u1TMq5IXn\",style:{\"--framer-text-alignment\":\"center\"},children:\"Achieving success in three simple steps\"})}),className:\"framer-zinypa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UuTd3h3UJ:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:498,width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ggxdaf-container\",\"data-framer-name\":\"Tabs\",name:\"Tabs\",nodeId:\"bEiH2VDIV\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UuTd3h3UJ:{variant:\"CJ5sqZGo1\"}},children:/*#__PURE__*/_jsx(HowItWorks,{height:\"100%\",id:\"bEiH2VDIV\",layoutId:\"bEiH2VDIV\",name:\"Tabs\",style:{width:\"100%\"},variant:\"xS483suSG\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1465,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s7vrlo-container\",\"data-framer-name\":\"Testimonials\",name:\"Testimonials\",nodeId:\"f2Euu0daO\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t6B1ZNwj8:{variant:\"GjnhNTUuh\"},UuTd3h3UJ:{variant:\"oH4Qplgut\"}},children:/*#__PURE__*/_jsx(TestimonialSection,{height:\"100%\",id:\"f2Euu0daO\",layoutId:\"f2Euu0daO\",name:\"Testimonials\",style:{width:\"100%\"},variant:\"nEwkK9t7H\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"section\",{background:{alt:\"\",fit:\"fill\",positionX:\"right\",positionY:\"bottom\"},className:\"framer-1nqm9kd\",\"data-framer-name\":\"Experience\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15mxiv7\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/3uPBOlJUwmyWniD9Wr6bIhucAiY.png\"},className:\"framer-10xk1wn\",\"data-framer-name\":\"Cover-Image\"}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-oqbmy7\",\"data-framer-name\":\"Text-Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wutlhm\",\"data-framer-name\":\"Heading-Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12df2qy-container\",\"data-framer-name\":\"Section-Tag\",name:\"Section-Tag\",nodeId:\"q5p2_xBqq\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(SectionTag,{height:\"100%\",id:\"q5p2_xBqq\",layoutId:\"q5p2_xBqq\",name:\"Section-Tag\",OaXHVEg_A:\"Experience\",variant:\"iPSP_xFIy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-jaa7lk\",\"data-styles-preset\":\"u1TMq5IXn\",children:\"Leadership, Systems, and Strategy\u2014Built on Integrity\"})}),className:\"framer-11kup8i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vlthcy\",\"data-framer-name\":\"Experience-wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qf8ydo\",\"data-framer-name\":\"Experience\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ux6xyv\",\"data-styles-preset\":\"RqWlnUxLg\",style:{\"--framer-text-color\":\"var(--token-e4bee715-1a76-4d52-94a9-54840079c030, rgb(66, 66, 66))\"},children:\"Integrity \u2192 A Culture of Accountability\"})}),className:\"framer-14syc0c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13h3b\",\"data-framer-name\":\"Line-Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jjabai\",\"data-framer-name\":\"Line\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jo0zcx\",\"data-framer-name\":\"Experience\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ux6xyv\",\"data-styles-preset\":\"RqWlnUxLg\",style:{\"--framer-text-color\":\"var(--token-e4bee715-1a76-4d52-94a9-54840079c030, rgb(66, 66, 66))\"},children:\"Execution \u2192 Turning Strategy into Results\"})}),className:\"framer-s05csu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bggqzw\",\"data-framer-name\":\"Line-Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-16lm11p\",\"data-framer-name\":\"Line\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qdzuya\",\"data-framer-name\":\"Experience\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ux6xyv\",\"data-styles-preset\":\"RqWlnUxLg\",style:{\"--framer-text-color\":\"var(--token-e4bee715-1a76-4d52-94a9-54840079c030, rgb(66, 66, 66))\"},children:\"Expertise \u2192 Proven Frameworks for Growth\"})}),className:\"framer-1mw6jwb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bwobdk\",\"data-framer-name\":\"Line-Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ug86y2\",\"data-framer-name\":\"Line\"})})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Ml_0tdCB6\"},implicitPathVariables:undefined},{href:{webPageId:\"Ml_0tdCB6\"},implicitPathVariables:undefined},{href:{webPageId:\"Ml_0tdCB6\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kqp69p-container\",\"data-framer-name\":\"Button\",name:\"Button\",nodeId:\"ikwbECKj5\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t6B1ZNwj8:{TnagmA8vA:resolvedLinks2[1]},UuTd3h3UJ:{TnagmA8vA:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"ikwbECKj5\",layoutId:\"ikwbECKj5\",name:\"Button\",Pb6WiuirB:\"Learn More\",TnagmA8vA:resolvedLinks2[0],variant:\"PGvMe3c3B\",VVLyc9YCi:false,width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{background:{alt:\"\",fit:\"fill\",positionX:\"right\",positionY:\"bottom\"},className:\"framer-ein4h5\",\"data-framer-name\":\"Blogs\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17mil2c\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-twwglo\",\"data-framer-name\":\"Heading-Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nbbeul-container\",\"data-framer-name\":\"Section-Tag\",name:\"Section-Tag\",nodeId:\"v59uYt1L8\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(SectionTag,{height:\"100%\",id:\"v59uYt1L8\",layoutId:\"v59uYt1L8\",name:\"Section-Tag\",OaXHVEg_A:\"Blogs\",variant:\"iPSP_xFIy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-jaa7lk\",\"data-styles-preset\":\"u1TMq5IXn\",style:{\"--framer-text-alignment\":\"center\"},children:\"Your go-to resource for business expertise\"})}),className:\"framer-ompo1u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ncyo2f\",\"data-framer-name\":\"Blogs\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"N1YNWAxqE\",data:Blogs,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"N1YNWAxqE\",name:\"LQvrFkotl\",type:\"Identifier\"},{collection:\"N1YNWAxqE\",name:\"g4YUUm96o\",type:\"Identifier\"},{collection:\"N1YNWAxqE\",name:\"g6rBkdHL1\",type:\"Identifier\"},{collection:\"N1YNWAxqE\",name:\"tNkTRure6\",type:\"Identifier\"},{collection:\"N1YNWAxqE\",name:\"WYguv7jwY\",type:\"Identifier\"},{collection:\"N1YNWAxqE\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({g4YUUm96o:g4YUUm96oN1YNWAxqE,g6rBkdHL1:g6rBkdHL1N1YNWAxqE,id:idN1YNWAxqE,LQvrFkotl:LQvrFkotlN1YNWAxqE,tNkTRure6:tNkTRure6N1YNWAxqE,WYguv7jwY:WYguv7jwYN1YNWAxqE},index1)=>{g4YUUm96oN1YNWAxqE??=\"\";WYguv7jwYN1YNWAxqE??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`N1YNWAxqE-${idN1YNWAxqE}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{WYguv7jwY:WYguv7jwYN1YNWAxqE},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{WYguv7jwY:WYguv7jwYN1YNWAxqE},webPageId:\"Ib2qcVNTb\"},implicitPathVariables:undefined},{href:{pathVariables:{WYguv7jwY:WYguv7jwYN1YNWAxqE},webPageId:\"Ib2qcVNTb\"},implicitPathVariables:undefined},{href:{pathVariables:{WYguv7jwY:WYguv7jwYN1YNWAxqE},webPageId:\"Ib2qcVNTb\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t6B1ZNwj8:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 72px) / 2, 50px)`},UuTd3h3UJ:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:509,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 94px) / 3, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8ywhoi-container\",\"data-framer-name\":\"Blog-Card\",name:\"Blog-Card\",nodeId:\"VciFUG6Ux\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{t6B1ZNwj8:{Dx3ejN4Lr:resolvedLinks3[1]},UuTd3h3UJ:{Dx3ejN4Lr:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(BlogItem,{Dx3ejN4Lr:resolvedLinks3[0],H2_GG9G1O:g4YUUm96oN1YNWAxqE,height:\"100%\",id:\"VciFUG6Ux\",jwdIy2SbQ:toDateString(tNkTRure6N1YNWAxqE,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),layoutId:\"VciFUG6Ux\",MLwCqGIyp:toResponsiveImage(LQvrFkotlN1YNWAxqE),name:\"Blog-Card\",style:{width:\"100%\"},uSl_tBdLm:enumToDisplayNameFunctions[\"g6rBkdHL1\"]?.(g6rBkdHL1N1YNWAxqE,activeLocale),width:\"100%\"})})})})})})})},idN1YNWAxqE);})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{background:{alt:\"\",fit:\"fill\",positionX:\"right\",positionY:\"bottom\"},className:\"framer-f4t532\",\"data-framer-name\":\"FAQ's\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-27g2n6\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18qehsv\",\"data-framer-name\":\"Heading-Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iy3udv-container\",\"data-framer-name\":\"Section-Tag\",name:\"Section-Tag\",nodeId:\"PW4RrvtpB\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(SectionTag,{height:\"100%\",id:\"PW4RrvtpB\",layoutId:\"PW4RrvtpB\",name:\"Section-Tag\",OaXHVEg_A:\"FAQ's\",variant:\"iPSP_xFIy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-jaa7lk\",\"data-styles-preset\":\"u1TMq5IXn\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Addressing your most \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-37c73a71-ed98-4730-86d9-6e0a52d466b3, rgb(111, 158, 206))\"},children:\"common\"}),\" questions\"]})}),className:\"framer-spbrui\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UuTd3h3UJ:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 700px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:615,width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 50px, 700px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-x7xq9u-container\",\"data-framer-name\":\"FAQ\",name:\"FAQ\",nodeId:\"w1G1U6h6G\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(FAQItems,{height:\"100%\",id:\"w1G1U6h6G\",layoutId:\"w1G1U6h6G\",name:\"FAQ\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:449,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vty78j-container\",\"data-framer-name\":\"CTA\",name:\"CTA\",nodeId:\"Xuj306p5C\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UuTd3h3UJ:{variant:\"x8zNZpJX2\"}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"Xuj306p5C\",layoutId:\"Xuj306p5C\",name:\"CTA\",style:{width:\"100%\"},variant:\"vL3j95Y6O\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:555,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-45vybc-container\",\"data-framer-name\":\"Footer\",name:\"Footer\",nodeId:\"L78yk2cEe\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UuTd3h3UJ:{variant:\"nFU6GIBs7\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"L78yk2cEe\",layoutId:\"L78yk2cEe\",name:\"Footer\",style:{width:\"100%\"},variant:\"KgqqTCH4I\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-111kn7x-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"aPKoNXOCz\",scopeId:\"hEYx8viWv\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"aPKoNXOCz\",intensity:10,layoutId:\"aPKoNXOCz\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-EbHUV.framer-89vrj0, .framer-EbHUV .framer-89vrj0 { display: block; }\",\".framer-EbHUV.framer-hk3yfs { align-content: center; align-items: center; background-color: var(--token-c9b12220-87c9-4c8c-a21d-cbf1e21628af, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-EbHUV .framer-1585k3b-container { flex: none; height: auto; left: 0px; position: absolute; top: 0px; width: 100%; z-index: 10; }\",\".framer-EbHUV .framer-4d1wt2 { 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: 130px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-EbHUV .framer-2nahyi { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 66px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 25px 0px 25px; position: relative; width: 1px; }\",\".framer-EbHUV .framer-14z3i77 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-EbHUV .framer-4fg36 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-EbHUV .framer-oey1vc { 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-EbHUV .framer-132nqf1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; max-width: 650px; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-EbHUV .framer-1cr8m3j, .framer-EbHUV .framer-9ahu6w, .framer-EbHUV .framer-zb8u71, .framer-EbHUV .framer-zh48yb, .framer-EbHUV .framer-yklocc, .framer-EbHUV .framer-19cjn1m { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-EbHUV .framer-456sa0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 524px; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-EbHUV .framer-1acfzhu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-EbHUV .framer-1s4s09b-container, .framer-EbHUV .framer-19ivy49-container, .framer-EbHUV .framer-9wwbp0-container, .framer-EbHUV .framer-1wf0lpv-container, .framer-EbHUV .framer-114f3gv-container, .framer-EbHUV .framer-1tu5w8g-container, .framer-EbHUV .framer-1w8v8nu-container, .framer-EbHUV .framer-3koj11-container, .framer-EbHUV .framer-12df2qy-container, .framer-EbHUV .framer-1kqp69p-container, .framer-EbHUV .framer-nbbeul-container, .framer-EbHUV .framer-1iy3udv-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-EbHUV .framer-zcjbnp { border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; flex: none; height: 675px; overflow: visible; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-EbHUV .framer-1uhv8k2, .framer-EbHUV .framer-u2sl9m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 68px 0px 68px 0px; position: relative; width: 100%; }\",\".framer-EbHUV .framer-1krld8y, .framer-EbHUV .framer-1awwvbk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 88px; height: min-content; justify-content: flex-end; max-width: 1200px; overflow: visible; padding: 0px 25px 0px 25px; position: relative; width: 1px; }\",\".framer-EbHUV .framer-l846ol, .framer-EbHUV .framer-1yngpmu, .framer-EbHUV .framer-1eelbkf, .framer-EbHUV .framer-twwglo, .framer-EbHUV .framer-18qehsv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-EbHUV .framer-15kgndo, .framer-EbHUV .framer-1d60qt2, .framer-EbHUV .framer-gxkxgn, .framer-EbHUV .framer-11kup8i { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 645px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-EbHUV .framer-1mf87h2 { display: grid; flex: none; gap: 0px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-EbHUV .framer-s2r28e { align-self: start; display: grid; flex: none; gap: 36px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: auto; justify-content: center; justify-self: start; overflow: hidden; padding: 25px 0px 25px 0px; position: relative; width: 100%; }\",\".framer-EbHUV .framer-1yg5hxd-container, .framer-EbHUV .framer-1ieh084-container, .framer-EbHUV .framer-6mded1-container, .framer-EbHUV .framer-1wj8bnn-container, .framer-EbHUV .framer-aw69vu-container, .framer-EbHUV .framer-nuo49k-container, .framer-EbHUV .framer-1pquijp-container, .framer-EbHUV .framer-6fji00-container, .framer-EbHUV .framer-8ywhoi-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-EbHUV .framer-1kizu6q { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; justify-self: start; overflow: hidden; padding: 0px 0px 0px 48px; position: relative; width: 100%; }\",\".framer-EbHUV .framer-cs4tfk { aspect-ratio: 0.8962264150943396 / 1; border-bottom-left-radius: 71px; border-bottom-right-radius: 71px; border-top-left-radius: 71px; border-top-right-radius: 71px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 530px); max-width: 475px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EbHUV .framer-1fgwlx1 { align-content: center; align-items: center; background-color: var(--token-55cd17e0-a25e-40bd-8148-346590ffdf2f, #fafafa); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 58px 25px 58px 25px; position: relative; width: 100%; }\",\".framer-EbHUV .framer-xs7kb2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-EbHUV .framer-12csdov { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; max-width: 585px; overflow: visible; padding: 0px 28px 0px 0px; position: relative; width: 1px; }\",\".framer-EbHUV .framer-1azt30e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-EbHUV .framer-1a1k40g, .framer-EbHUV .framer-14syc0c, .framer-EbHUV .framer-s05csu, .framer-EbHUV .framer-1mw6jwb { --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-EbHUV .framer-13tq9p5 { display: grid; flex: none; gap: 40px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; max-width: 85%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-EbHUV .framer-oo8obb { align-content: center; align-items: center; border-bottom-left-radius: 44px; border-bottom-right-radius: 44px; border-top-left-radius: 44px; border-top-right-radius: 44px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 550px; justify-content: center; max-width: 450px; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EbHUV .framer-iu4l71, .framer-EbHUV .framer-1khrdk0, .framer-EbHUV .framer-ein4h5, .framer-EbHUV .framer-f4t532 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 58px 0px 58px 0px; position: relative; width: 100%; }\",\".framer-EbHUV .framer-1bf3gok, .framer-EbHUV .framer-vztv0y { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 75px; height: min-content; justify-content: flex-end; max-width: 1200px; overflow: visible; padding: 0px 25px 0px 25px; position: relative; width: 1px; }\",\".framer-EbHUV .framer-n1dcjm { display: grid; flex: none; gap: 58px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-EbHUV .framer-80uxdv { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-EbHUV .framer-2w5l1v { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 16px 0px 0px 32px; position: relative; width: 100%; }\",\".framer-EbHUV .framer-g9h0s0-container, .framer-EbHUV .framer-15x6atx-container, .framer-EbHUV .framer-1g6upkq-container, .framer-EbHUV .framer-129piws-container, .framer-EbHUV .framer-hsmoj2-container, .framer-EbHUV .framer-1ggxdaf-container, .framer-EbHUV .framer-1s7vrlo-container, .framer-EbHUV .framer-1vty78j-container, .framer-EbHUV .framer-45vybc-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-EbHUV .framer-15ov3sn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 675px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-EbHUV .framer-myz3e3-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",'.framer-EbHUV .framer-lxuaa2 { align-content: center; align-items: center; aspect-ratio: 1 / 1; background: linear-gradient(180deg, var(--token-37c73a71-ed98-4730-86d9-6e0a52d466b3, #2e69ff) /* {\"name\":\"Blue\"} */ 0%, rgb(117, 156, 255) 100%); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; box-shadow: inset 0px 0px 10px 0px rgba(255, 255, 255, 0.18); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 54px); justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 54px; will-change: var(--framer-will-change-override, transform); z-index: 3; }',\".framer-EbHUV .framer-2ew32b { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); overflow: hidden; position: relative; width: 16px; }\",\".framer-EbHUV .framer-a842ys { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-EbHUV .framer-bai88m { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EbHUV .framer-1abe63d-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-EbHUV .framer-zinypa { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-EbHUV .framer-1nqm9kd { 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: 58px 0px 58px 0px; position: relative; width: 100%; }\",\".framer-EbHUV .framer-15mxiv7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 52px; height: min-content; justify-content: flex-start; max-width: 1150px; overflow: visible; padding: 0px 25px 0px 25px; position: relative; width: 100%; }\",\".framer-EbHUV .framer-10xk1wn { border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; flex: 1 0 0px; height: 450px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EbHUV .framer-oqbmy7 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-EbHUV .framer-wutlhm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-EbHUV .framer-vlthcy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; max-width: 400px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-EbHUV .framer-qf8ydo, .framer-EbHUV .framer-jo0zcx, .framer-EbHUV .framer-qdzuya { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-EbHUV .framer-13h3b, .framer-EbHUV .framer-bggqzw, .framer-EbHUV .framer-1bwobdk { align-content: center; align-items: center; background-color: var(--token-55cd17e0-a25e-40bd-8148-346590ffdf2f, #fafafa); border-bottom-left-radius: 70px; border-bottom-right-radius: 70px; border-top-left-radius: 70px; border-top-right-radius: 70px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 4px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-EbHUV .framer-1jjabai { background-color: var(--token-37c73a71-ed98-4730-86d9-6e0a52d466b3, #2e69ff); flex: none; height: 100%; overflow: hidden; position: relative; width: 92%; }\",\".framer-EbHUV .framer-16lm11p { background-color: var(--token-37c73a71-ed98-4730-86d9-6e0a52d466b3, #2e69ff); flex: none; height: 100%; overflow: hidden; position: relative; width: 82%; }\",\".framer-EbHUV .framer-1ug86y2 { background-color: var(--token-37c73a71-ed98-4730-86d9-6e0a52d466b3, #2e69ff); flex: none; height: 100%; overflow: hidden; position: relative; width: 62%; }\",\".framer-EbHUV .framer-17mil2c, .framer-EbHUV .framer-27g2n6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 65px; height: min-content; justify-content: flex-end; max-width: 1200px; overflow: visible; padding: 0px 25px 0px 25px; position: relative; width: 1px; }\",\".framer-EbHUV .framer-ompo1u { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 575px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-EbHUV .framer-1ncyo2f { display: grid; flex: none; gap: 22px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-EbHUV .framer-spbrui { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 550px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-EbHUV .framer-x7xq9u-container { -webkit-user-select: none; flex: none; height: auto; max-width: 700px; position: relative; user-select: none; width: 100%; }\",\".framer-EbHUV .framer-111kn7x-container { flex: none; height: auto; opacity: 0; position: relative; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-EbHUV.framer-hk3yfs, .framer-EbHUV .framer-4d1wt2, .framer-EbHUV .framer-2nahyi, .framer-EbHUV .framer-14z3i77, .framer-EbHUV .framer-4fg36, .framer-EbHUV .framer-oey1vc, .framer-EbHUV .framer-132nqf1, .framer-EbHUV .framer-1acfzhu, .framer-EbHUV .framer-1uhv8k2, .framer-EbHUV .framer-1krld8y, .framer-EbHUV .framer-l846ol, .framer-EbHUV .framer-1kizu6q, .framer-EbHUV .framer-1fgwlx1, .framer-EbHUV .framer-1azt30e, .framer-EbHUV .framer-oo8obb, .framer-EbHUV .framer-iu4l71, .framer-EbHUV .framer-1bf3gok, .framer-EbHUV .framer-80uxdv, .framer-EbHUV .framer-2w5l1v, .framer-EbHUV .framer-15ov3sn, .framer-EbHUV .framer-lxuaa2, .framer-EbHUV .framer-u2sl9m, .framer-EbHUV .framer-1awwvbk, .framer-EbHUV .framer-1yngpmu, .framer-EbHUV .framer-bai88m, .framer-EbHUV .framer-1khrdk0, .framer-EbHUV .framer-vztv0y, .framer-EbHUV .framer-1eelbkf, .framer-EbHUV .framer-1nqm9kd, .framer-EbHUV .framer-15mxiv7, .framer-EbHUV .framer-oqbmy7, .framer-EbHUV .framer-wutlhm, .framer-EbHUV .framer-vlthcy, .framer-EbHUV .framer-qf8ydo, .framer-EbHUV .framer-13h3b, .framer-EbHUV .framer-jo0zcx, .framer-EbHUV .framer-bggqzw, .framer-EbHUV .framer-qdzuya, .framer-EbHUV .framer-1bwobdk, .framer-EbHUV .framer-ein4h5, .framer-EbHUV .framer-17mil2c, .framer-EbHUV .framer-twwglo, .framer-EbHUV .framer-f4t532, .framer-EbHUV .framer-27g2n6, .framer-EbHUV .framer-18qehsv { gap: 0px; } .framer-EbHUV.framer-hk3yfs > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-EbHUV.framer-hk3yfs > :first-child, .framer-EbHUV .framer-2nahyi > :first-child, .framer-EbHUV .framer-14z3i77 > :first-child, .framer-EbHUV .framer-4fg36 > :first-child, .framer-EbHUV .framer-oey1vc > :first-child, .framer-EbHUV .framer-1acfzhu > :first-child, .framer-EbHUV .framer-1krld8y > :first-child, .framer-EbHUV .framer-l846ol > :first-child, .framer-EbHUV .framer-1azt30e > :first-child, .framer-EbHUV .framer-oo8obb > :first-child, .framer-EbHUV .framer-1bf3gok > :first-child, .framer-EbHUV .framer-80uxdv > :first-child, .framer-EbHUV .framer-2w5l1v > :first-child, .framer-EbHUV .framer-1awwvbk > :first-child, .framer-EbHUV .framer-1yngpmu > :first-child, .framer-EbHUV .framer-vztv0y > :first-child, .framer-EbHUV .framer-1eelbkf > :first-child, .framer-EbHUV .framer-1nqm9kd > :first-child, .framer-EbHUV .framer-oqbmy7 > :first-child, .framer-EbHUV .framer-wutlhm > :first-child, .framer-EbHUV .framer-vlthcy > :first-child, .framer-EbHUV .framer-qf8ydo > :first-child, .framer-EbHUV .framer-jo0zcx > :first-child, .framer-EbHUV .framer-qdzuya > :first-child, .framer-EbHUV .framer-17mil2c > :first-child, .framer-EbHUV .framer-twwglo > :first-child, .framer-EbHUV .framer-27g2n6 > :first-child, .framer-EbHUV .framer-18qehsv > :first-child { margin-top: 0px; } .framer-EbHUV.framer-hk3yfs > :last-child, .framer-EbHUV .framer-2nahyi > :last-child, .framer-EbHUV .framer-14z3i77 > :last-child, .framer-EbHUV .framer-4fg36 > :last-child, .framer-EbHUV .framer-oey1vc > :last-child, .framer-EbHUV .framer-1acfzhu > :last-child, .framer-EbHUV .framer-1krld8y > :last-child, .framer-EbHUV .framer-l846ol > :last-child, .framer-EbHUV .framer-1azt30e > :last-child, .framer-EbHUV .framer-oo8obb > :last-child, .framer-EbHUV .framer-1bf3gok > :last-child, .framer-EbHUV .framer-80uxdv > :last-child, .framer-EbHUV .framer-2w5l1v > :last-child, .framer-EbHUV .framer-1awwvbk > :last-child, .framer-EbHUV .framer-1yngpmu > :last-child, .framer-EbHUV .framer-vztv0y > :last-child, .framer-EbHUV .framer-1eelbkf > :last-child, .framer-EbHUV .framer-1nqm9kd > :last-child, .framer-EbHUV .framer-oqbmy7 > :last-child, .framer-EbHUV .framer-wutlhm > :last-child, .framer-EbHUV .framer-vlthcy > :last-child, .framer-EbHUV .framer-qf8ydo > :last-child, .framer-EbHUV .framer-jo0zcx > :last-child, .framer-EbHUV .framer-qdzuya > :last-child, .framer-EbHUV .framer-17mil2c > :last-child, .framer-EbHUV .framer-twwglo > :last-child, .framer-EbHUV .framer-27g2n6 > :last-child, .framer-EbHUV .framer-18qehsv > :last-child { margin-bottom: 0px; } .framer-EbHUV .framer-4d1wt2 > *, .framer-EbHUV .framer-132nqf1 > *, .framer-EbHUV .framer-1uhv8k2 > *, .framer-EbHUV .framer-1kizu6q > *, .framer-EbHUV .framer-1fgwlx1 > *, .framer-EbHUV .framer-iu4l71 > *, .framer-EbHUV .framer-15ov3sn > *, .framer-EbHUV .framer-lxuaa2 > *, .framer-EbHUV .framer-u2sl9m > *, .framer-EbHUV .framer-bai88m > *, .framer-EbHUV .framer-1khrdk0 > *, .framer-EbHUV .framer-13h3b > *, .framer-EbHUV .framer-bggqzw > *, .framer-EbHUV .framer-1bwobdk > *, .framer-EbHUV .framer-ein4h5 > *, .framer-EbHUV .framer-f4t532 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-EbHUV .framer-4d1wt2 > :first-child, .framer-EbHUV .framer-132nqf1 > :first-child, .framer-EbHUV .framer-1uhv8k2 > :first-child, .framer-EbHUV .framer-1kizu6q > :first-child, .framer-EbHUV .framer-1fgwlx1 > :first-child, .framer-EbHUV .framer-iu4l71 > :first-child, .framer-EbHUV .framer-15ov3sn > :first-child, .framer-EbHUV .framer-lxuaa2 > :first-child, .framer-EbHUV .framer-u2sl9m > :first-child, .framer-EbHUV .framer-bai88m > :first-child, .framer-EbHUV .framer-1khrdk0 > :first-child, .framer-EbHUV .framer-15mxiv7 > :first-child, .framer-EbHUV .framer-13h3b > :first-child, .framer-EbHUV .framer-bggqzw > :first-child, .framer-EbHUV .framer-1bwobdk > :first-child, .framer-EbHUV .framer-ein4h5 > :first-child, .framer-EbHUV .framer-f4t532 > :first-child { margin-left: 0px; } .framer-EbHUV .framer-4d1wt2 > :last-child, .framer-EbHUV .framer-132nqf1 > :last-child, .framer-EbHUV .framer-1uhv8k2 > :last-child, .framer-EbHUV .framer-1kizu6q > :last-child, .framer-EbHUV .framer-1fgwlx1 > :last-child, .framer-EbHUV .framer-iu4l71 > :last-child, .framer-EbHUV .framer-15ov3sn > :last-child, .framer-EbHUV .framer-lxuaa2 > :last-child, .framer-EbHUV .framer-u2sl9m > :last-child, .framer-EbHUV .framer-bai88m > :last-child, .framer-EbHUV .framer-1khrdk0 > :last-child, .framer-EbHUV .framer-15mxiv7 > :last-child, .framer-EbHUV .framer-13h3b > :last-child, .framer-EbHUV .framer-bggqzw > :last-child, .framer-EbHUV .framer-1bwobdk > :last-child, .framer-EbHUV .framer-ein4h5 > :last-child, .framer-EbHUV .framer-f4t532 > :last-child { margin-right: 0px; } .framer-EbHUV .framer-2nahyi > * { margin: 0px; margin-bottom: calc(66px / 2); margin-top: calc(66px / 2); } .framer-EbHUV .framer-14z3i77 > *, .framer-EbHUV .framer-1azt30e > *, .framer-EbHUV .framer-vlthcy > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-EbHUV .framer-4fg36 > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-EbHUV .framer-oey1vc > *, .framer-EbHUV .framer-oo8obb > *, .framer-EbHUV .framer-1nqm9kd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-EbHUV .framer-1acfzhu > *, .framer-EbHUV .framer-l846ol > *, .framer-EbHUV .framer-1yngpmu > *, .framer-EbHUV .framer-1eelbkf > *, .framer-EbHUV .framer-wutlhm > *, .framer-EbHUV .framer-twwglo > *, .framer-EbHUV .framer-18qehsv > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-EbHUV .framer-1krld8y > *, .framer-EbHUV .framer-1awwvbk > * { margin: 0px; margin-bottom: calc(88px / 2); margin-top: calc(88px / 2); } .framer-EbHUV .framer-1bf3gok > *, .framer-EbHUV .framer-vztv0y > * { margin: 0px; margin-bottom: calc(75px / 2); margin-top: calc(75px / 2); } .framer-EbHUV .framer-80uxdv > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-EbHUV .framer-2w5l1v > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-EbHUV .framer-15mxiv7 > * { margin: 0px; margin-left: calc(52px / 2); margin-right: calc(52px / 2); } .framer-EbHUV .framer-oqbmy7 > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-EbHUV .framer-qf8ydo > *, .framer-EbHUV .framer-jo0zcx > *, .framer-EbHUV .framer-qdzuya > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-EbHUV .framer-17mil2c > *, .framer-EbHUV .framer-27g2n6 > * { margin: 0px; margin-bottom: calc(65px / 2); margin-top: calc(65px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-EbHUV.framer-hk3yfs { width: 810px; } .framer-EbHUV .framer-1uhv8k2, .framer-EbHUV .framer-u2sl9m { padding: 58px 0px 58px 0px; } .framer-EbHUV .framer-1mf87h2 { gap: 48px; grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-EbHUV .framer-s2r28e { order: 1; padding: 0px; } .framer-EbHUV .framer-1kizu6q { order: 0; padding: 0px; } .framer-EbHUV .framer-cs4tfk { aspect-ratio: unset; height: 718px; max-width: unset; } .framer-EbHUV .framer-xs7kb2 { align-content: unset; align-items: unset; display: grid; gap: 58px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); justify-content: center; } .framer-EbHUV .framer-12csdov { align-self: start; flex: none; gap: 38px; height: 1fr; justify-content: flex-start; justify-self: start; max-width: unset; width: 100%; } .framer-EbHUV .framer-oo8obb { align-self: start; flex: none; justify-self: start; max-width: unset; width: 100%; } .framer-EbHUV .framer-1bf3gok { gap: 65px; } .framer-EbHUV .framer-n1dcjm { gap: 34px; } .framer-EbHUV .framer-2w5l1v { padding: 0px; } .framer-EbHUV .framer-1awwvbk { gap: 68px; } .framer-EbHUV .framer-vztv0y { gap: 58px; } .framer-EbHUV .framer-15mxiv7 { align-content: flex-start; align-items: flex-start; } .framer-EbHUV .framer-1ncyo2f { grid-template-columns: repeat(2, minmax(50px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-EbHUV .framer-1mf87h2, .framer-EbHUV .framer-xs7kb2, .framer-EbHUV .framer-12csdov, .framer-EbHUV .framer-1bf3gok, .framer-EbHUV .framer-n1dcjm, .framer-EbHUV .framer-1awwvbk, .framer-EbHUV .framer-vztv0y { gap: 0px; } .framer-EbHUV .framer-1mf87h2 > *, .framer-EbHUV .framer-1mf87h2 > :first-child, .framer-EbHUV .framer-1mf87h2 > :last-child, .framer-EbHUV .framer-xs7kb2 > *, .framer-EbHUV .framer-xs7kb2 > :first-child, .framer-EbHUV .framer-xs7kb2 > :last-child, .framer-EbHUV .framer-n1dcjm > *, .framer-EbHUV .framer-n1dcjm > :first-child, .framer-EbHUV .framer-n1dcjm > :last-child { margin: 0px; } .framer-EbHUV .framer-12csdov > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-EbHUV .framer-12csdov > :first-child, .framer-EbHUV .framer-1bf3gok > :first-child, .framer-EbHUV .framer-1awwvbk > :first-child, .framer-EbHUV .framer-vztv0y > :first-child { margin-top: 0px; } .framer-EbHUV .framer-12csdov > :last-child, .framer-EbHUV .framer-1bf3gok > :last-child, .framer-EbHUV .framer-1awwvbk > :last-child, .framer-EbHUV .framer-vztv0y > :last-child { margin-bottom: 0px; } .framer-EbHUV .framer-1bf3gok > * { margin: 0px; margin-bottom: calc(65px / 2); margin-top: calc(65px / 2); } .framer-EbHUV .framer-1awwvbk > * { margin: 0px; margin-bottom: calc(68px / 2); margin-top: calc(68px / 2); } .framer-EbHUV .framer-vztv0y > * { margin: 0px; margin-bottom: calc(58px / 2); margin-top: calc(58px / 2); } }}\",\"@media (max-width: 809px) { .framer-EbHUV.framer-hk3yfs { width: 390px; } .framer-EbHUV .framer-4d1wt2, .framer-EbHUV .framer-iu4l71, .framer-EbHUV .framer-1khrdk0, .framer-EbHUV .framer-ein4h5, .framer-EbHUV .framer-f4t532 { flex-direction: column; } .framer-EbHUV .framer-2nahyi { flex: none; padding: 0px 20px 0px 20px; width: 100%; } .framer-EbHUV .framer-19cjn1m { align-self: stretch; } .framer-EbHUV .framer-zcjbnp { height: 420px; } .framer-EbHUV .framer-1uhv8k2, .framer-EbHUV .framer-u2sl9m { flex-direction: column; padding: 58px 0px 58px 0px; } .framer-EbHUV .framer-1krld8y, .framer-EbHUV .framer-1bf3gok, .framer-EbHUV .framer-1awwvbk, .framer-EbHUV .framer-vztv0y, .framer-EbHUV .framer-17mil2c, .framer-EbHUV .framer-27g2n6 { flex: none; gap: 62px; padding: 0px 20px 0px 20px; width: 100%; } .framer-EbHUV .framer-1mf87h2 { gap: 38px; grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-EbHUV .framer-s2r28e { grid-template-columns: repeat(1, minmax(50px, 1fr)); padding: 0px; } .framer-EbHUV .framer-1kizu6q, .framer-EbHUV .framer-2w5l1v { padding: 0px; } .framer-EbHUV .framer-cs4tfk { aspect-ratio: unset; height: 400px; max-width: unset; } .framer-EbHUV .framer-1fgwlx1 { flex-direction: column; padding: 58px 20px 58px 20px; } .framer-EbHUV .framer-xs7kb2 { align-content: unset; align-items: unset; display: grid; flex: none; gap: 58px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); justify-content: center; width: 100%; } .framer-EbHUV .framer-12csdov { align-self: start; flex: none; gap: 48px; height: 1fr; justify-content: flex-start; justify-self: start; max-width: unset; padding: 0px; width: 100%; } .framer-EbHUV .framer-13tq9p5 { max-width: unset; } .framer-EbHUV .framer-oo8obb { align-self: start; flex: none; height: 400px; justify-self: start; max-width: unset; width: 100%; } .framer-EbHUV .framer-n1dcjm { grid-template-columns: repeat(1, minmax(50px, 1fr)); order: 0; } .framer-EbHUV .framer-80uxdv { gap: 18px; } .framer-EbHUV .framer-15ov3sn { height: 450px; order: 1; } .framer-EbHUV .framer-a842ys, .framer-EbHUV .framer-1ncyo2f { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-EbHUV .framer-15mxiv7 { align-content: flex-start; align-items: flex-start; flex-direction: column; padding: 0px 20px 0px 20px; } .framer-EbHUV .framer-10xk1wn { flex: none; height: 420px; width: 100%; } .framer-EbHUV .framer-oqbmy7 { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-EbHUV .framer-4d1wt2, .framer-EbHUV .framer-1uhv8k2, .framer-EbHUV .framer-1krld8y, .framer-EbHUV .framer-1mf87h2, .framer-EbHUV .framer-1fgwlx1, .framer-EbHUV .framer-xs7kb2, .framer-EbHUV .framer-12csdov, .framer-EbHUV .framer-iu4l71, .framer-EbHUV .framer-1bf3gok, .framer-EbHUV .framer-80uxdv, .framer-EbHUV .framer-u2sl9m, .framer-EbHUV .framer-1awwvbk, .framer-EbHUV .framer-1khrdk0, .framer-EbHUV .framer-vztv0y, .framer-EbHUV .framer-15mxiv7, .framer-EbHUV .framer-ein4h5, .framer-EbHUV .framer-17mil2c, .framer-EbHUV .framer-f4t532, .framer-EbHUV .framer-27g2n6 { gap: 0px; } .framer-EbHUV .framer-4d1wt2 > *, .framer-EbHUV .framer-1uhv8k2 > *, .framer-EbHUV .framer-1fgwlx1 > *, .framer-EbHUV .framer-iu4l71 > *, .framer-EbHUV .framer-u2sl9m > *, .framer-EbHUV .framer-1khrdk0 > *, .framer-EbHUV .framer-ein4h5 > *, .framer-EbHUV .framer-f4t532 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-EbHUV .framer-4d1wt2 > :first-child, .framer-EbHUV .framer-1uhv8k2 > :first-child, .framer-EbHUV .framer-1krld8y > :first-child, .framer-EbHUV .framer-1fgwlx1 > :first-child, .framer-EbHUV .framer-12csdov > :first-child, .framer-EbHUV .framer-iu4l71 > :first-child, .framer-EbHUV .framer-1bf3gok > :first-child, .framer-EbHUV .framer-80uxdv > :first-child, .framer-EbHUV .framer-u2sl9m > :first-child, .framer-EbHUV .framer-1awwvbk > :first-child, .framer-EbHUV .framer-1khrdk0 > :first-child, .framer-EbHUV .framer-vztv0y > :first-child, .framer-EbHUV .framer-15mxiv7 > :first-child, .framer-EbHUV .framer-ein4h5 > :first-child, .framer-EbHUV .framer-17mil2c > :first-child, .framer-EbHUV .framer-f4t532 > :first-child, .framer-EbHUV .framer-27g2n6 > :first-child { margin-top: 0px; } .framer-EbHUV .framer-4d1wt2 > :last-child, .framer-EbHUV .framer-1uhv8k2 > :last-child, .framer-EbHUV .framer-1krld8y > :last-child, .framer-EbHUV .framer-1fgwlx1 > :last-child, .framer-EbHUV .framer-12csdov > :last-child, .framer-EbHUV .framer-iu4l71 > :last-child, .framer-EbHUV .framer-1bf3gok > :last-child, .framer-EbHUV .framer-80uxdv > :last-child, .framer-EbHUV .framer-u2sl9m > :last-child, .framer-EbHUV .framer-1awwvbk > :last-child, .framer-EbHUV .framer-1khrdk0 > :last-child, .framer-EbHUV .framer-vztv0y > :last-child, .framer-EbHUV .framer-15mxiv7 > :last-child, .framer-EbHUV .framer-ein4h5 > :last-child, .framer-EbHUV .framer-17mil2c > :last-child, .framer-EbHUV .framer-f4t532 > :last-child, .framer-EbHUV .framer-27g2n6 > :last-child { margin-bottom: 0px; } .framer-EbHUV .framer-1krld8y > *, .framer-EbHUV .framer-1bf3gok > *, .framer-EbHUV .framer-1awwvbk > *, .framer-EbHUV .framer-vztv0y > *, .framer-EbHUV .framer-17mil2c > *, .framer-EbHUV .framer-27g2n6 > * { margin: 0px; margin-bottom: calc(62px / 2); margin-top: calc(62px / 2); } .framer-EbHUV .framer-1mf87h2 > *, .framer-EbHUV .framer-1mf87h2 > :first-child, .framer-EbHUV .framer-1mf87h2 > :last-child, .framer-EbHUV .framer-xs7kb2 > *, .framer-EbHUV .framer-xs7kb2 > :first-child, .framer-EbHUV .framer-xs7kb2 > :last-child { margin: 0px; } .framer-EbHUV .framer-12csdov > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-EbHUV .framer-80uxdv > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-EbHUV .framer-15mxiv7 > * { margin: 0px; margin-bottom: calc(52px / 2); margin-top: calc(52px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 11304.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"t6B1ZNwj8\":{\"layout\":[\"fixed\",\"auto\"]},\"UuTd3h3UJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerhEYx8viWv=withCSS(Component,css,\"framer-EbHUV\");export default FramerhEYx8viWv;FramerhEYx8viWv.displayName=\"Home 2\";FramerhEYx8viWv.defaultProps={height:11304.5,width:1200};addFonts(FramerhEYx8viWv,[{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\"}]},...SectionNavbarFonts,...ButtonFonts,...UtilityRatingFonts,...SectionTagFonts,...FeatureItemFonts,...ResultItemFonts,...SolutionPointFonts,...VideoFonts,...ServicesFonts,...HowItWorksFonts,...TestimonialSectionFonts,...BlogItemFonts,...FAQItemsFonts,...CTAFonts,...FooterFonts,...SmoothScrollFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhEYx8viWv\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"11304.5\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"t6B1ZNwj8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UuTd3h3UJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__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", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "icon", "id", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "BtSZH4unG", "Oi01xDewM", "pPaH9xr9H", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap5i0r1n", "args", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerOZATmk081", "withCSS", "OZATmk081_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "TabButtonFonts", "getFonts", "OZATmk081_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "pPaH9xr9H1kkzhkn", "args", "pPaH9xr9Hkbnbf1", "pPaH9xr9Hrzkisl", "pPaH9xr9Hem8j", "pPaH9xr9H1b4ktsa", "pPaH9xr9Hprh9xg", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerAcFpzs0Vr", "withCSS", "AcFpzs0Vr_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerIjOYJsMtg", "withCSS", "IjOYJsMtg_default", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "XuhxFlopr", "RFB_dgaI_", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap21uyum", "args", "onTapejgl9s", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "SVG", "css", "FramerNCHAMG8cv", "withCSS", "NCHAMG8cv_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "AccordionFonts", "getFonts", "NCHAMG8cv_default", "MotionDivWithFX", "withFX", "motion", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "transition3", "transition4", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "MotionDivWithFX", "NCHAMG8cv_default", "css", "FramerKHC9ipO_P", "withCSS", "KHC9ipO_P_default", "addFonts", "AccordionFonts", "containerStyles", "emptyStateStyle", "containerStyles", "NullState", "Y", "_", "ref", "p", "Component", "IconInner", "Icon", "React", "props", "ref", "House_default", "Icon", "defaultEvents", "ControlType", "findByArray", "arr", "search", "a", "useIconSelection", "iconKeys", "selectByList", "iconSearch", "iconSelection", "lowercaseIconKeyPairs", "iconSearchResult", "se", "iconSearchTerm", "_iconSearchTerm", "findByArray", "iconKeys", "moduleBaseUrl", "weightOptions", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "weight", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "House_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "piece", "defaultEvents", "PhosphorFonts", "getFonts", "Icon", "MotionDivWithFX", "withFX", "motion", "serializationHash", "variantClassNames", "animation", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "text", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "RqNVO8g2F", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "MotionDivWithFX", "cx", "serializationHash", "ComponentViewportProvider", "Icon", "RichText2", "css", "Frameruf3AtTgKm", "withCSS", "uf3AtTgKm_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "transition2", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "heading", "height", "icon", "id", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "mlNh9aWrf", "nnswguy0W", "XD7Kre3t6", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerWcMloee7m", "withCSS", "WcMloee7m_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "SectionNavbarFonts", "getFonts", "Bc98Nahig_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText2", "ButtonFonts", "hL5g3kPjk_default", "UtilityRatingFonts", "IjOYJsMtg_default", "ImageWithOptimizedAppearEffect", "Image2", "SectionTagFonts", "R8wjzs80R_default", "FeatureItemFonts", "WcMloee7m_default", "ImageWithFX", "withFX", "ResultItemFonts", "I9K5d3ERb_default", "SolutionPointFonts", "uf3AtTgKm_default", "VideoFonts", "Video", "MotionDivWithFX", "ServicesFonts", "EYXDjUBPP_default", "HowItWorksFonts", "AcFpzs0Vr_default", "TestimonialSectionFonts", "ylmpI39V7_default", "BlogItemFonts", "eirgJHc1B_default", "FAQItemsFonts", "KHC9ipO_P_default", "CTAFonts", "UMfPYrU4I_default", "FooterFonts", "nosHEQmJO_default", "SmoothScrollFonts", "SmoothScroll", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "addImageAlt", "image", "alt", "animation6", "transition4", "toString", "value", "toResponsiveImage", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation7", "transition5", "transition6", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "IVIfD_60mbStTs5yIT", "CuaFOEkb8bStTs5yIT", "isujqcr0bbStTs5yIT", "SMe3EBS_ObStTs5yIT", "idbStTs5yIT", "LQvrFkotlN1YNWAxqE", "g4YUUm96oN1YNWAxqE", "g6rBkdHL1N1YNWAxqE", "tNkTRure6N1YNWAxqE", "WYguv7jwYN1YNWAxqE", "idN1YNWAxqE", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "activeLocaleCode", "useLocaleCode", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "Bc98Nahig_default", "MotionDivWithOptimizedAppearEffect", "RichText2", "x", "RichTextWithOptimizedAppearEffect", "hL5g3kPjk_default", "IjOYJsMtg_default", "ImageWithOptimizedAppearEffect", "R8wjzs80R_default", "WcMloee7m_default", "ImageWithFX", "I9K5d3ERb_default", "ResolveLinks", "resolvedLinks", "uf3AtTgKm_default", "MotionDivWithFX", "Fetcher", "fetchResult", "Video", "Link", "Image2", "ChildrenCanSuspend", "YxBB_e8oE_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks1", "EYXDjUBPP_default", "AcFpzs0Vr_default", "ylmpI39V7_default", "resolvedLinks2", "hKe5G3eIl_default", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks3", "eirgJHc1B_default", "enumToDisplayNameFunctions", "KHC9ipO_P_default", "UMfPYrU4I_default", "nosHEQmJO_default", "SmoothScroll", "css", "FramerhEYx8viWv", "withCSS", "hEYx8viWv_default", "addFonts", "SectionNavbarFonts", "ButtonFonts", "UtilityRatingFonts", "SectionTagFonts", "FeatureItemFonts", "ResultItemFonts", "SolutionPointFonts", "VideoFonts", "ServicesFonts", "HowItWorksFonts", "TestimonialSectionFonts", "BlogItemFonts", "FAQItemsFonts", "CTAFonts", "FooterFonts", "SmoothScrollFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
