{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js", "ssg:https://framerusercontent.com/modules/1TRxFnjYc80RamiplSuj/ExuV3FQlNroPnw65mE0J/An5LRlZn4.js", "ssg:https://framerusercontent.com/modules/ppxc9zxATjEi778hywVQ/zvPaHp8SA0VzCPg1DH6H/B1dJrnEQE.js", "ssg:https://framerusercontent.com/modules/rNRo61TJqrJ2jCs972UK/mfXRAyLO1nERs5ERdVrN/rRm5lvNAI.js", "ssg:https://framerusercontent.com/modules/nk64rSuPzZh3753WBalw/1ZrJrFI2l4MVYcZYYLUd/OFCTThyeJ.js", "ssg:https://framerusercontent.com/modules/fpqZAnCZMqsw9sivFcVj/EKYxpSYBQjbnjXLwDGxx/t2fPRs1wQ.js", "ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js", "ssg:https://framerusercontent.com/modules/xn55dk5c8Y1oWnEezYdI/UJD4iaHnNSnOJjsTTU8a/jOYwn5083.js", "ssg:https://framerusercontent.com/modules/tXGCElSuVoVm6IeSECBZ/VLmvxS6pEfDPwzmPkxb5/vbkyQEMey.js", "ssg:https://framerusercontent.com/modules/81gQRIMe17NgyNi9LkTh/RKtHWiYYw1rEviulNKV2/X1msb2gIX.js", "ssg:https://framerusercontent.com/modules/6ukeI1ogbkh1DRzu3wVO/YHLgisH8aJc7RN6I62NQ/NvEHCHD3g.js", "ssg:https://framerusercontent.com/modules/ufV0WOVGh1tuQitTgosm/YhTFlGz5gle0wvtfEwzw/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled?\"metadata\":\"auto\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (21ec140)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,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/zcyoyisGgVWU3F585mRB/i556YsaTBJ1t9BMBxWur/zdBwB6iUh.js\";const cycleOrder=[\"BewqS2j3W\"];const serializationHash=\"framer-T2IAJ\";const variantClassNames={BewqS2j3W:\"framer-v-148hag2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({background,height,id,text,textColor,width,...props})=>{var _ref,_ref1,_ref2;return{...props,edZs8HWNA:(_ref=text!==null&&text!==void 0?text:props.edZs8HWNA)!==null&&_ref!==void 0?_ref:\"STEP 1\",nMp0wbRbd:(_ref1=textColor!==null&&textColor!==void 0?textColor:props.nMp0wbRbd)!==null&&_ref1!==void 0?_ref1:\"var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106))\",oqJJk_FLz:(_ref2=background!==null&&background!==void 0?background:props.oqJJk_FLz)!==null&&_ref2!==void 0?_ref2:\"var(--token-2e7ca838-c2ed-4206-b7ed-3a2bce7e945e, rgb(255, 255, 255))\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,oqJJk_FLz,edZs8HWNA,nMp0wbRbd,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BewqS2j3W\",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:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-148hag2\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"BewqS2j3W\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:oqJJk_FLz,borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14no3a8\",\"data-styles-preset\":\"zdBwB6iUh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-nMp0wbRbd-An5LRlZn4))\"},children:\"STEP 1\"})}),className:\"framer-sskmz2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"v5C3pb60S\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-nMp0wbRbd-An5LRlZn4)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-nMp0wbRbd-An5LRlZn4\":nMp0wbRbd},text:edZs8HWNA,verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-T2IAJ.framer-1ap67rq, .framer-T2IAJ .framer-1ap67rq { display: block; }\",\".framer-T2IAJ.framer-148hag2 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 24px 8px 24px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-T2IAJ .framer-sskmz2 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-T2IAJ.framer-148hag2 { gap: 0px; } .framer-T2IAJ.framer-148hag2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-T2IAJ.framer-148hag2 > :first-child { margin-left: 0px; } .framer-T2IAJ.framer-148hag2 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 43\n * @framerIntrinsicWidth 97\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"oqJJk_FLz\":\"background\",\"edZs8HWNA\":\"text\",\"nMp0wbRbd\":\"textColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAn5LRlZn4=withCSS(Component,css,\"framer-T2IAJ\");export default FramerAn5LRlZn4;FramerAn5LRlZn4.displayName=\"Step\";FramerAn5LRlZn4.defaultProps={height:43,width:97};addPropertyControls(FramerAn5LRlZn4,{oqJJk_FLz:{defaultValue:'var(--token-2e7ca838-c2ed-4206-b7ed-3a2bce7e945e, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',title:\"Background\",type:ControlType.Color},edZs8HWNA:{defaultValue:\"STEP 1\",displayTextArea:false,title:\"Text\",type:ControlType.String},nMp0wbRbd:{defaultValue:\"var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106))\",title:\"Text Color\",type:ControlType.Color}});addFonts(FramerAn5LRlZn4,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAn5LRlZn4\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"97\",\"framerVariables\":\"{\\\"oqJJk_FLz\\\":\\\"background\\\",\\\"edZs8HWNA\\\":\\\"text\\\",\\\"nMp0wbRbd\\\":\\\"textColor\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"43\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (adb54a5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import{Lottie}from\"https://framerusercontent.com/modules/YbkSqZ7STzW5WsMb1yan/7oWoX9MqdnxameM59dqC/Lottie.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/2sD435XKyzJPJWjA4uvx/40zsgI9ZmyYLX5rdUBE9/gMPmJemBu.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/zcyoyisGgVWU3F585mRB/i556YsaTBJ1t9BMBxWur/zdBwB6iUh.js\";const LottieFonts=getFonts(Lottie);const FeatherFonts=getFonts(Feather);const LottieControls=getPropertyControls(Lottie);const cycleOrder=[\"uhcJ6t6KF\",\"DlkKl5w6P\",\"tv7sRtauO\",\"WDPKGyXBG\"];const serializationHash=\"framer-co9ZF\";const variantClassNames={DlkKl5w6P:\"framer-v-1e85kce\",tv7sRtauO:\"framer-v-jok3e5\",uhcJ6t6KF:\"framer-v-1vvxo77\",WDPKGyXBG:\"framer-v-1ucs6wh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Mobile Close\":\"WDPKGyXBG\",\"Mobile Open\":\"tv7sRtauO\",Close:\"DlkKl5w6P\",Open:\"uhcJ6t6KF\"};const getProps=({height,id,json,text,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,fM2kt6AqE:(_ref=json!==null&&json!==void 0?json:props.fM2kt6AqE)!==null&&_ref!==void 0?_ref:\"https://framerusercontent.com/assets/A8lM3t9rAp9qnSP2AglO403BiQ.json\",iSn1Zo9nx:(_ref1=title!==null&&title!==void 0?title:props.iSn1Zo9nx)!==null&&_ref1!==void 0?_ref1:\"Equity is our priority\",QsmaiXNDC:(_ref2=text!==null&&text!==void 0?text:props.QsmaiXNDC)!==null&&_ref2!==void 0?_ref2:\"Your path to homeownership made Simple. Trust our seasoned professionals to find tailored.\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"uhcJ6t6KF\"};};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,iSn1Zo9nx,QsmaiXNDC,fM2kt6AqE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"uhcJ6t6KF\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1y9gvnu=activeVariantCallback(async(...args)=>{setVariant(\"DlkKl5w6P\");});const onTap1eed4dl=activeVariantCallback(async(...args)=>{setVariant(\"uhcJ6t6KF\");});const onTap1wko42r=activeVariantCallback(async(...args)=>{setVariant(\"WDPKGyXBG\");});const onTap125kaoo=activeVariantCallback(async(...args)=>{setVariant(\"tv7sRtauO\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"DlkKl5w6P\",\"WDPKGyXBG\"].includes(baseVariant))return false;return true;};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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1vvxo77\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Open\",layoutDependency:layoutDependency,layoutId:\"uhcJ6t6KF\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(13, 36, 64, 0.16)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},...addPropertyOverrides({DlkKl5w6P:{\"data-framer-name\":\"Close\"},tv7sRtauO:{\"data-framer-name\":\"Mobile Open\"},WDPKGyXBG:{\"data-framer-name\":\"Mobile Close\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-184jyvb\",\"data-framer-name\":\"Title\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ShcDZIloN\",onTap:onTap1y9gvnu,...addPropertyOverrides({DlkKl5w6P:{onTap:onTap1eed4dl},tv7sRtauO:{onTap:onTap1wko42r},WDPKGyXBG:{onTap:onTap125kaoo}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ak2zht\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"G9yFNR7Lh\",style:{backgroundColor:\"var(--token-d5c875a4-1fca-4a74-8166-91d6bf8f9009, rgb(205, 255, 251))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wdixmc-container\",layoutDependency:layoutDependency,layoutId:\"YsKJl2FhX-container\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"YsKJl2FhX\",isForwardsDirection:true,layoutId:\"YsKJl2FhX\",loop:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:fM2kt6AqE,srcType:\"Upload\",srcUrl:\"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rm3err\",layoutDependency:layoutDependency,layoutId:\"adbomjZQt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-qu5r37\",\"data-styles-preset\":\"gMPmJemBu\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, rgb(13, 36, 64)))\"},children:\"Equity is our priority\"})}),className:\"framer-1h5kcxr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gRnmA5J3r\",style:{\"--extracted-1eung3n\":\"var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, rgb(13, 36, 64))\",\"--framer-paragraph-spacing\":\"0px\"},text:iSn1Zo9nx,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hfe37f\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"YEiBsLrK0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14no3a8\",\"data-styles-preset\":\"zdBwB6iUh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106)))\"},children:\"Your path to homeownership made Simple. Trust our seasoned professionals to find tailored.\"})}),className:\"framer-13psr9k\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dGOC8FPrw\",style:{\"--extracted-r6o4lv\":\"var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106))\",\"--framer-paragraph-spacing\":\"0px\"},text:QsmaiXNDC,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cx9a0c\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"tKhkxT14c\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-167xxl8-container\",layoutDependency:layoutDependency,layoutId:\"oSctpKPtg-container\",style:{rotate:0},variants:{DlkKl5w6P:{rotate:540},WDPKGyXBG:{rotate:540}},children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, rgb(13, 36, 64))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"chevron-up\",id:\"oSctpKPtg\",layoutId:\"oSctpKPtg\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-co9ZF.framer-tdupax, .framer-co9ZF .framer-tdupax { display: block; }\",\".framer-co9ZF.framer-1vvxo77 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 32px 0px; position: relative; width: 500px; }\",\".framer-co9ZF .framer-184jyvb { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-co9ZF .framer-1ak2zht { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 48px; }\",\".framer-co9ZF .framer-1wdixmc-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-co9ZF .framer-rm3err { 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: visible; padding: 8px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-co9ZF .framer-1h5kcxr, .framer-co9ZF .framer-13psr9k { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-co9ZF .framer-1hfe37f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 20px 0px 0px; position: relative; width: 100%; }\",\".framer-co9ZF .framer-1cx9a0c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-co9ZF .framer-167xxl8-container { flex: none; height: 24px; position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-co9ZF.framer-1vvxo77, .framer-co9ZF .framer-184jyvb, .framer-co9ZF .framer-1ak2zht, .framer-co9ZF .framer-rm3err, .framer-co9ZF .framer-1hfe37f, .framer-co9ZF .framer-1cx9a0c { gap: 0px; } .framer-co9ZF.framer-1vvxo77 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-co9ZF.framer-1vvxo77 > :first-child, .framer-co9ZF .framer-rm3err > :first-child, .framer-co9ZF .framer-1hfe37f > :first-child { margin-top: 0px; } .framer-co9ZF.framer-1vvxo77 > :last-child, .framer-co9ZF .framer-rm3err > :last-child, .framer-co9ZF .framer-1hfe37f > :last-child { margin-bottom: 0px; } .framer-co9ZF .framer-184jyvb > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-co9ZF .framer-184jyvb > :first-child, .framer-co9ZF .framer-1ak2zht > :first-child, .framer-co9ZF .framer-1cx9a0c > :first-child { margin-left: 0px; } .framer-co9ZF .framer-184jyvb > :last-child, .framer-co9ZF .framer-1ak2zht > :last-child, .framer-co9ZF .framer-1cx9a0c > :last-child { margin-right: 0px; } .framer-co9ZF .framer-1ak2zht > *, .framer-co9ZF .framer-1cx9a0c > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-co9ZF .framer-rm3err > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-co9ZF .framer-1hfe37f > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-co9ZF.framer-v-jok3e5.framer-1vvxo77, .framer-co9ZF.framer-v-1ucs6wh.framer-1vvxo77 { gap: 12px; padding: 0px 0px 20px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-co9ZF.framer-v-jok3e5.framer-1vvxo77 { gap: 0px; } .framer-co9ZF.framer-v-jok3e5.framer-1vvxo77 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-co9ZF.framer-v-jok3e5.framer-1vvxo77 > :first-child { margin-top: 0px; } .framer-co9ZF.framer-v-jok3e5.framer-1vvxo77 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-co9ZF.framer-v-1ucs6wh.framer-1vvxo77 { gap: 0px; } .framer-co9ZF.framer-v-1ucs6wh.framer-1vvxo77 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-co9ZF.framer-v-1ucs6wh.framer-1vvxo77 > :first-child { margin-top: 0px; } .framer-co9ZF.framer-v-1ucs6wh.framer-1vvxo77 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-co9ZF[data-border=\"true\"]::after, .framer-co9ZF [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 138\n * @framerIntrinsicWidth 500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"DlkKl5w6P\":{\"layout\":[\"fixed\",\"auto\"]},\"tv7sRtauO\":{\"layout\":[\"fixed\",\"auto\"]},\"WDPKGyXBG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"iSn1Zo9nx\":\"title\",\"QsmaiXNDC\":\"text\",\"fM2kt6AqE\":\"json\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerB1dJrnEQE=withCSS(Component,css,\"framer-co9ZF\");export default FramerB1dJrnEQE;FramerB1dJrnEQE.displayName=\"Single Faq 01\";FramerB1dJrnEQE.defaultProps={height:138,width:500};addPropertyControls(FramerB1dJrnEQE,{variant:{options:[\"uhcJ6t6KF\",\"DlkKl5w6P\",\"tv7sRtauO\",\"WDPKGyXBG\"],optionTitles:[\"Open\",\"Close\",\"Mobile Open\",\"Mobile Close\"],title:\"Variant\",type:ControlType.Enum},iSn1Zo9nx:{defaultValue:\"Equity is our priority\",displayTextArea:false,title:\"Title\",type:ControlType.String},QsmaiXNDC:{defaultValue:\"Your path to homeownership made Simple. Trust our seasoned professionals to find tailored.\",displayTextArea:false,title:\"Text\",type:ControlType.String},fM2kt6AqE:(LottieControls===null||LottieControls===void 0?void 0:LottieControls[\"srcFile\"])&&{...LottieControls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,A8lM3t9rAp9qnSP2AglO403BiQ.json?originalFilename=Idea.json\",description:undefined,hidden:undefined,title:\"Json\"}});addFonts(FramerB1dJrnEQE,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...LottieFonts,...FeatherFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerB1dJrnEQE\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"500\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DlkKl5w6P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tv7sRtauO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WDPKGyXBG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"iSn1Zo9nx\\\":\\\"title\\\",\\\"QsmaiXNDC\\\":\\\"text\\\",\\\"fM2kt6AqE\\\":\\\"json\\\"}\",\"framerIntrinsicHeight\":\"138\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e2fa450)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SingleFaq01 from\"https://framerusercontent.com/modules/ppxc9zxATjEi778hywVQ/zvPaHp8SA0VzCPg1DH6H/B1dJrnEQE.js\";const SingleFaq01Fonts=getFonts(SingleFaq01);const cycleOrder=[\"kJb4hRvJA\",\"SYeS9FOsY\"];const serializationHash=\"framer-hLv8I\";const variantClassNames={kJb4hRvJA:\"framer-v-1il6ude\",SYeS9FOsY:\"framer-v-w0kj95\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"kJb4hRvJA\",\"Variant 2\":\"SYeS9FOsY\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"kJb4hRvJA\"};};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({cycleOrder,defaultVariant:\"kJb4hRvJA\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1il6ude\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"kJb4hRvJA\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({SYeS9FOsY:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:138,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||498)-0-478)/2+0+0),...addPropertyOverrides({SYeS9FOsY:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||438)-0-454)/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-sh900i-container\",layoutDependency:layoutDependency,layoutId:\"XTHRlisE8-container\",children:/*#__PURE__*/_jsx(SingleFaq01,{height:\"100%\",id:\"XTHRlisE8\",iSn1Zo9nx:\"Solutions based finance\",layoutId:\"XTHRlisE8\",QsmaiXNDC:\"At Ian Cook Finance, we offer solutions-based finance tailored to your needs. As your finance broker in Brisbane, we understand your financial goals and challenges, creating customised strategies for you. Whether you\u2019re self-employed, have a complex situation, and looking for a competitive interest rate, we provide innovative solutions that work. Our client-centric approach ensures you get effective and efficient financing options.\",style:{width:\"100%\"},variant:\"uhcJ6t6KF\",width:\"100%\",...addPropertyOverrides({SYeS9FOsY:{variant:\"tv7sRtauO\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:138,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||498)-0-478)/2+138+32),...addPropertyOverrides({SYeS9FOsY:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||438)-0-454)/2+138+20)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19w9tkd-container\",layoutDependency:layoutDependency,layoutId:\"zr25WLE1v-container\",children:/*#__PURE__*/_jsx(SingleFaq01,{fM2kt6AqE:\"https://framerusercontent.com/assets/t2r8izgB9X8tve9c9LgljScHkc.json\",height:\"100%\",id:\"zr25WLE1v\",iSn1Zo9nx:\"Simplified loan processing\",layoutId:\"zr25WLE1v\",QsmaiXNDC:\"Navigating the loan process can be overwhelming, but Ian Cook Finance makes it straightforward and stress-free. As a trusted finance broker in Brisbane, we handle all the paperwork and negotiations. From consultation to approval, our simplified loan processing saves you time and avoids complications. Focus on your property goals while we manage the details for a smooth, hassle-free experience.\",style:{width:\"100%\"},variant:\"DlkKl5w6P\",width:\"100%\",...addPropertyOverrides({SYeS9FOsY:{variant:\"WDPKGyXBG\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:138,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||498)-0-478)/2+276+64),...addPropertyOverrides({SYeS9FOsY:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||438)-0-454)/2+276+40)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rdii6e-container\",layoutDependency:layoutDependency,layoutId:\"UikwlHPMA-container\",children:/*#__PURE__*/_jsx(SingleFaq01,{fM2kt6AqE:\"https://framerusercontent.com/assets/UwkZS3R4uptoe2nmoBDbZuSgHzI.json\",height:\"100%\",id:\"UikwlHPMA\",iSn1Zo9nx:\"Trusted network of advisors\",layoutId:\"UikwlHPMA\",QsmaiXNDC:\"Our trusted network of advisers sets us apart as a leading finance broker in Brisbane. We work with reputable lenders and financial institutions to offer loan options to suit your needs. Our experienced advisers provide honest, unbiased advice. With Ian Cook Finance, you access a wealth of knowledge and resources, ensuring informed decisions and advantageous loan terms. Trust our network to support you every step of the way.\",style:{width:\"100%\"},variant:\"DlkKl5w6P\",width:\"100%\",...addPropertyOverrides({SYeS9FOsY:{variant:\"WDPKGyXBG\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hLv8I.framer-1agwtf7, .framer-hLv8I .framer-1agwtf7 { display: block; }\",\".framer-hLv8I.framer-1il6ude { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 607px; }\",\".framer-hLv8I .framer-sh900i-container, .framer-hLv8I .framer-19w9tkd-container, .framer-hLv8I .framer-1rdii6e-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hLv8I.framer-1il6ude { gap: 0px; } .framer-hLv8I.framer-1il6ude > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-hLv8I.framer-1il6ude > :first-child { margin-top: 0px; } .framer-hLv8I.framer-1il6ude > :last-child { margin-bottom: 0px; } }\",\".framer-hLv8I.framer-v-w0kj95.framer-1il6ude { gap: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hLv8I.framer-v-w0kj95.framer-1il6ude { gap: 0px; } .framer-hLv8I.framer-v-w0kj95.framer-1il6ude > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-hLv8I.framer-v-w0kj95.framer-1il6ude > :first-child { margin-top: 0px; } .framer-hLv8I.framer-v-w0kj95.framer-1il6ude > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 498\n * @framerIntrinsicWidth 607\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"SYeS9FOsY\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrRm5lvNAI=withCSS(Component,css,\"framer-hLv8I\");export default FramerrRm5lvNAI;FramerrRm5lvNAI.displayName=\"Faq Area 01\";FramerrRm5lvNAI.defaultProps={height:498,width:607};addPropertyControls(FramerrRm5lvNAI,{variant:{options:[\"kJb4hRvJA\",\"SYeS9FOsY\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerrRm5lvNAI,[{explicitInter:true,fonts:[]},...SingleFaq01Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrRm5lvNAI\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"498\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SYeS9FOsY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"607\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rRm5lvNAI.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Medium\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{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://app.framerstatic.com/Inter-Medium.cyrillic-ext-M4WHNGTS.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Medium.cyrillic-JVU2PANX.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Medium.greek-ext-4KCQBEIZ.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Medium.greek-DPOQGN7L.woff2\",weight:\"500\"},{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://app.framerstatic.com/Inter-Medium.latin-ext-J4DBSW7F.woff2\",weight:\"500\"},{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://app.framerstatic.com/Inter-Medium.latin-Y3IVPL46.woff2\",weight:\"500\"},{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://app.framerstatic.com/Inter-Medium.vietnamese-PJV76O4P.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-ext-XOTVL7ZR.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://app.framerstatic.com/Inter-Bold.cyrillic-6LOMBC2V.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-ext-WXWSJXLB.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-YRST7ODZ.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://app.framerstatic.com/Inter-Bold.latin-ext-BASA5UL3.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://app.framerstatic.com/Inter-Bold.latin-UCM45LQF.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://app.framerstatic.com/Inter-Bold.vietnamese-OEVJMXEP.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://app.framerstatic.com/Inter-BoldItalic.cyrillic-ext-PEYDHC3S.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://app.framerstatic.com/Inter-BoldItalic.cyrillic-7EIL6JWG.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-ext-3DJOYQMH.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-TJBTLTT7.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://app.framerstatic.com/Inter-BoldItalic.latin-ext-FVPCPRBJ.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://app.framerstatic.com/Inter-BoldItalic.latin-5ZFQS4XK.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://app.framerstatic.com/Inter-BoldItalic.vietnamese-W2625PGF.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://app.framerstatic.com/Inter-Italic.cyrillic-ext-YDGMJOJO.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://app.framerstatic.com/Inter-Italic.cyrillic-BFOVMAQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Italic.greek-ext-4KOU3AHC.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Italic.greek-OJTBJNE6.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://app.framerstatic.com/Inter-Italic.latin-ext-H4B22QN6.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://app.framerstatic.com/Inter-Italic.latin-2DWX32EN.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://app.framerstatic.com/Inter-Italic.vietnamese-TYMT6CKW.woff2\",weight:\"400\"}]}];export const css=['.framer-Zt5nY .framer-styles-preset-11o6jg3:not(.rich-text-wrapper), .framer-Zt5nY .framer-styles-preset-11o6jg3.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.7em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-Zt5nY\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (461de17)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/nk64rSuPzZh3753WBalw/1ZrJrFI2l4MVYcZYYLUd/OFCTThyeJ.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/zcyoyisGgVWU3F585mRB/i556YsaTBJ1t9BMBxWur/zdBwB6iUh.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const cycleOrder=[\"kJ3bEL3Q9\",\"tDZbmRnLj\"];const serializationHash=\"framer-il0p6\";const variantClassNames={kJ3bEL3Q9:\"framer-v-1w9xvzi\",tDZbmRnLj:\"framer-v-1frw745\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Dark:\"kJ3bEL3Q9\",White:\"tDZbmRnLj\"};const getProps=({height,icon,id,text,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,c4yLon5u9:(_ref=text!==null&&text!==void 0?text:props.c4yLon5u9)!==null&&_ref!==void 0?_ref:\"Offering competitive interest rates to help\",HTQgcP2Oq:(_ref1=icon!==null&&icon!==void 0?icon:props.HTQgcP2Oq)!==null&&_ref1!==void 0?_ref1:\"House\",POyisJCtV:(_ref2=title!==null&&title!==void 0?title:props.POyisJCtV)!==null&&_ref2!==void 0?_ref2:\"Competitive Rates\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"kJ3bEL3Q9\"};};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,POyisJCtV,c4yLon5u9,HTQgcP2Oq,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"kJ3bEL3Q9\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);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-1w9xvzi\",className,classNames),\"data-framer-name\":\"Dark\",layoutDependency:layoutDependency,layoutId:\"kJ3bEL3Q9\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({tDZbmRnLj:{\"data-framer-name\":\"White\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jkiydo\",\"data-framer-name\":\"Icon & Title\",layoutDependency:layoutDependency,layoutId:\"WrXmOmKub\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-6k6fa5\",\"data-framer-name\":\"Icon Box\",layoutDependency:layoutDependency,layoutId:\"KO3GZfnwC\",style:{backgroundColor:\"var(--token-b1e15d65-ee32-467a-b5be-1400a72e803b, rgb(0, 171, 181))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},variants:{tDZbmRnLj:{backgroundColor:\"rgba(255, 255, 255, 0.1)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lquy38-container\",layoutDependency:layoutDependency,layoutId:\"bbRMapUQz-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2e7ca838-c2ed-4206-b7ed-3a2bce7e945e, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:HTQgcP2Oq,id:\"bbRMapUQz\",layoutId:\"bbRMapUQz\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11o6jg3\",\"data-styles-preset\":\"OFCTThyeJ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, rgb(13, 36, 64)))\"},children:\"Competitive Rates\"})}),className:\"framer-r6e2yc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mmKg6co3W\",style:{\"--extracted-r6o4lv\":\"var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, rgb(13, 36, 64))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:POyisJCtV,variants:{tDZbmRnLj:{\"--extracted-r6o4lv\":\"var(--token-2e7ca838-c2ed-4206-b7ed-3a2bce7e945e, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({tDZbmRnLj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11o6jg3\",\"data-styles-preset\":\"OFCTThyeJ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e7ca838-c2ed-4206-b7ed-3a2bce7e945e, rgb(255, 255, 255)))\"},children:\"Competitive Rates\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-m4yi82\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"xtCIW_ACP\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14no3a8\",\"data-styles-preset\":\"zdBwB6iUh\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106)))\"},children:\"Offering competitive interest rates to help\"})}),className:\"framer-4fqonw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"N_tfeEucX\",style:{\"--extracted-r6o4lv\":\"var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:1},text:c4yLon5u9,variants:{tDZbmRnLj:{\"--extracted-r6o4lv\":\"var(--token-b236c098-f886-4067-ab6b-c27f71663a3d, rgb(249, 249, 250))\",opacity:.7}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({tDZbmRnLj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14no3a8\",\"data-styles-preset\":\"zdBwB6iUh\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b236c098-f886-4067-ab6b-c27f71663a3d, rgb(249, 249, 250)))\"},children:\"Offering competitive interest rates to help\"})})}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-il0p6.framer-gj1c9b, .framer-il0p6 .framer-gj1c9b { display: block; }\",\".framer-il0p6.framer-1w9xvzi { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 270px; }\",\".framer-il0p6 .framer-jkiydo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-il0p6 .framer-6k6fa5 { 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, 40px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-il0p6 .framer-1lquy38-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-il0p6 .framer-r6e2yc { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-il0p6 .framer-m4yi82 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 56px; position: relative; width: 100%; }\",\".framer-il0p6 .framer-4fqonw { 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-il0p6.framer-1w9xvzi, .framer-il0p6 .framer-jkiydo, .framer-il0p6 .framer-6k6fa5, .framer-il0p6 .framer-m4yi82 { gap: 0px; } .framer-il0p6.framer-1w9xvzi > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-il0p6.framer-1w9xvzi > :first-child, .framer-il0p6 .framer-m4yi82 > :first-child { margin-top: 0px; } .framer-il0p6.framer-1w9xvzi > :last-child, .framer-il0p6 .framer-m4yi82 > :last-child { margin-bottom: 0px; } .framer-il0p6 .framer-jkiydo > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-il0p6 .framer-jkiydo > :first-child, .framer-il0p6 .framer-6k6fa5 > :first-child { margin-left: 0px; } .framer-il0p6 .framer-jkiydo > :last-child, .framer-il0p6 .framer-6k6fa5 > :last-child { margin-right: 0px; } .framer-il0p6 .framer-6k6fa5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-il0p6 .framer-m4yi82 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 94.5\n * @framerIntrinsicWidth 270\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"tDZbmRnLj\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"POyisJCtV\":\"title\",\"c4yLon5u9\":\"text\",\"HTQgcP2Oq\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framert2fPRs1wQ=withCSS(Component,css,\"framer-il0p6\");export default Framert2fPRs1wQ;Framert2fPRs1wQ.displayName=\"Single Icon Box\";Framert2fPRs1wQ.defaultProps={height:94.5,width:270};addPropertyControls(Framert2fPRs1wQ,{variant:{options:[\"kJ3bEL3Q9\",\"tDZbmRnLj\"],optionTitles:[\"Dark\",\"White\"],title:\"Variant\",type:ControlType.Enum},POyisJCtV:{defaultValue:\"Competitive Rates\",displayTextArea:false,title:\"Title\",type:ControlType.String},c4yLon5u9:{defaultValue:\"Offering competitive interest rates to help\",displayTextArea:false,title:\"Text\",type:ControlType.String},HTQgcP2Oq:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"House\",description:undefined,hidden:undefined,title:\"Icon\"}});addFonts(Framert2fPRs1wQ,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framert2fPRs1wQ\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tDZbmRnLj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"94.5\",\"framerVariables\":\"{\\\"POyisJCtV\\\":\\\"title\\\",\\\"c4yLon5u9\\\":\\\"text\\\",\\\"HTQgcP2Oq\\\":\\\"icon\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"270\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)measure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (68f6254)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/gvAvTkcYGCbdYFtBSJbN/BMaQEDrFKgFKkDXmdv1d/Ao2jE9KNp.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/2sD435XKyzJPJWjA4uvx/40zsgI9ZmyYLX5rdUBE9/gMPmJemBu.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/9IvquAfopVSi6Hvk1VLb/JMAPKyrgTm6ICoiEqO2r/UoezRVdYA.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"WsokcIlT1\",\"tvDLJDtcG\",\"WH6wpZ5SB\",\"ohnrbTElo\",\"L_K_mRy9I\"];const serializationHash=\"framer-klnfz\";const variantClassNames={L_K_mRy9I:\"framer-v-12m5wsr\",ohnrbTElo:\"framer-v-k0q934\",tvDLJDtcG:\"framer-v-y58qfg\",WH6wpZ5SB:\"framer-v-wspt12\",WsokcIlT1:\"framer-v-ofy21h\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Small 2\":\"L_K_mRy9I\",Desktop:\"WsokcIlT1\",Laptop:\"tvDLJDtcG\",Mobile:\"ohnrbTElo\",Tablet:\"WH6wpZ5SB\"};const getProps=({authorImage,authorName,designation,height,id,text,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4;return{...props,ISM7pHHZF:(_ref=authorName!==null&&authorName!==void 0?authorName:props.ISM7pHHZF)!==null&&_ref!==void 0?_ref:\"Saoirse Ronan\",JRtogcdzl:(_ref1=authorImage!==null&&authorImage!==void 0?authorImage:props.JRtogcdzl)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/GTQK8DccFBpKEYKi1jE74cro.png\"},KBxYLAx7R:(_ref2=text!==null&&text!==void 0?text:props.KBxYLAx7R)!==null&&_ref2!==void 0?_ref2:\"\u201CI'm grateful for their honesty and transparency throughout the process.\u201D\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"WsokcIlT1\",zWbZ6Lair:(_ref4=designation!==null&&designation!==void 0?designation:props.zWbZ6Lair)!==null&&_ref4!==void 0?_ref4:\"North Brisbane\"};};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,KBxYLAx7R,JRtogcdzl,ISM7pHHZF,zWbZ6Lair,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WsokcIlT1\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ofy21h\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"WsokcIlT1\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-0220d559-4f55-45ab-aa6e-be20eee5953e, rgb(239, 242, 245))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({L_K_mRy9I:{\"data-framer-name\":\"Small 2\"},ohnrbTElo:{\"data-framer-name\":\"Mobile\"},tvDLJDtcG:{\"data-framer-name\":\"Laptop\"},WH6wpZ5SB:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j81xl7\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"HhIhrQn5M\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kddrxy\",\"data-framer-name\":\"Stars\",layoutDependency:layoutDependency,layoutId:\"xlIWgTieW\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gar0d6-container\",layoutDependency:layoutDependency,layoutId:\"yTICeUDfX-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 213, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"yTICeUDfX\",layoutId:\"yTICeUDfX\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uwi2eu-container\",layoutDependency:layoutDependency,layoutId:\"aD7FOx3Ys-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 213, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"aD7FOx3Ys\",layoutId:\"aD7FOx3Ys\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-z36lap-container\",layoutDependency:layoutDependency,layoutId:\"LCfVyy6m8-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 213, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"LCfVyy6m8\",layoutId:\"LCfVyy6m8\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cq1d55-container\",layoutDependency:layoutDependency,layoutId:\"L5IwF1B_l-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 213, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"L5IwF1B_l\",layoutId:\"L5IwF1B_l\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16zk7yk-container\",layoutDependency:layoutDependency,layoutId:\"SlKp6TQge-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 213, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"SlKp6TQge\",layoutId:\"SlKp6TQge\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-qu5r37\",\"data-styles-preset\":\"gMPmJemBu\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, rgb(13, 36, 64)))\"},children:\"\u201CI'm grateful for their honesty and transparency throughout the process.\u201D\"})}),className:\"framer-12xk4o\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pUHibJqrS\",style:{\"--extracted-1eung3n\":\"var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, rgb(13, 36, 64))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:KBxYLAx7R,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({L_K_mRy9I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, rgb(13, 36, 64)))\"},children:\"\u201CI'm grateful for their honesty and transparency throughout the process.\u201D\"})}),fonts:[\"Inter-Medium\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z85onm\",\"data-framer-name\":\"Author\",layoutDependency:layoutDependency,layoutId:\"AhnCKg6JA\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4e3,pixelWidth:6e3,sizes:\"50px\",...toResponsiveImage(JRtogcdzl)},className:\"framer-je0rx7\",\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"ada_5lNRk\",style:{borderBottomLeftRadius:99,borderBottomRightRadius:99,borderTopLeftRadius:99,borderTopRightRadius:99}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yh313r\",\"data-framer-name\":\"Author Details\",layoutDependency:layoutDependency,layoutId:\"tB8U82PM4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-13uz9tq\",\"data-styles-preset\":\"UoezRVdYA\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, rgb(13, 36, 64)))\"},children:\"Saoirse Ronan\"})}),className:\"framer-1ebez85\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"neXK9O3K6\",style:{\"--extracted-r6o4lv\":\"var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, rgb(13, 36, 64))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:ISM7pHHZF,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syn6rx\",\"data-styles-preset\":\"Ao2jE9KNp\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106)))\"},children:\"Mortgage Closer\"})}),className:\"framer-1ug16bn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FHV5FqOLT\",style:{\"--extracted-r6o4lv\":\"var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:zWbZ6Lair,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-klnfz.framer-874g90, .framer-klnfz .framer-874g90 { display: block; }\",\".framer-klnfz.framer-ofy21h { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 392px; will-change: var(--framer-will-change-override, transform); }\",\".framer-klnfz .framer-j81xl7 { 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-klnfz .framer-1kddrxy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-klnfz .framer-gar0d6-container, .framer-klnfz .framer-1uwi2eu-container, .framer-klnfz .framer-z36lap-container, .framer-klnfz .framer-cq1d55-container, .framer-klnfz .framer-16zk7yk-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-klnfz .framer-12xk4o, .framer-klnfz .framer-1ebez85, .framer-klnfz .framer-1ug16bn { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-klnfz .framer-z85onm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-klnfz .framer-je0rx7 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-klnfz .framer-yh313r { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-klnfz.framer-ofy21h, .framer-klnfz .framer-j81xl7, .framer-klnfz .framer-1kddrxy, .framer-klnfz .framer-z85onm, .framer-klnfz .framer-yh313r { gap: 0px; } .framer-klnfz.framer-ofy21h > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-klnfz.framer-ofy21h > :first-child, .framer-klnfz .framer-j81xl7 > :first-child, .framer-klnfz .framer-yh313r > :first-child { margin-top: 0px; } .framer-klnfz.framer-ofy21h > :last-child, .framer-klnfz .framer-j81xl7 > :last-child, .framer-klnfz .framer-yh313r > :last-child { margin-bottom: 0px; } .framer-klnfz .framer-j81xl7 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-klnfz .framer-1kddrxy > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-klnfz .framer-1kddrxy > :first-child, .framer-klnfz .framer-z85onm > :first-child { margin-left: 0px; } .framer-klnfz .framer-1kddrxy > :last-child, .framer-klnfz .framer-z85onm > :last-child { margin-right: 0px; } .framer-klnfz .framer-z85onm > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-klnfz .framer-yh313r > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-klnfz.framer-v-y58qfg.framer-ofy21h { width: 324px; }\",\".framer-klnfz.framer-v-wspt12.framer-ofy21h { width: 345px; }\",\".framer-klnfz.framer-v-k0q934.framer-ofy21h { width: 330px; }\",\".framer-klnfz.framer-v-12m5wsr.framer-ofy21h { width: 280px; }\",\".framer-klnfz.framer-v-12m5wsr .framer-j81xl7 { gap: unset; height: 172px; justify-content: space-between; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-klnfz.framer-v-12m5wsr .framer-j81xl7 { gap: 0px; } .framer-klnfz.framer-v-12m5wsr .framer-j81xl7 > *, .framer-klnfz.framer-v-12m5wsr .framer-j81xl7 > :first-child, .framer-klnfz.framer-v-12m5wsr .framer-j81xl7 > :last-child { margin: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-klnfz[data-border=\"true\"]::after, .framer-klnfz [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 271\n * @framerIntrinsicWidth 392\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"tvDLJDtcG\":{\"layout\":[\"fixed\",\"auto\"]},\"WH6wpZ5SB\":{\"layout\":[\"fixed\",\"auto\"]},\"ohnrbTElo\":{\"layout\":[\"fixed\",\"auto\"]},\"L_K_mRy9I\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"KBxYLAx7R\":\"text\",\"JRtogcdzl\":\"authorImage\",\"ISM7pHHZF\":\"authorName\",\"zWbZ6Lair\":\"designation\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjOYwn5083=withCSS(Component,css,\"framer-klnfz\");export default FramerjOYwn5083;FramerjOYwn5083.displayName=\"Single Testimonial 01\";FramerjOYwn5083.defaultProps={height:271,width:392};addPropertyControls(FramerjOYwn5083,{variant:{options:[\"WsokcIlT1\",\"tvDLJDtcG\",\"WH6wpZ5SB\",\"ohnrbTElo\",\"L_K_mRy9I\"],optionTitles:[\"Desktop\",\"Laptop\",\"Tablet\",\"Mobile\",\"Small 2\"],title:\"Variant\",type:ControlType.Enum},KBxYLAx7R:{defaultValue:\"\u201CI'm grateful for their honesty and transparency throughout the process.\u201D\",displayTextArea:false,title:\"Text\",type:ControlType.String},JRtogcdzl:{__defaultAssetReference:\"data:framer/asset-reference,GTQK8DccFBpKEYKi1jE74cro.png?originalFilename=Image+%2814%29.png&preferredSize=auto\",title:\" Author Image\",type:ControlType.ResponsiveImage},ISM7pHHZF:{defaultValue:\"Saoirse Ronan\",displayTextArea:false,title:\"Author Name\",type:ControlType.String},zWbZ6Lair:{defaultValue:\"North Brisbane\",displayTextArea:false,placeholder:\"\",title:\"Designation\",type:ControlType.String}});addFonts(FramerjOYwn5083,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.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://app.framerstatic.com/Inter-Medium.cyrillic-ext-M4WHNGTS.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Medium.cyrillic-JVU2PANX.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Medium.greek-ext-4KCQBEIZ.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Medium.greek-DPOQGN7L.woff2\",weight:\"500\"},{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://app.framerstatic.com/Inter-Medium.latin-ext-J4DBSW7F.woff2\",weight:\"500\"},{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://app.framerstatic.com/Inter-Medium.latin-Y3IVPL46.woff2\",weight:\"500\"},{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://app.framerstatic.com/Inter-Medium.vietnamese-PJV76O4P.woff2\",weight:\"500\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjOYwn5083\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"392\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tvDLJDtcG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WH6wpZ5SB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ohnrbTElo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"L_K_mRy9I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"KBxYLAx7R\\\":\\\"text\\\",\\\"JRtogcdzl\\\":\\\"authorImage\\\",\\\"ISM7pHHZF\\\":\\\"authorName\\\",\\\"zWbZ6Lair\\\":\\\"designation\\\"}\",\"framerIntrinsicHeight\":\"271\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (68f6254)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";import SingleTestimonial01 from\"https://framerusercontent.com/modules/xn55dk5c8Y1oWnEezYdI/UJD4iaHnNSnOJjsTTU8a/jOYwn5083.js\";const SingleTestimonial01Fonts=getFonts(SingleTestimonial01);const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"WL9TCG22w\",\"rHxgj8h8i\",\"FdbIcv2NE\",\"xHY6Wm15W\"];const serializationHash=\"framer-CdEhf\";const variantClassNames={FdbIcv2NE:\"framer-v-15t2bno\",rHxgj8h8i:\"framer-v-ar7xl\",WL9TCG22w:\"framer-v-1l1n2fw\",xHY6Wm15W:\"framer-v-1o97hnd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"WL9TCG22w\",Laptop:\"rHxgj8h8i\",Mobile:\"xHY6Wm15W\",Tablet:\"FdbIcv2NE\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WL9TCG22w\"};};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({cycleOrder,defaultVariant:\"WL9TCG22w\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"rHxgj8h8i\",\"FdbIcv2NE\",\"xHY6Wm15W\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"rHxgj8h8i\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"FdbIcv2NE\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"xHY6Wm15W\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1l1n2fw\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"WL9TCG22w\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({FdbIcv2NE:{\"data-framer-name\":\"Tablet\"},rHxgj8h8i:{\"data-framer-name\":\"Laptop\"},xHY6Wm15W:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-amx8pq-container\",layoutDependency:layoutDependency,layoutId:\"A94lOQglb-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:24,height:\"100%\",id:\"A94lOQglb\",intervalControl:3,itemAmount:3,layoutId:\"A94lOQglb\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(24, 117, 240, 0)\",dotsBlur:0,dotsFill:\"var(--token-b1e15d65-ee32-467a-b5be-1400a72e803b, rgb(24, 118, 239))\",dotsGap:16,dotsInset:-74,dotSize:12,dotsOpacity:.2,dotsPadding:0,dotsRadius:0,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"392px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1av4ijo-container\",layoutDependency:layoutDependency,layoutId:\"GIu67DF2W-container\",children:/*#__PURE__*/_jsx(SingleTestimonial01,{height:\"100%\",id:\"GIu67DF2W\",ISM7pHHZF:\"James Hutchinson\",JRtogcdzl:addImageAlt({src:\"https://framerusercontent.com/images/3IKOkY8dlRLav17F8V0VFBtZzPA.png\"},\"Author-1\"),KBxYLAx7R:\"Have had multiple loans done through Ian. Always professional and prompt service. Goes the extra mile to get the job done.\",layoutId:\"GIu67DF2W\",variant:\"WsokcIlT1\",width:\"100%\",zWbZ6Lair:\"North Brisbane\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"392px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-eqkaa0-container\",layoutDependency:layoutDependency,layoutId:\"aNy46s59P-container\",children:/*#__PURE__*/_jsx(SingleTestimonial01,{height:\"100%\",id:\"aNy46s59P\",ISM7pHHZF:\"Lewis Jones\",JRtogcdzl:addImageAlt({src:\"https://framerusercontent.com/images/r5cVrNUfRH0eVdzp4ep4IRcnm0M.png\"},\"Author-2\"),KBxYLAx7R:\"As a first home buyer & property investor, I cannot recommend Ian Cook Finance enough!\",layoutId:\"aNy46s59P\",variant:\"WsokcIlT1\",width:\"100%\",zWbZ6Lair:\"South Brisbane\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"392px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18oc3p6-container\",layoutDependency:layoutDependency,layoutId:\"p_4n4PyHa-container\",children:/*#__PURE__*/_jsx(SingleTestimonial01,{height:\"100%\",id:\"p_4n4PyHa\",ISM7pHHZF:\"Jai Dametto\",JRtogcdzl:addImageAlt({src:\"https://framerusercontent.com/images/2toLYxvy9BFL2rc1Ffme47ij58.png\"},\"Author-3\"),KBxYLAx7R:\"Highly recommend Ian Cook Finance if you need help securing a home loan or assistance getting into the market.\",layoutId:\"p_4n4PyHa\",variant:\"WsokcIlT1\",width:\"100%\",zWbZ6Lair:\"North Brisbane\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"392px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-122r1zi-container\",layoutDependency:layoutDependency,layoutId:\"uEcluHKNI-container\",children:/*#__PURE__*/_jsx(SingleTestimonial01,{height:\"100%\",id:\"uEcluHKNI\",ISM7pHHZF:\"Sam Besmehn-Burt\",JRtogcdzl:addImageAlt({src:\"https://framerusercontent.com/images/0xXBjqM98VcJqbtjAkmQtqYCxmc.png\"},\"Author-4\"),KBxYLAx7R:\"The Ian Cook Finance team were brilliant. Very professional, clear with communication and supportive through our business with them.\",layoutId:\"uEcluHKNI\",variant:\"WsokcIlT1\",width:\"100%\",zWbZ6Lair:\"South Brisbane\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vhoewo-container\",layoutDependency:layoutDependency,layoutId:\"nWGiv6sVg-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"nWGiv6sVg\",intervalControl:3,itemAmount:3,layoutId:\"nWGiv6sVg\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"var(--token-b1e15d65-ee32-467a-b5be-1400a72e803b, rgb(24, 118, 239))\",dotsGap:10,dotsInset:-60,dotSize:10,dotsOpacity:.2,dotsPadding:0,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"324px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11eqs9r-container\",layoutDependency:layoutDependency,layoutId:\"gcMkJ2VDw-container\",children:/*#__PURE__*/_jsx(SingleTestimonial01,{height:\"100%\",id:\"gcMkJ2VDw\",ISM7pHHZF:\"James Hutchinson\",JRtogcdzl:addImageAlt({src:\"https://framerusercontent.com/images/3IKOkY8dlRLav17F8V0VFBtZzPA.png\"},\"\"),KBxYLAx7R:\"Have had multiple loans done through Ian. Always professional and prompt service. Goes the extra mile to get the job done.\",layoutId:\"gcMkJ2VDw\",variant:\"tvDLJDtcG\",width:\"100%\",zWbZ6Lair:\"North Brisbane\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"324px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eft9mj-container\",layoutDependency:layoutDependency,layoutId:\"i_Sg3KjBJ-container\",children:/*#__PURE__*/_jsx(SingleTestimonial01,{height:\"100%\",id:\"i_Sg3KjBJ\",ISM7pHHZF:\"Lewis Jones\",JRtogcdzl:addImageAlt({src:\"https://framerusercontent.com/images/r5cVrNUfRH0eVdzp4ep4IRcnm0M.png\"},\"\"),KBxYLAx7R:\"As a first home buyer & property investor, I cannot recommend Ian Cook Finance enough!\",layoutId:\"i_Sg3KjBJ\",variant:\"tvDLJDtcG\",width:\"100%\",zWbZ6Lair:\"South Brisbane\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"324px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15x4rfm-container\",layoutDependency:layoutDependency,layoutId:\"t7_gRatSc-container\",children:/*#__PURE__*/_jsx(SingleTestimonial01,{height:\"100%\",id:\"t7_gRatSc\",ISM7pHHZF:\"Jai Dametto\",JRtogcdzl:addImageAlt({src:\"https://framerusercontent.com/images/2toLYxvy9BFL2rc1Ffme47ij58.png\"},\"\"),KBxYLAx7R:\"Highly recommend Ian Cook Finance if you need help securing a home loan or assistance getting into the market.\",layoutId:\"t7_gRatSc\",variant:\"tvDLJDtcG\",width:\"100%\",zWbZ6Lair:\"North Brisbane\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"324px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rlcl0r-container\",layoutDependency:layoutDependency,layoutId:\"NwtOmHZys-container\",children:/*#__PURE__*/_jsx(SingleTestimonial01,{height:\"100%\",id:\"NwtOmHZys\",ISM7pHHZF:\"Sam Besmehn-Burt\",JRtogcdzl:addImageAlt({src:\"https://framerusercontent.com/images/0xXBjqM98VcJqbtjAkmQtqYCxmc.png\"},\"\"),KBxYLAx7R:\"The Ian Cook Finance team were brilliant. Very professional, clear with communication and supportive through our business with them.\",layoutId:\"NwtOmHZys\",variant:\"tvDLJDtcG\",width:\"100%\",zWbZ6Lair:\"South Brisbane\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tfxw3l-container\",layoutDependency:layoutDependency,layoutId:\"YEJ2L8W86-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",id:\"YEJ2L8W86\",intervalControl:3,itemAmount:2,layoutId:\"YEJ2L8W86\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"var(--token-b1e15d65-ee32-467a-b5be-1400a72e803b, rgb(24, 118, 239))\",dotsGap:10,dotsInset:-45,dotSize:10,dotsOpacity:.2,dotsPadding:0,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"345px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p8tbj2-container\",layoutDependency:layoutDependency,layoutId:\"sSv4znM8M-container\",children:/*#__PURE__*/_jsx(SingleTestimonial01,{height:\"100%\",id:\"sSv4znM8M\",ISM7pHHZF:\"James Hutchinson\",JRtogcdzl:addImageAlt({src:\"https://framerusercontent.com/images/3IKOkY8dlRLav17F8V0VFBtZzPA.png\"},\"\"),KBxYLAx7R:\"Have had multiple loans done through Ian. Always professional and prompt service. Goes the extra mile to get the job done.\",layoutId:\"sSv4znM8M\",variant:\"WH6wpZ5SB\",width:\"100%\",zWbZ6Lair:\"North Brisbane\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"345px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-n2nzrw-container\",layoutDependency:layoutDependency,layoutId:\"sIfZ7RQ9F-container\",children:/*#__PURE__*/_jsx(SingleTestimonial01,{height:\"100%\",id:\"sIfZ7RQ9F\",ISM7pHHZF:\"Lewis Jones\",JRtogcdzl:addImageAlt({src:\"https://framerusercontent.com/images/r5cVrNUfRH0eVdzp4ep4IRcnm0M.png\"},\"\"),KBxYLAx7R:\"As a first home buyer & property investor, I cannot recommend Ian Cook Finance enough!was initially hesitant about applying for a mortgage\u201D\",layoutId:\"sIfZ7RQ9F\",variant:\"WH6wpZ5SB\",width:\"100%\",zWbZ6Lair:\"South Brisbane\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"345px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mvrjt3-container\",layoutDependency:layoutDependency,layoutId:\"XHBbcZvkv-container\",children:/*#__PURE__*/_jsx(SingleTestimonial01,{height:\"100%\",id:\"XHBbcZvkv\",ISM7pHHZF:\"Jai Dametto\",JRtogcdzl:addImageAlt({src:\"https://framerusercontent.com/images/2toLYxvy9BFL2rc1Ffme47ij58.png\"},\"\"),KBxYLAx7R:\"Highly recommend Ian Cook Finance if you need help securing a home loan or assistance getting into the market.\",layoutId:\"XHBbcZvkv\",variant:\"WH6wpZ5SB\",width:\"100%\",zWbZ6Lair:\"North Brisbane\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"345px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-mss9jg-container\",layoutDependency:layoutDependency,layoutId:\"ghmjpQsE4-container\",children:/*#__PURE__*/_jsx(SingleTestimonial01,{height:\"100%\",id:\"ghmjpQsE4\",ISM7pHHZF:\"Sam Besmehn-Burt\",JRtogcdzl:addImageAlt({src:\"https://framerusercontent.com/images/0xXBjqM98VcJqbtjAkmQtqYCxmc.png\"},\"\"),KBxYLAx7R:\"\u201CI was initially hesitant about applying for a mortgage\u201D\",layoutId:\"ghmjpQsE4\",variant:\"WH6wpZ5SB\",width:\"100%\",zWbZ6Lair:\"South Brisbane\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rats1z-container\",layoutDependency:layoutDependency,layoutId:\"ZHTjE1xVL-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"ZHTjE1xVL\",intervalControl:3,itemAmount:1,layoutId:\"ZHTjE1xVL\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"var(--token-b1e15d65-ee32-467a-b5be-1400a72e803b, rgb(24, 118, 239))\",dotsGap:10,dotsInset:-40,dotSize:10,dotsOpacity:.2,dotsPadding:0,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"330px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-s77oxj-container\",layoutDependency:layoutDependency,layoutId:\"cBHCq_rCo-container\",children:/*#__PURE__*/_jsx(SingleTestimonial01,{height:\"100%\",id:\"cBHCq_rCo\",ISM7pHHZF:\"James Hutchinson\",JRtogcdzl:addImageAlt({src:\"https://framerusercontent.com/images/3IKOkY8dlRLav17F8V0VFBtZzPA.png\"},\"\"),KBxYLAx7R:\"Have had multiple loans done through Ian. Always professional and prompt service. Goes the extra mile to get the job done.\",layoutId:\"cBHCq_rCo\",variant:\"ohnrbTElo\",width:\"100%\",zWbZ6Lair:\"North Brisbane\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"330px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zo1fa6-container\",layoutDependency:layoutDependency,layoutId:\"DNQms8jPu-container\",children:/*#__PURE__*/_jsx(SingleTestimonial01,{height:\"100%\",id:\"DNQms8jPu\",ISM7pHHZF:\"Lewis Jones\",JRtogcdzl:addImageAlt({src:\"https://framerusercontent.com/images/r5cVrNUfRH0eVdzp4ep4IRcnm0M.png\"},\"\"),KBxYLAx7R:\"As a first home buyer & property investor, I cannot recommend Ian Cook Finance enough!was initially hesitant about applying for a mortgage\u201D\",layoutId:\"DNQms8jPu\",variant:\"ohnrbTElo\",width:\"100%\",zWbZ6Lair:\"South Brisbane\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"330px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1knu0gz-container\",layoutDependency:layoutDependency,layoutId:\"Chq5HHwdU-container\",children:/*#__PURE__*/_jsx(SingleTestimonial01,{height:\"100%\",id:\"Chq5HHwdU\",ISM7pHHZF:\"Jai Dametto\",JRtogcdzl:addImageAlt({src:\"https://framerusercontent.com/images/2toLYxvy9BFL2rc1Ffme47ij58.png\"},\"\"),KBxYLAx7R:\"Highly recommend Ian Cook Finance if you need help securing a home loan or assistance getting into the market.\",layoutId:\"Chq5HHwdU\",variant:\"ohnrbTElo\",width:\"100%\",zWbZ6Lair:\"North Brisbane\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"330px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tsae5i-container\",layoutDependency:layoutDependency,layoutId:\"SUnytmT0a-container\",children:/*#__PURE__*/_jsx(SingleTestimonial01,{height:\"100%\",id:\"SUnytmT0a\",ISM7pHHZF:\"Sam Besmehn-Burt\",JRtogcdzl:addImageAlt({src:\"https://framerusercontent.com/images/0xXBjqM98VcJqbtjAkmQtqYCxmc.png\"},\"\"),KBxYLAx7R:\"The Ian Cook Finance team were brilliant. Very professional, clear with communication and supportive through our business with them.\",layoutId:\"SUnytmT0a\",variant:\"ohnrbTElo\",width:\"100%\",zWbZ6Lair:\"South Brisbane\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CdEhf.framer-1yh506t, .framer-CdEhf .framer-1yh506t { display: block; }\",\".framer-CdEhf.framer-1l1n2fw { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 2px 0px 2px; position: relative; width: 1224px; }\",\".framer-CdEhf .framer-amx8pq-container, .framer-CdEhf .framer-vhoewo-container { flex: 1 0 0px; height: 360px; position: relative; width: 1px; }\",\".framer-CdEhf .framer-1av4ijo-container, .framer-CdEhf .framer-eqkaa0-container, .framer-CdEhf .framer-18oc3p6-container, .framer-CdEhf .framer-122r1zi-container, .framer-CdEhf .framer-11eqs9r-container, .framer-CdEhf .framer-1eft9mj-container, .framer-CdEhf .framer-15x4rfm-container, .framer-CdEhf .framer-1rlcl0r-container, .framer-CdEhf .framer-1p8tbj2-container, .framer-CdEhf .framer-n2nzrw-container, .framer-CdEhf .framer-1mvrjt3-container, .framer-CdEhf .framer-mss9jg-container, .framer-CdEhf .framer-s77oxj-container, .framer-CdEhf .framer-zo1fa6-container, .framer-CdEhf .framer-1knu0gz-container, .framer-CdEhf .framer-tsae5i-container { height: auto; position: relative; width: auto; }\",\".framer-CdEhf .framer-1tfxw3l-container { flex: 1 0 0px; height: 380px; position: relative; width: 1px; }\",\".framer-CdEhf .framer-1rats1z-container { flex: none; height: 360px; position: relative; width: 335px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CdEhf.framer-1l1n2fw { gap: 0px; } .framer-CdEhf.framer-1l1n2fw > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-CdEhf.framer-1l1n2fw > :first-child { margin-left: 0px; } .framer-CdEhf.framer-1l1n2fw > :last-child { margin-right: 0px; } }\",\".framer-CdEhf.framer-v-ar7xl.framer-1l1n2fw { width: 1024px; }\",\".framer-CdEhf.framer-v-15t2bno.framer-1l1n2fw { max-width: 768px; width: 708px; }\",\".framer-CdEhf.framer-v-1o97hnd.framer-1l1n2fw { width: 335px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 360\n * @framerIntrinsicWidth 1224\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rHxgj8h8i\":{\"layout\":[\"fixed\",\"auto\"]},\"FdbIcv2NE\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"768px\",null,null]},\"xHY6Wm15W\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramervbkyQEMey=withCSS(Component,css,\"framer-CdEhf\");export default FramervbkyQEMey;FramervbkyQEMey.displayName=\"Slider Testimonial\";FramervbkyQEMey.defaultProps={height:360,width:1224};addPropertyControls(FramervbkyQEMey,{variant:{options:[\"WL9TCG22w\",\"rHxgj8h8i\",\"FdbIcv2NE\",\"xHY6Wm15W\"],optionTitles:[\"Desktop\",\"Laptop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramervbkyQEMey,[{explicitInter:true,fonts:[]},...SingleTestimonial01Fonts,...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervbkyQEMey\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rHxgj8h8i\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FdbIcv2NE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"768px\\\",null,null]},\\\"xHY6Wm15W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1224\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"360\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (04e0834)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,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/2sD435XKyzJPJWjA4uvx/40zsgI9ZmyYLX5rdUBE9/gMPmJemBu.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/zcyoyisGgVWU3F585mRB/i556YsaTBJ1t9BMBxWur/zdBwB6iUh.js\";import Button from\"https://framerusercontent.com/modules/7y2JLYrsGmIUxs6txOc9/53bFRS1zKzDvtxYkHr1j/LPYt7Kjbh.js\";const ButtonFonts=getFonts(Button);const enabledGestures={WjAJzFv7M:{hover:true},zKGIa0zB2:{hover:true}};const cycleOrder=[\"WjAJzFv7M\",\"zKGIa0zB2\"];const serializationHash=\"framer-vrAuq\";const variantClassNames={WjAJzFv7M:\"framer-v-yukjup\",zKGIa0zB2:\"framer-v-1arhcu8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"WjAJzFv7M\",\"Variant 2\":\"zKGIa0zB2\"};const getProps=({excerpt,height,id,link,serviceImage,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,fJKcWmMeU:(_ref=excerpt!==null&&excerpt!==void 0?excerpt:props.fJKcWmMeU)!==null&&_ref!==void 0?_ref:\"Your path to homeownership made Simple. Trust our seasoned professionals tailored.\",oOUlSQGgr:link!==null&&link!==void 0?link:props.oOUlSQGgr,pTyT3R1Xe:(_ref1=serviceImage!==null&&serviceImage!==void 0?serviceImage:props.pTyT3R1Xe)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/I03N328TlmbNrbmOGWVFxrRGE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/I03N328TlmbNrbmOGWVFxrRGE.png?scale-down-to=512 512w,https://framerusercontent.com/images/I03N328TlmbNrbmOGWVFxrRGE.png 720w\"},SnuvXM0Mi:(_ref2=title!==null&&title!==void 0?title:props.SnuvXM0Mi)!==null&&_ref2!==void 0?_ref2:\"Fixed-rate mortgages\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"WjAJzFv7M\"};};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,pTyT3R1Xe,SnuvXM0Mi,fJKcWmMeU,oOUlSQGgr,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WjAJzFv7M\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);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-yukjup\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"WjAJzFv7M\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-0220d559-4f55-45ab-aa6e-be20eee5953e, rgb(239, 242, 245))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-2e7ca838-c2ed-4206-b7ed-3a2bce7e945e, rgb(255, 255, 255))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{\"zKGIa0zB2-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},zKGIa0zB2:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({\"WjAJzFv7M-hover\":{\"data-framer-name\":undefined},\"zKGIa0zB2-hover\":{\"data-framer-name\":undefined},zKGIa0zB2:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17ubgkn\",\"data-framer-name\":\"Image Wrapper\",layoutDependency:layoutDependency,layoutId:\"f3ahjgx80\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},variants:{\"zKGIa0zB2-hover\":{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},zKGIa0zB2:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:544,pixelWidth:720,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px)`,...toResponsiveImage(pTyT3R1Xe)},className:\"framer-18kytkw\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"HTn4mXEfl\",...addPropertyOverrides({\"WjAJzFv7M-hover\":{background:{alt:\"\",fit:\"fill\",pixelHeight:544,pixelWidth:720,sizes:`calc((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px) * 1.2)`,...toResponsiveImage(pTyT3R1Xe)}},\"zKGIa0zB2-hover\":{background:{alt:\"\",fit:\"fill\",pixelHeight:544,pixelWidth:720,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 1.05)`,...toResponsiveImage(pTyT3R1Xe)}},zKGIa0zB2:{background:{alt:\"\",fit:\"fill\",pixelHeight:544,pixelWidth:720,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(pTyT3R1Xe)}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1blanjw\",\"data-framer-name\":\"Bottom Meta\",layoutDependency:layoutDependency,layoutId:\"quk8sUCM0\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1txx5or\",\"data-framer-name\":\"Content Box\",layoutDependency:layoutDependency,layoutId:\"yQcvDkUWa\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k59wbp\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"A0GH8mdIU\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-qu5r37\",\"data-styles-preset\":\"gMPmJemBu\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, rgb(13, 36, 64)))\"},children:\"Fixed-rate mortgages\"})}),className:\"framer-h1i5wd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ac1cmS73n\",style:{\"--extracted-1eung3n\":\"var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, rgb(13, 36, 64))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:SnuvXM0Mi,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14no3a8\",\"data-styles-preset\":\"zdBwB6iUh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106)))\"},children:\"Your path to homeownership made Simple. Trust our seasoned professionals tailored.\"})}),className:\"framer-1ep89fx\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"urKiAJXS7\",style:{\"--extracted-r6o4lv\":\"var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:fJKcWmMeU,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qatkkf\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"Hf7DCMvnT\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px, 1px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ekufv0-container\",layoutDependency:layoutDependency,layoutId:\"j3wv_jvGK-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"j3wv_jvGK\",layoutId:\"j3wv_jvGK\",LZz_9I1jG:oOUlSQGgr,NRb95IGcg:\"Get Started\",style:{width:\"100%\"},variant:\"HgoEEkPuY\",width:\"100%\"})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vrAuq.framer-15cnypo, .framer-vrAuq .framer-15cnypo { display: block; }\",\".framer-vrAuq.framer-yukjup { align-content: center; align-items: center; cursor: default; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: 430px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vrAuq .framer-17ubgkn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 272px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-vrAuq .framer-18kytkw { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-vrAuq .framer-1blanjw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vrAuq .framer-1txx5or { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vrAuq .framer-k59wbp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vrAuq .framer-h1i5wd, .framer-vrAuq .framer-1ep89fx { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-vrAuq .framer-1qatkkf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vrAuq .framer-ekufv0-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vrAuq.framer-yukjup, .framer-vrAuq .framer-17ubgkn, .framer-vrAuq .framer-1blanjw, .framer-vrAuq .framer-1txx5or, .framer-vrAuq .framer-k59wbp, .framer-vrAuq .framer-1qatkkf { gap: 0px; } .framer-vrAuq.framer-yukjup > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-vrAuq.framer-yukjup > :first-child, .framer-vrAuq .framer-1blanjw > :first-child, .framer-vrAuq .framer-1txx5or > :first-child, .framer-vrAuq .framer-k59wbp > :first-child { margin-top: 0px; } .framer-vrAuq.framer-yukjup > :last-child, .framer-vrAuq .framer-1blanjw > :last-child, .framer-vrAuq .framer-1txx5or > :last-child, .framer-vrAuq .framer-k59wbp > :last-child { margin-bottom: 0px; } .framer-vrAuq .framer-17ubgkn > *, .framer-vrAuq .framer-1qatkkf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-vrAuq .framer-17ubgkn > :first-child, .framer-vrAuq .framer-1qatkkf > :first-child { margin-left: 0px; } .framer-vrAuq .framer-17ubgkn > :last-child, .framer-vrAuq .framer-1qatkkf > :last-child { margin-right: 0px; } .framer-vrAuq .framer-1blanjw > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-vrAuq .framer-1txx5or > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-vrAuq .framer-k59wbp > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-vrAuq.framer-v-1arhcu8.framer-yukjup { gap: 0px; padding: 0px; }\",\".framer-vrAuq.framer-v-1arhcu8 .framer-1blanjw { gap: 24px; padding: 20px 16px 16px 16px; }\",\".framer-vrAuq.framer-v-1arhcu8 .framer-1txx5or { gap: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vrAuq.framer-v-1arhcu8.framer-yukjup, .framer-vrAuq.framer-v-1arhcu8 .framer-1blanjw, .framer-vrAuq.framer-v-1arhcu8 .framer-1txx5or { gap: 0px; } .framer-vrAuq.framer-v-1arhcu8.framer-yukjup > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-vrAuq.framer-v-1arhcu8.framer-yukjup > :first-child, .framer-vrAuq.framer-v-1arhcu8 .framer-1blanjw > :first-child, .framer-vrAuq.framer-v-1arhcu8 .framer-1txx5or > :first-child { margin-top: 0px; } .framer-vrAuq.framer-v-1arhcu8.framer-yukjup > :last-child, .framer-vrAuq.framer-v-1arhcu8 .framer-1blanjw > :last-child, .framer-vrAuq.framer-v-1arhcu8 .framer-1txx5or > :last-child { margin-bottom: 0px; } .framer-vrAuq.framer-v-1arhcu8 .framer-1blanjw > *, .framer-vrAuq.framer-v-1arhcu8 .framer-1txx5or > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-vrAuq.framer-v-yukjup.hover .framer-18kytkw { height: 120%; width: 120%; }\",\".framer-vrAuq.framer-v-1arhcu8.hover .framer-18kytkw { height: 105%; width: 105%; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-vrAuq[data-border=\"true\"]::after, .framer-vrAuq [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 511\n * @framerIntrinsicWidth 430\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"zKGIa0zB2\":{\"layout\":[\"fixed\",\"auto\"]},\"hsXY3mNFo\":{\"layout\":[\"fixed\",\"auto\"]},\"deW7be5sc\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"pTyT3R1Xe\":\"serviceImage\",\"SnuvXM0Mi\":\"title\",\"fJKcWmMeU\":\"excerpt\",\"oOUlSQGgr\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerX1msb2gIX=withCSS(Component,css,\"framer-vrAuq\");export default FramerX1msb2gIX;FramerX1msb2gIX.displayName=\"Single Service Item\";FramerX1msb2gIX.defaultProps={height:511,width:430};addPropertyControls(FramerX1msb2gIX,{variant:{options:[\"WjAJzFv7M\",\"zKGIa0zB2\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},pTyT3R1Xe:{__defaultAssetReference:\"data:framer/asset-reference,I03N328TlmbNrbmOGWVFxrRGE.png?originalFilename=Image.png&preferredSize=auto\",title:\"Service Image\",type:ControlType.ResponsiveImage},SnuvXM0Mi:{defaultValue:\"Fixed-rate mortgages\",displayTextArea:false,title:\"Title\",type:ControlType.String},fJKcWmMeU:{defaultValue:\"Your path to homeownership made Simple. Trust our seasoned professionals tailored.\",displayTextArea:false,title:\"Excerpt\",type:ControlType.String},oOUlSQGgr:{title:\"Link\",type:ControlType.Link}});addFonts(FramerX1msb2gIX,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerX1msb2gIX\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zKGIa0zB2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hsXY3mNFo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"deW7be5sc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"pTyT3R1Xe\\\":\\\"serviceImage\\\",\\\"SnuvXM0Mi\\\":\\\"title\\\",\\\"fJKcWmMeU\\\":\\\"excerpt\\\",\\\"oOUlSQGgr\\\":\\\"link\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"511\",\"framerIntrinsicWidth\":\"430\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (461de17)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-Pueg4 .framer-styles-preset-16fmq1r:not(.rich-text-wrapper), .framer-Pueg4 .framer-styles-preset-16fmq1r.rich-text-wrapper a { --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-b236c098-f886-4067-ab6b-c27f71663a3d, #f9f9fa) /* {\"name\":\"Neutral 01\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-2e7ca838-c2ed-4206-b7ed-3a2bce7e945e, #ffffff); --framer-link-text-decoration: underline; }'];export const className=\"framer-Pueg4\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (48da836)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLoadMorePaginatedQuery,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import Step from\"#framer/local/canvasComponent/An5LRlZn4/An5LRlZn4.js\";import SingleBlog from\"#framer/local/canvasComponent/ARkn8iLjK/ARkn8iLjK.js\";import CTA from\"#framer/local/canvasComponent/BPxyxHyWJ/BPxyxHyWJ.js\";import Button from\"#framer/local/canvasComponent/LPYt7Kjbh/LPYt7Kjbh.js\";import Footer from\"#framer/local/canvasComponent/mO70NnGZ6/mO70NnGZ6.js\";import FaqArea01 from\"#framer/local/canvasComponent/rRm5lvNAI/rRm5lvNAI.js\";import SingleIconBox from\"#framer/local/canvasComponent/t2fPRs1wQ/t2fPRs1wQ.js\";import Navbar from\"#framer/local/canvasComponent/UE2Zi3bzT/UE2Zi3bzT.js\";import SliderTestimonial from\"#framer/local/canvasComponent/vbkyQEMey/vbkyQEMey.js\";import SingleServiceItem from\"#framer/local/canvasComponent/X1msb2gIX/X1msb2gIX.js\";import ButtonSubmit from\"#framer/local/canvasComponent/Y8UFuGjXz/Y8UFuGjXz.js\";import Blog from\"#framer/local/collection/L_NvLC904/L_NvLC904.js\";import*as sharedStyle5 from\"#framer/local/css/EfqbzGugQ/EfqbzGugQ.js\";import*as sharedStyle1 from\"#framer/local/css/heUGA0Tx3/heUGA0Tx3.js\";import*as sharedStyle4 from\"#framer/local/css/lMGUUJA69/lMGUUJA69.js\";import*as sharedStyle7 from\"#framer/local/css/NvEHCHD3g/NvEHCHD3g.js\";import*as sharedStyle2 from\"#framer/local/css/OFCTThyeJ/OFCTThyeJ.js\";import*as sharedStyle6 from\"#framer/local/css/U0dY10kum/U0dY10kum.js\";import*as sharedStyle from\"#framer/local/css/YBP2y99Lm/YBP2y99Lm.js\";import*as sharedStyle3 from\"#framer/local/css/zdBwB6iUh/zdBwB6iUh.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarFonts=getFonts(Navbar);const NavbarWithVariantAppearEffect=withVariantAppearEffect(Navbar);const ButtonFonts=getFonts(Button);const MotionDivWithFX=withFX(motion.div);const ButtonSubmitFonts=getFonts(ButtonSubmit);const VideoFonts=getFonts(Video);const ImageWithFX=withFX(Image);const PhosphorFonts=getFonts(Phosphor);const FaqArea01Fonts=getFonts(FaqArea01);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const SingleServiceItemFonts=getFonts(SingleServiceItem);const ContainerWithFX=withFX(Container);const StepFonts=getFonts(Step);const SingleIconBoxFonts=getFonts(SingleIconBox);const SliderTestimonialFonts=getFonts(SliderTestimonial);const CTAFonts=getFonts(CTA);const SingleBlogFonts=getFonts(SingleBlog);const FooterFonts=getFonts(Footer);const breakpoints={bY_q9YLul:\"(max-width: 767px)\",eeK_7k9cQ:\"(min-width: 768px) and (max-width: 1199px)\",hyKhRCGDg:\"(min-width: 1200px) and (max-width: 1459px)\",WQLkyLRf1:\"(min-width: 1460px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Q5SSp\";const variantClassNames={bY_q9YLul:\"framer-v-c83dbp\",eeK_7k9cQ:\"framer-v-7gcfo0\",hyKhRCGDg:\"framer-v-grsnst\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition1={damping:60,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const transition2={damping:20,delay:.25,mass:2,stiffness:100,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:50};const transition3={damping:20,delay:.5,mass:2,stiffness:100,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const transition4={damping:20,delay:.5,mass:1,stiffness:200,type:\"spring\"};const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const transition5={damping:20,delay:.5,mass:1,stiffness:150,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:50};const transition6={damping:20,delay:0,mass:1,stiffness:200,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition7={damping:20,delay:.1,mass:1,stiffness:200,type:\"spring\"};const transition8={damping:20,delay:.2,mass:1,stiffness:200,type:\"spring\"};const transition9={damping:20,delay:.3,mass:1,stiffness:200,type:\"spring\"};const transition10={damping:20,delay:.4,mass:1,stiffness:200,type:\"spring\"};const transition11={damping:20,delay:0,mass:1,stiffness:150,type:\"spring\"};const transition12={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};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{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"D3_5Ww5DY\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value}});};const humanReadableVariantMap={\"Desktop Large\":\"WQLkyLRf1\",Laptop:\"hyKhRCGDg\",Phone:\"bY_q9YLul\",Tablet:\"eeK_7k9cQ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,obkGddMOGD3_5Ww5DY,LTyv2mnRlD3_5Ww5DY,LhgMPDA8tD3_5Ww5DY,ClK3ZNL8XD3_5Ww5DY,MnAtZruadD3_5Ww5DY,idD3_5Ww5DY,...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,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const ref2=React.useRef(null);const elementId=useRouteElementId(\"Pc5mlKvvy\");const router=useRouter();const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"header\",{className:\"framer-amb2fn\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-wvhxqo\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{width:\"max(100vw, 1px)\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:116,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wgfd3p-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"jls4brs_O\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,variant:\"FWGtlX6je\"},eeK_7k9cQ:{variant:\"zckXcsDYE\"},hyKhRCGDg:{variant:\"ktKp3TDa1\"}},children:/*#__PURE__*/_jsx(NavbarWithVariantAppearEffect,{height:\"100%\",id:\"ysLNoJjGr\",layoutId:\"ysLNoJjGr\",style:{width:\"100%\"},variant:\"qV3xQHDes\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-ecw7x\",\"data-framer-name\":\"Hero Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{background:{alt:\"Hero-Background-Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+110+0),pixelHeight:1247,pixelWidth:2560,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/c1fiUGtIR01Kz4reYZpiZY2w.webp\",srcSet:\"https://framerusercontent.com/images/c1fiUGtIR01Kz4reYZpiZY2w.webp?scale-down-to=512 512w,https://framerusercontent.com/images/c1fiUGtIR01Kz4reYZpiZY2w.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/c1fiUGtIR01Kz4reYZpiZY2w.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/c1fiUGtIR01Kz4reYZpiZY2w.webp 2560w\"}},eeK_7k9cQ:{background:{alt:\"Hero-Background-Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+116+0+0),pixelHeight:1247,pixelWidth:2560,sizes:`min(${componentViewport?.width||\"100vw\"} - 60px, 768px)`,src:\"https://framerusercontent.com/images/c1fiUGtIR01Kz4reYZpiZY2w.webp\",srcSet:\"https://framerusercontent.com/images/c1fiUGtIR01Kz4reYZpiZY2w.webp?scale-down-to=512 512w,https://framerusercontent.com/images/c1fiUGtIR01Kz4reYZpiZY2w.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/c1fiUGtIR01Kz4reYZpiZY2w.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/c1fiUGtIR01Kz4reYZpiZY2w.webp 2560w\"}},hyKhRCGDg:{background:{alt:\"Hero-Background-Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+116+0+0),pixelHeight:1247,pixelWidth:2560,sizes:`min(${componentViewport?.width||\"100vw\"} - 60px, 1200px)`,src:\"https://framerusercontent.com/images/c1fiUGtIR01Kz4reYZpiZY2w.webp\",srcSet:\"https://framerusercontent.com/images/c1fiUGtIR01Kz4reYZpiZY2w.webp?scale-down-to=512 512w,https://framerusercontent.com/images/c1fiUGtIR01Kz4reYZpiZY2w.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/c1fiUGtIR01Kz4reYZpiZY2w.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/c1fiUGtIR01Kz4reYZpiZY2w.webp 2560w\"}}},children:/*#__PURE__*/_jsxs(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Hero-Background-Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+116+0+0),pixelHeight:1247,pixelWidth:2560,sizes:`min(${componentViewport?.width||\"100vw\"} - 60px, 1400px)`,src:\"https://framerusercontent.com/images/c1fiUGtIR01Kz4reYZpiZY2w.webp\",srcSet:\"https://framerusercontent.com/images/c1fiUGtIR01Kz4reYZpiZY2w.webp?scale-down-to=512 512w,https://framerusercontent.com/images/c1fiUGtIR01Kz4reYZpiZY2w.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/c1fiUGtIR01Kz4reYZpiZY2w.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/c1fiUGtIR01Kz4reYZpiZY2w.webp 2560w\"},className:\"framer-moizhu\",\"data-framer-name\":\"Container\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v5v4o1\",\"data-framer-name\":\"Hero-Content\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9r1yj5\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s8ry2o\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eeK_7k9cQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-10c32w0\",\"data-styles-preset\":\"YBP2y99Lm\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e7ca838-c2ed-4206-b7ed-3a2bce7e945e, rgb(255, 255, 255))\"},children:\"Fast, seamless finance approval\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-10c32w0\",\"data-styles-preset\":\"YBP2y99Lm\",style:{\"--framer-text-color\":\"var(--token-2e7ca838-c2ed-4206-b7ed-3a2bce7e945e, rgb(255, 255, 255))\"},children:\"Fast, seamless finance approval\"})}),className:\"framer-1mh956w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eeK_7k9cQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zccir1\",\"data-styles-preset\":\"heUGA0Tx3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e7ca838-c2ed-4206-b7ed-3a2bce7e945e, rgb(255, 255, 255))\"},children:\"Ian Cook Finance provides expert finance and home loan solutions for a quick and seamless path to finance approval.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zccir1\",\"data-styles-preset\":\"heUGA0Tx3\",style:{\"--framer-text-color\":\"var(--token-2e7ca838-c2ed-4206-b7ed-3a2bce7e945e, rgb(255, 255, 255))\"},children:\"Ian Cook Finance provides expert finance and home loan solutions for a quick and seamless path to finance approval.\"})}),className:\"framer-53oj4x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f232j8\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sbDcuc56a\"},implicitPathVariables:undefined},{href:{webPageId:\"sbDcuc56a\"},implicitPathVariables:undefined},{href:{webPageId:\"sbDcuc56a\"},implicitPathVariables:undefined},{href:{webPageId:\"sbDcuc56a\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{y:(componentViewport?.y||0)+0+0+110+0+50+0+0+0+0+301.8+0+0},eeK_7k9cQ:{y:(componentViewport?.y||0)+0+116+0+0+70+0+0+0+0+301.8+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,y:(componentViewport?.y||0)+0+116+0+0+160+-2842170943040401e-29+0+0+301.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cldbj2-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{LZz_9I1jG:resolvedLinks[3]},eeK_7k9cQ:{LZz_9I1jG:resolvedLinks[2]},hyKhRCGDg:{LZz_9I1jG:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"VWwMOEOcq\",layoutId:\"VWwMOEOcq\",LZz_9I1jG:resolvedLinks[0],NRb95IGcg:\"Talk to a finance expert\",variant:\"AW2Uo8m6w\",width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{transformTemplate:undefined},eeK_7k9cQ:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19sf9c7\",\"data-border\":true,\"data-framer-name\":\"Form\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/e5ffa5a6-9c81-4208-9d37-271ac99e661f/submit\",className:\"framer-15hikhi\",\"data-framer-name\":\"Form Home\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1vkyawb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106))\"},children:\"Name\"})}),className:\"framer-1297cv7\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1ahtzsj\",inputName:\"Name\",placeholder:\"Full name\",type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1cufif5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106))\"},children:\"Email\"})}),className:\"framer-1r6hlmm\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-r7b5xa\",inputName:\"Email\",placeholder:\"yourname@example.com\",type:\"email\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-z1bwzr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106))\"},children:\"Phone\"})}),className:\"framer-dkh3kd\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1k0zt7q\",inputName:\"Phone\",placeholder:\"e.g. 0404 123 123\",type:\"tel\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-x6md25\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106))\"},children:\"Loan Amount\"})}),className:\"framer-1uvn5jb\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-126664h\",inputName:\"Email\",placeholder:\"e.g. 500000\",type:\"number\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 90px, 390px), 1px) - 48px)`,y:(componentViewport?.y||0)+0+0+110+0+50+0+0+400.8+0+24+379.2},eeK_7k9cQ:{y:(componentViewport?.y||0)+0+116+0+0+70+0+0+410.8+0+24+379.2},hyKhRCGDg:{y:(componentViewport?.y||0)+0+116+0+0+160+-2842170943040401e-29+-61.42409937888189+0+24+379.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:\"368px\",y:(componentViewport?.y||0)+0+116+0+0+160+-2842170943040401e-29+-61.40855491329472+0+24+379.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lvrop9-container\",children:/*#__PURE__*/_jsx(ButtonSubmit,{height:\"100%\",id:\"hkjKIi5wm\",layoutId:\"hkjKIi5wm\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"bU69qawZw\",success:\"WGSnINWqE\"},\"QAeBQYJOa\"),width:\"100%\",xj0sD3q2v:\"Request Rate\"})})})})]})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-186yhvi\",\"data-framer-name\":\"overlay\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-132qz5r-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"V2xavENJ4\",isMixedBorderRadius:false,layoutId:\"V2xavENJ4\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:\"https://xgjzloifyvgpbmyonaya.supabase.co/storage/v1/object/public/files/fTSjVhEU8X/original\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-oeqh89\",\"data-framer-name\":\"Social proof\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-df7bam\",\"data-framer-name\":\"Review\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b4i9pd\",\"data-framer-name\":\"Avatars\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+110+994+40+0+0+190.6+0),pixelHeight:3023,pixelWidth:3023,sizes:\"50px\",src:\"https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg\",srcSet:\"https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg 3023w\"}},eeK_7k9cQ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+116+0+1044+45+3.8999999999999986+0),pixelHeight:3023,pixelWidth:3023,sizes:\"50px\",src:\"https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg\",srcSet:\"https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg 3023w\"}},hyKhRCGDg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+116+0+680.8+56+3.8999999999999986+0),pixelHeight:3023,pixelWidth:3023,sizes:\"50px\",src:\"https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg\",srcSet:\"https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg 3023w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+116+0+700.8+56+3.8999999999999986+0),pixelHeight:3023,pixelWidth:3023,sizes:\"50px\",src:\"https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg\",srcSet:\"https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg 3023w\"},className:\"framer-1t9da0x\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+110+994+40+0+0+190.6+0),pixelHeight:4e3,pixelWidth:6016,sizes:\"50px\",src:\"https://framerusercontent.com/images/VAn8SCsbVRRkSvX4NDyNp4FSmY.jpg\",srcSet:\"https://framerusercontent.com/images/VAn8SCsbVRRkSvX4NDyNp4FSmY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VAn8SCsbVRRkSvX4NDyNp4FSmY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VAn8SCsbVRRkSvX4NDyNp4FSmY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/VAn8SCsbVRRkSvX4NDyNp4FSmY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/VAn8SCsbVRRkSvX4NDyNp4FSmY.jpg 6016w\"}},eeK_7k9cQ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+116+0+1044+45+3.8999999999999986+0),pixelHeight:4e3,pixelWidth:6016,sizes:\"50px\",src:\"https://framerusercontent.com/images/VAn8SCsbVRRkSvX4NDyNp4FSmY.jpg\",srcSet:\"https://framerusercontent.com/images/VAn8SCsbVRRkSvX4NDyNp4FSmY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VAn8SCsbVRRkSvX4NDyNp4FSmY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VAn8SCsbVRRkSvX4NDyNp4FSmY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/VAn8SCsbVRRkSvX4NDyNp4FSmY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/VAn8SCsbVRRkSvX4NDyNp4FSmY.jpg 6016w\"}},hyKhRCGDg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+116+0+680.8+56+3.8999999999999986+0),pixelHeight:4e3,pixelWidth:6016,sizes:\"50px\",src:\"https://framerusercontent.com/images/VAn8SCsbVRRkSvX4NDyNp4FSmY.jpg\",srcSet:\"https://framerusercontent.com/images/VAn8SCsbVRRkSvX4NDyNp4FSmY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VAn8SCsbVRRkSvX4NDyNp4FSmY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VAn8SCsbVRRkSvX4NDyNp4FSmY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/VAn8SCsbVRRkSvX4NDyNp4FSmY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/VAn8SCsbVRRkSvX4NDyNp4FSmY.jpg 6016w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+116+0+700.8+56+3.8999999999999986+0),pixelHeight:4e3,pixelWidth:6016,sizes:\"50px\",src:\"https://framerusercontent.com/images/VAn8SCsbVRRkSvX4NDyNp4FSmY.jpg\",srcSet:\"https://framerusercontent.com/images/VAn8SCsbVRRkSvX4NDyNp4FSmY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VAn8SCsbVRRkSvX4NDyNp4FSmY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VAn8SCsbVRRkSvX4NDyNp4FSmY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/VAn8SCsbVRRkSvX4NDyNp4FSmY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/VAn8SCsbVRRkSvX4NDyNp4FSmY.jpg 6016w\"},className:\"framer-1r3vep9\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+110+994+40+0+0+190.6+0),pixelHeight:6220,pixelWidth:6220,sizes:\"50px\",src:\"https://framerusercontent.com/images/K6cUNifhQFa6qEX3kqNwfqMkiY.jpg\",srcSet:\"https://framerusercontent.com/images/K6cUNifhQFa6qEX3kqNwfqMkiY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/K6cUNifhQFa6qEX3kqNwfqMkiY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/K6cUNifhQFa6qEX3kqNwfqMkiY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/K6cUNifhQFa6qEX3kqNwfqMkiY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/K6cUNifhQFa6qEX3kqNwfqMkiY.jpg 6220w\"}},eeK_7k9cQ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+116+0+1044+45+3.8999999999999986+0),pixelHeight:6220,pixelWidth:6220,sizes:\"50px\",src:\"https://framerusercontent.com/images/K6cUNifhQFa6qEX3kqNwfqMkiY.jpg\",srcSet:\"https://framerusercontent.com/images/K6cUNifhQFa6qEX3kqNwfqMkiY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/K6cUNifhQFa6qEX3kqNwfqMkiY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/K6cUNifhQFa6qEX3kqNwfqMkiY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/K6cUNifhQFa6qEX3kqNwfqMkiY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/K6cUNifhQFa6qEX3kqNwfqMkiY.jpg 6220w\"}},hyKhRCGDg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+116+0+680.8+56+3.8999999999999986+0),pixelHeight:6220,pixelWidth:6220,sizes:\"50px\",src:\"https://framerusercontent.com/images/K6cUNifhQFa6qEX3kqNwfqMkiY.jpg\",srcSet:\"https://framerusercontent.com/images/K6cUNifhQFa6qEX3kqNwfqMkiY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/K6cUNifhQFa6qEX3kqNwfqMkiY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/K6cUNifhQFa6qEX3kqNwfqMkiY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/K6cUNifhQFa6qEX3kqNwfqMkiY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/K6cUNifhQFa6qEX3kqNwfqMkiY.jpg 6220w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+116+0+700.8+56+3.8999999999999986+0),pixelHeight:6220,pixelWidth:6220,sizes:\"50px\",src:\"https://framerusercontent.com/images/K6cUNifhQFa6qEX3kqNwfqMkiY.jpg\",srcSet:\"https://framerusercontent.com/images/K6cUNifhQFa6qEX3kqNwfqMkiY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/K6cUNifhQFa6qEX3kqNwfqMkiY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/K6cUNifhQFa6qEX3kqNwfqMkiY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/K6cUNifhQFa6qEX3kqNwfqMkiY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/K6cUNifhQFa6qEX3kqNwfqMkiY.jpg 6220w\"},className:\"framer-14gvhdx\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+110+994+40+0+0+190.6+0),pixelHeight:5472,pixelWidth:3648,sizes:\"50px\",src:\"https://framerusercontent.com/images/fKtls43LwUwDwIuAhI9qdiUg.jpg\",srcSet:\"https://framerusercontent.com/images/fKtls43LwUwDwIuAhI9qdiUg.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/fKtls43LwUwDwIuAhI9qdiUg.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/fKtls43LwUwDwIuAhI9qdiUg.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/fKtls43LwUwDwIuAhI9qdiUg.jpg 3648w\"}},eeK_7k9cQ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+116+0+1044+45+3.8999999999999986+0),pixelHeight:5472,pixelWidth:3648,sizes:\"50px\",src:\"https://framerusercontent.com/images/fKtls43LwUwDwIuAhI9qdiUg.jpg\",srcSet:\"https://framerusercontent.com/images/fKtls43LwUwDwIuAhI9qdiUg.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/fKtls43LwUwDwIuAhI9qdiUg.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/fKtls43LwUwDwIuAhI9qdiUg.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/fKtls43LwUwDwIuAhI9qdiUg.jpg 3648w\"}},hyKhRCGDg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+116+0+680.8+56+3.8999999999999986+0),pixelHeight:5472,pixelWidth:3648,sizes:\"50px\",src:\"https://framerusercontent.com/images/fKtls43LwUwDwIuAhI9qdiUg.jpg\",srcSet:\"https://framerusercontent.com/images/fKtls43LwUwDwIuAhI9qdiUg.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/fKtls43LwUwDwIuAhI9qdiUg.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/fKtls43LwUwDwIuAhI9qdiUg.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/fKtls43LwUwDwIuAhI9qdiUg.jpg 3648w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+116+0+700.8+56+3.8999999999999986+0),pixelHeight:5472,pixelWidth:3648,sizes:\"50px\",src:\"https://framerusercontent.com/images/fKtls43LwUwDwIuAhI9qdiUg.jpg\",srcSet:\"https://framerusercontent.com/images/fKtls43LwUwDwIuAhI9qdiUg.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/fKtls43LwUwDwIuAhI9qdiUg.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/fKtls43LwUwDwIuAhI9qdiUg.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/fKtls43LwUwDwIuAhI9qdiUg.jpg 3648w\"},className:\"framer-11kdjlo\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+110+994+40+0+0+190.6+0),pixelHeight:4e3,pixelWidth:6e3,sizes:\"50px\",src:\"https://framerusercontent.com/images/MmGrf8ysKLgt7WYL0OdoM7ZbOQ.jpg\",srcSet:\"https://framerusercontent.com/images/MmGrf8ysKLgt7WYL0OdoM7ZbOQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MmGrf8ysKLgt7WYL0OdoM7ZbOQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MmGrf8ysKLgt7WYL0OdoM7ZbOQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MmGrf8ysKLgt7WYL0OdoM7ZbOQ.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/MmGrf8ysKLgt7WYL0OdoM7ZbOQ.jpg 6000w\"}},eeK_7k9cQ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+116+0+1044+45+3.8999999999999986+0),pixelHeight:4e3,pixelWidth:6e3,sizes:\"50px\",src:\"https://framerusercontent.com/images/MmGrf8ysKLgt7WYL0OdoM7ZbOQ.jpg\",srcSet:\"https://framerusercontent.com/images/MmGrf8ysKLgt7WYL0OdoM7ZbOQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MmGrf8ysKLgt7WYL0OdoM7ZbOQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MmGrf8ysKLgt7WYL0OdoM7ZbOQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MmGrf8ysKLgt7WYL0OdoM7ZbOQ.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/MmGrf8ysKLgt7WYL0OdoM7ZbOQ.jpg 6000w\"}},hyKhRCGDg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+116+0+680.8+56+3.8999999999999986+0),pixelHeight:4e3,pixelWidth:6e3,sizes:\"50px\",src:\"https://framerusercontent.com/images/MmGrf8ysKLgt7WYL0OdoM7ZbOQ.jpg\",srcSet:\"https://framerusercontent.com/images/MmGrf8ysKLgt7WYL0OdoM7ZbOQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MmGrf8ysKLgt7WYL0OdoM7ZbOQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MmGrf8ysKLgt7WYL0OdoM7ZbOQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MmGrf8ysKLgt7WYL0OdoM7ZbOQ.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/MmGrf8ysKLgt7WYL0OdoM7ZbOQ.jpg 6000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+116+0+700.8+56+3.8999999999999986+0),pixelHeight:4e3,pixelWidth:6e3,sizes:\"50px\",src:\"https://framerusercontent.com/images/MmGrf8ysKLgt7WYL0OdoM7ZbOQ.jpg\",srcSet:\"https://framerusercontent.com/images/MmGrf8ysKLgt7WYL0OdoM7ZbOQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MmGrf8ysKLgt7WYL0OdoM7ZbOQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MmGrf8ysKLgt7WYL0OdoM7ZbOQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MmGrf8ysKLgt7WYL0OdoM7ZbOQ.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/MmGrf8ysKLgt7WYL0OdoM7ZbOQ.jpg 6000w\"},className:\"framer-1qzq1o2\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5gm270\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-grnvyj\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15u3kku\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oxw646-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 213, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"E_rE7pZ6r\",layoutId:\"E_rE7pZ6r\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pz9mne-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 213, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"LbU8T7QcD\",layoutId:\"LbU8T7QcD\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pc6icq-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 213, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"VaCgFusqC\",layoutId:\"VaCgFusqC\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wvziw2-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 213, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"W75sSJRwS\",layoutId:\"W75sSJRwS\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vqpmt-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 213, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"oDpxXCVst\",layoutId:\"oDpxXCVst\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11o6jg3\",\"data-styles-preset\":\"OFCTThyeJ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, rgb(13, 36, 64))\"},children:\"5.0\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11o6jg3\",\"data-styles-preset\":\"OFCTThyeJ\",style:{\"--framer-text-color\":\"var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, rgb(13, 36, 64))\"},children:\"5.0\"})}),className:\"framer-hqfbgo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14no3a8\",\"data-styles-preset\":\"zdBwB6iUh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, rgb(13, 36, 64))\"},children:\"On Google Business Reviews\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14no3a8\",\"data-styles-preset\":\"zdBwB6iUh\",style:{\"--framer-text-color\":\"var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, rgb(13, 36, 64))\"},children:\"On Google Business Reviews\"})}),className:\"framer-cq1p8f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1tvouxr\",\"data-framer-name\":\"About Section\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1v58gcz\",\"data-framer-appear-id\":\"1v58gcz\",\"data-framer-name\":\"Container\",initial:animation4,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kkvd0b\",\"data-framer-name\":\"Left Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eeK_7k9cQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-5wb9al\",\"data-styles-preset\":\"lMGUUJA69\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, rgb(13, 36, 64))\"},children:\"Your trusted finance broker in Brisbane\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-5wb9al\",\"data-styles-preset\":\"lMGUUJA69\",style:{\"--framer-text-color\":\"var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, rgb(13, 36, 64))\"},children:\"Your trusted finance broker in Brisbane\"})}),className:\"framer-144gk0b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eeK_7k9cQ:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-14no3a8\",\"data-styles-preset\":\"zdBwB6iUh\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106))\"},children:[\"Whether you're \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kKT1T8bZ6\"},nodeId:\"C49KEP_4o\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-u98qkf\",\"data-styles-preset\":\"EfqbzGugQ\",children:\"buying your first home\"})}),\", upgrading, downsizing, or \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eRvXjxgAL\"},nodeId:\"C49KEP_4o\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-u98qkf\",\"data-styles-preset\":\"EfqbzGugQ\",children:\"purchasing investment properties\"})}),\", Ian Cook Finance offers tailored advice to meet your needs. Our experienced Brisbane-based team understands the local market and simplifies the mortgage process.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14no3a8\",\"data-styles-preset\":\"zdBwB6iUh\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106))\"},children:\"As a top finance broker in Brisbane, we aim for quick, seamless approvals. Using our extensive lender network and industry expertise, we find loan options to suit your needs. Trust Ian Cook Finance for personalised solutions and exceptional service, ensuring a smooth and stress-free journey to homeownership.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-14no3a8\",\"data-styles-preset\":\"zdBwB6iUh\",style:{\"--framer-text-color\":\"var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106))\"},children:[\"Whether you're \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kKT1T8bZ6\"},nodeId:\"C49KEP_4o\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-u98qkf\",\"data-styles-preset\":\"EfqbzGugQ\",children:\"buying your first home\"})}),\", upgrading, downsizing, or \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eRvXjxgAL\"},nodeId:\"C49KEP_4o\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-u98qkf\",\"data-styles-preset\":\"EfqbzGugQ\",children:\"purchasing investment properties\"})}),\", Ian Cook Finance offers tailored advice to meet your needs. Our experienced Brisbane-based team understands the local market and simplifies the mortgage process.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14no3a8\",\"data-styles-preset\":\"zdBwB6iUh\",style:{\"--framer-text-color\":\"var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106))\"},children:\"As a top finance broker in Brisbane, we aim for quick, seamless approvals. Using our extensive lender network and industry expertise, we find loan options to suit your needs. Trust Ian Cook Finance for personalised solutions and exceptional service, ensuring a smooth and stress-free journey to homeownership.\"})]}),className:\"framer-u7235q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 390px)`,y:(componentViewport?.y||0)+0+1384.6+30+0+0+395.2},eeK_7k9cQ:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 60px, 768px) * 0.8)`,y:(componentViewport?.y||0)+0+1262.8+50+0+0+413.2},hyKhRCGDg:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1024px) * 0.55 - 40px, 1px)`,y:(componentViewport?.y||0)+0+910.5999999999999+90+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:498,width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) * 0.57 - 55px, 1px)`,y:(componentViewport?.y||0)+0+930.5999999999999+96+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-f3jx3g-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{variant:\"SYeS9FOsY\"}},children:/*#__PURE__*/_jsx(FaqArea01,{height:\"100%\",id:\"la3C0rvT9\",layoutId:\"la3C0rvT9\",style:{width:\"100%\"},variant:\"kJb4hRvJA\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-16sdv1m\",\"data-framer-name\":\"Service Section\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mxkuva\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s0jpqf\",\"data-framer-name\":\"Content Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-125unlh\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-5wb9al\",\"data-styles-preset\":\"lMGUUJA69\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e7ca838-c2ed-4206-b7ed-3a2bce7e945e, rgb(255, 255, 255))\"},children:\"Our services\"})}),className:\"framer-241lss\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14no3a8\",\"data-styles-preset\":\"zdBwB6iUh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e7ca838-c2ed-4206-b7ed-3a2bce7e945e, rgb(255, 255, 255))\"},children:\"Your path to finance approval made simple. Rely on our seasoned professionals to find tailored options.\"})}),className:\"framer-934wpz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ezik\",\"data-framer-name\":\"Services\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kKT1T8bZ6\"},implicitPathVariables:undefined},{href:{webPageId:\"kKT1T8bZ6\"},implicitPathVariables:undefined},{href:{webPageId:\"kKT1T8bZ6\"},implicitPathVariables:undefined},{href:{webPageId:\"kKT1T8bZ6\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 390px) - 50px, 50px)`,y:(componentViewport?.y||0)+0+2367.8+0+0+50+0+0+254.2+0+0},eeK_7k9cQ:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 768px) - 72px) / 2, 50px)`,y:(componentViewport?.y||0)+0+2304+0+0+70+-11368683772161603e-29+0+272.2+24+0},hyKhRCGDg:{width:`max((min(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px), 1070px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+1598.6+0+0+90+0+0+283.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:`max((min(min(${componentViewport?.width||\"100vw\"} - 60px, 1400px), 1224px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+1654.6+0+0+90+0+0+283.2+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-txfi0k-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{oOUlSQGgr:resolvedLinks1[3]},eeK_7k9cQ:{oOUlSQGgr:resolvedLinks1[2]},hyKhRCGDg:{oOUlSQGgr:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(SingleServiceItem,{fJKcWmMeU:\"Discover tailored solutions and expert guidance to make your first home purchase seamless and stress-free.\",height:\"100%\",id:\"vrfdzQJOy\",layoutId:\"vrfdzQJOy\",oOUlSQGgr:resolvedLinks1[0],pTyT3R1Xe:addImageAlt({src:\"https://framerusercontent.com/images/BkNzy3lyKZj7j9d486HGygkuUvw.webp\",srcSet:\"https://framerusercontent.com/images/BkNzy3lyKZj7j9d486HGygkuUvw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/BkNzy3lyKZj7j9d486HGygkuUvw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/BkNzy3lyKZj7j9d486HGygkuUvw.webp 1920w\"},\"\"),SnuvXM0Mi:\"First Home Buyer Loans\",style:{width:\"100%\"},variant:\"zKGIa0zB2\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MyEqvVb1d\"},implicitPathVariables:undefined},{href:{webPageId:\"MyEqvVb1d\"},implicitPathVariables:undefined},{href:{webPageId:\"MyEqvVb1d\"},implicitPathVariables:undefined},{href:{webPageId:\"MyEqvVb1d\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 390px) - 50px, 50px)`,y:(componentViewport?.y||0)+0+2367.8+0+0+50+0+0+254.2+0+535},eeK_7k9cQ:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 768px) - 72px) / 2, 50px)`,y:(componentViewport?.y||0)+0+2304+0+0+70+-11368683772161603e-29+0+272.2+24+0},hyKhRCGDg:{width:`max((min(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px), 1070px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+1598.6+0+0+90+0+0+283.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:`max((min(min(${componentViewport?.width||\"100vw\"} - 60px, 1400px), 1224px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+1654.6+0+0+90+0+0+283.2+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-z55f1h-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{oOUlSQGgr:resolvedLinks2[3]},eeK_7k9cQ:{oOUlSQGgr:resolvedLinks2[2]},hyKhRCGDg:{oOUlSQGgr:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(SingleServiceItem,{fJKcWmMeU:\"Unlock better rates and terms by refinancing your home loan with our personalised advice and support.\",height:\"100%\",id:\"SbOKDNZBY\",layoutId:\"SbOKDNZBY\",oOUlSQGgr:resolvedLinks2[0],pTyT3R1Xe:addImageAlt({src:\"https://framerusercontent.com/images/ZdJdaSkJ2rpOxiMsCTBH4uhtvrs.webp\",srcSet:\"https://framerusercontent.com/images/ZdJdaSkJ2rpOxiMsCTBH4uhtvrs.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ZdJdaSkJ2rpOxiMsCTBH4uhtvrs.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZdJdaSkJ2rpOxiMsCTBH4uhtvrs.webp 1920w\"},\"\"),SnuvXM0Mi:\"Refinancing Home Loans\",style:{width:\"100%\"},variant:\"zKGIa0zB2\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"eRvXjxgAL\"},implicitPathVariables:undefined},{href:{webPageId:\"eRvXjxgAL\"},implicitPathVariables:undefined},{href:{webPageId:\"eRvXjxgAL\"},implicitPathVariables:undefined},{href:{webPageId:\"eRvXjxgAL\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 390px) - 50px, 50px)`,y:(componentViewport?.y||0)+0+2367.8+0+0+50+0+0+254.2+0+1070},eeK_7k9cQ:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 768px) - 72px) / 2, 50px)`,y:(componentViewport?.y||0)+0+2304+0+0+70+-11368683772161603e-29+0+272.2+24+535},hyKhRCGDg:{width:`max((min(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px), 1070px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+1598.6+0+0+90+0+0+283.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:`max((min(min(${componentViewport?.width||\"100vw\"} - 60px, 1400px), 1224px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+1654.6+0+0+90+0+0+283.2+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8t9k07-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{oOUlSQGgr:resolvedLinks3[3]},eeK_7k9cQ:{oOUlSQGgr:resolvedLinks3[2]},hyKhRCGDg:{oOUlSQGgr:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(SingleServiceItem,{fJKcWmMeU:\"Maximise your investment potential with customised loan options designed for property investors.\",height:\"100%\",id:\"Qo4IxOL6P\",layoutId:\"Qo4IxOL6P\",oOUlSQGgr:resolvedLinks3[0],pTyT3R1Xe:addImageAlt({src:\"https://framerusercontent.com/images/B4hXgwKX3IVVgdQ2NygiW2bdOw.webp\",srcSet:\"https://framerusercontent.com/images/B4hXgwKX3IVVgdQ2NygiW2bdOw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/B4hXgwKX3IVVgdQ2NygiW2bdOw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/B4hXgwKX3IVVgdQ2NygiW2bdOw.webp 1920w\"},\"\"),SnuvXM0Mi:\"Investment Property Loans\",style:{width:\"100%\"},variant:\"zKGIa0zB2\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"GHZ2JaYLM\"},implicitPathVariables:undefined},{href:{webPageId:\"GHZ2JaYLM\"},implicitPathVariables:undefined},{href:{webPageId:\"GHZ2JaYLM\"},implicitPathVariables:undefined},{href:{webPageId:\"GHZ2JaYLM\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 390px) - 50px, 50px)`,y:(componentViewport?.y||0)+0+2367.8+0+0+50+0+0+254.2+0+1605},eeK_7k9cQ:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 768px) - 72px) / 2, 50px)`,y:(componentViewport?.y||0)+0+2304+0+0+70+-11368683772161603e-29+0+272.2+24+535},hyKhRCGDg:{width:`max((min(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px), 1070px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+1598.6+0+0+90+0+0+283.2+0+535}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:`max((min(min(${componentViewport?.width||\"100vw\"} - 60px, 1400px), 1224px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+1654.6+0+0+90+0+0+283.2+0+535,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1359n9q-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{oOUlSQGgr:resolvedLinks4[3]},eeK_7k9cQ:{oOUlSQGgr:resolvedLinks4[2]},hyKhRCGDg:{oOUlSQGgr:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(SingleServiceItem,{fJKcWmMeU:\"Fuel your business growth with flexible and competitive commercial loan solutions tailored to your specific needs.\",height:\"100%\",id:\"CG1rBq4tU\",layoutId:\"CG1rBq4tU\",oOUlSQGgr:resolvedLinks4[0],pTyT3R1Xe:addImageAlt({src:\"https://framerusercontent.com/images/4SkfYNB4oeCgmJm2Jm3MEPYiI.webp\",srcSet:\"https://framerusercontent.com/images/4SkfYNB4oeCgmJm2Jm3MEPYiI.webp?scale-down-to=512 512w,https://framerusercontent.com/images/4SkfYNB4oeCgmJm2Jm3MEPYiI.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/4SkfYNB4oeCgmJm2Jm3MEPYiI.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/4SkfYNB4oeCgmJm2Jm3MEPYiI.webp 2790w\"},\"\"),SnuvXM0Mi:\"Commercial Loans\",style:{width:\"100%\"},variant:\"zKGIa0zB2\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"e0afEjOkg\"},implicitPathVariables:undefined},{href:{webPageId:\"e0afEjOkg\"},implicitPathVariables:undefined},{href:{webPageId:\"e0afEjOkg\"},implicitPathVariables:undefined},{href:{webPageId:\"e0afEjOkg\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 390px) - 50px, 50px)`,y:(componentViewport?.y||0)+0+2367.8+0+0+50+0+0+254.2+0+2140},eeK_7k9cQ:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 768px) - 72px) / 2, 50px)`,y:(componentViewport?.y||0)+0+2304+0+0+70+-11368683772161603e-29+0+272.2+24+1070},hyKhRCGDg:{width:`max((min(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px), 1070px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+1598.6+0+0+90+0+0+283.2+0+535}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:`max((min(min(${componentViewport?.width||\"100vw\"} - 60px, 1400px), 1224px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+1654.6+0+0+90+0+0+283.2+0+535,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-plvl0p-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{oOUlSQGgr:resolvedLinks5[3]},eeK_7k9cQ:{oOUlSQGgr:resolvedLinks5[2]},hyKhRCGDg:{oOUlSQGgr:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(SingleServiceItem,{fJKcWmMeU:\"Get the funding you need for business assets, from vehicles to equipment, with our hassle-free finance options.\",height:\"100%\",id:\"FNq5hIz3s\",layoutId:\"FNq5hIz3s\",oOUlSQGgr:resolvedLinks5[0],pTyT3R1Xe:addImageAlt({src:\"https://framerusercontent.com/images/haoKL4cBfkTETc2Ry4fGKkOtE.jpg\",srcSet:\"https://framerusercontent.com/images/haoKL4cBfkTETc2Ry4fGKkOtE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/haoKL4cBfkTETc2Ry4fGKkOtE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/haoKL4cBfkTETc2Ry4fGKkOtE.jpg 1500w\"},\"\"),SnuvXM0Mi:\"Asset Finance\",style:{width:\"100%\"},variant:\"zKGIa0zB2\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"oqVl2Nhkp\"},implicitPathVariables:undefined},{href:{webPageId:\"oqVl2Nhkp\"},implicitPathVariables:undefined},{href:{webPageId:\"oqVl2Nhkp\"},implicitPathVariables:undefined},{href:{webPageId:\"oqVl2Nhkp\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 390px) - 50px, 50px)`,y:(componentViewport?.y||0)+0+2367.8+0+0+50+0+0+254.2+0+2675},eeK_7k9cQ:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 768px) - 72px) / 2, 50px)`,y:(componentViewport?.y||0)+0+2304+0+0+70+-11368683772161603e-29+0+272.2+24+1070},hyKhRCGDg:{width:`max((min(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px), 1070px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+1598.6+0+0+90+0+0+283.2+0+535}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:`max((min(min(${componentViewport?.width||\"100vw\"} - 60px, 1400px), 1224px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+1654.6+0+0+90+0+0+283.2+0+535,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11k00se-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{oOUlSQGgr:resolvedLinks6[3]},eeK_7k9cQ:{oOUlSQGgr:resolvedLinks6[2]},hyKhRCGDg:{oOUlSQGgr:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(SingleServiceItem,{fJKcWmMeU:\"Achieve your personal financial goals with competitive, flexible products, offered through our panel of personal loan lenders.\",height:\"100%\",id:\"qiRxw8cz9\",layoutId:\"qiRxw8cz9\",oOUlSQGgr:resolvedLinks6[0],pTyT3R1Xe:addImageAlt({src:\"https://framerusercontent.com/images/TnmJXPVz9InmHT9tCxeDzLn0qB0.jpg\",srcSet:\"https://framerusercontent.com/images/TnmJXPVz9InmHT9tCxeDzLn0qB0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TnmJXPVz9InmHT9tCxeDzLn0qB0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TnmJXPVz9InmHT9tCxeDzLn0qB0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/TnmJXPVz9InmHT9tCxeDzLn0qB0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/TnmJXPVz9InmHT9tCxeDzLn0qB0.jpg 6000w\"},\"\"),SnuvXM0Mi:\"Personal Loans\",style:{width:\"100%\"},variant:\"zKGIa0zB2\",width:\"100%\"})})})})})})]})]})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1jl90j\",\"data-framer-name\":\"Stats\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ylouiq\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h66w7o\",\"data-framer-name\":\"Left Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-skzi7o\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-49bvpv\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mb89fw-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 213, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"hwHpbbGUb\",layoutId:\"hwHpbbGUb\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zh80-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 213, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"LFFQojUGT\",layoutId:\"LFFQojUGT\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zgm0b2-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 213, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"Orq5rSGz7\",layoutId:\"Orq5rSGz7\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ee3vly-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 213, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"D3z0ksH4o\",layoutId:\"D3z0ksH4o\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16vo3na-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 213, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"r0Ua0UX5d\",layoutId:\"r0Ua0UX5d\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eeK_7k9cQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1vm3rd8\",\"data-styles-preset\":\"U0dY10kum\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, rgb(13, 36, 64))\"},children:\"Why are we consistently rated 5 stars?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1vm3rd8\",\"data-styles-preset\":\"U0dY10kum\",style:{\"--framer-text-color\":\"var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, rgb(13, 36, 64))\"},children:\"Why are we consistently rated 5 stars?\"})}),className:\"framer-r9r0pc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eeK_7k9cQ:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-14no3a8\",\"data-styles-preset\":\"zdBwB6iUh\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106))\"},children:[\"At \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XeT0WwFgN\"},nodeId:\"yL9Z5tEh0\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-u98qkf\",\"data-styles-preset\":\"EfqbzGugQ\",children:\"Ian Cook Finance\"})}),\", our expert finance brokers in Brisbane are committed to ensuring that our finance solutions are straightforward, easily accessible, and provide you with confidence.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14no3a8\",\"data-styles-preset\":\"zdBwB6iUh\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106))\"},children:\"Building lasting relationships with our clients is central to our mission. We prioritise your needs over the banks\u2019 by putting ourselves in your position and focusing on your best interests.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14no3a8\",\"data-styles-preset\":\"zdBwB6iUh\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106))\"},children:\"As an independent Brisbane finance broker, we collaborate closely with you at every stage, helping you find the loan solution that best fits your unique situation.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-14no3a8\",\"data-styles-preset\":\"zdBwB6iUh\",style:{\"--framer-text-color\":\"var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106))\"},children:[\"At \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XeT0WwFgN\"},nodeId:\"yL9Z5tEh0\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-u98qkf\",\"data-styles-preset\":\"EfqbzGugQ\",children:\"Ian Cook Finance\"})}),\", our expert finance brokers in Brisbane are committed to ensuring that our finance solutions are straightforward, easily accessible, and provide you with confidence.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14no3a8\",\"data-styles-preset\":\"zdBwB6iUh\",style:{\"--framer-text-color\":\"var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106))\"},children:\"Building lasting relationships with our clients is central to our mission. We prioritise your needs over the banks\u2019 by putting ourselves in your position and focusing on your best interests.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14no3a8\",\"data-styles-preset\":\"zdBwB6iUh\",style:{\"--framer-text-color\":\"var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106))\"},children:\"As an independent Brisbane finance broker, we collaborate closely with you at every stage, helping you find the loan solution that best fits your unique situation.\"})]}),className:\"framer-1qegzzy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13vwvwq\",\"data-framer-name\":\"Right Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{background:{alt:\"Ian Cook sitting in chair finance brokers brisbane\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5918+50+0+0+598+0+0),pixelHeight:2400,pixelWidth:3598,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 390px)`,src:\"https://framerusercontent.com/images/BFSoUI0GUdF5rmDTWQLeXvvuOo.jpg\",srcSet:\"https://framerusercontent.com/images/BFSoUI0GUdF5rmDTWQLeXvvuOo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BFSoUI0GUdF5rmDTWQLeXvvuOo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BFSoUI0GUdF5rmDTWQLeXvvuOo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BFSoUI0GUdF5rmDTWQLeXvvuOo.jpg 3598w\"}},eeK_7k9cQ:{background:{alt:\"Ian Cook sitting in chair finance brokers brisbane\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4355.2+70+0+0+632+0+0),pixelHeight:2400,pixelWidth:3598,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 60px, 768px) * 0.8)`,src:\"https://framerusercontent.com/images/BFSoUI0GUdF5rmDTWQLeXvvuOo.jpg\",srcSet:\"https://framerusercontent.com/images/BFSoUI0GUdF5rmDTWQLeXvvuOo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BFSoUI0GUdF5rmDTWQLeXvvuOo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BFSoUI0GUdF5rmDTWQLeXvvuOo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BFSoUI0GUdF5rmDTWQLeXvvuOo.jpg 3598w\"}},hyKhRCGDg:{background:{alt:\"Ian Cook sitting in chair finance brokers brisbane\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3117.8+100+0+16+0+0),pixelHeight:2400,pixelWidth:3598,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 60px, 1024px) * 0.52)`,src:\"https://framerusercontent.com/images/BFSoUI0GUdF5rmDTWQLeXvvuOo.jpg\",srcSet:\"https://framerusercontent.com/images/BFSoUI0GUdF5rmDTWQLeXvvuOo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BFSoUI0GUdF5rmDTWQLeXvvuOo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BFSoUI0GUdF5rmDTWQLeXvvuOo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BFSoUI0GUdF5rmDTWQLeXvvuOo.jpg 3598w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Ian Cook sitting in chair finance brokers brisbane\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3173.8+130+0+16+0+0),pixelHeight:2400,pixelWidth:3598,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) / 2)`,src:\"https://framerusercontent.com/images/BFSoUI0GUdF5rmDTWQLeXvvuOo.jpg\",srcSet:\"https://framerusercontent.com/images/BFSoUI0GUdF5rmDTWQLeXvvuOo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BFSoUI0GUdF5rmDTWQLeXvvuOo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BFSoUI0GUdF5rmDTWQLeXvvuOo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BFSoUI0GUdF5rmDTWQLeXvvuOo.jpg 3598w\"},className:\"framer-1ciqzqo\",\"data-framer-name\":\"Image\"})})})]})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-h4u7bu\",\"data-framer-name\":\"Mortgage Step\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vvzulm\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-5wb9al\",\"data-styles-preset\":\"lMGUUJA69\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, rgb(13, 36, 64))\"},children:\"Your path to finance in 3 easy steps\"})}),className:\"framer-a3q6cr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106))\"},children:\"From consultation to settlement, our expert Brisbane finance brokers guide you through every step, ensuring a smooth and stress-free journey.\"})}),fonts:[\"GF;Inter-500\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14no3a8\",\"data-styles-preset\":\"zdBwB6iUh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106))\"},children:\"From consultation to settlement, our expert Brisbane finance brokers guide you through every step, ensuring a smooth and stress-free journey.\"})}),className:\"framer-dy3s3v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zaji2s\",\"data-framer-name\":\"Steps\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jmms0q\",\"data-framer-name\":\"Step 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g6fj6q\",\"data-framer-name\":\"Content Container\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pzxy3l\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{background:{alt:\"finance broker in brisbane holding ipad doing pre-approval with young woman smiling\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7176+0+157.2+0+0+25+0+0+0),pixelHeight:1e3,pixelWidth:1500,sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 390px) - 50px, 1px), min(${componentViewport?.width||\"100vw\"} - 40px, 390px) - 50px)`,src:\"https://framerusercontent.com/images/3m8uYz4szTyfr1CQN5Ec9AIaOlw.jpg\",srcSet:\"https://framerusercontent.com/images/3m8uYz4szTyfr1CQN5Ec9AIaOlw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3m8uYz4szTyfr1CQN5Ec9AIaOlw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3m8uYz4szTyfr1CQN5Ec9AIaOlw.jpg 1500w\"}},eeK_7k9cQ:{background:{alt:\"finance broker in brisbane holding ipad doing pre-approval with young woman smiling\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5687.2+0+268.2+0+0+80+0+0+0),pixelHeight:1e3,pixelWidth:1500,sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 768px), 1px), min(${componentViewport?.width||\"100vw\"} - 60px, 768px) * 0.8)`,src:\"https://framerusercontent.com/images/3m8uYz4szTyfr1CQN5Ec9AIaOlw.jpg\",srcSet:\"https://framerusercontent.com/images/3m8uYz4szTyfr1CQN5Ec9AIaOlw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3m8uYz4szTyfr1CQN5Ec9AIaOlw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3m8uYz4szTyfr1CQN5Ec9AIaOlw.jpg 1500w\"}},hyKhRCGDg:{background:{alt:\"finance broker in brisbane holding ipad doing pre-approval with young woman smiling\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3899.8+0+272.2+0+0+70+0+0),pixelHeight:1e3,pixelWidth:1500,sizes:`calc(min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px) - 20px, 1px), 1024px) * 0.48)`,src:\"https://framerusercontent.com/images/3m8uYz4szTyfr1CQN5Ec9AIaOlw.jpg\",srcSet:\"https://framerusercontent.com/images/3m8uYz4szTyfr1CQN5Ec9AIaOlw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3m8uYz4szTyfr1CQN5Ec9AIaOlw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3m8uYz4szTyfr1CQN5Ec9AIaOlw.jpg 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"finance broker in brisbane holding ipad doing pre-approval with young woman smiling\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4015.8+0+283.2+0+0+85+0+0),pixelHeight:1e3,pixelWidth:1500,sizes:`calc(min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 1400px) - 130px, 1px), min(${componentViewport?.width||\"100vw\"} - 60px, 1400px) - 130px) * 0.48)`,src:\"https://framerusercontent.com/images/3m8uYz4szTyfr1CQN5Ec9AIaOlw.jpg\",srcSet:\"https://framerusercontent.com/images/3m8uYz4szTyfr1CQN5Ec9AIaOlw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3m8uYz4szTyfr1CQN5Ec9AIaOlw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3m8uYz4szTyfr1CQN5Ec9AIaOlw.jpg 1500w\"},className:\"framer-1f5st0s\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jl65nk\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{y:(componentViewport?.y||0)+0+7176+0+157.2+0+0+25+0+364+0+0},eeK_7k9cQ:{y:(componentViewport?.y||0)+0+5687.2+0+268.2+0+0+80+0+610+0+0},hyKhRCGDg:{y:(componentViewport?.y||0)+0+3899.8+0+272.2+0+0+70+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:(componentViewport?.y||0)+0+4015.8+0+283.2+0+0+85+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-p2ncmm-container\",children:/*#__PURE__*/_jsx(Step,{edZs8HWNA:\"STEP 1\",height:\"100%\",id:\"bve5o5_54\",layoutId:\"bve5o5_54\",nMp0wbRbd:\"var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106))\",oqJJk_FLz:\"var(--token-2e7ca838-c2ed-4206-b7ed-3a2bce7e945e, rgb(255, 255, 255))\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-170hcag\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lr8sf2\",\"data-framer-name\":\"Title+Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-5wb9al\",\"data-styles-preset\":\"lMGUUJA69\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, rgb(13, 36, 64))\"},children:\"Consultation and pre-approval\"})}),className:\"framer-d1jm20\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14no3a8\",\"data-styles-preset\":\"zdBwB6iUh\",style:{\"--framer-text-color\":\"var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106))\"},children:\"Kickstart your financing journey with a free consultation from one of Brisbane's leading finance brokers. We\u2019ll assess your financial situation and provide a pre-approval estimate to help you understand your borrowing capacity.\"})}),className:\"framer-vjx3a3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1swf4sa\",\"data-framer-name\":\"Point\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{width:`min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 390px) - 50px, 1px), min(${componentViewport?.width||\"100vw\"} - 40px, 390px) - 50px)`,y:(componentViewport?.y||0)+0+7176+0+157.2+0+0+25+0+364+0+68+0+253.2+0+0},eeK_7k9cQ:{width:`max((min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 768px), 1px), min(${componentViewport?.width||\"100vw\"} - 60px, 768px) * 0.8) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+5687.2+0+268.2+0+0+80+0+610+0+78+0+257.2+0},hyKhRCGDg:{width:`max((max(min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px) - 20px, 1px), 1024px) * 0.52 - 50px, 1px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+3899.8+0+272.2+0+0+70+0+0+115.4+0+259.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:94,width:`max((max(min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 1400px) - 130px, 1px), min(${componentViewport?.width||\"100vw\"} - 60px, 1400px) - 130px) * 0.52 - 100px, 1px) - 32px) / 2, 1px)`,y:(componentViewport?.y||0)+0+4015.8+0+283.2+0+0+85+0+0+131.4+0+267.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uu58aq-container\",children:/*#__PURE__*/_jsx(SingleIconBox,{c4yLon5u9:\"We review your finances and credit to provide a pre-approval estimate.\",height:\"100%\",HTQgcP2Oq:\"User\",id:\"WbV617ymb\",layoutId:\"WbV617ymb\",POyisJCtV:\"Tailored to you\",style:{width:\"100%\"},variant:\"kJ3bEL3Q9\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{width:`min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 390px) - 50px, 1px), min(${componentViewport?.width||\"100vw\"} - 40px, 390px) - 50px)`,y:(componentViewport?.y||0)+0+7176+0+157.2+0+0+25+0+364+0+68+0+253.2+0+118},eeK_7k9cQ:{width:`max((min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 768px), 1px), min(${componentViewport?.width||\"100vw\"} - 60px, 768px) * 0.8) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+5687.2+0+268.2+0+0+80+0+610+0+78+0+257.2+0},hyKhRCGDg:{width:`max((max(min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px) - 20px, 1px), 1024px) * 0.52 - 50px, 1px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+3899.8+0+272.2+0+0+70+0+0+115.4+0+259.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:94,width:`max((max(min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 1400px) - 130px, 1px), min(${componentViewport?.width||\"100vw\"} - 60px, 1400px) - 130px) * 0.52 - 100px, 1px) - 32px) / 2, 1px)`,y:(componentViewport?.y||0)+0+4015.8+0+283.2+0+0+85+0+0+131.4+0+267.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yuarn2-container\",children:/*#__PURE__*/_jsx(SingleIconBox,{c4yLon5u9:\"Our brokers offer expert advice to help you understand your options.\",height:\"100%\",HTQgcP2Oq:\"Chat\",id:\"BdVTxPUwu\",layoutId:\"BdVTxPUwu\",POyisJCtV:\"Expert advice\",style:{width:\"100%\"},variant:\"kJ3bEL3Q9\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h00vuq\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{y:(componentViewport?.y||0)+0+7176+0+157.2+0+0+25+0+364+0+558.2+0},eeK_7k9cQ:{y:(componentViewport?.y||0)+0+5687.2+0+268.2+0+0+80+0+610+0+464.2+0},hyKhRCGDg:{y:(componentViewport?.y||0)+0+3899.8+0+272.2+0+0+70+0+0+541+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,y:(componentViewport?.y||0)+0+4015.8+0+283.2+0+0+85+0+0+581+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jf4mw9-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"l4tlhIaYl\",layoutId:\"l4tlhIaYl\",LZz_9I1jG:\"https://calendly.com/iancook/15-minute-phone-meeting-with-ian\",NRb95IGcg:\"Book a pre-approval\",variant:\"rhhYY7IfK\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sgdq0w\",\"data-framer-name\":\"Step 2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-185ijgr\",\"data-framer-name\":\"Content Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vjv8pi\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{y:(componentViewport?.y||0)+0+7176+0+157.2+0+1055.2+25+0+680+0+0},eeK_7k9cQ:{y:(componentViewport?.y||0)+0+5687.2+0+268.2+0+1317.2+80+0+610+0+0},hyKhRCGDg:{y:(componentViewport?.y||0)+0+3899.8+0+272.2+0+764+70+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:(componentViewport?.y||0)+0+4015.8+0+283.2+0+834+85+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sik82b-container\",children:/*#__PURE__*/_jsx(Step,{edZs8HWNA:\"STEP 2\",height:\"100%\",id:\"Yy0GS1EXB\",layoutId:\"Yy0GS1EXB\",nMp0wbRbd:\"var(--token-2e7ca838-c2ed-4206-b7ed-3a2bce7e945e, rgb(255, 255, 255))\",oqJJk_FLz:\"rgba(255, 255, 255, 0.1)\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ipz496\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h2cy2x\",\"data-framer-name\":\"Title+Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-5wb9al\",\"data-styles-preset\":\"lMGUUJA69\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2e7ca838-c2ed-4206-b7ed-3a2bce7e945e, rgb(255, 255, 255))\"},children:\"Loan search and application\"})}),className:\"framer-d6mgwy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-14no3a8\",\"data-styles-preset\":\"zdBwB6iUh\",style:{\"--framer-text-color\":\"var(--token-b236c098-f886-4067-ab6b-c27f71663a3d, rgb(249, 249, 250))\"},children:[\"As your dedicated finance broker in Brisbane, we search through numerous lenders to find suitable loan options for you. \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XeT0WwFgN\"},nodeId:\"VJ3tKpwRj\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-16fmq1r\",\"data-styles-preset\":\"NvEHCHD3g\",children:\"Our experts\"})}),\" will prepare a strong loan application to maximise your chances of approval.\"]})}),className:\"framer-12squ8j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13nipme\",\"data-framer-name\":\"Point\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{width:`min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 390px) - 50px, 1px), min(${componentViewport?.width||\"100vw\"} - 40px, 390px) - 50px)`,y:(componentViewport?.y||0)+0+7176+0+157.2+0+1055.2+25+0+680+0+68+0+253.2+0+0},eeK_7k9cQ:{width:`max((min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 768px), 1px), min(${componentViewport?.width||\"100vw\"} - 60px, 768px) * 0.8) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+5687.2+0+268.2+0+1317.2+80+0+610+0+78+0+257.2+0},hyKhRCGDg:{width:`max((max(min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px) - 20px, 1px), 1030px) * 0.52 - 20px, 1px) - 12px) / 2, 1px)`,y:(componentViewport?.y||0)+0+3899.8+0+272.2+0+764+70+0+0+115.4+0+259.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:94,width:`max((max(min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 1400px) - 170px, 1px), min(${componentViewport?.width||\"100vw\"} - 60px, 1400px) - 170px) * 0.5182 - 64px, 1px) - 32px) / 2, 1px)`,y:(componentViewport?.y||0)+0+4015.8+0+283.2+0+834+85+0+0+131.4+0+267.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kdausb-container\",children:/*#__PURE__*/_jsx(SingleIconBox,{c4yLon5u9:\"Access loan options from our extensive network of reputable lenders.\",height:\"100%\",HTQgcP2Oq:\"GridFour\",id:\"V5nq2s0Fx\",layoutId:\"V5nq2s0Fx\",POyisJCtV:\"Compare lenders\",style:{width:\"100%\"},variant:\"tDZbmRnLj\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{width:`min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 390px) - 50px, 1px), min(${componentViewport?.width||\"100vw\"} - 40px, 390px) - 50px)`,y:(componentViewport?.y||0)+0+7176+0+157.2+0+1055.2+25+0+680+0+68+0+253.2+0+118},eeK_7k9cQ:{width:`max((min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 768px), 1px), min(${componentViewport?.width||\"100vw\"} - 60px, 768px) * 0.8) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+5687.2+0+268.2+0+1317.2+80+0+610+0+78+0+257.2+0},hyKhRCGDg:{width:`max((max(min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px) - 20px, 1px), 1030px) * 0.52 - 20px, 1px) - 12px) / 2, 1px)`,y:(componentViewport?.y||0)+0+3899.8+0+272.2+0+764+70+0+0+115.4+0+259.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:94,width:`max((max(min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 1400px) - 170px, 1px), min(${componentViewport?.width||\"100vw\"} - 60px, 1400px) - 170px) * 0.5182 - 64px, 1px) - 32px) / 2, 1px)`,y:(componentViewport?.y||0)+0+4015.8+0+283.2+0+834+85+0+0+131.4+0+267.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ntkkx4-container\",children:/*#__PURE__*/_jsx(SingleIconBox,{c4yLon5u9:\"We prepare a complete and accurate loan application.\",height:\"100%\",HTQgcP2Oq:\"File\",id:\"Tp75JrIhX\",layoutId:\"Tp75JrIhX\",POyisJCtV:\"Application support\",style:{width:\"100%\"},variant:\"tDZbmRnLj\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nrxqus\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sbDcuc56a\"},implicitPathVariables:undefined},{href:{webPageId:\"sbDcuc56a\"},implicitPathVariables:undefined},{href:{webPageId:\"sbDcuc56a\"},implicitPathVariables:undefined},{href:{webPageId:\"sbDcuc56a\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{y:(componentViewport?.y||0)+0+7176+0+157.2+0+1055.2+25+0+680+0+558.2+0},eeK_7k9cQ:{y:(componentViewport?.y||0)+0+5687.2+0+268.2+0+1317.2+80+0+610+0+464.2+0},hyKhRCGDg:{y:(componentViewport?.y||0)+0+3899.8+0+272.2+0+764+70+0+0+541+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,y:(componentViewport?.y||0)+0+4015.8+0+283.2+0+834+85+0+0+581+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x7yn6w-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{LZz_9I1jG:resolvedLinks7[3]},eeK_7k9cQ:{LZz_9I1jG:resolvedLinks7[2]},hyKhRCGDg:{LZz_9I1jG:resolvedLinks7[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"foHGoO4vY\",layoutId:\"foHGoO4vY\",LZz_9I1jG:resolvedLinks7[0],NRb95IGcg:\"Find suitable loan option\",variant:\"fg8rIOh40\",width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tg4712\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{background:{alt:\"brisbane finance brokers doing loan search and application on laptop\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7176+0+157.2+0+1055.2+25+0+0+0),pixelHeight:1e3,pixelWidth:1500,sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 390px) - 50px, 1px), min(${componentViewport?.width||\"100vw\"} - 40px, 390px) - 50px)`,src:\"https://framerusercontent.com/images/C7EuKbUu45EbmDfvd2s3nPCCQ.jpg\",srcSet:\"https://framerusercontent.com/images/C7EuKbUu45EbmDfvd2s3nPCCQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/C7EuKbUu45EbmDfvd2s3nPCCQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/C7EuKbUu45EbmDfvd2s3nPCCQ.jpg 1500w\"}},eeK_7k9cQ:{background:{alt:\"brisbane finance brokers doing loan search and application on laptop\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5687.2+0+268.2+0+1317.2+80+0+0+0),pixelHeight:1e3,pixelWidth:1500,sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 768px), 1px), min(${componentViewport?.width||\"100vw\"} - 60px, 768px) * 0.8)`,src:\"https://framerusercontent.com/images/C7EuKbUu45EbmDfvd2s3nPCCQ.jpg\",srcSet:\"https://framerusercontent.com/images/C7EuKbUu45EbmDfvd2s3nPCCQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/C7EuKbUu45EbmDfvd2s3nPCCQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/C7EuKbUu45EbmDfvd2s3nPCCQ.jpg 1500w\"}},hyKhRCGDg:{background:{alt:\"brisbane finance brokers doing loan search and application on laptop\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3899.8+0+272.2+0+764+70+0+0),pixelHeight:1e3,pixelWidth:1500,sizes:`calc(min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px) - 20px, 1px), 1030px) * 0.48)`,src:\"https://framerusercontent.com/images/C7EuKbUu45EbmDfvd2s3nPCCQ.jpg\",srcSet:\"https://framerusercontent.com/images/C7EuKbUu45EbmDfvd2s3nPCCQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/C7EuKbUu45EbmDfvd2s3nPCCQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/C7EuKbUu45EbmDfvd2s3nPCCQ.jpg 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"brisbane finance brokers doing loan search and application on laptop\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4015.8+0+283.2+0+834+85+0+0),pixelHeight:1e3,pixelWidth:1500,sizes:`calc(min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 1400px) - 170px, 1px), min(${componentViewport?.width||\"100vw\"} - 60px, 1400px) - 170px) * 0.4818)`,src:\"https://framerusercontent.com/images/C7EuKbUu45EbmDfvd2s3nPCCQ.jpg\",srcSet:\"https://framerusercontent.com/images/C7EuKbUu45EbmDfvd2s3nPCCQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/C7EuKbUu45EbmDfvd2s3nPCCQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/C7EuKbUu45EbmDfvd2s3nPCCQ.jpg 1500w\"},className:\"framer-amerk9\",\"data-framer-name\":\"Image\"})})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rdgreg\",\"data-framer-name\":\"Step 3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dk1ghf\",\"data-framer-name\":\"Content Container\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4xrv6p\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{background:{alt:\"brisbane finance broker smiling and conducting loan settlement\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7176+0+157.2+0+2426.4+25+0+0+0),pixelHeight:1e3,pixelWidth:1500,sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 390px) - 50px, 1px), min(${componentViewport?.width||\"100vw\"} - 40px, 390px) - 50px)`,src:\"https://framerusercontent.com/images/HoSMrjjT7ZH8GRQAsMSaMfE7guw.jpg\",srcSet:\"https://framerusercontent.com/images/HoSMrjjT7ZH8GRQAsMSaMfE7guw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HoSMrjjT7ZH8GRQAsMSaMfE7guw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HoSMrjjT7ZH8GRQAsMSaMfE7guw.jpg 1500w\"}},eeK_7k9cQ:{background:{alt:\"brisbane finance broker smiling and conducting loan settlement\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5687.2+0+268.2+0+2634.4+80+0+0+0),pixelHeight:1e3,pixelWidth:1500,sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 768px), 1px), min(${componentViewport?.width||\"100vw\"} - 60px, 768px) * 0.8)`,src:\"https://framerusercontent.com/images/HoSMrjjT7ZH8GRQAsMSaMfE7guw.jpg\",srcSet:\"https://framerusercontent.com/images/HoSMrjjT7ZH8GRQAsMSaMfE7guw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HoSMrjjT7ZH8GRQAsMSaMfE7guw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HoSMrjjT7ZH8GRQAsMSaMfE7guw.jpg 1500w\"}},hyKhRCGDg:{background:{alt:\"brisbane finance broker smiling and conducting loan settlement\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3899.8+0+272.2+0+1528+70+0+0),pixelHeight:1e3,pixelWidth:1500,sizes:`calc(min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px) - 20px, 1px), 1024px) * 0.48)`,src:\"https://framerusercontent.com/images/HoSMrjjT7ZH8GRQAsMSaMfE7guw.jpg\",srcSet:\"https://framerusercontent.com/images/HoSMrjjT7ZH8GRQAsMSaMfE7guw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HoSMrjjT7ZH8GRQAsMSaMfE7guw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HoSMrjjT7ZH8GRQAsMSaMfE7guw.jpg 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"brisbane finance broker smiling and conducting loan settlement\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4015.8+0+283.2+0+1668+85+0+0),pixelHeight:1e3,pixelWidth:1500,sizes:`calc(min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 1400px) - 130px, 1px), min(${componentViewport?.width||\"100vw\"} - 60px, 1400px) - 130px) * 0.48)`,src:\"https://framerusercontent.com/images/HoSMrjjT7ZH8GRQAsMSaMfE7guw.jpg\",srcSet:\"https://framerusercontent.com/images/HoSMrjjT7ZH8GRQAsMSaMfE7guw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HoSMrjjT7ZH8GRQAsMSaMfE7guw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HoSMrjjT7ZH8GRQAsMSaMfE7guw.jpg 1500w\"},className:\"framer-1wojzvv\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8uj5w8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{y:(componentViewport?.y||0)+0+7176+0+157.2+0+2426.4+25+0+364+0+0},eeK_7k9cQ:{y:(componentViewport?.y||0)+0+5687.2+0+268.2+0+2634.4+80+0+610+0+0},hyKhRCGDg:{y:(componentViewport?.y||0)+0+3899.8+0+272.2+0+1528+70+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:(componentViewport?.y||0)+0+4015.8+0+283.2+0+1668+85+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xx4fm7-container\",children:/*#__PURE__*/_jsx(Step,{edZs8HWNA:\"STEP 3\",height:\"100%\",id:\"JZrAyPmEg\",layoutId:\"JZrAyPmEg\",nMp0wbRbd:\"var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106))\",oqJJk_FLz:\"var(--token-2e7ca838-c2ed-4206-b7ed-3a2bce7e945e, rgb(255, 255, 255))\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7g99a4\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ww0dx\",\"data-framer-name\":\"Title+Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-5wb9al\",\"data-styles-preset\":\"lMGUUJA69\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, rgb(13, 36, 64))\"},children:\"Approval and settlement\"})}),className:\"framer-148hr0r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14no3a8\",\"data-styles-preset\":\"zdBwB6iUh\",style:{\"--framer-text-color\":\"var(--token-d4a10565-6e21-4a5b-a574-a23158521a01, rgb(94, 100, 106))\"},children:\"From approval to settlement, we\u2019ll be with you every step of the way, ensuring a seamless and quick process to secure finance.\"})}),className:\"framer-1vcy5ao\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4zyab9\",\"data-framer-name\":\"Point\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{width:`min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 390px) - 50px, 1px), min(${componentViewport?.width||\"100vw\"} - 40px, 390px) - 50px)`,y:(componentViewport?.y||0)+0+7176+0+157.2+0+2426.4+25+0+364+0+68+0+253.2+0+0},eeK_7k9cQ:{width:`max((min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 768px), 1px), min(${componentViewport?.width||\"100vw\"} - 60px, 768px) * 0.8) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+5687.2+0+268.2+0+2634.4+80+0+610+0+78+0+257.2+0},hyKhRCGDg:{width:`max((max(min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px) - 20px, 1px), 1024px) * 0.52 - 50px, 1px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+3899.8+0+272.2+0+1528+70+0+0+115.4+0+259.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:94,width:`max((max(min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 1400px) - 130px, 1px), min(${componentViewport?.width||\"100vw\"} - 60px, 1400px) - 130px) * 0.52 - 100px, 1px) - 32px) / 2, 1px)`,y:(componentViewport?.y||0)+0+4015.8+0+283.2+0+1668+85+0+0+131.4+0+267.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-p264o8-container\",children:/*#__PURE__*/_jsx(SingleIconBox,{c4yLon5u9:\"We streamline the approval process and keep you informed.\",height:\"100%\",HTQgcP2Oq:\"Path\",id:\"FyVf9ljvP\",layoutId:\"FyVf9ljvP\",POyisJCtV:\"Approval guidance\",style:{width:\"100%\"},variant:\"kJ3bEL3Q9\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{width:`min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 390px) - 50px, 1px), min(${componentViewport?.width||\"100vw\"} - 40px, 390px) - 50px)`,y:(componentViewport?.y||0)+0+7176+0+157.2+0+2426.4+25+0+364+0+68+0+253.2+0+118},eeK_7k9cQ:{width:`max((min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 768px), 1px), min(${componentViewport?.width||\"100vw\"} - 60px, 768px) * 0.8) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+5687.2+0+268.2+0+2634.4+80+0+610+0+78+0+257.2+0},hyKhRCGDg:{width:`max((max(min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px) - 20px, 1px), 1024px) * 0.52 - 50px, 1px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+3899.8+0+272.2+0+1528+70+0+0+115.4+0+259.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:94,width:`max((max(min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 1400px) - 130px, 1px), min(${componentViewport?.width||\"100vw\"} - 60px, 1400px) - 130px) * 0.52 - 100px, 1px) - 32px) / 2, 1px)`,y:(componentViewport?.y||0)+0+4015.8+0+283.2+0+1668+85+0+0+131.4+0+267.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zxe7j1-container\",children:/*#__PURE__*/_jsx(SingleIconBox,{c4yLon5u9:\"Our team ensures a smooth transition to approval and settlement.\",height:\"100%\",HTQgcP2Oq:\"CheckCircle\",id:\"DsSe899xr\",layoutId:\"DsSe899xr\",POyisJCtV:\"Simple settlement\",style:{width:\"100%\"},variant:\"kJ3bEL3Q9\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1la4qou\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sbDcuc56a\"},implicitPathVariables:undefined},{href:{webPageId:\"sbDcuc56a\"},implicitPathVariables:undefined},{href:{webPageId:\"sbDcuc56a\"},implicitPathVariables:undefined},{href:{webPageId:\"sbDcuc56a\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{y:(componentViewport?.y||0)+0+7176+0+157.2+0+2426.4+25+0+364+0+558.2+0},eeK_7k9cQ:{y:(componentViewport?.y||0)+0+5687.2+0+268.2+0+2634.4+80+0+610+0+464.2+0},hyKhRCGDg:{y:(componentViewport?.y||0)+0+3899.8+0+272.2+0+1528+70+0+0+541+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,y:(componentViewport?.y||0)+0+4015.8+0+283.2+0+1668+85+0+0+581+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-21bqne-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{LZz_9I1jG:resolvedLinks8[3]},eeK_7k9cQ:{LZz_9I1jG:resolvedLinks8[2]},hyKhRCGDg:{LZz_9I1jG:resolvedLinks8[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"xIzgeKiox\",layoutId:\"xIzgeKiox\",LZz_9I1jG:resolvedLinks8[0],NRb95IGcg:\"Secure your finance now\",variant:\"rhhYY7IfK\",width:\"100%\"})})})})})})})]})]})})]})]}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-ukrqp9\",\"data-framer-name\":\"Testimonial\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ewa871\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12a6ign\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-5wb9al\",\"data-styles-preset\":\"lMGUUJA69\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, rgb(13, 36, 64))\"},children:\"Finance success stories\"})}),className:\"framer-ofkxqd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9fw5v5\",\"data-framer-name\":\"Slider Testimonial\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{width:undefined,y:(componentViewport?.y||0)+0+10790.8+50+2842170943040401e-29+0+102.2+0},eeK_7k9cQ:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 768px), 1px)`,y:(componentViewport?.y||0)+0+9883+70+2842170943040401e-29+0+112.2+0},hyKhRCGDg:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1024px), 1px)`,y:(componentViewport?.y||0)+0+6440+90+2842170943040401e-29+0+117.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1224px), 1px)`,y:(componentViewport?.y||0)+0+6777+120+2842170943040401e-29+0+131.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3tu0zy-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{variant:\"xHY6Wm15W\"},eeK_7k9cQ:{variant:\"FdbIcv2NE\"},hyKhRCGDg:{variant:\"rHxgj8h8i\"}},children:/*#__PURE__*/_jsx(SliderTestimonial,{height:\"100%\",id:\"styuMtMyv\",layoutId:\"styuMtMyv\",style:{width:\"100%\"},variant:\"WL9TCG22w\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1sssdj1\",\"data-framer-name\":\"CTA Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-qaoo3g\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 390px), 1px)`,y:(componentViewport?.y||0)+0+11403+0+0+0},eeK_7k9cQ:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 768px), 1px)`,y:(componentViewport?.y||0)+0+10550.2+0+0+0},hyKhRCGDg:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1400px), 1px)`,y:(componentViewport?.y||0)+0+7167.2+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:630,width:`max(min(${componentViewport?.width||\"100vw\"}, 1400px), 1px)`,y:(componentViewport?.y||0)+0+7588.2+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gaytqe-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{variant:\"pUIt3jCcf\"},eeK_7k9cQ:{variant:\"k3c_0L3M_\"},hyKhRCGDg:{variant:\"JuF54F8dH\"}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"sGAiiLKMZ\",layoutId:\"sGAiiLKMZ\",style:{width:\"100%\"},variant:\"eXpvpH8JK\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-10114kc\",\"data-framer-name\":\"Blog\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11og6ft\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1led7hw\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-5wb9al\",\"data-styles-preset\":\"lMGUUJA69\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, rgb(13, 36, 64))\"},children:\"Latest insights\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-5wb9al\",\"data-styles-preset\":\"lMGUUJA69\",style:{\"--framer-text-color\":\"var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, rgb(13, 36, 64))\"},children:\"Latest insights\"})}),className:\"framer-1vy3j74\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"qQ5Cu0PLe\"},implicitPathVariables:undefined},{href:{webPageId:\"qQ5Cu0PLe\"},implicitPathVariables:undefined},{href:{webPageId:\"qQ5Cu0PLe\"},implicitPathVariables:undefined},{href:{webPageId:\"qQ5Cu0PLe\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{y:(componentViewport?.y||0)+0+12033+50+0+0+0+0+87.2},eeK_7k9cQ:{y:(componentViewport?.y||0)+0+11180.2+70+0+0+0+0+8.200000000000003},hyKhRCGDg:{y:(componentViewport?.y||0)+0+7797.2+90+0+0+0+0+8.200000000000003}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,y:(componentViewport?.y||0)+0+8218.2+120+0+0+0+0+8.200000000000003,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ai8mjn-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{LZz_9I1jG:resolvedLinks9[3]},eeK_7k9cQ:{LZz_9I1jG:resolvedLinks9[2]},hyKhRCGDg:{LZz_9I1jG:resolvedLinks9[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"iIgdDjyRk\",layoutId:\"iIgdDjyRk\",LZz_9I1jG:resolvedLinks9[0],NRb95IGcg:\"View all posts\",variant:\"rhhYY7IfK\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-aammza\",\"data-framer-name\":\"Blog\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-12weazq\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{pageSize:3,query:{from:{alias:\"D3_5Ww5DY\",data:Blog,type:\"Collection\"},select:[{collection:\"D3_5Ww5DY\",name:\"obkGddMOG\",type:\"Identifier\"},{collection:\"D3_5Ww5DY\",name:\"LTyv2mnRl\",type:\"Identifier\"},{collection:\"D3_5Ww5DY\",name:\"LhgMPDA8t\",type:\"Identifier\"},{collection:\"D3_5Ww5DY\",name:\"ClK3ZNL8X\",type:\"Identifier\"},{collection:\"D3_5Ww5DY\",name:\"MnAtZruad\",type:\"Identifier\"},{collection:\"D3_5Ww5DY\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({ClK3ZNL8X:ClK3ZNL8XD3_5Ww5DY,id:idD3_5Ww5DY,LhgMPDA8t:LhgMPDA8tD3_5Ww5DY,LTyv2mnRl:LTyv2mnRlD3_5Ww5DY,MnAtZruad:MnAtZruadD3_5Ww5DY,obkGddMOG:obkGddMOGD3_5Ww5DY},index)=>{LTyv2mnRlD3_5Ww5DY??=\"\";LhgMPDA8tD3_5Ww5DY??=\"\";ClK3ZNL8XD3_5Ww5DY??=\"\";MnAtZruadD3_5Ww5DY??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`D3_5Ww5DY-${idD3_5Ww5DY}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{MnAtZruad:MnAtZruadD3_5Ww5DY},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{MnAtZruad:MnAtZruadD3_5Ww5DY},webPageId:\"H3GZ5OTt8\"},implicitPathVariables:undefined},{href:{pathVariables:{MnAtZruad:MnAtZruadD3_5Ww5DY},webPageId:\"H3GZ5OTt8\"},implicitPathVariables:undefined},{href:{pathVariables:{MnAtZruad:MnAtZruadD3_5Ww5DY},webPageId:\"H3GZ5OTt8\"},implicitPathVariables:undefined},{href:{pathVariables:{MnAtZruad:MnAtZruadD3_5Ww5DY},webPageId:\"H3GZ5OTt8\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1224px), 1px)`,y:(componentViewport?.y||0)+0+12033+50+0+0+186.2+0+0+936},eeK_7k9cQ:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1224px), 1px)`,y:(componentViewport?.y||0)+0+11180.2+70+0+0+117.2+0+0+936},hyKhRCGDg:{y:(componentViewport?.y||0)+0+7797.2+90+0+0+117.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:444,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 60px, 1224px), 1px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+8218.2+120+0+0+131.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wz0j1r-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{HZbqHKdzm:resolvedLinks10[3],variant:\"ZVrFO9fqe\"},eeK_7k9cQ:{HZbqHKdzm:resolvedLinks10[2],variant:\"ZVrFO9fqe\"},hyKhRCGDg:{HZbqHKdzm:resolvedLinks10[1]}},children:/*#__PURE__*/_jsx(SingleBlog,{C8rAqvhD7:LTyv2mnRlD3_5Ww5DY,height:\"100%\",HZbqHKdzm:resolvedLinks10[0],id:\"X_knX0Dmd\",layoutId:\"X_knX0Dmd\",n1Rmja5ea:true,style:{width:\"100%\"},variant:\"ZbXIVgNBK\",width:\"100%\",WRjteLSO1:toResponsiveImage(obkGddMOGD3_5Ww5DY),wTYT1tqwk:LhgMPDA8tD3_5Ww5DY,YX10CzoQ9:ClK3ZNL8XD3_5Ww5DY})})})})})})})},idD3_5Ww5DY);})})})})})})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-3s1mlv\",\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-khyp7o\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1400px), 1px)`,y:(componentViewport?.y||0)+0+13709.2+0+0+0},eeK_7k9cQ:{y:(componentViewport?.y||0)+0+12827.400000000001+0+0+0},hyKhRCGDg:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+8548.4+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:642,width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1400px), 1px)`,y:(componentViewport?.y||0)+0+9043.400000000001+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dde6wv-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bY_q9YLul:{variant:\"y8j28DpkC\"},eeK_7k9cQ:{variant:\"G1IJdLnbp\"},hyKhRCGDg:{variant:\"I_MKEBKqs\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"pzCwoSfqq\",layoutId:\"pzCwoSfqq\",style:{width:\"100%\"},variant:\"x8PI2QGuE\",width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Q5SSp.framer-lux5qc, .framer-Q5SSp .framer-lux5qc { display: block; }\",\".framer-Q5SSp.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1460px; }\",\".framer-Q5SSp .framer-amb2fn { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 9; }\",\".framer-Q5SSp .framer-wvhxqo, .framer-Q5SSp .framer-9fw5v5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-wgfd3p-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 1; }\",\".framer-Q5SSp .framer-ecw7x { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-moizhu { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 160px 0px 180px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-Q5SSp .framer-v5v4o1 { 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; max-width: 1224px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-9r1yj5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 48%; z-index: 2; }\",\".framer-Q5SSp .framer-s8ry2o, .framer-Q5SSp .framer-125unlh, .framer-Q5SSp .framer-zaji2s { 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-Q5SSp .framer-1mh956w, .framer-Q5SSp .framer-144gk0b, .framer-Q5SSp .framer-241lss, .framer-Q5SSp .framer-r9r0pc, .framer-Q5SSp .framer-a3q6cr, .framer-Q5SSp .framer-d1jm20, .framer-Q5SSp .framer-vjx3a3, .framer-Q5SSp .framer-d6mgwy, .framer-Q5SSp .framer-148hr0r, .framer-Q5SSp .framer-1vcy5ao, .framer-Q5SSp .framer-ofkxqd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Q5SSp .framer-53oj4x, .framer-Q5SSp .framer-u7235q, .framer-Q5SSp .framer-1qegzzy, .framer-Q5SSp .framer-dy3s3v { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Q5SSp .framer-1f232j8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Q5SSp .framer-1cldbj2-container, .framer-Q5SSp .framer-p2ncmm-container, .framer-Q5SSp .framer-1jf4mw9-container, .framer-Q5SSp .framer-1sik82b-container, .framer-Q5SSp .framer-1x7yn6w-container, .framer-Q5SSp .framer-xx4fm7-container, .framer-Q5SSp .framer-21bqne-container, .framer-Q5SSp .framer-ai8mjn-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Q5SSp .framer-19sf9c7 { --border-bottom-width: 1px; --border-color: var(--token-b236c098-f886-4067-ab6b-c27f71663a3d, #f9f9fa); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-2e7ca838-c2ed-4206-b7ed-3a2bce7e945e, #ffffff); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 14px 64px 0px rgba(0, 0, 0, 0.12); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); width: 416px; will-change: var(--framer-will-change-override, transform); z-index: 10; }\",\".framer-Q5SSp .framer-15hikhi { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 1px; }\",\".framer-Q5SSp .framer-1vkyawb, .framer-Q5SSp .framer-1cufif5, .framer-Q5SSp .framer-z1bwzr, .framer-Q5SSp .framer-x6md25 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-1297cv7, .framer-Q5SSp .framer-1r6hlmm, .framer-Q5SSp .framer-dkh3kd, .framer-Q5SSp .framer-1uvn5jb { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-Q5SSp .framer-1ahtzsj, .framer-Q5SSp .framer-r7b5xa, .framer-Q5SSp .framer-1k0zt7q, .framer-Q5SSp .framer-126664h { --framer-input-background: rgba(255, 255, 255, 0.15); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: var(--token-5b782db5-29eb-4431-9b90-812237de770d, #00dcde); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: var(--token-8274c6a0-037e-4acd-9689-b9db275aac3b, #313538); --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: var(--token-c0fcf6d8-8a67-4c13-aad3-2f8aefd5f53a, #b6bac2); flex: none; height: 48px; position: relative; width: 100%; }',\".framer-Q5SSp .framer-lvrop9-container { flex: none; height: 56px; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-186yhvi { background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.72) 100%); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-Q5SSp .framer-132qz5r-container { bottom: -14px; flex: none; left: 0px; position: absolute; right: 0px; top: -13px; z-index: 0; }\",\".framer-Q5SSp .framer-oeqh89 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; max-width: 1224px; overflow: visible; padding: 56px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-df7bam { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Q5SSp .framer-b4i9pd { flex: none; height: 50px; overflow: hidden; position: relative; width: 186px; }\",\".framer-Q5SSp .framer-1t9da0x { aspect-ratio: 1 / 1; border-bottom-left-radius: 99px; border-bottom-right-radius: 99px; border-top-left-radius: 99px; border-top-right-radius: 99px; bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 50px); will-change: var(--framer-will-change-override, transform); }\",\".framer-Q5SSp .framer-1r3vep9 { -webkit-mask: radial-gradient(55.00000000000001% 55.00000000000001% at -18% 50%, rgba(0, 0, 0, 0) 99.99%, rgba(0,0,0,1) 100%) add; aspect-ratio: 1 / 1; border-bottom-left-radius: 99px; border-bottom-right-radius: 99px; border-top-left-radius: 99px; border-top-right-radius: 99px; bottom: 0px; flex: none; left: 34px; mask: radial-gradient(55.00000000000001% 55.00000000000001% at -18% 50%, rgba(0, 0, 0, 0) 99.99%, rgba(0,0,0,1) 100%) add; overflow: hidden; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 50px); will-change: var(--framer-will-change-override, transform); }\",\".framer-Q5SSp .framer-14gvhdx { -webkit-mask: radial-gradient(55.00000000000001% 55.00000000000001% at -18% 50%, rgba(0, 0, 0, 0) 99.99%, rgba(0,0,0,1) 100%) add; aspect-ratio: 1 / 1; border-bottom-left-radius: 99px; border-bottom-right-radius: 99px; border-top-left-radius: 99px; border-top-right-radius: 99px; bottom: 0px; flex: none; left: 50%; mask: radial-gradient(55.00000000000001% 55.00000000000001% at -18% 50%, rgba(0, 0, 0, 0) 99.99%, rgba(0,0,0,1) 100%) add; overflow: hidden; position: absolute; top: 0px; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 50px); will-change: var(--framer-will-change-override, transform); }\",\".framer-Q5SSp .framer-11kdjlo { -webkit-mask: radial-gradient(55.00000000000001% 55.00000000000001% at -18% 50%, rgba(0, 0, 0, 0) 99.99%, rgba(0,0,0,1) 100%) add; aspect-ratio: 1 / 1; border-bottom-left-radius: 99px; border-bottom-right-radius: 99px; border-top-left-radius: 99px; border-top-right-radius: 99px; bottom: 0px; flex: none; left: 102px; mask: radial-gradient(55.00000000000001% 55.00000000000001% at -18% 50%, rgba(0, 0, 0, 0) 99.99%, rgba(0,0,0,1) 100%) add; overflow: hidden; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 50px); will-change: var(--framer-will-change-override, transform); }\",\".framer-Q5SSp .framer-1qzq1o2 { -webkit-mask: radial-gradient(55.00000000000001% 55.00000000000001% at -18% 50%, rgba(0, 0, 0, 0) 99.99%, rgba(0,0,0,1) 100%) add; aspect-ratio: 1 / 1; border-bottom-left-radius: 99px; border-bottom-right-radius: 99px; border-top-left-radius: 99px; border-top-right-radius: 99px; bottom: 0px; flex: none; mask: radial-gradient(55.00000000000001% 55.00000000000001% at -18% 50%, rgba(0, 0, 0, 0) 99.99%, rgba(0,0,0,1) 100%) add; overflow: hidden; position: absolute; right: 0px; top: 0px; width: var(--framer-aspect-ratio-supported, 50px); will-change: var(--framer-will-change-override, transform); }\",\".framer-Q5SSp .framer-5gm270 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Q5SSp .framer-grnvyj { align-content: center; align-items: center; align-self: stretch; 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: auto; }\",\".framer-Q5SSp .framer-15u3kku, .framer-Q5SSp .framer-49bvpv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Q5SSp .framer-1oxw646-container, .framer-Q5SSp .framer-pz9mne-container, .framer-Q5SSp .framer-pc6icq-container, .framer-Q5SSp .framer-wvziw2-container, .framer-Q5SSp .framer-1vqpmt-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-Q5SSp .framer-hqfbgo, .framer-Q5SSp .framer-cq1p8f { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-Q5SSp .framer-1tvouxr { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 30px 130px 30px; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-1v58gcz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 55px; height: min-content; justify-content: center; max-width: 1224px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-1kkvd0b { 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: 43%; }\",\".framer-Q5SSp .framer-f3jx3g-container, .framer-Q5SSp .framer-uu58aq-container, .framer-Q5SSp .framer-1yuarn2-container, .framer-Q5SSp .framer-1kdausb-container, .framer-Q5SSp .framer-ntkkx4-container, .framer-Q5SSp .framer-p264o8-container, .framer-Q5SSp .framer-zxe7j1-container, .framer-Q5SSp .framer-3tu0zy-container, .framer-Q5SSp .framer-gaytqe-container, .framer-Q5SSp .framer-wz0j1r-container, .framer-Q5SSp .framer-1dde6wv-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-Q5SSp .framer-16sdv1m { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-1mxkuva { align-content: center; align-items: center; background-color: var(--token-b1e15d65-ee32-467a-b5be-1400a72e803b, #1876ef); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 90px 0px 100px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q5SSp .framer-1s0jpqf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; max-width: 1224px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-934wpz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 40%; word-break: break-word; word-wrap: break-word; }\",\".framer-Q5SSp .framer-1ezik { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-txfi0k-container, .framer-Q5SSp .framer-z55f1h-container, .framer-Q5SSp .framer-8t9k07-container, .framer-Q5SSp .framer-1359n9q-container, .framer-Q5SSp .framer-plvl0p-container, .framer-Q5SSp .framer-11k00se-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-1jl90j { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 130px 30px 120px 30px; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-1ylouiq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1224px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-h66w7o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 43%; }\",\".framer-Q5SSp .framer-skzi7o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-mb89fw-container, .framer-Q5SSp .framer-zh80-container, .framer-Q5SSp .framer-zgm0b2-container, .framer-Q5SSp .framer-1ee3vly-container, .framer-Q5SSp .framer-16vo3na-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-Q5SSp .framer-13vwvwq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 560px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50%; }\",\".framer-Q5SSp .framer-1ciqzqo { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-h4u7bu { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-vvzulm, .framer-Q5SSp .framer-12a6ign { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1224px; overflow: hidden; padding: 0px; position: relative; width: 40%; }\",\".framer-Q5SSp .framer-jmms0q, .framer-Q5SSp .framer-1rdgreg { align-content: center; align-items: center; background-color: var(--token-0220d559-4f55-45ab-aa6e-be20eee5953e, #eff2f5); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 85px 45px 85px 85px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q5SSp .framer-g6fj6q, .framer-Q5SSp .framer-1dk1ghf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Q5SSp .framer-1pzxy3l, .framer-Q5SSp .framer-4xrv6p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 640px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 48%; }\",\".framer-Q5SSp .framer-1f5st0s, .framer-Q5SSp .framer-amerk9, .framer-Q5SSp .framer-1wojzvv { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-jl65nk, .framer-Q5SSp .framer-vjv8pi, .framer-Q5SSp .framer-8uj5w8 { 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; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Q5SSp .framer-170hcag, .framer-Q5SSp .framer-ipz496, .framer-Q5SSp .framer-7g99a4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-1lr8sf2, .framer-Q5SSp .framer-ww0dx { 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: 90%; }\",\".framer-Q5SSp .framer-1swf4sa, .framer-Q5SSp .framer-13nipme, .framer-Q5SSp .framer-4zyab9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-h00vuq, .framer-Q5SSp .framer-1nrxqus, .framer-Q5SSp .framer-1la4qou { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Q5SSp .framer-1sgdq0w { align-content: center; align-items: center; background-color: var(--token-b1e15d65-ee32-467a-b5be-1400a72e803b, #1876ef); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 85px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q5SSp .framer-185ijgr { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Q5SSp .framer-h2cy2x { 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: 85%; }\",\".framer-Q5SSp .framer-12squ8j { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Q5SSp .framer-tg4712 { align-content: center; align-items: center; aspect-ratio: 0.9259259259259259 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 640px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 48%; }\",\".framer-Q5SSp .framer-ukrqp9 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 30px 200px 30px; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-1ewa871 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1224px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-1sssdj1 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-qaoo3g, .framer-Q5SSp .framer-khyp7o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-10114kc { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 30px 130px 30px; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-11og6ft { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1224px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-1led7hw { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-1vy3j74 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Q5SSp .framer-aammza { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q5SSp .framer-12weazq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-Q5SSp .framer-3s1mlv { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 30px 30px 30px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Q5SSp.framer-72rtr7, .framer-Q5SSp .framer-amb2fn, .framer-Q5SSp .framer-wvhxqo, .framer-Q5SSp .framer-ecw7x, .framer-Q5SSp .framer-moizhu, .framer-Q5SSp .framer-v5v4o1, .framer-Q5SSp .framer-9r1yj5, .framer-Q5SSp .framer-s8ry2o, .framer-Q5SSp .framer-1f232j8, .framer-Q5SSp .framer-19sf9c7, .framer-Q5SSp .framer-15hikhi, .framer-Q5SSp .framer-1vkyawb, .framer-Q5SSp .framer-1cufif5, .framer-Q5SSp .framer-z1bwzr, .framer-Q5SSp .framer-x6md25, .framer-Q5SSp .framer-oeqh89, .framer-Q5SSp .framer-df7bam, .framer-Q5SSp .framer-5gm270, .framer-Q5SSp .framer-grnvyj, .framer-Q5SSp .framer-15u3kku, .framer-Q5SSp .framer-1tvouxr, .framer-Q5SSp .framer-1v58gcz, .framer-Q5SSp .framer-1kkvd0b, .framer-Q5SSp .framer-16sdv1m, .framer-Q5SSp .framer-1mxkuva, .framer-Q5SSp .framer-1s0jpqf, .framer-Q5SSp .framer-125unlh, .framer-Q5SSp .framer-1jl90j, .framer-Q5SSp .framer-h66w7o, .framer-Q5SSp .framer-skzi7o, .framer-Q5SSp .framer-49bvpv, .framer-Q5SSp .framer-13vwvwq, .framer-Q5SSp .framer-h4u7bu, .framer-Q5SSp .framer-vvzulm, .framer-Q5SSp .framer-zaji2s, .framer-Q5SSp .framer-jmms0q, .framer-Q5SSp .framer-g6fj6q, .framer-Q5SSp .framer-1pzxy3l, .framer-Q5SSp .framer-170hcag, .framer-Q5SSp .framer-1lr8sf2, .framer-Q5SSp .framer-1swf4sa, .framer-Q5SSp .framer-h00vuq, .framer-Q5SSp .framer-1sgdq0w, .framer-Q5SSp .framer-185ijgr, .framer-Q5SSp .framer-ipz496, .framer-Q5SSp .framer-h2cy2x, .framer-Q5SSp .framer-13nipme, .framer-Q5SSp .framer-1nrxqus, .framer-Q5SSp .framer-tg4712, .framer-Q5SSp .framer-1rdgreg, .framer-Q5SSp .framer-1dk1ghf, .framer-Q5SSp .framer-4xrv6p, .framer-Q5SSp .framer-7g99a4, .framer-Q5SSp .framer-ww0dx, .framer-Q5SSp .framer-4zyab9, .framer-Q5SSp .framer-1la4qou, .framer-Q5SSp .framer-ukrqp9, .framer-Q5SSp .framer-1ewa871, .framer-Q5SSp .framer-12a6ign, .framer-Q5SSp .framer-9fw5v5, .framer-Q5SSp .framer-1sssdj1, .framer-Q5SSp .framer-qaoo3g, .framer-Q5SSp .framer-10114kc, .framer-Q5SSp .framer-11og6ft, .framer-Q5SSp .framer-1led7hw, .framer-Q5SSp .framer-aammza, .framer-Q5SSp .framer-12weazq, .framer-Q5SSp .framer-3s1mlv, .framer-Q5SSp .framer-khyp7o { gap: 0px; } .framer-Q5SSp.framer-72rtr7 > *, .framer-Q5SSp .framer-ecw7x > *, .framer-Q5SSp .framer-5gm270 > *, .framer-Q5SSp .framer-1mxkuva > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Q5SSp.framer-72rtr7 > :first-child, .framer-Q5SSp .framer-amb2fn > :first-child, .framer-Q5SSp .framer-ecw7x > :first-child, .framer-Q5SSp .framer-moizhu > :first-child, .framer-Q5SSp .framer-9r1yj5 > :first-child, .framer-Q5SSp .framer-s8ry2o > :first-child, .framer-Q5SSp .framer-15hikhi > :first-child, .framer-Q5SSp .framer-1vkyawb > :first-child, .framer-Q5SSp .framer-1cufif5 > :first-child, .framer-Q5SSp .framer-z1bwzr > :first-child, .framer-Q5SSp .framer-x6md25 > :first-child, .framer-Q5SSp .framer-5gm270 > :first-child, .framer-Q5SSp .framer-1tvouxr > :first-child, .framer-Q5SSp .framer-1kkvd0b > :first-child, .framer-Q5SSp .framer-16sdv1m > :first-child, .framer-Q5SSp .framer-1mxkuva > :first-child, .framer-Q5SSp .framer-1s0jpqf > :first-child, .framer-Q5SSp .framer-125unlh > :first-child, .framer-Q5SSp .framer-1jl90j > :first-child, .framer-Q5SSp .framer-h66w7o > :first-child, .framer-Q5SSp .framer-skzi7o > :first-child, .framer-Q5SSp .framer-13vwvwq > :first-child, .framer-Q5SSp .framer-h4u7bu > :first-child, .framer-Q5SSp .framer-vvzulm > :first-child, .framer-Q5SSp .framer-zaji2s > :first-child, .framer-Q5SSp .framer-170hcag > :first-child, .framer-Q5SSp .framer-1lr8sf2 > :first-child, .framer-Q5SSp .framer-ipz496 > :first-child, .framer-Q5SSp .framer-h2cy2x > :first-child, .framer-Q5SSp .framer-7g99a4 > :first-child, .framer-Q5SSp .framer-ww0dx > :first-child, .framer-Q5SSp .framer-ukrqp9 > :first-child, .framer-Q5SSp .framer-1ewa871 > :first-child, .framer-Q5SSp .framer-12a6ign > :first-child, .framer-Q5SSp .framer-1sssdj1 > :first-child, .framer-Q5SSp .framer-10114kc > :first-child, .framer-Q5SSp .framer-11og6ft > :first-child, .framer-Q5SSp .framer-3s1mlv > :first-child { margin-top: 0px; } .framer-Q5SSp.framer-72rtr7 > :last-child, .framer-Q5SSp .framer-amb2fn > :last-child, .framer-Q5SSp .framer-ecw7x > :last-child, .framer-Q5SSp .framer-moizhu > :last-child, .framer-Q5SSp .framer-9r1yj5 > :last-child, .framer-Q5SSp .framer-s8ry2o > :last-child, .framer-Q5SSp .framer-15hikhi > :last-child, .framer-Q5SSp .framer-1vkyawb > :last-child, .framer-Q5SSp .framer-1cufif5 > :last-child, .framer-Q5SSp .framer-z1bwzr > :last-child, .framer-Q5SSp .framer-x6md25 > :last-child, .framer-Q5SSp .framer-5gm270 > :last-child, .framer-Q5SSp .framer-1tvouxr > :last-child, .framer-Q5SSp .framer-1kkvd0b > :last-child, .framer-Q5SSp .framer-16sdv1m > :last-child, .framer-Q5SSp .framer-1mxkuva > :last-child, .framer-Q5SSp .framer-1s0jpqf > :last-child, .framer-Q5SSp .framer-125unlh > :last-child, .framer-Q5SSp .framer-1jl90j > :last-child, .framer-Q5SSp .framer-h66w7o > :last-child, .framer-Q5SSp .framer-skzi7o > :last-child, .framer-Q5SSp .framer-13vwvwq > :last-child, .framer-Q5SSp .framer-h4u7bu > :last-child, .framer-Q5SSp .framer-vvzulm > :last-child, .framer-Q5SSp .framer-zaji2s > :last-child, .framer-Q5SSp .framer-170hcag > :last-child, .framer-Q5SSp .framer-1lr8sf2 > :last-child, .framer-Q5SSp .framer-ipz496 > :last-child, .framer-Q5SSp .framer-h2cy2x > :last-child, .framer-Q5SSp .framer-7g99a4 > :last-child, .framer-Q5SSp .framer-ww0dx > :last-child, .framer-Q5SSp .framer-ukrqp9 > :last-child, .framer-Q5SSp .framer-1ewa871 > :last-child, .framer-Q5SSp .framer-12a6ign > :last-child, .framer-Q5SSp .framer-1sssdj1 > :last-child, .framer-Q5SSp .framer-10114kc > :last-child, .framer-Q5SSp .framer-11og6ft > :last-child, .framer-Q5SSp .framer-3s1mlv > :last-child { margin-bottom: 0px; } .framer-Q5SSp .framer-amb2fn > *, .framer-Q5SSp .framer-15hikhi > *, .framer-Q5SSp .framer-1tvouxr > *, .framer-Q5SSp .framer-16sdv1m > *, .framer-Q5SSp .framer-1jl90j > *, .framer-Q5SSp .framer-ukrqp9 > *, .framer-Q5SSp .framer-1sssdj1 > *, .framer-Q5SSp .framer-10114kc > *, .framer-Q5SSp .framer-3s1mlv > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Q5SSp .framer-wvhxqo > *, .framer-Q5SSp .framer-v5v4o1 > *, .framer-Q5SSp .framer-19sf9c7 > *, .framer-Q5SSp .framer-grnvyj > *, .framer-Q5SSp .framer-1pzxy3l > *, .framer-Q5SSp .framer-h00vuq > *, .framer-Q5SSp .framer-1nrxqus > *, .framer-Q5SSp .framer-tg4712 > *, .framer-Q5SSp .framer-4xrv6p > *, .framer-Q5SSp .framer-1la4qou > *, .framer-Q5SSp .framer-9fw5v5 > *, .framer-Q5SSp .framer-qaoo3g > *, .framer-Q5SSp .framer-1led7hw > *, .framer-Q5SSp .framer-aammza > *, .framer-Q5SSp .framer-khyp7o > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Q5SSp .framer-wvhxqo > :first-child, .framer-Q5SSp .framer-v5v4o1 > :first-child, .framer-Q5SSp .framer-1f232j8 > :first-child, .framer-Q5SSp .framer-19sf9c7 > :first-child, .framer-Q5SSp .framer-oeqh89 > :first-child, .framer-Q5SSp .framer-df7bam > :first-child, .framer-Q5SSp .framer-grnvyj > :first-child, .framer-Q5SSp .framer-15u3kku > :first-child, .framer-Q5SSp .framer-1v58gcz > :first-child, .framer-Q5SSp .framer-49bvpv > :first-child, .framer-Q5SSp .framer-jmms0q > :first-child, .framer-Q5SSp .framer-g6fj6q > :first-child, .framer-Q5SSp .framer-1pzxy3l > :first-child, .framer-Q5SSp .framer-1swf4sa > :first-child, .framer-Q5SSp .framer-h00vuq > :first-child, .framer-Q5SSp .framer-1sgdq0w > :first-child, .framer-Q5SSp .framer-185ijgr > :first-child, .framer-Q5SSp .framer-13nipme > :first-child, .framer-Q5SSp .framer-1nrxqus > :first-child, .framer-Q5SSp .framer-tg4712 > :first-child, .framer-Q5SSp .framer-1rdgreg > :first-child, .framer-Q5SSp .framer-1dk1ghf > :first-child, .framer-Q5SSp .framer-4xrv6p > :first-child, .framer-Q5SSp .framer-4zyab9 > :first-child, .framer-Q5SSp .framer-1la4qou > :first-child, .framer-Q5SSp .framer-9fw5v5 > :first-child, .framer-Q5SSp .framer-qaoo3g > :first-child, .framer-Q5SSp .framer-1led7hw > :first-child, .framer-Q5SSp .framer-aammza > :first-child, .framer-Q5SSp .framer-12weazq > :first-child, .framer-Q5SSp .framer-khyp7o > :first-child { margin-left: 0px; } .framer-Q5SSp .framer-wvhxqo > :last-child, .framer-Q5SSp .framer-v5v4o1 > :last-child, .framer-Q5SSp .framer-1f232j8 > :last-child, .framer-Q5SSp .framer-19sf9c7 > :last-child, .framer-Q5SSp .framer-oeqh89 > :last-child, .framer-Q5SSp .framer-df7bam > :last-child, .framer-Q5SSp .framer-grnvyj > :last-child, .framer-Q5SSp .framer-15u3kku > :last-child, .framer-Q5SSp .framer-1v58gcz > :last-child, .framer-Q5SSp .framer-49bvpv > :last-child, .framer-Q5SSp .framer-jmms0q > :last-child, .framer-Q5SSp .framer-g6fj6q > :last-child, .framer-Q5SSp .framer-1pzxy3l > :last-child, .framer-Q5SSp .framer-1swf4sa > :last-child, .framer-Q5SSp .framer-h00vuq > :last-child, .framer-Q5SSp .framer-1sgdq0w > :last-child, .framer-Q5SSp .framer-185ijgr > :last-child, .framer-Q5SSp .framer-13nipme > :last-child, .framer-Q5SSp .framer-1nrxqus > :last-child, .framer-Q5SSp .framer-tg4712 > :last-child, .framer-Q5SSp .framer-1rdgreg > :last-child, .framer-Q5SSp .framer-1dk1ghf > :last-child, .framer-Q5SSp .framer-4xrv6p > :last-child, .framer-Q5SSp .framer-4zyab9 > :last-child, .framer-Q5SSp .framer-1la4qou > :last-child, .framer-Q5SSp .framer-9fw5v5 > :last-child, .framer-Q5SSp .framer-qaoo3g > :last-child, .framer-Q5SSp .framer-1led7hw > :last-child, .framer-Q5SSp .framer-aammza > :last-child, .framer-Q5SSp .framer-12weazq > :last-child, .framer-Q5SSp .framer-khyp7o > :last-child { margin-right: 0px; } .framer-Q5SSp .framer-moizhu > *, .framer-Q5SSp .framer-1vkyawb > *, .framer-Q5SSp .framer-1cufif5 > *, .framer-Q5SSp .framer-z1bwzr > *, .framer-Q5SSp .framer-x6md25 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Q5SSp .framer-9r1yj5 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-Q5SSp .framer-s8ry2o > *, .framer-Q5SSp .framer-1kkvd0b > *, .framer-Q5SSp .framer-125unlh > *, .framer-Q5SSp .framer-vvzulm > *, .framer-Q5SSp .framer-zaji2s > *, .framer-Q5SSp .framer-1lr8sf2 > *, .framer-Q5SSp .framer-h2cy2x > *, .framer-Q5SSp .framer-ww0dx > *, .framer-Q5SSp .framer-12a6ign > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Q5SSp .framer-1f232j8 > *, .framer-Q5SSp .framer-df7bam > *, .framer-Q5SSp .framer-12weazq > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Q5SSp .framer-oeqh89 > * { margin: 0px; margin-left: calc(96px / 2); margin-right: calc(96px / 2); } .framer-Q5SSp .framer-15u3kku > *, .framer-Q5SSp .framer-49bvpv > *, .framer-Q5SSp .framer-jmms0q > *, .framer-Q5SSp .framer-1sgdq0w > *, .framer-Q5SSp .framer-1rdgreg > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Q5SSp .framer-1v58gcz > * { margin: 0px; margin-left: calc(55px / 2); margin-right: calc(55px / 2); } .framer-Q5SSp .framer-1s0jpqf > *, .framer-Q5SSp .framer-h4u7bu > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-Q5SSp .framer-h66w7o > *, .framer-Q5SSp .framer-170hcag > *, .framer-Q5SSp .framer-ipz496 > *, .framer-Q5SSp .framer-7g99a4 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Q5SSp .framer-skzi7o > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Q5SSp .framer-13vwvwq > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Q5SSp .framer-g6fj6q > *, .framer-Q5SSp .framer-1dk1ghf > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-Q5SSp .framer-1swf4sa > *, .framer-Q5SSp .framer-13nipme > *, .framer-Q5SSp .framer-4zyab9 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-Q5SSp .framer-185ijgr > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-Q5SSp .framer-1ewa871 > *, .framer-Q5SSp .framer-11og6ft > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-Q5SSp[data-border=\"true\"]::after, .framer-Q5SSp [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1200px) and (max-width: 1459px) { .framer-Q5SSp.framer-72rtr7 { width: 1200px; } .framer-Q5SSp .framer-moizhu { max-width: 1200px; padding: 160px 0px 160px 0px; } .framer-Q5SSp .framer-v5v4o1, .framer-Q5SSp .framer-oeqh89, .framer-Q5SSp .framer-1ylouiq { max-width: 1024px; } .framer-Q5SSp .framer-9r1yj5 { width: 50%; } .framer-Q5SSp .framer-19sf9c7 { top: 50%; } .framer-Q5SSp .framer-1tvouxr, .framer-Q5SSp .framer-10114kc { padding: 90px 30px 100px 30px; } .framer-Q5SSp .framer-1v58gcz { gap: 40px; max-width: 1024px; } .framer-Q5SSp .framer-1kkvd0b, .framer-Q5SSp .framer-h66w7o { width: 45%; } .framer-Q5SSp .framer-1mxkuva, .framer-Q5SSp .framer-vvzulm, .framer-Q5SSp .framer-12a6ign, .framer-Q5SSp .framer-khyp7o { max-width: 1200px; } .framer-Q5SSp .framer-1s0jpqf { max-width: 1070px; } .framer-Q5SSp .framer-1jl90j { padding: 100px 30px 90px 30px; } .framer-Q5SSp .framer-13vwvwq { width: 52%; } .framer-Q5SSp .framer-h4u7bu { gap: 45px; } .framer-Q5SSp .framer-jmms0q, .framer-Q5SSp .framer-1sgdq0w, .framer-Q5SSp .framer-1rdgreg { max-width: 1200px; padding: 70px 0px 70px 20px; } .framer-Q5SSp .framer-g6fj6q, .framer-Q5SSp .framer-1dk1ghf, .framer-Q5SSp .framer-1ewa871 { gap: 50px; max-width: 1024px; } .framer-Q5SSp .framer-1pzxy3l, .framer-Q5SSp .framer-4xrv6p { height: 600px; } .framer-Q5SSp .framer-170hcag, .framer-Q5SSp .framer-ipz496, .framer-Q5SSp .framer-7g99a4 { gap: 32px; } .framer-Q5SSp .framer-1swf4sa, .framer-Q5SSp .framer-4zyab9 { gap: 24px; } .framer-Q5SSp .framer-185ijgr { gap: 20px; max-width: 1030px; } .framer-Q5SSp .framer-h2cy2x { width: 80%; } .framer-Q5SSp .framer-13nipme { gap: 12px; } .framer-Q5SSp .framer-tg4712 { aspect-ratio: unset; height: 600px; width: 48%; } .framer-Q5SSp .framer-ww0dx { width: 85%; } .framer-Q5SSp .framer-ukrqp9 { padding: 90px 30px 160px 30px; } .framer-Q5SSp .framer-1sssdj1 { padding: 0px 30px 0px 30px; } .framer-Q5SSp .framer-11og6ft { gap: 50px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Q5SSp .framer-1v58gcz, .framer-Q5SSp .framer-h4u7bu, .framer-Q5SSp .framer-g6fj6q, .framer-Q5SSp .framer-170hcag, .framer-Q5SSp .framer-1swf4sa, .framer-Q5SSp .framer-185ijgr, .framer-Q5SSp .framer-ipz496, .framer-Q5SSp .framer-13nipme, .framer-Q5SSp .framer-1dk1ghf, .framer-Q5SSp .framer-7g99a4, .framer-Q5SSp .framer-4zyab9, .framer-Q5SSp .framer-1ewa871, .framer-Q5SSp .framer-11og6ft { gap: 0px; } .framer-Q5SSp .framer-1v58gcz > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Q5SSp .framer-1v58gcz > :first-child, .framer-Q5SSp .framer-g6fj6q > :first-child, .framer-Q5SSp .framer-1swf4sa > :first-child, .framer-Q5SSp .framer-185ijgr > :first-child, .framer-Q5SSp .framer-13nipme > :first-child, .framer-Q5SSp .framer-1dk1ghf > :first-child, .framer-Q5SSp .framer-4zyab9 > :first-child { margin-left: 0px; } .framer-Q5SSp .framer-1v58gcz > :last-child, .framer-Q5SSp .framer-g6fj6q > :last-child, .framer-Q5SSp .framer-1swf4sa > :last-child, .framer-Q5SSp .framer-185ijgr > :last-child, .framer-Q5SSp .framer-13nipme > :last-child, .framer-Q5SSp .framer-1dk1ghf > :last-child, .framer-Q5SSp .framer-4zyab9 > :last-child { margin-right: 0px; } .framer-Q5SSp .framer-h4u7bu > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-Q5SSp .framer-h4u7bu > :first-child, .framer-Q5SSp .framer-170hcag > :first-child, .framer-Q5SSp .framer-ipz496 > :first-child, .framer-Q5SSp .framer-7g99a4 > :first-child, .framer-Q5SSp .framer-1ewa871 > :first-child, .framer-Q5SSp .framer-11og6ft > :first-child { margin-top: 0px; } .framer-Q5SSp .framer-h4u7bu > :last-child, .framer-Q5SSp .framer-170hcag > :last-child, .framer-Q5SSp .framer-ipz496 > :last-child, .framer-Q5SSp .framer-7g99a4 > :last-child, .framer-Q5SSp .framer-1ewa871 > :last-child, .framer-Q5SSp .framer-11og6ft > :last-child { margin-bottom: 0px; } .framer-Q5SSp .framer-g6fj6q > *, .framer-Q5SSp .framer-1dk1ghf > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-Q5SSp .framer-170hcag > *, .framer-Q5SSp .framer-ipz496 > *, .framer-Q5SSp .framer-7g99a4 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Q5SSp .framer-1swf4sa > *, .framer-Q5SSp .framer-4zyab9 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Q5SSp .framer-185ijgr > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Q5SSp .framer-13nipme > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-Q5SSp .framer-1ewa871 > *, .framer-Q5SSp .framer-11og6ft > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }}\",\"@media (min-width: 768px) and (max-width: 1199px) { .framer-Q5SSp.framer-72rtr7 { width: 768px; } .framer-Q5SSp .framer-moizhu, .framer-Q5SSp .framer-1mxkuva { max-width: 768px; padding: 70px 0px 80px 0px; } .framer-Q5SSp .framer-v5v4o1, .framer-Q5SSp .framer-g6fj6q, .framer-Q5SSp .framer-185ijgr, .framer-Q5SSp .framer-1dk1ghf { flex-direction: column; gap: 50px; max-width: 80%; } .framer-Q5SSp .framer-9r1yj5 { align-content: center; align-items: center; width: 100%; } .framer-Q5SSp .framer-19sf9c7 { position: relative; right: unset; top: unset; transform: unset; } .framer-Q5SSp .framer-186yhvi { background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.64) 100%); bottom: 0px; } .framer-Q5SSp .framer-oeqh89 { align-content: center; align-items: center; gap: 48px; max-width: 768px; padding: 45px 0px 0px 0px; width: min-content; } .framer-Q5SSp .framer-1tvouxr { padding: 50px 30px 80px 30px; } .framer-Q5SSp .framer-1v58gcz { align-content: center; align-items: center; flex-direction: column; gap: 30px; max-width: 768px; } .framer-Q5SSp .framer-1kkvd0b { width: 70%; } .framer-Q5SSp .framer-f3jx3g-container { flex: none; width: 80%; } .framer-Q5SSp .framer-1s0jpqf { gap: 45px; max-width: 100%; } .framer-Q5SSp .framer-934wpz { width: 55%; } .framer-Q5SSp .framer-1ezik { grid-template-columns: repeat(2, minmax(50px, 1fr)); padding: 24px; } .framer-Q5SSp .framer-1jl90j { padding: 70px 30px 70px 30px; } .framer-Q5SSp .framer-1ylouiq { flex-direction: column; gap: 40px; justify-content: center; max-width: 768px; } .framer-Q5SSp .framer-h66w7o, .framer-Q5SSp .framer-13vwvwq { width: 80%; } .framer-Q5SSp .framer-h4u7bu { gap: 45px; } .framer-Q5SSp .framer-vvzulm, .framer-Q5SSp .framer-12a6ign { gap: 20px; max-width: 768px; width: 70%; } .framer-Q5SSp .framer-jmms0q, .framer-Q5SSp .framer-1sgdq0w, .framer-Q5SSp .framer-1rdgreg { max-width: 768px; padding: 80px 0px 80px 0px; } .framer-Q5SSp .framer-1pzxy3l, .framer-Q5SSp .framer-4xrv6p { height: 560px; width: 100%; } .framer-Q5SSp .framer-jl65nk, .framer-Q5SSp .framer-8uj5w8 { align-self: unset; flex: none; gap: 35px; height: min-content; justify-content: center; width: 100%; } .framer-Q5SSp .framer-170hcag, .framer-Q5SSp .framer-ipz496, .framer-Q5SSp .framer-7g99a4 { gap: 30px; } .framer-Q5SSp .framer-1swf4sa, .framer-Q5SSp .framer-13nipme, .framer-Q5SSp .framer-4zyab9 { gap: 24px; } .framer-Q5SSp .framer-vjv8pi { align-self: unset; flex: none; gap: 35px; height: min-content; justify-content: center; order: 1; width: 100%; } .framer-Q5SSp .framer-tg4712 { aspect-ratio: unset; height: 560px; order: 0; width: 100%; } .framer-Q5SSp .framer-ukrqp9 { padding: 70px 30px 125px 30px; } .framer-Q5SSp .framer-1ewa871 { gap: 45px; max-width: 768px; } .framer-Q5SSp .framer-1sssdj1 { padding: 0px 30px 0px 30px; } .framer-Q5SSp .framer-qaoo3g { max-width: 768px; } .framer-Q5SSp .framer-10114kc { padding: 70px 30px 80px 30px; } .framer-Q5SSp .framer-11og6ft { gap: 50px; } .framer-Q5SSp .framer-12weazq { flex-direction: column; } .framer-Q5SSp .framer-wz0j1r-container { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Q5SSp .framer-v5v4o1, .framer-Q5SSp .framer-oeqh89, .framer-Q5SSp .framer-1v58gcz, .framer-Q5SSp .framer-1s0jpqf, .framer-Q5SSp .framer-1ylouiq, .framer-Q5SSp .framer-h4u7bu, .framer-Q5SSp .framer-vvzulm, .framer-Q5SSp .framer-g6fj6q, .framer-Q5SSp .framer-jl65nk, .framer-Q5SSp .framer-170hcag, .framer-Q5SSp .framer-1swf4sa, .framer-Q5SSp .framer-185ijgr, .framer-Q5SSp .framer-vjv8pi, .framer-Q5SSp .framer-ipz496, .framer-Q5SSp .framer-13nipme, .framer-Q5SSp .framer-1dk1ghf, .framer-Q5SSp .framer-8uj5w8, .framer-Q5SSp .framer-7g99a4, .framer-Q5SSp .framer-4zyab9, .framer-Q5SSp .framer-1ewa871, .framer-Q5SSp .framer-12a6ign, .framer-Q5SSp .framer-11og6ft, .framer-Q5SSp .framer-12weazq { gap: 0px; } .framer-Q5SSp .framer-v5v4o1 > *, .framer-Q5SSp .framer-g6fj6q > *, .framer-Q5SSp .framer-185ijgr > *, .framer-Q5SSp .framer-1dk1ghf > *, .framer-Q5SSp .framer-11og6ft > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-Q5SSp .framer-v5v4o1 > :first-child, .framer-Q5SSp .framer-1v58gcz > :first-child, .framer-Q5SSp .framer-1s0jpqf > :first-child, .framer-Q5SSp .framer-1ylouiq > :first-child, .framer-Q5SSp .framer-h4u7bu > :first-child, .framer-Q5SSp .framer-vvzulm > :first-child, .framer-Q5SSp .framer-g6fj6q > :first-child, .framer-Q5SSp .framer-jl65nk > :first-child, .framer-Q5SSp .framer-170hcag > :first-child, .framer-Q5SSp .framer-185ijgr > :first-child, .framer-Q5SSp .framer-vjv8pi > :first-child, .framer-Q5SSp .framer-ipz496 > :first-child, .framer-Q5SSp .framer-1dk1ghf > :first-child, .framer-Q5SSp .framer-8uj5w8 > :first-child, .framer-Q5SSp .framer-7g99a4 > :first-child, .framer-Q5SSp .framer-1ewa871 > :first-child, .framer-Q5SSp .framer-12a6ign > :first-child, .framer-Q5SSp .framer-11og6ft > :first-child, .framer-Q5SSp .framer-12weazq > :first-child { margin-top: 0px; } .framer-Q5SSp .framer-v5v4o1 > :last-child, .framer-Q5SSp .framer-1v58gcz > :last-child, .framer-Q5SSp .framer-1s0jpqf > :last-child, .framer-Q5SSp .framer-1ylouiq > :last-child, .framer-Q5SSp .framer-h4u7bu > :last-child, .framer-Q5SSp .framer-vvzulm > :last-child, .framer-Q5SSp .framer-g6fj6q > :last-child, .framer-Q5SSp .framer-jl65nk > :last-child, .framer-Q5SSp .framer-170hcag > :last-child, .framer-Q5SSp .framer-185ijgr > :last-child, .framer-Q5SSp .framer-vjv8pi > :last-child, .framer-Q5SSp .framer-ipz496 > :last-child, .framer-Q5SSp .framer-1dk1ghf > :last-child, .framer-Q5SSp .framer-8uj5w8 > :last-child, .framer-Q5SSp .framer-7g99a4 > :last-child, .framer-Q5SSp .framer-1ewa871 > :last-child, .framer-Q5SSp .framer-12a6ign > :last-child, .framer-Q5SSp .framer-11og6ft > :last-child, .framer-Q5SSp .framer-12weazq > :last-child { margin-bottom: 0px; } .framer-Q5SSp .framer-oeqh89 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-Q5SSp .framer-oeqh89 > :first-child, .framer-Q5SSp .framer-1swf4sa > :first-child, .framer-Q5SSp .framer-13nipme > :first-child, .framer-Q5SSp .framer-4zyab9 > :first-child { margin-left: 0px; } .framer-Q5SSp .framer-oeqh89 > :last-child, .framer-Q5SSp .framer-1swf4sa > :last-child, .framer-Q5SSp .framer-13nipme > :last-child, .framer-Q5SSp .framer-4zyab9 > :last-child { margin-right: 0px; } .framer-Q5SSp .framer-1v58gcz > *, .framer-Q5SSp .framer-170hcag > *, .framer-Q5SSp .framer-ipz496 > *, .framer-Q5SSp .framer-7g99a4 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Q5SSp .framer-1s0jpqf > *, .framer-Q5SSp .framer-h4u7bu > *, .framer-Q5SSp .framer-1ewa871 > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-Q5SSp .framer-1ylouiq > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Q5SSp .framer-vvzulm > *, .framer-Q5SSp .framer-12a6ign > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Q5SSp .framer-jl65nk > *, .framer-Q5SSp .framer-vjv8pi > *, .framer-Q5SSp .framer-8uj5w8 > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-Q5SSp .framer-1swf4sa > *, .framer-Q5SSp .framer-13nipme > *, .framer-Q5SSp .framer-4zyab9 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Q5SSp .framer-12weazq > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\",\"@media (max-width: 767px) { .framer-Q5SSp.framer-72rtr7 { width: 390px; } .framer-Q5SSp .framer-amb2fn { left: 50%; position: fixed; transform: translateX(-50%); z-index: 10; } .framer-Q5SSp .framer-ecw7x { padding: 110px 20px 0px 20px; } .framer-Q5SSp .framer-moizhu { max-width: 100%; padding: 50px 25px 60px 25px; z-index: 0; } .framer-Q5SSp .framer-v5v4o1 { flex-direction: column; gap: 40px; max-width: 390px; } .framer-Q5SSp .framer-9r1yj5, .framer-Q5SSp .framer-934wpz, .framer-Q5SSp .framer-13vwvwq { width: 100%; } .framer-Q5SSp .framer-1f232j8, .framer-Q5SSp .framer-12weazq { flex-direction: column; } .framer-Q5SSp .framer-19sf9c7 { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; position: relative; right: unset; top: unset; transform: unset; width: 100%; } .framer-Q5SSp .framer-186yhvi { background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.64) 100%); left: 0px; } .framer-Q5SSp .framer-oeqh89 { flex-direction: column; gap: 24px; max-width: 390px; padding: 40px 0px 0px 0px; } .framer-Q5SSp .framer-df7bam { flex-direction: column; width: 100%; } .framer-Q5SSp .framer-b4i9pd { order: 1; } .framer-Q5SSp .framer-5gm270 { order: 0; } .framer-Q5SSp .framer-grnvyj { align-self: unset; width: min-content; } .framer-Q5SSp .framer-cq1p8f { align-self: stretch; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; } .framer-Q5SSp .framer-1tvouxr { padding: 30px 20px 60px 20px; } .framer-Q5SSp .framer-1v58gcz { flex-direction: column; gap: 20px; max-width: 390px; } .framer-Q5SSp .framer-1kkvd0b, .framer-Q5SSp .framer-h66w7o { gap: 16px; width: 100%; } .framer-Q5SSp .framer-f3jx3g-container, .framer-Q5SSp .framer-uu58aq-container, .framer-Q5SSp .framer-1yuarn2-container, .framer-Q5SSp .framer-1kdausb-container, .framer-Q5SSp .framer-ntkkx4-container, .framer-Q5SSp .framer-p264o8-container, .framer-Q5SSp .framer-zxe7j1-container, .framer-Q5SSp .framer-1vy3j74, .framer-Q5SSp .framer-wz0j1r-container { flex: none; width: 100%; } .framer-Q5SSp .framer-16sdv1m, .framer-Q5SSp .framer-1sssdj1 { padding: 0px 20px 0px 20px; } .framer-Q5SSp .framer-1mxkuva { max-width: 390px; padding: 50px 25px 60px 25px; } .framer-Q5SSp .framer-1s0jpqf { gap: 35px; max-width: 100%; } .framer-Q5SSp .framer-125unlh { gap: 16px; } .framer-Q5SSp .framer-1ezik { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-Q5SSp .framer-1jl90j { padding: 50px 20px 50px 20px; } .framer-Q5SSp .framer-1ylouiq { flex-direction: column; gap: 30px; justify-content: flex-start; max-width: 390px; } .framer-Q5SSp .framer-h4u7bu { gap: 40px; padding: 0px 20px 0px 20px; } .framer-Q5SSp .framer-vvzulm, .framer-Q5SSp .framer-12a6ign { gap: 20px; max-width: 390px; width: 100%; } .framer-Q5SSp .framer-jmms0q, .framer-Q5SSp .framer-1sgdq0w, .framer-Q5SSp .framer-1rdgreg { max-width: 390px; padding: 25px; } .framer-Q5SSp .framer-g6fj6q, .framer-Q5SSp .framer-185ijgr, .framer-Q5SSp .framer-1dk1ghf { flex-direction: column; gap: 40px; } .framer-Q5SSp .framer-1pzxy3l, .framer-Q5SSp .framer-4xrv6p { height: 324px; width: 100%; } .framer-Q5SSp .framer-jl65nk, .framer-Q5SSp .framer-8uj5w8 { align-self: unset; flex: none; gap: 25px; height: min-content; justify-content: center; width: 100%; } .framer-Q5SSp .framer-170hcag, .framer-Q5SSp .framer-ipz496, .framer-Q5SSp .framer-7g99a4 { gap: 30px; } .framer-Q5SSp .framer-1lr8sf2, .framer-Q5SSp .framer-h2cy2x, .framer-Q5SSp .framer-ww0dx { gap: 20px; width: 100%; } .framer-Q5SSp .framer-1swf4sa, .framer-Q5SSp .framer-13nipme, .framer-Q5SSp .framer-4zyab9 { flex-direction: column; gap: 24px; } .framer-Q5SSp .framer-vjv8pi { align-self: unset; flex: none; gap: 25px; height: min-content; justify-content: center; order: 1; width: 100%; } .framer-Q5SSp .framer-tg4712 { height: var(--framer-aspect-ratio-supported, 216px); order: 0; width: 100%; } .framer-Q5SSp .framer-ukrqp9 { background-color: unset; padding: 50px 20px 100px 20px; } .framer-Q5SSp .framer-1ewa871 { gap: 35px; max-width: 390px; } .framer-Q5SSp .framer-3tu0zy-container { flex: none; width: auto; } .framer-Q5SSp .framer-qaoo3g { max-width: 390px; } .framer-Q5SSp .framer-10114kc { padding: 50px 20px 60px 20px; } .framer-Q5SSp .framer-11og6ft { gap: 40px; } .framer-Q5SSp .framer-1led7hw { align-content: center; align-items: center; flex-direction: column; gap: 20px; } .framer-Q5SSp .framer-3s1mlv { padding: 0px 20px 20px 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Q5SSp .framer-v5v4o1, .framer-Q5SSp .framer-1f232j8, .framer-Q5SSp .framer-oeqh89, .framer-Q5SSp .framer-df7bam, .framer-Q5SSp .framer-1v58gcz, .framer-Q5SSp .framer-1kkvd0b, .framer-Q5SSp .framer-1s0jpqf, .framer-Q5SSp .framer-125unlh, .framer-Q5SSp .framer-1ylouiq, .framer-Q5SSp .framer-h66w7o, .framer-Q5SSp .framer-h4u7bu, .framer-Q5SSp .framer-vvzulm, .framer-Q5SSp .framer-g6fj6q, .framer-Q5SSp .framer-jl65nk, .framer-Q5SSp .framer-170hcag, .framer-Q5SSp .framer-1lr8sf2, .framer-Q5SSp .framer-1swf4sa, .framer-Q5SSp .framer-185ijgr, .framer-Q5SSp .framer-vjv8pi, .framer-Q5SSp .framer-ipz496, .framer-Q5SSp .framer-h2cy2x, .framer-Q5SSp .framer-13nipme, .framer-Q5SSp .framer-1dk1ghf, .framer-Q5SSp .framer-8uj5w8, .framer-Q5SSp .framer-7g99a4, .framer-Q5SSp .framer-ww0dx, .framer-Q5SSp .framer-4zyab9, .framer-Q5SSp .framer-1ewa871, .framer-Q5SSp .framer-12a6ign, .framer-Q5SSp .framer-11og6ft, .framer-Q5SSp .framer-1led7hw, .framer-Q5SSp .framer-12weazq { gap: 0px; } .framer-Q5SSp .framer-v5v4o1 > *, .framer-Q5SSp .framer-h4u7bu > *, .framer-Q5SSp .framer-g6fj6q > *, .framer-Q5SSp .framer-185ijgr > *, .framer-Q5SSp .framer-1dk1ghf > *, .framer-Q5SSp .framer-11og6ft > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Q5SSp .framer-v5v4o1 > :first-child, .framer-Q5SSp .framer-1f232j8 > :first-child, .framer-Q5SSp .framer-oeqh89 > :first-child, .framer-Q5SSp .framer-df7bam > :first-child, .framer-Q5SSp .framer-1v58gcz > :first-child, .framer-Q5SSp .framer-1kkvd0b > :first-child, .framer-Q5SSp .framer-1s0jpqf > :first-child, .framer-Q5SSp .framer-125unlh > :first-child, .framer-Q5SSp .framer-1ylouiq > :first-child, .framer-Q5SSp .framer-h66w7o > :first-child, .framer-Q5SSp .framer-h4u7bu > :first-child, .framer-Q5SSp .framer-vvzulm > :first-child, .framer-Q5SSp .framer-g6fj6q > :first-child, .framer-Q5SSp .framer-jl65nk > :first-child, .framer-Q5SSp .framer-170hcag > :first-child, .framer-Q5SSp .framer-1lr8sf2 > :first-child, .framer-Q5SSp .framer-1swf4sa > :first-child, .framer-Q5SSp .framer-185ijgr > :first-child, .framer-Q5SSp .framer-vjv8pi > :first-child, .framer-Q5SSp .framer-ipz496 > :first-child, .framer-Q5SSp .framer-h2cy2x > :first-child, .framer-Q5SSp .framer-13nipme > :first-child, .framer-Q5SSp .framer-1dk1ghf > :first-child, .framer-Q5SSp .framer-8uj5w8 > :first-child, .framer-Q5SSp .framer-7g99a4 > :first-child, .framer-Q5SSp .framer-ww0dx > :first-child, .framer-Q5SSp .framer-4zyab9 > :first-child, .framer-Q5SSp .framer-1ewa871 > :first-child, .framer-Q5SSp .framer-12a6ign > :first-child, .framer-Q5SSp .framer-11og6ft > :first-child, .framer-Q5SSp .framer-1led7hw > :first-child, .framer-Q5SSp .framer-12weazq > :first-child { margin-top: 0px; } .framer-Q5SSp .framer-v5v4o1 > :last-child, .framer-Q5SSp .framer-1f232j8 > :last-child, .framer-Q5SSp .framer-oeqh89 > :last-child, .framer-Q5SSp .framer-df7bam > :last-child, .framer-Q5SSp .framer-1v58gcz > :last-child, .framer-Q5SSp .framer-1kkvd0b > :last-child, .framer-Q5SSp .framer-1s0jpqf > :last-child, .framer-Q5SSp .framer-125unlh > :last-child, .framer-Q5SSp .framer-1ylouiq > :last-child, .framer-Q5SSp .framer-h66w7o > :last-child, .framer-Q5SSp .framer-h4u7bu > :last-child, .framer-Q5SSp .framer-vvzulm > :last-child, .framer-Q5SSp .framer-g6fj6q > :last-child, .framer-Q5SSp .framer-jl65nk > :last-child, .framer-Q5SSp .framer-170hcag > :last-child, .framer-Q5SSp .framer-1lr8sf2 > :last-child, .framer-Q5SSp .framer-1swf4sa > :last-child, .framer-Q5SSp .framer-185ijgr > :last-child, .framer-Q5SSp .framer-vjv8pi > :last-child, .framer-Q5SSp .framer-ipz496 > :last-child, .framer-Q5SSp .framer-h2cy2x > :last-child, .framer-Q5SSp .framer-13nipme > :last-child, .framer-Q5SSp .framer-1dk1ghf > :last-child, .framer-Q5SSp .framer-8uj5w8 > :last-child, .framer-Q5SSp .framer-7g99a4 > :last-child, .framer-Q5SSp .framer-ww0dx > :last-child, .framer-Q5SSp .framer-4zyab9 > :last-child, .framer-Q5SSp .framer-1ewa871 > :last-child, .framer-Q5SSp .framer-12a6ign > :last-child, .framer-Q5SSp .framer-11og6ft > :last-child, .framer-Q5SSp .framer-1led7hw > :last-child, .framer-Q5SSp .framer-12weazq > :last-child { margin-bottom: 0px; } .framer-Q5SSp .framer-1f232j8 > *, .framer-Q5SSp .framer-oeqh89 > *, .framer-Q5SSp .framer-df7bam > *, .framer-Q5SSp .framer-1swf4sa > *, .framer-Q5SSp .framer-13nipme > *, .framer-Q5SSp .framer-4zyab9 > *, .framer-Q5SSp .framer-12weazq > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Q5SSp .framer-1v58gcz > *, .framer-Q5SSp .framer-vvzulm > *, .framer-Q5SSp .framer-1lr8sf2 > *, .framer-Q5SSp .framer-h2cy2x > *, .framer-Q5SSp .framer-ww0dx > *, .framer-Q5SSp .framer-12a6ign > *, .framer-Q5SSp .framer-1led7hw > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Q5SSp .framer-1kkvd0b > *, .framer-Q5SSp .framer-125unlh > *, .framer-Q5SSp .framer-h66w7o > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Q5SSp .framer-1s0jpqf > *, .framer-Q5SSp .framer-1ewa871 > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-Q5SSp .framer-1ylouiq > *, .framer-Q5SSp .framer-170hcag > *, .framer-Q5SSp .framer-ipz496 > *, .framer-Q5SSp .framer-7g99a4 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Q5SSp .framer-jl65nk > *, .framer-Q5SSp .framer-vjv8pi > *, .framer-Q5SSp .framer-8uj5w8 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9603.5\n * @framerIntrinsicWidth 1460\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hyKhRCGDg\":{\"layout\":[\"fixed\",\"auto\"]},\"eeK_7k9cQ\":{\"layout\":[\"fixed\",\"auto\"]},\"bY_q9YLul\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerLayoutTemplateCompatible true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-Q5SSp\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:9603.5,width:1460};addFonts(FrameraugiA20Il,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]},...NavbarFonts,...ButtonFonts,...ButtonSubmitFonts,...VideoFonts,...PhosphorFonts,...FaqArea01Fonts,...SingleServiceItemFonts,...StepFonts,...SingleIconBoxFonts,...SliderTestimonialFonts,...CTAFonts,...SingleBlogFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerLayoutTemplateCompatible\":\"true\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"9603.5\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hyKhRCGDg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eeK_7k9cQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bY_q9YLul\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1460\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "background", "height", "id", "text", "textColor", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "oqJJk_FLz", "edZs8HWNA", "nMp0wbRbd", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "RichText2", "css", "FramerAn5LRlZn4", "withCSS", "An5LRlZn4_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "LottieFonts", "getFonts", "Lottie", "FeatherFonts", "Icon", "LottieControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "json", "text", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "iSn1Zo9nx", "QsmaiXNDC", "fM2kt6AqE", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1y9gvnu", "args", "onTap1eed4dl", "onTap1wko42r", "onTap125kaoo", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "ComponentViewportProvider", "RichText2", "css", "FramerB1dJrnEQE", "withCSS", "B1dJrnEQE_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SingleFaq01Fonts", "getFonts", "B1dJrnEQE_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerrRm5lvNAI", "withCSS", "rRm5lvNAI_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "icon", "id", "text", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "POyisJCtV", "c4yLon5u9", "HTQgcP2Oq", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "Framert2fPRs1wQ", "withCSS", "t2fPRs1wQ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "c", "i", "h", "d", "f", "l", "g", "glide", "o", "u", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "PhosphorFonts", "getFonts", "Icon", "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", "authorImage", "authorName", "designation", "height", "id", "text", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "KBxYLAx7R", "JRtogcdzl", "ISM7pHHZF", "zWbZ6Lair", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "ComponentViewportProvider", "RichText2", "Image2", "css", "FramerjOYwn5083", "withCSS", "jOYwn5083_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SingleTestimonial01Fonts", "getFonts", "jOYwn5083_default", "SlideshowFonts", "Slideshow", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramervbkyQEMey", "withCSS", "vbkyQEMey_default", "addPropertyControls", "ControlType", "addFonts", "ButtonFonts", "getFonts", "LPYt7Kjbh_default", "enabledGestures", "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", "excerpt", "height", "id", "link", "serviceImage", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "pTyT3R1Xe", "SnuvXM0Mi", "fJKcWmMeU", "oOUlSQGgr", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "RichText2", "ComponentViewportProvider", "css", "FramerX1msb2gIX", "withCSS", "X1msb2gIX_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "NavbarFonts", "getFonts", "UE2Zi3bzT_default", "NavbarWithVariantAppearEffect", "withVariantAppearEffect", "ButtonFonts", "LPYt7Kjbh_default", "MotionDivWithFX", "withFX", "motion", "ButtonSubmitFonts", "Y8UFuGjXz_default", "VideoFonts", "Video", "ImageWithFX", "Image2", "PhosphorFonts", "Icon", "FaqArea01Fonts", "rRm5lvNAI_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "SingleServiceItemFonts", "X1msb2gIX_default", "ContainerWithFX", "Container", "StepFonts", "An5LRlZn4_default", "SingleIconBoxFonts", "t2fPRs1wQ_default", "SliderTestimonialFonts", "vbkyQEMey_default", "CTAFonts", "BPxyxHyWJ_default", "SingleBlogFonts", "ARkn8iLjK_default", "FooterFonts", "mO70NnGZ6_default", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "transition3", "transformTemplate1", "_", "t", "formVariants", "form", "variants", "currentVariant", "transition4", "transformTemplate2", "transition5", "animation3", "animation4", "transition6", "addImageAlt", "image", "alt", "transition7", "transition8", "transition9", "transition10", "transition11", "transition12", "animation5", "animation6", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "obkGddMOGD3_5Ww5DY", "LTyv2mnRlD3_5Ww5DY", "LhgMPDA8tD3_5Ww5DY", "ClK3ZNL8XD3_5Ww5DY", "MnAtZruadD3_5Ww5DY", "idD3_5Ww5DY", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "ref2", "elementId", "useRouteElementId", "router", "useRouter", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "NavbarWithVariantAppearEffect", "getLoadingLazyAtYPosition", "ImageWithFX", "MotionDivWithFX", "x", "RichText2", "ResolveLinks", "resolvedLinks", "LPYt7Kjbh_default", "FormContainer", "formState", "l", "FormPlainTextInput2", "Y8UFuGjXz_default", "Video", "Image2", "Icon", "MotionDivWithOptimizedAppearEffect", "Link", "rRm5lvNAI_default", "resolvedLinks1", "ContainerWithFX", "X1msb2gIX_default", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "An5LRlZn4_default", "t2fPRs1wQ_default", "resolvedLinks7", "resolvedLinks8", "vbkyQEMey_default", "BPxyxHyWJ_default", "resolvedLinks9", "ChildrenCanSuspend", "L_NvLC904_default", "collection", "index", "PathVariablesContext", "resolvedLinks10", "ARkn8iLjK_default", "mO70NnGZ6_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "NavbarFonts", "ButtonFonts", "ButtonSubmitFonts", "VideoFonts", "PhosphorFonts", "FaqArea01Fonts", "SingleServiceItemFonts", "StepFonts", "SingleIconBoxFonts", "SliderTestimonialFonts", "CTAFonts", "SingleBlogFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
