{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/2rT122ihEN40UQgEm38Z/mkacQ7dex9OOxASyoSX5/XtRu2trDS.js", "ssg:https://framerusercontent.com/modules/nSN0GCOvmuD1oe52rbrk/3GSOI5x2HGz6sfNk4ZD3/AzBpr3xjY.js", "ssg:https://framerusercontent.com/modules/t26vtbmKQVrr8FxCnThB/9EZIZQLV4un0hm4Xzkm5/ilgmxMe9f.js", "ssg:https://framerusercontent.com/modules/jhifBEWxN6rsOctMqKCn/qp2csOG99bF9I5RnhyuD/O9s2O5SeP.js", "ssg:https://framerusercontent.com/modules/np5beVwn0XBPbp0av1ty/m4CRV1wE0IzWeWz3ZXcZ/rnBV2gVW1.js", "ssg:https://framerusercontent.com/modules/tmuXLwgXoY58F8hZyFgV/7h6wEihYEuwBAjntDfGQ/Counter.js", "ssg:https://framerusercontent.com/modules/5mgkD0D6mCgrVXqrr8de/UfGzSKef3rUozAcLi2Ty/UeNFeauCj.js", "ssg:https://framerusercontent.com/modules/mZsQ1mFZGaIx5zDO7o5L/U0WVELEASeXGBuqxYewY/ueiKkVaj3.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (e1877f1)\nimport{jsx as _jsx,jsxs as _jsxs}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 sharedStyle1 from\"https://framerusercontent.com/modules/g04BgVPHmPJFqAP9TSzr/9x8WDG9xgYYblCyYb5qB/QMuEq11PS.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/jB43UhQaZLIyU10dQhQm/9wCOjnrYltvoBVKu10Mp/X7ylXautb.js\";const cycleOrder=[\"HMKVYNfqj\",\"cWwDVfyFi\",\"hF6qqPKm4\",\"GdQV5shXb\"];const serializationHash=\"framer-LbxC3\";const variantClassNames={cWwDVfyFi:\"framer-v-yhwfix\",GdQV5shXb:\"framer-v-18l2a2i\",hF6qqPKm4:\"framer-v-1uherk\",HMKVYNfqj:\"framer-v-1j38nkv\"};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={\"Desktop Dark\":\"cWwDVfyFi\",\"Desktop Light\":\"HMKVYNfqj\",\"Phone Dark\":\"GdQV5shXb\",\"Phone Light\":\"hF6qqPKm4\"};const getProps=({height,id,text,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,BNrfbSvpI:(_ref=title!==null&&title!==void 0?title:props.BNrfbSvpI)!==null&&_ref!==void 0?_ref:\"Service 1\",rbI6pe7lp:(_ref1=text!==null&&text!==void 0?text:props.rbI6pe7lp)!==null&&_ref1!==void 0?_ref1:\"Lorem ipsum dolor sit amet consectetur drakgo adipiscing elit quisque lectus egestas ipsum dolor cursus at ac nisl ipsum arcu urna, rhoncus amet pharetra mattis vulputate dignissi.\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"HMKVYNfqj\"};};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,BNrfbSvpI,rbI6pe7lp,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"HMKVYNfqj\",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,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1j38nkv\",className,classNames),\"data-framer-name\":\"Desktop Light\",layoutDependency:layoutDependency,layoutId:\"HMKVYNfqj\",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:{...style},...addPropertyOverrides({cWwDVfyFi:{\"data-framer-name\":\"Desktop Dark\"},GdQV5shXb:{\"data-framer-name\":\"Phone Dark\"},hF6qqPKm4:{\"data-framer-name\":\"Phone Light\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-qrpho1\",\"data-styles-preset\":\"X7ylXautb\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234)))\"},children:\"Service 1\"})}),className:\"framer-i7naoz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bMPw70NHV\",style:{\"--extracted-a0htzi\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:BNrfbSvpI,variants:{cWwDVfyFi:{\"--extracted-a0htzi\":\"var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, rgb(10, 10, 10))\"},GdQV5shXb:{\"--extracted-a0htzi\":\"var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, rgb(10, 10, 10))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cWwDVfyFi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-qrpho1\",\"data-styles-preset\":\"X7ylXautb\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, rgb(10, 10, 10)))\"},children:\"Service 1\"})})},GdQV5shXb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-qrpho1\",\"data-styles-preset\":\"X7ylXautb\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, rgb(10, 10, 10)))\"},children:\"Service 1\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1vcau2\",\"data-styles-preset\":\"QMuEq11PS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234)))\"},children:\"Lorem ipsum dolor sit amet consectetur drakgo adipiscing elit quisque lectus egestas ipsum dolor cursus at ac nisl ipsum arcu urna, rhoncus amet pharetra mattis vulputate dignissi.\"})}),className:\"framer-71kujn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ywrnd0LJm\",style:{\"--extracted-r6o4lv\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:rbI6pe7lp,variants:{cWwDVfyFi:{\"--extracted-r6o4lv\":\"var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, rgb(10, 10, 10))\",opacity:1},GdQV5shXb:{\"--extracted-r6o4lv\":\"var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, rgb(10, 10, 10))\",opacity:1}},verticalAlignment:\"bottom\",withExternalLayout:true,...addPropertyOverrides({cWwDVfyFi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1vcau2\",\"data-styles-preset\":\"QMuEq11PS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, rgb(10, 10, 10)))\"},children:\"Lorem ipsum dolor sit amet consectetur drakgo adipiscing elit quisque lectus egestas ipsum dolor cursus at ac nisl ipsum arcu urna, rhoncus amet pharetra mattis vulputate dignissi.\"})})},GdQV5shXb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1vcau2\",\"data-styles-preset\":\"QMuEq11PS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, rgb(10, 10, 10)))\"},children:\"Lorem ipsum dolor sit amet consectetur drakgo adipiscing elit quisque lectus egestas ipsum dolor cursus at ac nisl ipsum arcu urna, rhoncus amet pharetra mattis vulputate dignissi.\"})})}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LbxC3.framer-1d02x2v, .framer-LbxC3 .framer-1d02x2v { display: block; }\",\".framer-LbxC3.framer-1j38nkv { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 260px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 360px; }\",\".framer-LbxC3 .framer-i7naoz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-LbxC3 .framer-71kujn { flex: 1 0 0px; height: 1px; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LbxC3.framer-1j38nkv { gap: 0px; } .framer-LbxC3.framer-1j38nkv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-LbxC3.framer-1j38nkv > :first-child { margin-top: 0px; } .framer-LbxC3.framer-1j38nkv > :last-child { margin-bottom: 0px; } }\",\".framer-LbxC3.framer-v-1uherk .framer-71kujn, .framer-LbxC3.framer-v-18l2a2i .framer-71kujn { width: 100%; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 260\n * @framerIntrinsicWidth 360\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"cWwDVfyFi\":{\"layout\":[\"fixed\",\"fixed\"]},\"hF6qqPKm4\":{\"layout\":[\"fixed\",\"fixed\"]},\"GdQV5shXb\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"BNrfbSvpI\":\"title\",\"rbI6pe7lp\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerXtRu2trDS=withCSS(Component,css,\"framer-LbxC3\");export default FramerXtRu2trDS;FramerXtRu2trDS.displayName=\"Card - Service\";FramerXtRu2trDS.defaultProps={height:260,width:360};addPropertyControls(FramerXtRu2trDS,{variant:{options:[\"HMKVYNfqj\",\"cWwDVfyFi\",\"hF6qqPKm4\",\"GdQV5shXb\"],optionTitles:[\"Desktop Light\",\"Desktop Dark\",\"Phone Light\",\"Phone Dark\"],title:\"Variant\",type:ControlType.Enum},BNrfbSvpI:{defaultValue:\"Service 1\",displayTextArea:false,title:\"Title\",type:ControlType.String},rbI6pe7lp:{defaultValue:\"Lorem ipsum dolor sit amet consectetur drakgo adipiscing elit quisque lectus egestas ipsum dolor cursus at ac nisl ipsum arcu urna, rhoncus amet pharetra mattis vulputate dignissi.\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramerXtRu2trDS,[{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),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXtRu2trDS\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"360\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cWwDVfyFi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hF6qqPKm4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GdQV5shXb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"260\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"BNrfbSvpI\\\":\\\"title\\\",\\\"rbI6pe7lp\\\":\\\"text\\\"}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e1877f1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import CardService from\"https://framerusercontent.com/modules/2rT122ihEN40UQgEm38Z/mkacQ7dex9OOxASyoSX5/XtRu2trDS.js\";const CardServiceFonts=getFonts(CardService);const cycleOrder=[\"nGpTYCMAu\",\"R3Num8N2s\",\"dcIvEmhte\",\"d9Mz7HRez\",\"wEJta6JvS\"];const serializationHash=\"framer-GR8oa\";const variantClassNames={d9Mz7HRez:\"framer-v-n4o470\",dcIvEmhte:\"framer-v-1kh61w9\",nGpTYCMAu:\"framer-v-d2z3mf\",R3Num8N2s:\"framer-v-bv2l83\",wEJta6JvS:\"framer-v-xiignr\"};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:78,delay:0,mass:4,stiffness:152,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;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\":\"nGpTYCMAu\",\"Variant 2\":\"R3Num8N2s\",\"Variant 3\":\"dcIvEmhte\",\"Variant 4\":\"d9Mz7HRez\",Phone:\"wEJta6JvS\"};const getProps=({height,id,service1,service1Description,service2,service2Description,service3,service3Description,service4,service4Description,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_humanReadableVariantMap_props_variant,_ref6,_ref7,_ref8;return{...props,esNvdxnIX:(_ref=service2Description!==null&&service2Description!==void 0?service2Description:props.esNvdxnIX)!==null&&_ref!==void 0?_ref:\"Lorem ipsum dolor sit amet consectetur drakgo adipiscing elit quisque lectus egestas ipsum dolor cursus at ac nisl ipsum arcu urna, rhoncus amet pharetra mattis vulputate dignissi.\",H4od7_OPJ:(_ref1=service4Description!==null&&service4Description!==void 0?service4Description:props.H4od7_OPJ)!==null&&_ref1!==void 0?_ref1:\"Lorem ipsum dolor sit amet consectetur drakgo adipiscing elit quisque lectus egestas ipsum dolor cursus at ac nisl ipsum arcu urna, rhoncus amet pharetra mattis vulputate dignissi.\",mi8Q91LDu:(_ref2=service3Description!==null&&service3Description!==void 0?service3Description:props.mi8Q91LDu)!==null&&_ref2!==void 0?_ref2:\"Lorem ipsum dolor sit amet consectetur drakgo adipiscing elit quisque lectus egestas ipsum dolor cursus at ac nisl ipsum arcu urna, rhoncus amet pharetra mattis vulputate dignissi.\",o6SxmVCs0:(_ref3=service3!==null&&service3!==void 0?service3:props.o6SxmVCs0)!==null&&_ref3!==void 0?_ref3:\"Service 2\",qJMwPZX6P:(_ref4=service2!==null&&service2!==void 0?service2:props.qJMwPZX6P)!==null&&_ref4!==void 0?_ref4:\"Service 2\",TbLj3ZRRK:(_ref5=service1Description!==null&&service1Description!==void 0?service1Description:props.TbLj3ZRRK)!==null&&_ref5!==void 0?_ref5:\"Lorem ipsum dolor sit amet consectetur drakgo adipiscing elit quisque lectus egestas ipsum dolor cursus at ac nisl ipsum arcu urna, rhoncus amet pharetra mattis vulputate dignissi.\",variant:(_ref6=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref6!==void 0?_ref6:\"nGpTYCMAu\",XVuU6xaiK:(_ref7=service4!==null&&service4!==void 0?service4:props.XVuU6xaiK)!==null&&_ref7!==void 0?_ref7:\"Service 2\",ZFGTFb17v:(_ref8=service1!==null&&service1!==void 0?service1:props.ZFGTFb17v)!==null&&_ref8!==void 0?_ref8:\"Service 1\"};};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,ZFGTFb17v,TbLj3ZRRK,qJMwPZX6P,esNvdxnIX,o6SxmVCs0,mi8Q91LDu,XVuU6xaiK,H4od7_OPJ,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"nGpTYCMAu\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap8e2yn9=activeVariantCallback(async(...args)=>{setVariant(\"nGpTYCMAu\");});const onTapitfh0x=activeVariantCallback(async(...args)=>{setVariant(\"R3Num8N2s\");});const onTap1m23rsr=activeVariantCallback(async(...args)=>{setVariant(\"dcIvEmhte\");});const onTap1s16g3n=activeVariantCallback(async(...args)=>{setVariant(\"d9Mz7HRez\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"wEJta6JvS\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-d2z3mf\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"nGpTYCMAu\",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:{...style},...addPropertyOverrides({d9Mz7HRez:{\"data-framer-name\":\"Variant 4\"},dcIvEmhte:{\"data-framer-name\":\"Variant 3\"},R3Num8N2s:{\"data-framer-name\":\"Variant 2\"},wEJta6JvS:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12y5zjo\",layoutDependency:layoutDependency,layoutId:\"huDKjPTQn\",style:{rotate:90},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q5jgvz\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"G8IPWelX3\",onTap:onTap8e2yn9,style:{backgroundColor:\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(207, 72, 62))\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},variants:{d9Mz7HRez:{backgroundColor:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\"},dcIvEmhte:{backgroundColor:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\"},R3Num8N2s:{backgroundColor:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-m0y1to\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"a7xs0JV2F\",onTap:onTapitfh0x,style:{backgroundColor:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},variants:{R3Num8N2s:{backgroundColor:\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(207, 72, 62))\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ng2m51\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"WkzabD_Rk\",onTap:onTap1m23rsr,style:{backgroundColor:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},variants:{dcIvEmhte:{backgroundColor:\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(207, 72, 62))\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13glx4h\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"mVGNXxB3X\",onTap:onTap1s16g3n,style:{backgroundColor:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},variants:{d9Mz7HRez:{backgroundColor:\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(207, 72, 62))\"}}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-142pbqs\",layoutDependency:layoutDependency,layoutId:\"BBxWYNGLv\",style:{rotateX:0,transformPerspective:2404},variants:{d9Mz7HRez:{rotateX:270},dcIvEmhte:{rotateX:180},R3Num8N2s:{rotateX:90},wEJta6JvS:{transformPerspective:undefined}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-e8rbk4\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"d7wMPb1o8\",style:{backgroundColor:\"var(--token-441e6b96-cded-437c-bbd4-5862cce7caef, rgb(240, 92, 58))\",rotateX:90},variants:{wEJta6JvS:{rotateX:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"520px\",...addPropertyOverrides({wEJta6JvS:{width:`calc(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px) - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15lgrfb-container\",layoutDependency:layoutDependency,layoutId:\"phvETxlZm-container\",style:{rotateX:0},variants:{R3Num8N2s:{rotateX:180}},children:/*#__PURE__*/_jsx(CardService,{BNrfbSvpI:XVuU6xaiK,height:\"100%\",id:\"phvETxlZm\",layoutId:\"phvETxlZm\",rbI6pe7lp:H4od7_OPJ,style:{height:\"100%\",width:\"100%\"},variant:\"cWwDVfyFi\",width:\"100%\",...addPropertyOverrides({wEJta6JvS:{variant:\"GdQV5shXb\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-100y3wz\",\"data-framer-name\":\"Back\",layoutDependency:layoutDependency,layoutId:\"gvhZp2CEc\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0.84)\",z:-150},variants:{wEJta6JvS:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-055027d1-13b9-4efb-b926-a81a963c990b, rgba(255, 255, 255, 0.3))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-3ef2b024-43b5-4c0c-a7b2-ecacd057a93b, rgba(255, 255, 255, 0.05))\"}},...addPropertyOverrides({wEJta6JvS:{\"data-border\":true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"520px\",...addPropertyOverrides({wEJta6JvS:{width:`calc(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px) - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2kzqjo-container\",layoutDependency:layoutDependency,layoutId:\"hmlsUNeLn-container\",style:{opacity:.11,rotateX:180},variants:{dcIvEmhte:{opacity:1},wEJta6JvS:{opacity:1,rotateX:0}},children:/*#__PURE__*/_jsx(CardService,{BNrfbSvpI:o6SxmVCs0,height:\"100%\",id:\"hmlsUNeLn\",layoutId:\"hmlsUNeLn\",rbI6pe7lp:mi8Q91LDu,style:{height:\"100%\",width:\"100%\"},variant:\"HMKVYNfqj\",width:\"100%\",...addPropertyOverrides({wEJta6JvS:{variant:\"hF6qqPKm4\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f0g8rw\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"AXPT4RJlN\",style:{backgroundColor:\"var(--token-441e6b96-cded-437c-bbd4-5862cce7caef, rgb(240, 92, 58))\",rotateX:90},variants:{wEJta6JvS:{rotateX:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"520px\",...addPropertyOverrides({wEJta6JvS:{width:`max(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px) - 40px, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-g33dw0-container\",layoutDependency:layoutDependency,layoutId:\"oDFSs4bGM-container\",style:{rotateX:180},variants:{wEJta6JvS:{rotateX:0}},children:/*#__PURE__*/_jsx(CardService,{BNrfbSvpI:qJMwPZX6P,height:\"100%\",id:\"oDFSs4bGM\",layoutId:\"oDFSs4bGM\",rbI6pe7lp:esNvdxnIX,style:{height:\"100%\",width:\"100%\"},variant:\"cWwDVfyFi\",width:\"100%\",...addPropertyOverrides({wEJta6JvS:{variant:\"GdQV5shXb\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xls3ht\",\"data-framer-name\":\"Front\",layoutDependency:layoutDependency,layoutId:\"ou06TQEGs\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0.84)\",z:150},variants:{wEJta6JvS:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-055027d1-13b9-4efb-b926-a81a963c990b, rgba(255, 255, 255, 0.3))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-3ef2b024-43b5-4c0c-a7b2-ecacd057a93b, rgba(255, 255, 255, 0.05))\"}},...addPropertyOverrides({wEJta6JvS:{\"data-border\":true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"520px\",...addPropertyOverrides({wEJta6JvS:{width:`calc(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px) - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-clknjd-container\",layoutDependency:layoutDependency,layoutId:\"hpjQKL1v_-container\",style:{opacity:1},variants:{dcIvEmhte:{opacity:.23}},children:/*#__PURE__*/_jsx(CardService,{BNrfbSvpI:ZFGTFb17v,height:\"100%\",id:\"hpjQKL1v_\",layoutId:\"hpjQKL1v_\",rbI6pe7lp:TbLj3ZRRK,style:{height:\"100%\",width:\"100%\"},variant:\"HMKVYNfqj\",width:\"100%\",...addPropertyOverrides({wEJta6JvS:{variant:\"hF6qqPKm4\"}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-67xuq2\",\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"ZqhXrVcV8\",style:{backgroundColor:\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(255, 132, 66))\",opacity:.75,rotateY:90}}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-14s61h6\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"UsXUWylBl\",style:{backgroundColor:\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(255, 132, 66))\",opacity:.75,rotateY:90}})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GR8oa.framer-2jxvlf, .framer-GR8oa .framer-2jxvlf { display: block; }\",\".framer-GR8oa.framer-d2z3mf { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 300px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 600px; }\",\".framer-GR8oa .framer-12y5zjo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 5px; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: -70px; top: 50%; width: min-content; z-index: 0; }\",\".framer-GR8oa .framer-1q5jgvz { cursor: pointer; flex: none; height: 5px; overflow: hidden; position: relative; width: 19px; will-change: var(--framer-will-change-override, transform); }\",\".framer-GR8oa .framer-m0y1to, .framer-GR8oa .framer-ng2m51, .framer-GR8oa .framer-13glx4h { cursor: pointer; flex: none; height: 5px; overflow: hidden; position: relative; width: 5px; will-change: var(--framer-will-change-override, transform); }\",\".framer-GR8oa .framer-142pbqs { flex: none; height: 300px; overflow: visible; position: relative; transform-style: preserve-3d; width: 600px; }\",\".framer-GR8oa .framer-e8rbk4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 300px; justify-content: center; left: 0px; overflow: visible; padding: 40px; position: absolute; right: 0px; top: -150px; }\",\".framer-GR8oa .framer-15lgrfb-container, .framer-GR8oa .framer-2kzqjo-container, .framer-GR8oa .framer-clknjd-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-GR8oa .framer-100y3wz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 300px; justify-content: center; left: 0px; overflow: visible; padding: 40px; position: absolute; right: 0px; top: 0px; }\",\".framer-GR8oa .framer-1f0g8rw { align-content: center; align-items: center; bottom: -150px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 300px; justify-content: center; left: 0px; overflow: visible; padding: 40px; position: absolute; right: 0px; }\",\".framer-GR8oa .framer-g33dw0-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-GR8oa .framer-1xls3ht { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: visible; padding: 40px; position: absolute; right: 0px; top: 0px; }\",\".framer-GR8oa .framer-67xuq2 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: -150px; overflow: visible; padding: 40px; position: absolute; top: 0px; transform-style: preserve-3d; width: 300px; }\",\".framer-GR8oa .framer-14s61h6 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; overflow: visible; padding: 40px; position: absolute; right: -150px; top: 0px; transform-style: preserve-3d; width: 300px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GR8oa.framer-d2z3mf, .framer-GR8oa .framer-12y5zjo, .framer-GR8oa .framer-e8rbk4, .framer-GR8oa .framer-100y3wz, .framer-GR8oa .framer-1f0g8rw, .framer-GR8oa .framer-1xls3ht, .framer-GR8oa .framer-67xuq2, .framer-GR8oa .framer-14s61h6 { gap: 0px; } .framer-GR8oa.framer-d2z3mf > *, .framer-GR8oa .framer-12y5zjo > *, .framer-GR8oa .framer-1f0g8rw > *, .framer-GR8oa .framer-67xuq2 > *, .framer-GR8oa .framer-14s61h6 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-GR8oa.framer-d2z3mf > :first-child, .framer-GR8oa .framer-12y5zjo > :first-child, .framer-GR8oa .framer-1f0g8rw > :first-child, .framer-GR8oa .framer-67xuq2 > :first-child, .framer-GR8oa .framer-14s61h6 > :first-child { margin-left: 0px; } .framer-GR8oa.framer-d2z3mf > :last-child, .framer-GR8oa .framer-12y5zjo > :last-child, .framer-GR8oa .framer-1f0g8rw > :last-child, .framer-GR8oa .framer-67xuq2 > :last-child, .framer-GR8oa .framer-14s61h6 > :last-child { margin-right: 0px; } .framer-GR8oa .framer-e8rbk4 > *, .framer-GR8oa .framer-100y3wz > *, .framer-GR8oa .framer-1xls3ht > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-GR8oa .framer-e8rbk4 > :first-child, .framer-GR8oa .framer-100y3wz > :first-child, .framer-GR8oa .framer-1xls3ht > :first-child { margin-top: 0px; } .framer-GR8oa .framer-e8rbk4 > :last-child, .framer-GR8oa .framer-100y3wz > :last-child, .framer-GR8oa .framer-1xls3ht > :last-child { margin-bottom: 0px; } }\",\".framer-GR8oa.framer-v-bv2l83 .framer-1q5jgvz, .framer-GR8oa.framer-v-1kh61w9 .framer-1q5jgvz, .framer-GR8oa.framer-v-n4o470 .framer-1q5jgvz { width: 5px; }\",\".framer-GR8oa.framer-v-bv2l83 .framer-m0y1to, .framer-GR8oa.framer-v-1kh61w9 .framer-ng2m51, .framer-GR8oa.framer-v-n4o470 .framer-13glx4h { width: 19px; }\",\".framer-GR8oa.framer-v-xiignr.framer-d2z3mf { height: min-content; }\",\".framer-GR8oa.framer-v-xiignr .framer-142pbqs { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; padding: 0px; transform-style: unset; width: 1px; }\",\".framer-GR8oa.framer-v-xiignr .framer-e8rbk4, .framer-GR8oa.framer-v-xiignr .framer-100y3wz { left: unset; padding: 20px; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-GR8oa.framer-v-xiignr .framer-1f0g8rw { bottom: unset; left: unset; padding: 20px; position: relative; right: unset; width: 100%; }\",\".framer-GR8oa.framer-v-xiignr .framer-1xls3ht { bottom: unset; height: 300px; left: unset; padding: 20px; position: relative; right: unset; top: unset; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GR8oa.framer-v-xiignr .framer-142pbqs { gap: 0px; } .framer-GR8oa.framer-v-xiignr .framer-142pbqs > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-GR8oa.framer-v-xiignr .framer-142pbqs > :first-child { margin-top: 0px; } .framer-GR8oa.framer-v-xiignr .framer-142pbqs > :last-child { margin-bottom: 0px; } }\",'.framer-GR8oa[data-border=\"true\"]::after, .framer-GR8oa [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 300\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"R3Num8N2s\":{\"layout\":[\"fixed\",\"fixed\"]},\"dcIvEmhte\":{\"layout\":[\"fixed\",\"fixed\"]},\"d9Mz7HRez\":{\"layout\":[\"fixed\",\"fixed\"]},\"wEJta6JvS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ZFGTFb17v\":\"service1\",\"TbLj3ZRRK\":\"service1Description\",\"qJMwPZX6P\":\"service2\",\"esNvdxnIX\":\"service2Description\",\"o6SxmVCs0\":\"service3\",\"mi8Q91LDu\":\"service3Description\",\"XVuU6xaiK\":\"service4\",\"H4od7_OPJ\":\"service4Description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAzBpr3xjY=withCSS(Component,css,\"framer-GR8oa\");export default FramerAzBpr3xjY;FramerAzBpr3xjY.displayName=\"Cube\";FramerAzBpr3xjY.defaultProps={height:300,width:600};addPropertyControls(FramerAzBpr3xjY,{variant:{options:[\"nGpTYCMAu\",\"R3Num8N2s\",\"dcIvEmhte\",\"d9Mz7HRez\",\"wEJta6JvS\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},ZFGTFb17v:{defaultValue:\"Service 1\",displayTextArea:false,title:\"Service 1\",type:ControlType.String},TbLj3ZRRK:{defaultValue:\"Lorem ipsum dolor sit amet consectetur drakgo adipiscing elit quisque lectus egestas ipsum dolor cursus at ac nisl ipsum arcu urna, rhoncus amet pharetra mattis vulputate dignissi.\",displayTextArea:true,title:\"Service 1 Description\",type:ControlType.String},qJMwPZX6P:{defaultValue:\"Service 2\",displayTextArea:false,title:\"Service 2\",type:ControlType.String},esNvdxnIX:{defaultValue:\"Lorem ipsum dolor sit amet consectetur drakgo adipiscing elit quisque lectus egestas ipsum dolor cursus at ac nisl ipsum arcu urna, rhoncus amet pharetra mattis vulputate dignissi.\",displayTextArea:true,title:\"Service 2 Description\",type:ControlType.String},o6SxmVCs0:{defaultValue:\"Service 2\",displayTextArea:false,title:\"Service 3\",type:ControlType.String},mi8Q91LDu:{defaultValue:\"Lorem ipsum dolor sit amet consectetur drakgo adipiscing elit quisque lectus egestas ipsum dolor cursus at ac nisl ipsum arcu urna, rhoncus amet pharetra mattis vulputate dignissi.\",displayTextArea:true,title:\"Service 3 Description\",type:ControlType.String},XVuU6xaiK:{defaultValue:\"Service 2\",displayTextArea:false,title:\"Service 4\",type:ControlType.String},H4od7_OPJ:{defaultValue:\"Lorem ipsum dolor sit amet consectetur drakgo adipiscing elit quisque lectus egestas ipsum dolor cursus at ac nisl ipsum arcu urna, rhoncus amet pharetra mattis vulputate dignissi.\",displayTextArea:true,title:\"Service 4 Description\",type:ControlType.String}});addFonts(FramerAzBpr3xjY,[{explicitInter:true,fonts:[]},...CardServiceFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAzBpr3xjY\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"R3Num8N2s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dcIvEmhte\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"d9Mz7HRez\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wEJta6JvS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"600\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"300\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"ZFGTFb17v\\\":\\\"service1\\\",\\\"TbLj3ZRRK\\\":\\\"service1Description\\\",\\\"qJMwPZX6P\\\":\\\"service2\\\",\\\"esNvdxnIX\\\":\\\"service2Description\\\",\\\"o6SxmVCs0\\\":\\\"service3\\\",\\\"mi8Q91LDu\\\":\\\"service3Description\\\",\\\"XVuU6xaiK\\\":\\\"service4\\\",\\\"H4od7_OPJ\\\":\\\"service4Description\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AzBpr3xjY.map", "// Generated by Framer (6421805)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/mw0hMLfakMpRjozcPtqV/KwCnY49UqMLz7iZ04JUk/HvbIeng7X.js\";const RichTextWithFX=withFX(RichText);const cycleOrder=[\"NmFK9CmKU\",\"NkqmTOsCr\"];const serializationHash=\"framer-Vzs5K\";const variantClassNames={NkqmTOsCr:\"framer-v-1yy91u7\",NmFK9CmKU:\"framer-v-wda1xw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"NmFK9CmKU\",\"Variant 2\":\"NkqmTOsCr\"};const getProps=({height,id,title,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"NmFK9CmKU\",VRu1QI171:title??props.VRu1QI171??\"Works\"};};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,VRu1QI171,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NmFK9CmKU\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-wda1xw\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"NmFK9CmKU\",ref:ref??ref1,style:{...style},...addPropertyOverrides({NkqmTOsCr:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:100,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:362,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:170}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-qo0s7g\",\"data-styles-preset\":\"HvbIeng7X\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(82, 122, 255))\"},children:\"Works\"})}),className:\"framer-wvd5yp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FtlLN3nu1\",style:{\"--extracted-1of0zx5\":\"rgb(82, 122, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",filter:\"none\",transformPerspective:1200,WebkitFilter:\"none\"},text:VRu1QI171,transformTemplate:transformTemplate1,variants:{NkqmTOsCr:{filter:\"blur(5px)\",WebkitFilter:\"blur(5px)\"}},verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Vzs5K.framer-1nwmkv8, .framer-Vzs5K .framer-1nwmkv8 { display: block; }\",\".framer-Vzs5K.framer-wda1xw { height: 96px; overflow: hidden; position: relative; width: 1120px; }\",\".framer-Vzs5K .framer-wvd5yp { flex: none; height: auto; left: 50%; position: absolute; top: 50%; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 96\n * @framerIntrinsicWidth 1120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"NkqmTOsCr\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"VRu1QI171\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerilgmxMe9f=withCSS(Component,css,\"framer-Vzs5K\");export default FramerilgmxMe9f;FramerilgmxMe9f.displayName=\"Title Blur\";FramerilgmxMe9f.defaultProps={height:96,width:1120};addPropertyControls(FramerilgmxMe9f,{variant:{options:[\"NmFK9CmKU\",\"NkqmTOsCr\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},VRu1QI171:{defaultValue:\"Works\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerilgmxMe9f,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerilgmxMe9f\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"VRu1QI171\\\":\\\"title\\\"}\",\"framerIntrinsicWidth\":\"1120\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NkqmTOsCr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"96\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (722666c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useActiveVariantCallback,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/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/v4rEnRJMPM63oFTSCbYE/SyDhUnLjETd3dPPDjwlb/QMuEq11PS.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/iFbTt0qa99pyXY2lUSu0/MUIfLbUzN6jZvKA3lKCf/qvAaSoY3f.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={HHYRnW75y:{hover:true}};const cycleOrder=[\"xSgNKquG_\",\"HHYRnW75y\"];const serializationHash=\"framer-t4mwf\";const variantClassNames={HHYRnW75y:\"framer-v-me9d59\",xSgNKquG_:\"framer-v-fpfhnc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Closed:\"HHYRnW75y\",Opened:\"xSgNKquG_\"};const getProps=({answer,height,id,question,width,...props})=>{return{...props,UkcAZJv33:answer??props.UkcAZJv33??\"You can book a session by filling out the contact form on my website or by emailing me directly at conact@vicbrewski.com. I'll get back to you within 24 hours to discuss the details.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"xSgNKquG_\",zNMII1rLe:question??props.zNMII1rLe??\"How may I contact you for services?\"};};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,zNMII1rLe,UkcAZJv33,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xSgNKquG_\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1y831ta=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"HHYRnW75y\");});const onTapbj66xi=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"xSgNKquG_\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-fpfhnc\",className,classNames),\"data-framer-name\":\"Opened\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"xSgNKquG_\",onTap:onTap1y831ta,ref:ref??ref1,style:{...style},...addPropertyOverrides({\"HHYRnW75y-hover\":{\"data-framer-name\":undefined},HHYRnW75y:{\"data-framer-name\":\"Closed\",onTap:onTapbj66xi}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hle671\",layoutDependency:layoutDependency,layoutId:\"m8BqbNrWZ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-znltd1\",\"data-styles-preset\":\"qvAaSoY3f\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234)))\"},children:\"How do I book a photography session with you?\"})}),className:\"framer-1oleog1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tFFb7ja1n\",style:{\"--extracted-r6o4lv\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:zNMII1rLe,variants:{\"HHYRnW75y-hover\":{\"--extracted-r6o4lv\":\"var(--token-441e6b96-cded-437c-bbd4-5862cce7caef, rgb(255, 119, 56))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"HHYRnW75y-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-znltd1\",\"data-styles-preset\":\"qvAaSoY3f\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-441e6b96-cded-437c-bbd4-5862cce7caef, rgb(255, 119, 56)))\"},children:\"How do I book a photography session with you?\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nl1hu5-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"iqJTg5nsD-container\",nodeId:\"iqJTg5nsD\",rendersWithMotion:true,scopeId:\"O9s2O5SeP\",style:{rotate:180},variants:{HHYRnW75y:{rotate:135}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"iqJTg5nsD\",layoutId:\"iqJTg5nsD\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({\"HHYRnW75y-hover\":{color:\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(255, 96, 23))\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wc5ob4\",layoutDependency:layoutDependency,layoutId:\"zyAO_dMRI\",style:{backgroundColor:\"var(--token-055027d1-13b9-4efb-b926-a81a963c990b, rgba(255, 255, 255, 0.3))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-at054j\",layoutDependency:layoutDependency,layoutId:\"CYmg4AXh_\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1vcau2\",\"data-styles-preset\":\"QMuEq11PS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234)))\"},children:\"You can book a session by filling out the contact form on my website or by emailing me directly at [your email address]. I'll get back to you within 24 hours to discuss the details and schedule your shoot.\"})}),className:\"framer-uoe3jn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tAoadmQ7s\",style:{\"--extracted-r6o4lv\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:.8},text:UkcAZJv33,verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-t4mwf.framer-1ufr18f, .framer-t4mwf .framer-1ufr18f { display: block; }\",\".framer-t4mwf.framer-fpfhnc { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 800px; }\",\".framer-t4mwf .framer-hle671 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 4; }\",\".framer-t4mwf .framer-1oleog1 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-t4mwf .framer-1nl1hu5-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 14px; }\",\".framer-t4mwf .framer-1wc5ob4 { bottom: 0px; flex: none; height: 1px; left: calc(50.00000000000002% - 95% / 2); overflow: visible; position: absolute; width: 95%; z-index: 1; }\",\".framer-t4mwf .framer-at054j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t4mwf .framer-uoe3jn { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; 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-t4mwf.framer-fpfhnc, .framer-t4mwf .framer-at054j { gap: 0px; } .framer-t4mwf.framer-fpfhnc > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-t4mwf.framer-fpfhnc > :first-child, .framer-t4mwf .framer-at054j > :first-child { margin-top: 0px; } .framer-t4mwf.framer-fpfhnc > :last-child, .framer-t4mwf .framer-at054j > :last-child { margin-bottom: 0px; } .framer-t4mwf .framer-at054j > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-t4mwf.framer-v-me9d59.framer-fpfhnc { gap: 0px; }\",\".framer-t4mwf.framer-v-me9d59 .framer-at054j { height: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-t4mwf.framer-v-me9d59.framer-fpfhnc { gap: 0px; } .framer-t4mwf.framer-v-me9d59.framer-fpfhnc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-t4mwf.framer-v-me9d59.framer-fpfhnc > :first-child { margin-top: 0px; } .framer-t4mwf.framer-v-me9d59.framer-fpfhnc > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 144\n * @framerIntrinsicWidth 800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"HHYRnW75y\":{\"layout\":[\"fixed\",\"auto\"]},\"dVveRu6h3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"zNMII1rLe\":\"question\",\"UkcAZJv33\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerO9s2O5SeP=withCSS(Component,css,\"framer-t4mwf\");export default FramerO9s2O5SeP;FramerO9s2O5SeP.displayName=\"Faq - Single\";FramerO9s2O5SeP.defaultProps={height:144,width:800};addPropertyControls(FramerO9s2O5SeP,{variant:{options:[\"xSgNKquG_\",\"HHYRnW75y\"],optionTitles:[\"Opened\",\"Closed\"],title:\"Variant\",type:ControlType.Enum},zNMII1rLe:{defaultValue:\"How may I contact you for services?\",displayTextArea:true,title:\"Question\",type:ControlType.String},UkcAZJv33:{defaultValue:\"You can book a session by filling out the contact form on my website or by emailing me directly at conact@vicbrewski.com. I'll get back to you within 24 hours to discuss the details.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerO9s2O5SeP,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerO9s2O5SeP\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"144\",\"framerVariables\":\"{\\\"zNMII1rLe\\\":\\\"question\\\",\\\"UkcAZJv33\\\":\\\"answer\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HHYRnW75y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dVveRu6h3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"800\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./O9s2O5SeP.map", "// Generated by Framer (722666c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-rlpuw\";const variantClassNames={B0RcH0Gtx:\"framer-v-1yzp1r7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,image,width,...props})=>{return{...props,GISUwquSq:image??props.GISUwquSq??{src:\"https://framerusercontent.com/images/ai5aTS5GwmknA02FMovLXZcdo.svg\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,GISUwquSq,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"B0RcH0Gtx\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"B0RcH0Gtx\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1yzp1r7\",className,classNames)} framer-1fwj8zq`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"B0RcH0Gtx\",ref:ref??ref1,style:{backgroundColor:\"var(--token-3ef2b024-43b5-4c0c-a7b2-ecacd057a93b, rgba(255, 255, 255, 0.02))\",...style},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:35,intrinsicWidth:133,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+39+(((componentViewport?.height||132)-78-(Math.max(0,((componentViewport?.height||132)-78-0)/1)*1+0))/2+0+0)),pixelHeight:40,pixelWidth:40,...toResponsiveImage(GISUwquSq),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1cv6lkm\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"s8UWkeSDl\"})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rlpuw.framer-1fwj8zq, .framer-rlpuw .framer-1fwj8zq { display: block; }\",\".framer-rlpuw.framer-1yzp1r7 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: 132px; justify-content: center; overflow: hidden; padding: 39px; position: relative; text-decoration: none; width: 186px; }\",\".framer-rlpuw .framer-1cv6lkm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; min-width: 130px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rlpuw.framer-1yzp1r7, .framer-rlpuw .framer-1cv6lkm { gap: 0px; } .framer-rlpuw.framer-1yzp1r7 > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-rlpuw.framer-1yzp1r7 > :first-child, .framer-rlpuw .framer-1cv6lkm > :first-child { margin-top: 0px; } .framer-rlpuw.framer-1yzp1r7 > :last-child, .framer-rlpuw .framer-1cv6lkm > :last-child { margin-bottom: 0px; } .framer-rlpuw .framer-1cv6lkm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 132\n * @framerIntrinsicWidth 186\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"GISUwquSq\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrnBV2gVW1=withCSS(Component,css,\"framer-rlpuw\");export default FramerrnBV2gVW1;FramerrnBV2gVW1.displayName=\"Brands\";FramerrnBV2gVW1.defaultProps={height:132,width:186};addPropertyControls(FramerrnBV2gVW1,{GISUwquSq:{__defaultAssetReference:\"data:framer/asset-reference,ai5aTS5GwmknA02FMovLXZcdo.svg?originalFilename=logoipsum-246.svg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerrnBV2gVW1,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrnBV2gVW1\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"GISUwquSq\\\":\\\"image\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"132\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"186\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rnBV2gVW1.map", "// Welcome to Code in Framer\n// Get Started: https://www.framer.com/developers/\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useEffect,useRef}from\"react\";import{useInView,useMotionValue,useSpring}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";/**\n * These annotations control how your component sizes\n * Learn more: https://www.framer.com/developers/#code-components-auto-sizing\n *\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */export default function Counter({decimal,value,decimalValue,direction,stiffness,damping,prefix,prefixText,suffix,suffixText,color,fontStyle}){const initialValue=0;const ref=useRef(null);const updatedDecimalValue=decimal===true?decimalValue:value;const motionValue=useMotionValue(direction===\"down\"?updatedDecimalValue:initialValue);const springValue=useSpring(motionValue,{damping:damping,stiffness:stiffness});const isInView=useInView(ref,{once:true,margin:\"-100px\"});useEffect(()=>{if(isInView){motionValue.set(direction===\"down\"?initialValue:updatedDecimalValue);}},[motionValue,isInView]);useEffect(()=>springValue.on(\"change\",latest=>{if(ref.current){ref.current.textContent=Intl.NumberFormat(\"en-US\").format(latest.toFixed(decimal===true?2:0));}}),[springValue]);return /*#__PURE__*/_jsxs(_Fragment,{children:[prefix?/*#__PURE__*/_jsx(\"span\",{style:{...fontStyle,color:color},children:prefixText}):null,/*#__PURE__*/_jsx(\"span\",{ref:ref,style:{...fontStyle,color:color},children:initialValue}),suffix?/*#__PURE__*/_jsx(\"span\",{style:{...fontStyle,color:color},children:suffixText}):null]});}Counter.defaultProps={decimal:false,value:100,decimalValue:100,direction:\"up\",stiffness:300,damping:100,prefix:false,prefixText:\"\",suffix:false,suffixText:\"\",color:\"#000000\",fontStyle:\"\"};addPropertyControls(Counter,{decimal:{title:\"Decimal\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},value:{title:\"Value\",type:ControlType.Number,min:0,max:1e3,hidden(props){return props.decimal===true;}},decimalValue:{title:\"Value\",type:ControlType.Number,min:0,max:1e3,step:.01,hidden(props){return props.decimal===false;}},prefix:{title:\"Prefix\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},prefixText:{title:\"Prefix Value\",type:ControlType.String,hidden(props){return props.prefix===false;}},suffix:{title:\"Suffix\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},suffixText:{title:\"Suffix Value\",type:ControlType.String,hidden(props){return props.suffix===false;}},direction:{title:\"Direction\",type:ControlType.Enum,options:[\"up\",\"down\"]},stiffness:{title:\"Stiffness\",type:ControlType.Number,min:1,max:1e3},damping:{title:\"Damping\",type:ControlType.Number,min:0,max:100},color:{title:\"Color\",type:ControlType.Color},fontStyle:{title:\"Font Style\",type:\"font\",controls:\"extended\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Counter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"auto\",\"framerSupportedLayoutHeight\":\"auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Counter.map", "// Generated by Framer (f082bd6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Counter from\"https://framerusercontent.com/modules/tmuXLwgXoY58F8hZyFgV/7h6wEihYEuwBAjntDfGQ/Counter.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/v4rEnRJMPM63oFTSCbYE/SyDhUnLjETd3dPPDjwlb/QMuEq11PS.js\";const CounterFonts=getFonts(Counter);const cycleOrder=[\"ZEl1lBlP5\",\"htpOHhC0I\"];const serializationHash=\"framer-vNVJ3\";const variantClassNames={htpOHhC0I:\"framer-v-1hz58rw\",ZEl1lBlP5:\"framer-v-9xpgeo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"ZEl1lBlP5\",\"Variant 2\":\"htpOHhC0I\"};const getProps=({fontSize,height,id,suffix,title,value,width,...props})=>{return{...props,FCzUNk8zj:suffix??props.FCzUNk8zj??\"+\",lfxR4tjrX:fontSize??props.lfxR4tjrX??80,QZmyCi6ep:value??props.QZmyCi6ep??100,variant:humanReadableVariantMap[props.variant]??props.variant??\"ZEl1lBlP5\",x9jw34lHv:title??props.x9jw34lHv??\"YEARS OF EXPERIENCE\"};};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,x9jw34lHv,FCzUNk8zj,QZmyCi6ep,lfxR4tjrX,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZEl1lBlP5\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-9xpgeo\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ZEl1lBlP5\",ref:ref??ref1,style:{backgroundColor:\"var(--token-67fbec5f-f86d-4a68-8709-0a9a96756c72, rgba(255, 255, 255, 0.1))\",...style},...addPropertyOverrides({htpOHhC0I:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-g70jy0\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"UvnmCtJxT\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-67fbec5f-f86d-4a68-8709-0a9a96756c72, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1vcau2\",\"data-styles-preset\":\"QMuEq11PS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234)))\"},children:\"YEARS OF EXPERIENCE\"})}),className:\"framer-7ejxhh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ev4MQNMc9\",style:{\"--extracted-r6o4lv\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:x9jw34lHv,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5uxkex\",layoutDependency:layoutDependency,layoutId:\"tAPQtWLbS\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yprmho-container\",layoutDependency:layoutDependency,layoutId:\"tsN8tbao2-container\",children:/*#__PURE__*/_jsx(Counter,{color:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\",damping:44,decimal:false,decimalValue:99.99,direction:\"up\",fontStyle:{fontFamily:'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',fontSize:\"133px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"tsN8tbao2\",layoutId:\"tsN8tbao2\",prefix:false,prefixText:\"$\",stiffness:59,suffix:false,suffixText:\"\",value:QZmyCi6ep,width:\"100%\",...addPropertyOverrides({htpOHhC0I:{fontStyle:{fontFamily:'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',fontSize:\"96px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-lfxR4tjrX-UeNFeauCj) * 1px)\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(207, 72, 62)))\"},children:\"+\"})}),className:\"framer-z3rs3y\",fonts:[\"FS;Clash Display-medium\"],layoutDependency:layoutDependency,layoutId:\"PBRSB7RJQ\",style:{\"--extracted-r6o4lv\":\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(207, 72, 62))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-lfxR4tjrX-UeNFeauCj\":lfxR4tjrX},text:FCzUNk8zj,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vNVJ3.framer-1xeuwm1, .framer-vNVJ3 .framer-1xeuwm1 { display: block; }\",\".framer-vNVJ3.framer-9xpgeo { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 535px; }\",\".framer-vNVJ3 .framer-g70jy0 { 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 0px 10px 0px; position: relative; width: 100%; }\",\".framer-vNVJ3 .framer-7ejxhh, .framer-vNVJ3 .framer-z3rs3y { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-vNVJ3 .framer-5uxkex { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vNVJ3 .framer-yprmho-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vNVJ3.framer-9xpgeo, .framer-vNVJ3 .framer-g70jy0, .framer-vNVJ3 .framer-5uxkex { gap: 0px; } .framer-vNVJ3.framer-9xpgeo > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-vNVJ3.framer-9xpgeo > :first-child { margin-top: 0px; } .framer-vNVJ3.framer-9xpgeo > :last-child { margin-bottom: 0px; } .framer-vNVJ3 .framer-g70jy0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-vNVJ3 .framer-g70jy0 > :first-child, .framer-vNVJ3 .framer-5uxkex > :first-child { margin-left: 0px; } .framer-vNVJ3 .framer-g70jy0 > :last-child, .framer-vNVJ3 .framer-5uxkex > :last-child { margin-right: 0px; } .framer-vNVJ3 .framer-5uxkex > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-vNVJ3.framer-v-1hz58rw .framer-yprmho-container { order: 0; }\",\".framer-vNVJ3.framer-v-1hz58rw .framer-z3rs3y { order: 1; }\",...sharedStyle.css,'.framer-vNVJ3[data-border=\"true\"]::after, .framer-vNVJ3 [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 249\n * @framerIntrinsicWidth 535\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"htpOHhC0I\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"x9jw34lHv\":\"title\",\"FCzUNk8zj\":\"suffix\",\"QZmyCi6ep\":\"value\",\"lfxR4tjrX\":\"fontSize\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUeNFeauCj=withCSS(Component,css,\"framer-vNVJ3\");export default FramerUeNFeauCj;FramerUeNFeauCj.displayName=\"Stats\";FramerUeNFeauCj.defaultProps={height:249,width:535};addPropertyControls(FramerUeNFeauCj,{variant:{options:[\"ZEl1lBlP5\",\"htpOHhC0I\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},x9jw34lHv:{defaultValue:\"YEARS OF EXPERIENCE\",displayTextArea:false,title:\"Title\",type:ControlType.String},FCzUNk8zj:{defaultValue:\"+\",displayTextArea:false,title:\"Suffix\",type:ControlType.String},QZmyCi6ep:{defaultValue:100,max:1e3,min:0,title:\"Value\",type:ControlType.Number},lfxR4tjrX:{defaultValue:80,title:\"Font Size\",type:ControlType.Number}});addFonts(FramerUeNFeauCj,[{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:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/VFMK2COV3DN37JR7JQ4CAOJPZ7KWKNY7/ODD5YJNDLHZZB2MIT3DPVH4EIHAMZ34D/BSY64LPTT3OPLVKAZKL3AHKRWZ3D74AC.woff2\",weight:\"400\"},{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2GQIT54GKQY3JRFTSHS4ARTRNRQISSAA/3CIP5EBHRRHE5FVQU3VFROPUERNDSTDF/JTSL5QESUXATU47LCPUNHZQBDDIWDOSW.woff2\",weight:\"500\"}]},...CounterFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUeNFeauCj\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"535\",\"framerIntrinsicHeight\":\"249\",\"framerVariables\":\"{\\\"x9jw34lHv\\\":\\\"title\\\",\\\"FCzUNk8zj\\\":\\\"suffix\\\",\\\"QZmyCi6ep\\\":\\\"value\\\",\\\"lfxR4tjrX\\\":\\\"fontSize\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"htpOHhC0I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (677c5d1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import Cube from\"https://framerusercontent.com/modules/nSN0GCOvmuD1oe52rbrk/3GSOI5x2HGz6sfNk4ZD3/AzBpr3xjY.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/qXyG1UgqGGx5DS4G9abM/Smooth_Scroll.js\";import Review from\"#framer/local/canvasComponent/eNfRctY2o/eNfRctY2o.js\";import NavMenuOverlay from\"#framer/local/canvasComponent/hcXsnZxmp/hcXsnZxmp.js\";import Button from\"#framer/local/canvasComponent/ice_UvhW5/ice_UvhW5.js\";import TitleBlur from\"#framer/local/canvasComponent/ilgmxMe9f/ilgmxMe9f.js\";import FaqSingle from\"#framer/local/canvasComponent/O9s2O5SeP/O9s2O5SeP.js\";import Footer from\"#framer/local/canvasComponent/PqQtuErNZ/PqQtuErNZ.js\";import Brands from\"#framer/local/canvasComponent/rnBV2gVW1/rnBV2gVW1.js\";import Cursor from\"#framer/local/canvasComponent/t3kQNA4Z8/t3kQNA4Z8.js\";import Nav from\"#framer/local/canvasComponent/UEn7U9jTS/UEn7U9jTS.js\";import Stats from\"#framer/local/canvasComponent/UeNFeauCj/UeNFeauCj.js\";import Project from\"#framer/local/canvasComponent/VvgCSmuri/VvgCSmuri.js\";import CardBlog from\"#framer/local/canvasComponent/xQwQXHeqp/xQwQXHeqp.js\";import Blog,{enumToDisplayNameFunctions as enumToDisplayNameFunctions1}from\"#framer/local/collection/L8b3IANtH/L8b3IANtH.js\";import Albums,{enumToDisplayNameFunctions}from\"#framer/local/collection/Qiwj4Sxj4/Qiwj4Sxj4.js\";import*as sharedStyle2 from\"#framer/local/css/HRBsjwLer/HRBsjwLer.js\";import*as sharedStyle1 from\"#framer/local/css/HvbIeng7X/HvbIeng7X.js\";import*as sharedStyle5 from\"#framer/local/css/pOjALZ8om/pOjALZ8om.js\";import*as sharedStyle from\"#framer/local/css/QMuEq11PS/QMuEq11PS.js\";import*as sharedStyle3 from\"#framer/local/css/xHea8ZIZv/xHea8ZIZv.js\";import*as sharedStyle4 from\"#framer/local/css/YlG7eJng5/YlG7eJng5.js\";import metadataProvider from\"#framer/local/webPageMetadata/ueiKkVaj3/ueiKkVaj3.js\";const NavFonts=getFonts(Nav);const NavMenuOverlayFonts=getFonts(NavMenuOverlay);const ButtonFonts=getFonts(Button);const PhosphorFonts=getFonts(Phosphor);const ContainerWithFX=withFX(Container);const MotionDivWithFX=withFX(motion.div);const VideoFonts=getFonts(Video);const ImageWithFX=withFX(Image);const StatsFonts=getFonts(Stats);const BrandsFonts=getFonts(Brands);const TitleBlurFonts=getFonts(TitleBlur);const TitleBlurWithVariantAppearEffect=withVariantAppearEffect(TitleBlur);const ProjectFonts=getFonts(Project);const RichTextWithFX=withFX(RichText);const CubeFonts=getFonts(Cube);const CubeWithVariantAppearEffect=withVariantAppearEffect(Cube);const ReviewFonts=getFonts(Review);const TickerFonts=getFonts(Ticker);const CardBlogFonts=getFonts(CardBlog);const FaqSingleFonts=getFonts(FaqSingle);const MotionSectionWithFX=withFX(motion.section);const FooterFonts=getFonts(Footer);const SmoothScrollFonts=getFonts(SmoothScroll);const CursorFonts=getFonts(Cursor);const breakpoints={ePjBTtXEX:\"(min-width: 810px) and (max-width: 1199px)\",gVM634JVz:\"(min-width: 1200px)\",n9gLl4Eao:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-p64LT\";const variantClassNames={ePjBTtXEX:\"framer-v-7hwwvd\",gVM634JVz:\"framer-v-zgsw7e\",n9gLl4Eao:\"framer-v-otwvw4\"};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-2};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:170};const transition2={damping:100,delay:0,mass:1,stiffness:362,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:170};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"gVM634JVz\",Phone:\"n9gLl4Eao\",Tablet:\"ePjBTtXEX\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"gVM634JVz\"};};const transition3={damping:60,delay:0,mass:1,stiffness:251,type:\"spring\"};const cursor={alignment:\"center\",component:Cursor,offset:{x:0,y:20},placement:\"top\",transition:transition3,variant:\"kHV_DxTWA\"};const transition4={damping:60,delay:0,mass:1,stiffness:289,type:\"spring\"};const cursor1={alignment:\"center\",component:Cursor,offset:{x:0,y:0},placement:\"top\",transition:transition4,variant:\"PmfS6iAzP\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,F5JM_atFVqf0vDwWRO,vKXD8iKpJqf0vDwWRO,abCVizEmiqf0vDwWRO,H8wcwixxoqf0vDwWRO,FgTryvascqf0vDwWRO,idqf0vDwWRO,F5JM_atFVHKTrf_n50,vKXD8iKpJHKTrf_n50,abCVizEmiHKTrf_n50,H8wcwixxoHKTrf_n50,FgTryvascHKTrf_n50,idHKTrf_n50,F5JM_atFVTpATeIQGL,vKXD8iKpJTpATeIQGL,abCVizEmiTpATeIQGL,H8wcwixxoTpATeIQGL,FgTryvascTpATeIQGL,idTpATeIQGL,F5JM_atFVlfbPOqUhQ,vKXD8iKpJlfbPOqUhQ,abCVizEmilfbPOqUhQ,H8wcwixxolfbPOqUhQ,FgTryvasclfbPOqUhQ,idlfbPOqUhQ,F5JM_atFVcAk1JNQqN,vKXD8iKpJcAk1JNQqN,abCVizEmicAk1JNQqN,H8wcwixxocAk1JNQqN,FgTryvasccAk1JNQqN,idcAk1JNQqN,AysrUKz64ZG7zdjsHc,eu1SUO8AeZG7zdjsHc,MnZrUXvuIZG7zdjsHc,S9w7PJblNZG7zdjsHc,mmsKK_xBbZG7zdjsHc,idZG7zdjsHc,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const Fv5UOj18q3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"zJL7JOcd9\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"nhd_W9lmc\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"n9gLl4Eao\")return false;return true;};const ref3=React.useRef(null);const elementId2=useRouteElementId(\"ohtDp3gGl\");const elementId3=useRouteElementId(\"BD2cR1SRi\");const ref4=React.useRef(null);const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"ePjBTtXEX\")return false;return true;};const ref5=React.useRef(null);const elementId4=useRouteElementId(\"EbpuSh3rn\");const elementId5=useRouteElementId(\"zqm84JZTO\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"eLmWU9DgF\");const ref7=React.useRef(null);const ref8=React.useRef(null);const ref9=React.useRef(null);const ref10=React.useRef(null);const elementId7=useRouteElementId(\"t5xhlbAgO\");const elementId8=useRouteElementId(\"HYYvKEv5t\");const elementId9=useRouteElementId(\"y59KWQhZc\");const elementId10=useRouteElementId(\"aXTUvran4\");const ref11=React.useRef(null);const activeLocaleCode=useLocaleCode();useCustomCursors({\"1h5i94v\":cursor1,\"1iz7wcx\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"gVM634JVz\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, rgb(10, 10, 10)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-zgsw7e\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"100vw\",y:0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1xjyvwg-container\",id:\"1xjyvwg\",layoutScroll:true,nodeId:\"guM9Zf6qF\",scopeId:\"ueiKkVaj3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{variant:overlay.visible?\"B37HrnbDL\":\"ot3jw09Sv\"}},children:/*#__PURE__*/_jsx(Nav,{Fv5UOj18q:Fv5UOj18q3bnx0g({overlay}),height:\"100%\",id:\"guM9Zf6qF\",layoutId:\"guM9Zf6qF\",style:{height:\"100%\",width:\"100%\"},variant:overlay.visible?\"B37HrnbDL\":\"B37HrnbDL\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-prjyfz\"),\"data-framer-portal-id\":\"1xjyvwg\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"us0FRQ7OW\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1cv0cjy-container\"),\"data-framer-portal-id\":\"1xjyvwg\",inComponentSlot:true,nodeId:\"aOgX58ECj\",rendersWithMotion:true,scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{variant:\"SWIMc8iie\"}},children:/*#__PURE__*/_jsx(NavMenuOverlay,{height:\"100%\",id:\"aOgX58ECj\",layoutId:\"aOgX58ECj\",style:{height:\"100%\",width:\"100%\"},variant:\"q8DZilw9H\",vFLr6XZMs:\"hgQlxdFpY\",width:\"100%\"})})})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1sv2b1r\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1wiukws\",\"data-framer-name\":\"Hero\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5xme10\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ckxtxg\",\"data-framer-name\":\"Descriptive text & Button\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vcau2\",\"data-styles-preset\":\"QMuEq11PS\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, rgb(255, 255, 255))\"},children:'VIC BREW. HELPING CLIENTS ACHIVE SUCCESS THROUGH TAILORED STRATEGIES FOR PERSONAL AND PROFESSIONAL GROWTH. \"EMPOWERING SUCCESS, ONE STRATEGY AT A TIME\"'})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vcau2\",\"data-styles-preset\":\"QMuEq11PS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, rgb(255, 255, 255))\"},children:'VIC BREW. HELPING CLIENTS ACHIVE SUCCESS THROUGH TAILORED STRATEGIES FOR PERSONAL AND PROFESSIONAL GROWTH. \"EMPOWERING SUCCESS, ONE STRATEGY AT A TIME\"   '})}),className:\"framer-10a2oru\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{y:(componentViewport?.y||0)+0+0+0+0+48+130+0+0+147.5},n9gLl4Eao:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+0+0+0+0+0+130+0+0+147.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qvnrfz-container\",nodeId:\"K8QnR2MXN\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Button,{FonsFUcAa:\"https://calendly.com/vicbrew\",height:\"100%\",id:\"K8QnR2MXN\",layoutId:\"K8QnR2MXN\",NxxZ8Xy2U:\"LET' S CHAT\",variant:\"fKZmX1c_3\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ujpgkq\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-qo0s7g\",\"data-styles-preset\":\"HvbIeng7X\",children:[\"Actor, \",/*#__PURE__*/_jsx(\"br\",{}),\"Producer, Consultant\"]})}),transformTemplate:transformTemplate1},n9gLl4Eao:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-qo0s7g\",\"data-styles-preset\":\"HvbIeng7X\",children:[\"Actor,  \",/*#__PURE__*/_jsx(\"br\",{}),\"Producer, Consultant\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qo0s7g\",\"data-styles-preset\":\"HvbIeng7X\",children:\"Actor,  Producer, Consultant\"})}),className:\"framer-1r7pgrh\",fonts:[\"Inter\"],id:elementId1,ref:ref2,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fcljzk hidden-otwvw4\",\"data-border\":true,\"data-framer-name\":\"Other Elements\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7dhv8r\",\"data-styles-preset\":\"HRBsjwLer\",style:{\"--framer-text-color\":\"var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, rgb(255, 255, 255))\"},children:\"Vic Brew \"})}),className:\"framer-7p1hhc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e0wsos\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1831b5g-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dHBYlFD9J\",rendersWithMotion:true,scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowDown\",id:\"dHBYlFD9J\",layoutId:\"dHBYlFD9J\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7dhv8r\",\"data-styles-preset\":\"HRBsjwLer\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, rgb(255, 255, 255))\"},children:\"Scroll to Explore\"})}),className:\"framer-yzezt0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7dhv8r\",\"data-styles-preset\":\"HRBsjwLer\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LDpT1HaOj\"},motionChild:true,nodeId:\"gYbXZXRBf\",openInNewTab:false,scopeId:\"ueiKkVaj3\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yx9a1c\",\"data-styles-preset\":\"xHea8ZIZv\",children:\"WORK WITH ME\"})})})}),className:\"framer-moh0jn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref3,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:6936,intrinsicWidth:4768},className:\"framer-w7mlg6\",\"data-framer-name\":\"Video's 1st Frame Screenshot Here\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-i1ifx2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"T70hJ7tuP\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"T70hJ7tuP\",isMixedBorderRadius:false,layoutId:\"T70hJ7tuP\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/UaWCR1i6Gq8RFf0j7sxLgxGsfeQ.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mzv19e\",\"data-framer-name\":\"About\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kljtx3\",\"data-border\":true,\"data-framer-name\":\"Statistics\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1utxd7r\",\"data-framer-name\":\"Row 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{y:(componentViewport?.y||0)+0+0+0+0+0+1e3+56+0+10+0+0},n9gLl4Eao:{width:`min(${componentViewport?.width||\"100vw\"} - 24px, 1680px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:249,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 30px) * 0.6, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1e3+160+0+10+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-er9bag-container\",nodeId:\"Lr0nP3rLf\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{lfxR4tjrX:58,variant:\"htpOHhC0I\"},n9gLl4Eao:{lfxR4tjrX:84,variant:\"htpOHhC0I\"}},children:/*#__PURE__*/_jsx(Stats,{FCzUNk8zj:\"K+\",height:\"100%\",id:\"Lr0nP3rLf\",layoutId:\"Lr0nP3rLf\",lfxR4tjrX:100,QZmyCi6ep:2,style:{width:\"100%\"},variant:\"ZEl1lBlP5\",width:\"100%\",x9jw34lHv:\"Hours Logged\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{y:(componentViewport?.y||0)+0+0+0+0+0+1e3+56+0+10+0+0},n9gLl4Eao:{width:`min(${componentViewport?.width||\"100vw\"} - 24px, 1680px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:249,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 30px) / 2.5, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1e3+160+0+10+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-iwezsd-container\",nodeId:\"smGy_UoER\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{lfxR4tjrX:58,variant:\"htpOHhC0I\"},n9gLl4Eao:{lfxR4tjrX:84,variant:\"htpOHhC0I\"}},children:/*#__PURE__*/_jsx(Stats,{FCzUNk8zj:\"+\",height:\"100%\",id:\"smGy_UoER\",layoutId:\"smGy_UoER\",lfxR4tjrX:100,QZmyCi6ep:10,style:{width:\"100%\"},variant:\"ZEl1lBlP5\",width:\"100%\",x9jw34lHv:\"Years of Experience\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-175an46\",\"data-framer-name\":\"Row 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{y:(componentViewport?.y||0)+0+0+0+0+0+1e3+56+0+10+259+0},n9gLl4Eao:{width:`min(${componentViewport?.width||\"100vw\"} - 24px, 1680px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:249,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 30px) / 2.5, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1e3+160+0+10+259+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19soruj-container\",nodeId:\"aIYmOePf5\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{lfxR4tjrX:58,variant:\"htpOHhC0I\"},n9gLl4Eao:{lfxR4tjrX:84,variant:\"htpOHhC0I\"}},children:/*#__PURE__*/_jsx(Stats,{FCzUNk8zj:\"+\",height:\"100%\",id:\"aIYmOePf5\",layoutId:\"aIYmOePf5\",lfxR4tjrX:100,QZmyCi6ep:13,style:{width:\"100%\"},variant:\"ZEl1lBlP5\",width:\"100%\",x9jw34lHv:\"Awards and Recognitions\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{y:(componentViewport?.y||0)+0+0+0+0+0+1e3+56+0+10+259+0},n9gLl4Eao:{width:`min(${componentViewport?.width||\"100vw\"} - 24px, 1680px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:249,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 30px) * 0.6, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1e3+160+0+10+259+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15bqre5-container\",nodeId:\"w66Y9gcuU\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{lfxR4tjrX:58,variant:\"htpOHhC0I\"},n9gLl4Eao:{lfxR4tjrX:84,variant:\"htpOHhC0I\"}},children:/*#__PURE__*/_jsx(Stats,{FCzUNk8zj:\"+\",height:\"100%\",id:\"w66Y9gcuU\",layoutId:\"w66Y9gcuU\",lfxR4tjrX:100,QZmyCi6ep:100,style:{width:\"100%\"},variant:\"ZEl1lBlP5\",width:\"100%\",x9jw34lHv:\"Happy Clients Served\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wh9kny\",\"data-framer-name\":\"About Me Container\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qo0s7g\",\"data-styles-preset\":\"HvbIeng7X\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(82, 122, 255)\"},children:\"Why Vic \u2026\"})}),className:\"framer-wsu4eg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ocd5a1\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1q3l3un\",\"data-styles-preset\":\"YlG7eJng5\",style:{\"--framer-text-color\":\"var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, rgb(255, 255, 255))\"},children:\"With a strong track record in sales, marketing, and entertainment\u2014partnering with industry giants like Hulu, Amazon, and GitLab\u2014Vic delivers strategic, results-driven solutions. My expertise fuels success in digital and creative spaces, ensuring clients achieve their goals. \"})}),className:\"framer-65akvn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Z2fa3mIFL\"},implicitPathVariables:undefined},{href:{webPageId:\"Z2fa3mIFL\"},implicitPathVariables:undefined},{href:{webPageId:\"Z2fa3mIFL\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{y:(componentViewport?.y||0)+0+0+0+0+0+1e3+56+570+100+114+0+271},n9gLl4Eao:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+0+0+0+0+0+1e3+160+570+100+100+0+271,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mfjkz6-container\",nodeId:\"qQMLFjWyG\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{FonsFUcAa:resolvedLinks[1]},n9gLl4Eao:{FonsFUcAa:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button,{FonsFUcAa:resolvedLinks[0],height:\"100%\",id:\"qQMLFjWyG\",layoutId:\"qQMLFjWyG\",NxxZ8Xy2U:\"More About Me\",variant:\"fKZmX1c_3\",width:\"100%\"})})})})})})]})]})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2ign6j\",\"data-framer-name\":\"Brands\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-svp0sd\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zxqogj\",\"data-framer-name\":\"Heading Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zxf4xn\",\"data-styles-preset\":\"pOjALZ8om\",style:{\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\"},children:\"Brands Vic has worked with\"})}),className:\"framer-1t2rprj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-146yrgn\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 20px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+2261+0+0+0+91.2+0+0},n9gLl4Eao:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:132,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 40px) / 5, 200px)`,y:(componentViewport?.y||0)+0+0+0+2401+0+0+0+91.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-buxv70-container\",nodeId:\"NYtTPa79m\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Brands,{GISUwquSq:addImageAlt({src:\"https://framerusercontent.com/images/ysqTUFaWkvuZvpDOuPCv1ISY.png\"},\"\"),height:\"100%\",id:\"NYtTPa79m\",layoutId:\"NYtTPa79m\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 20px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+2261+0+0+0+91.2+0+0},n9gLl4Eao:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:132,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 40px) / 5, 200px)`,y:(componentViewport?.y||0)+0+0+0+2401+0+0+0+91.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t078zg-container\",nodeId:\"Hh4JqbwOW\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Brands,{GISUwquSq:addImageAlt({src:\"https://framerusercontent.com/images/ImceXugydD9SHkNCtt6WpfDfdLE.png\",srcSet:\"https://framerusercontent.com/images/ImceXugydD9SHkNCtt6WpfDfdLE.png?scale-down-to=512 512w,https://framerusercontent.com/images/ImceXugydD9SHkNCtt6WpfDfdLE.png 1000w\"},\"\"),height:\"100%\",id:\"Hh4JqbwOW\",layoutId:\"Hh4JqbwOW\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 20px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+2261+0+0+0+91.2+0+0},n9gLl4Eao:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:132,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 40px) / 5, 200px)`,y:(componentViewport?.y||0)+0+0+0+2401+0+0+0+91.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x6cisb-container\",nodeId:\"PED3yBQ1u\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Brands,{GISUwquSq:addImageAlt({src:\"https://framerusercontent.com/images/mS3s0TWRVXewSbtpV2piO8g6lyk.png\",srcSet:\"https://framerusercontent.com/images/mS3s0TWRVXewSbtpV2piO8g6lyk.png?scale-down-to=512 512w,https://framerusercontent.com/images/mS3s0TWRVXewSbtpV2piO8g6lyk.png 800w\"},\"\"),height:\"100%\",id:\"PED3yBQ1u\",layoutId:\"PED3yBQ1u\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 20px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+2261+0+0+0+91.2+0+142},n9gLl4Eao:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:132,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 40px) / 5, 200px)`,y:(componentViewport?.y||0)+0+0+0+2401+0+0+0+91.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s33d51-container\",nodeId:\"pwCJ6ohUm\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Brands,{GISUwquSq:addImageAlt({src:\"https://framerusercontent.com/images/jSiYpe1LNgT1hp0GzrmlyjZgbww.svg\",srcSet:\"https://framerusercontent.com/images/jSiYpe1LNgT1hp0GzrmlyjZgbww.svg?scale-down-to=512 512w,https://framerusercontent.com/images/jSiYpe1LNgT1hp0GzrmlyjZgbww.svg 750w\"},\"\"),height:\"100%\",id:\"pwCJ6ohUm\",layoutId:\"pwCJ6ohUm\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 20px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+2261+0+0+0+91.2+0+142},n9gLl4Eao:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:132,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 40px) / 5, 200px)`,y:(componentViewport?.y||0)+0+0+0+2401+0+0+0+91.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tf3jv4-container\",nodeId:\"nRb6shlMs\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Brands,{GISUwquSq:addImageAlt({src:\"https://framerusercontent.com/images/T7CBLBCsl7mFKtFDCrNtaH8vIYc.png\",srcSet:\"https://framerusercontent.com/images/T7CBLBCsl7mFKtFDCrNtaH8vIYc.png?scale-down-to=512 512w,https://framerusercontent.com/images/T7CBLBCsl7mFKtFDCrNtaH8vIYc.png 1024w\"},\"\"),height:\"100%\",id:\"nRb6shlMs\",layoutId:\"nRb6shlMs\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 20px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+2261+0+0+0+91.2+0+142},n9gLl4Eao:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:132,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 40px) / 5, 200px)`,y:(componentViewport?.y||0)+0+0+0+2401+0+0+0+91.2+0+142,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ve4r2x-container\",nodeId:\"vFsxRhDuK\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Brands,{GISUwquSq:addImageAlt({src:\"https://framerusercontent.com/images/zelaP9EuFBrSvBgMFdMHR0KUs.webp\",srcSet:\"https://framerusercontent.com/images/zelaP9EuFBrSvBgMFdMHR0KUs.webp?scale-down-to=512 512w,https://framerusercontent.com/images/zelaP9EuFBrSvBgMFdMHR0KUs.webp 1024w\"},\"\"),height:\"100%\",id:\"vFsxRhDuK\",layoutId:\"vFsxRhDuK\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 20px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+2261+0+0+0+91.2+0+284},n9gLl4Eao:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:132,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 40px) / 5, 200px)`,y:(componentViewport?.y||0)+0+0+0+2401+0+0+0+91.2+0+142,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9i7sw-container\",nodeId:\"CTosVS8Hg\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Brands,{GISUwquSq:addImageAlt({src:\"https://framerusercontent.com/images/RIl0jZxdjYTIkSIbqs8JTisrLE8.png\"},\"\"),height:\"100%\",id:\"CTosVS8Hg\",layoutId:\"CTosVS8Hg\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 20px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+2261+0+0+0+91.2+0+284},n9gLl4Eao:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:132,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 40px) / 5, 200px)`,y:(componentViewport?.y||0)+0+0+0+2401+0+0+0+91.2+0+142,children:/*#__PURE__*/_jsx(Container,{className:\"framer-sj983z-container\",nodeId:\"oIFZ39sB5\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Brands,{GISUwquSq:addImageAlt({src:\"https://framerusercontent.com/images/k84BbGMkBkRnnZKN1wlO41ZaDkc.png\",srcSet:\"https://framerusercontent.com/images/k84BbGMkBkRnnZKN1wlO41ZaDkc.png?scale-down-to=512 512w,https://framerusercontent.com/images/k84BbGMkBkRnnZKN1wlO41ZaDkc.png 1000w\"},\"\"),height:\"100%\",id:\"oIFZ39sB5\",layoutId:\"oIFZ39sB5\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 20px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+2261+0+0+0+91.2+0+284},n9gLl4Eao:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:132,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 40px) / 5, 200px)`,y:(componentViewport?.y||0)+0+0+0+2401+0+0+0+91.2+0+142,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ocsj3p-container\",nodeId:\"quGjKpBL0\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Brands,{GISUwquSq:addImageAlt({src:\"https://framerusercontent.com/images/q7p2NnDsSbt0Ci43xbVrShIcGkE.png\",srcSet:\"https://framerusercontent.com/images/q7p2NnDsSbt0Ci43xbVrShIcGkE.png?scale-down-to=512 512w,https://framerusercontent.com/images/q7p2NnDsSbt0Ci43xbVrShIcGkE.png 1000w\"},\"\"),height:\"100%\",id:\"quGjKpBL0\",layoutId:\"quGjKpBL0\",style:{width:\"100%\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:132,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 40px) / 5, 200px)`,y:(componentViewport?.y||0)+0+0+0+2401+0+0+0+91.2+0+142,children:/*#__PURE__*/_jsx(Container,{className:\"framer-i1yu68-container hidden-7hwwvd\",nodeId:\"usDwTvaOy\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Brands,{GISUwquSq:addImageAlt({src:\"https://framerusercontent.com/images/6MTSAEck0sxWjt9bypGLt8iKMk.jpg\",srcSet:\"https://framerusercontent.com/images/6MTSAEck0sxWjt9bypGLt8iKMk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6MTSAEck0sxWjt9bypGLt8iKMk.jpg 800w\"},\"\"),height:\"100%\",id:\"usDwTvaOy\",layoutId:\"usDwTvaOy\",style:{width:\"100%\"},width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jsr5t3\",\"data-framer-name\":\"Brands\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j1ip1j\",\"data-framer-name\":\"Container\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-eh050o hidden-otwvw4\",\"data-framer-name\":\"Heading Wrapper\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hts28y\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 20px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+2768.2+0+0+0+0+0+0},n9gLl4Eao:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:132,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 40px) / 5, 200px)`,y:(componentViewport?.y||0)+0+0+0+2766.2+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r5u53u-container\",nodeId:\"AmJsJNzA_\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Brands,{GISUwquSq:addImageAlt({src:\"https://framerusercontent.com/images/TbuEZGqF7DUmfukd1pUn5Tl9JY0.svg\",srcSet:\"https://framerusercontent.com/images/TbuEZGqF7DUmfukd1pUn5Tl9JY0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/TbuEZGqF7DUmfukd1pUn5Tl9JY0.svg 750w\"},\"\"),height:\"100%\",id:\"AmJsJNzA_\",layoutId:\"AmJsJNzA_\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 20px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+2768.2+0+0+0+0+0+0},n9gLl4Eao:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:132,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 40px) / 5, 200px)`,y:(componentViewport?.y||0)+0+0+0+2766.2+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ffx9xc-container\",nodeId:\"rQEoqJDDO\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Brands,{GISUwquSq:addImageAlt({src:\"https://framerusercontent.com/images/bTXdsIeuVAMaqKW5MKCI2WZXc.png\",srcSet:\"https://framerusercontent.com/images/bTXdsIeuVAMaqKW5MKCI2WZXc.png?scale-down-to=512 512w,https://framerusercontent.com/images/bTXdsIeuVAMaqKW5MKCI2WZXc.png 800w\"},\"\"),height:\"100%\",id:\"rQEoqJDDO\",layoutId:\"rQEoqJDDO\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 20px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+2768.2+0+0+0+0+0+0},n9gLl4Eao:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:132,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 40px) / 5, 200px)`,y:(componentViewport?.y||0)+0+0+0+2766.2+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nqnl9i-container\",nodeId:\"S_lHefDUX\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Brands,{GISUwquSq:addImageAlt({src:\"https://framerusercontent.com/images/3P4HiGWp1Vpobw7UYCul7GZhnk.png\",srcSet:\"https://framerusercontent.com/images/3P4HiGWp1Vpobw7UYCul7GZhnk.png?scale-down-to=512 512w,https://framerusercontent.com/images/3P4HiGWp1Vpobw7UYCul7GZhnk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3P4HiGWp1Vpobw7UYCul7GZhnk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3P4HiGWp1Vpobw7UYCul7GZhnk.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/3P4HiGWp1Vpobw7UYCul7GZhnk.png 7000w\"},\"\"),height:\"100%\",id:\"S_lHefDUX\",layoutId:\"S_lHefDUX\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 20px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+2768.2+0+0+0+0+0+142},n9gLl4Eao:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:132,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 40px) / 5, 200px)`,y:(componentViewport?.y||0)+0+0+0+2766.2+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-faifca-container\",nodeId:\"V0JtuH4w0\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Brands,{GISUwquSq:addImageAlt({src:\"https://framerusercontent.com/images/WqL6qxIruKMhVlOY42RFKZ9o9I.svg\",srcSet:\"https://framerusercontent.com/images/WqL6qxIruKMhVlOY42RFKZ9o9I.svg?scale-down-to=512 512w,https://framerusercontent.com/images/WqL6qxIruKMhVlOY42RFKZ9o9I.svg 750w\"},\"\"),height:\"100%\",id:\"V0JtuH4w0\",layoutId:\"V0JtuH4w0\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 20px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+2768.2+0+0+0+0+0+142},n9gLl4Eao:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:132,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 40px) / 5, 200px)`,y:(componentViewport?.y||0)+0+0+0+2766.2+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10oddoa-container\",nodeId:\"aslm8mgaA\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Brands,{GISUwquSq:addImageAlt({src:\"https://framerusercontent.com/images/8dwwbNeRCjYUQGoFjukOnwjTGo.svg\",srcSet:\"https://framerusercontent.com/images/8dwwbNeRCjYUQGoFjukOnwjTGo.svg?scale-down-to=512 512w,https://framerusercontent.com/images/8dwwbNeRCjYUQGoFjukOnwjTGo.svg 750w\"},\"\"),height:\"100%\",id:\"aslm8mgaA\",layoutId:\"aslm8mgaA\",style:{width:\"100%\"},width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f4bu8i\",\"data-framer-name\":\"Works\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qkq5t4\",\"data-framer-name\":\"Sticky\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-y5ibpq\",\"data-framer-name\":\"Heading Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{y:(componentViewport?.y||0)+0+0+0+3042.2+0+0+60+169.5+0},n9gLl4Eao:{width:`calc(${componentViewport?.width||\"100vw\"} - 24px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+0+0+2908.2+0+0+60+169.5+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ux66s3-container\",nodeId:\"qWcPeyc7L\",rendersWithMotion:true,scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{__framer__variantAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(TitleBlurWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref5,target:\"NkqmTOsCr\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"qWcPeyc7L\",layoutId:\"qWcPeyc7L\",style:{height:\"100%\",width:\"100%\"},variant:\"NmFK9CmKU\",VRu1QI171:\"Portfolio\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zxrcql\",\"data-framer-name\":\"Projects\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:100,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:362,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-12scirv\",\"data-framer-name\":\"1\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ad3h0b\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"qf0vDwWRO\",data:Albums,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"qf0vDwWRO\",name:\"F5JM_atFV\",type:\"Identifier\"},{collection:\"qf0vDwWRO\",name:\"vKXD8iKpJ\",type:\"Identifier\"},{collection:\"qf0vDwWRO\",name:\"abCVizEmi\",type:\"Identifier\"},{collection:\"qf0vDwWRO\",name:\"H8wcwixxo\",type:\"Identifier\"},{collection:\"qf0vDwWRO\",name:\"FgTryvasc\",type:\"Identifier\"},{collection:\"qf0vDwWRO\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({abCVizEmi:abCVizEmiqf0vDwWRO,F5JM_atFV:F5JM_atFVqf0vDwWRO,FgTryvasc:FgTryvascqf0vDwWRO,H8wcwixxo:H8wcwixxoqf0vDwWRO,id:idqf0vDwWRO,vKXD8iKpJ:vKXD8iKpJqf0vDwWRO},index)=>{F5JM_atFVqf0vDwWRO??=\"\";abCVizEmiqf0vDwWRO??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`qf0vDwWRO-${idqf0vDwWRO}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{abCVizEmi:abCVizEmiqf0vDwWRO},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{abCVizEmi:abCVizEmiqf0vDwWRO},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined},{href:{pathVariables:{abCVizEmi:abCVizEmiqf0vDwWRO},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined},{href:{pathVariables:{abCVizEmi:abCVizEmiqf0vDwWRO},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px, 1px)`,y:(componentViewport?.y||0)+0+0+0+3042.2+0+595+0+0+0+0+0},n9gLl4Eao:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1400px) - 24px, 1px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:\"632px\",y:(componentViewport?.y||0)+0+0+0+2908.2+0+595+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mnh56l-container\",\"data-framer-cursor\":\"1iz7wcx\",nodeId:\"ez_j1kmAi\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{ZSDiebDov:resolvedLinks1[1]},n9gLl4Eao:{ZSDiebDov:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(Project,{height:\"100%\",id:\"ez_j1kmAi\",jmbHURFsg:enumToDisplayNameFunctions[\"FgTryvasc\"]?.(FgTryvascqf0vDwWRO,activeLocale),layoutId:\"ez_j1kmAi\",qqNc2XiOL:F5JM_atFVqf0vDwWRO,style:{width:\"100%\"},Te9bphHet:toResponsiveImage(vKXD8iKpJqf0vDwWRO),width:\"100%\",xpmiv5OmA:enumToDisplayNameFunctions[\"H8wcwixxo\"]?.(H8wcwixxoqf0vDwWRO,activeLocale),ZSDiebDov:resolvedLinks1[0]})})})})})})})},idqf0vDwWRO);})})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:100,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:362,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ft87t\",\"data-framer-name\":\"2\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-12f6oi3\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"HKTrf_n50\",data:Albums,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"HKTrf_n50\",name:\"F5JM_atFV\",type:\"Identifier\"},{collection:\"HKTrf_n50\",name:\"vKXD8iKpJ\",type:\"Identifier\"},{collection:\"HKTrf_n50\",name:\"abCVizEmi\",type:\"Identifier\"},{collection:\"HKTrf_n50\",name:\"H8wcwixxo\",type:\"Identifier\"},{collection:\"HKTrf_n50\",name:\"FgTryvasc\",type:\"Identifier\"},{collection:\"HKTrf_n50\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({abCVizEmi:abCVizEmiHKTrf_n50,F5JM_atFV:F5JM_atFVHKTrf_n50,FgTryvasc:FgTryvascHKTrf_n50,H8wcwixxo:H8wcwixxoHKTrf_n50,id:idHKTrf_n50,vKXD8iKpJ:vKXD8iKpJHKTrf_n50},index1)=>{F5JM_atFVHKTrf_n50??=\"\";abCVizEmiHKTrf_n50??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`HKTrf_n50-${idHKTrf_n50}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{abCVizEmi:abCVizEmiHKTrf_n50},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{abCVizEmi:abCVizEmiHKTrf_n50},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined},{href:{pathVariables:{abCVizEmi:abCVizEmiHKTrf_n50},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined},{href:{pathVariables:{abCVizEmi:abCVizEmiHKTrf_n50},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px, 1px)`,y:(componentViewport?.y||0)+0+0+0+3042.2+0+595+0+506+0+0+0},n9gLl4Eao:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1400px) - 24px, 1px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:\"718px\",y:(componentViewport?.y||0)+0+0+0+2908.2+0+595+0+620+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sk7j5f-container\",\"data-framer-cursor\":\"1iz7wcx\",nodeId:\"SdmOZZrq8\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{ZSDiebDov:resolvedLinks2[1]},n9gLl4Eao:{ZSDiebDov:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(Project,{height:\"100%\",id:\"SdmOZZrq8\",jmbHURFsg:enumToDisplayNameFunctions[\"FgTryvasc\"]?.(FgTryvascHKTrf_n50,activeLocale),layoutId:\"SdmOZZrq8\",qqNc2XiOL:F5JM_atFVHKTrf_n50,style:{width:\"100%\"},Te9bphHet:toResponsiveImage(vKXD8iKpJHKTrf_n50),width:\"100%\",xpmiv5OmA:enumToDisplayNameFunctions[\"H8wcwixxo\"]?.(H8wcwixxoHKTrf_n50,activeLocale),ZSDiebDov:resolvedLinks2[0]})})})})})})})},idHKTrf_n50);})})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:100,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:362,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-71u7wp\",\"data-framer-name\":\"3 & 4\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10a6hf5\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"TpATeIQGL\",data:Albums,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"TpATeIQGL\",name:\"F5JM_atFV\",type:\"Identifier\"},{collection:\"TpATeIQGL\",name:\"vKXD8iKpJ\",type:\"Identifier\"},{collection:\"TpATeIQGL\",name:\"abCVizEmi\",type:\"Identifier\"},{collection:\"TpATeIQGL\",name:\"H8wcwixxo\",type:\"Identifier\"},{collection:\"TpATeIQGL\",name:\"FgTryvasc\",type:\"Identifier\"},{collection:\"TpATeIQGL\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({abCVizEmi:abCVizEmiTpATeIQGL,F5JM_atFV:F5JM_atFVTpATeIQGL,FgTryvasc:FgTryvascTpATeIQGL,H8wcwixxo:H8wcwixxoTpATeIQGL,id:idTpATeIQGL,vKXD8iKpJ:vKXD8iKpJTpATeIQGL},index2)=>{F5JM_atFVTpATeIQGL??=\"\";abCVizEmiTpATeIQGL??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`TpATeIQGL-${idTpATeIQGL}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{abCVizEmi:abCVizEmiTpATeIQGL},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{abCVizEmi:abCVizEmiTpATeIQGL},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined},{href:{pathVariables:{abCVizEmi:abCVizEmiTpATeIQGL},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined},{href:{pathVariables:{abCVizEmi:abCVizEmiTpATeIQGL},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1400px) - 140px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+3042.2+0+595+0+1012+0+0+0},n9gLl4Eao:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 24px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:\"451px\",y:(componentViewport?.y||0)+0+0+0+2908.2+0+595+0+1240+135+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hvx1o4-container\",\"data-framer-cursor\":\"1iz7wcx\",nodeId:\"LKgybQCYd\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{ZSDiebDov:resolvedLinks3[1]},n9gLl4Eao:{ZSDiebDov:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(Project,{height:\"100%\",id:\"LKgybQCYd\",jmbHURFsg:enumToDisplayNameFunctions[\"FgTryvasc\"]?.(FgTryvascTpATeIQGL,activeLocale),layoutId:\"LKgybQCYd\",qqNc2XiOL:F5JM_atFVTpATeIQGL,style:{height:\"100%\",width:\"100%\"},Te9bphHet:toResponsiveImage(vKXD8iKpJTpATeIQGL),width:\"100%\",xpmiv5OmA:enumToDisplayNameFunctions[\"H8wcwixxo\"]?.(H8wcwixxoTpATeIQGL,activeLocale),ZSDiebDov:resolvedLinks3[0]})})})})})})})},idTpATeIQGL);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e64s1a\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"lfbPOqUhQ\",data:Albums,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"lfbPOqUhQ\",name:\"F5JM_atFV\",type:\"Identifier\"},{collection:\"lfbPOqUhQ\",name:\"vKXD8iKpJ\",type:\"Identifier\"},{collection:\"lfbPOqUhQ\",name:\"abCVizEmi\",type:\"Identifier\"},{collection:\"lfbPOqUhQ\",name:\"H8wcwixxo\",type:\"Identifier\"},{collection:\"lfbPOqUhQ\",name:\"FgTryvasc\",type:\"Identifier\"},{collection:\"lfbPOqUhQ\",name:\"id\",type:\"Identifier\"}]},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({abCVizEmi:abCVizEmilfbPOqUhQ,F5JM_atFV:F5JM_atFVlfbPOqUhQ,FgTryvasc:FgTryvasclfbPOqUhQ,H8wcwixxo:H8wcwixxolfbPOqUhQ,id:idlfbPOqUhQ,vKXD8iKpJ:vKXD8iKpJlfbPOqUhQ},index3)=>{F5JM_atFVlfbPOqUhQ??=\"\";abCVizEmilfbPOqUhQ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`lfbPOqUhQ-${idlfbPOqUhQ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{abCVizEmi:abCVizEmilfbPOqUhQ},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{abCVizEmi:abCVizEmilfbPOqUhQ},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined},{href:{pathVariables:{abCVizEmi:abCVizEmilfbPOqUhQ},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined},{href:{pathVariables:{abCVizEmi:abCVizEmilfbPOqUhQ},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{height:446,width:`max((min(${componentViewport?.width||\"100vw\"}, 1400px) - 140px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+3042.2+0+595+0+1012+0+0+0},n9gLl4Eao:{height:446,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 24px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:716,width:\"505px\",y:(componentViewport?.y||0)+0+0+0+2908.2+0+595+0+1240+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-v7i738-container\",\"data-framer-cursor\":\"1iz7wcx\",nodeId:\"kwaS8sgbF\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{style:{width:\"100%\"},ZSDiebDov:resolvedLinks4[1]},n9gLl4Eao:{style:{width:\"100%\"},ZSDiebDov:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(Project,{height:\"100%\",id:\"kwaS8sgbF\",jmbHURFsg:enumToDisplayNameFunctions[\"FgTryvasc\"]?.(FgTryvasclfbPOqUhQ,activeLocale),layoutId:\"kwaS8sgbF\",qqNc2XiOL:F5JM_atFVlfbPOqUhQ,style:{height:\"100%\",width:\"100%\"},Te9bphHet:toResponsiveImage(vKXD8iKpJlfbPOqUhQ),width:\"100%\",xpmiv5OmA:enumToDisplayNameFunctions[\"H8wcwixxo\"]?.(H8wcwixxolfbPOqUhQ,activeLocale),ZSDiebDov:resolvedLinks4[0]})})})})})})})},idlfbPOqUhQ);})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:100,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:362,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-110iyun\",\"data-framer-name\":\"5\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-k4w59w\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"cAk1JNQqN\",data:Albums,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"cAk1JNQqN\",name:\"F5JM_atFV\",type:\"Identifier\"},{collection:\"cAk1JNQqN\",name:\"vKXD8iKpJ\",type:\"Identifier\"},{collection:\"cAk1JNQqN\",name:\"abCVizEmi\",type:\"Identifier\"},{collection:\"cAk1JNQqN\",name:\"H8wcwixxo\",type:\"Identifier\"},{collection:\"cAk1JNQqN\",name:\"FgTryvasc\",type:\"Identifier\"},{collection:\"cAk1JNQqN\",name:\"id\",type:\"Identifier\"}]},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({abCVizEmi:abCVizEmicAk1JNQqN,F5JM_atFV:F5JM_atFVcAk1JNQqN,FgTryvasc:FgTryvasccAk1JNQqN,H8wcwixxo:H8wcwixxocAk1JNQqN,id:idcAk1JNQqN,vKXD8iKpJ:vKXD8iKpJcAk1JNQqN},index4)=>{F5JM_atFVcAk1JNQqN??=\"\";abCVizEmicAk1JNQqN??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`cAk1JNQqN-${idcAk1JNQqN}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{abCVizEmi:abCVizEmicAk1JNQqN},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{abCVizEmi:abCVizEmicAk1JNQqN},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined},{href:{pathVariables:{abCVizEmi:abCVizEmicAk1JNQqN},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined},{href:{pathVariables:{abCVizEmi:abCVizEmicAk1JNQqN},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px, 1px)`,y:(componentViewport?.y||0)+0+0+0+3042.2+0+595+0+1518+0+0+0},n9gLl4Eao:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1400px) - 24px, 1px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:\"653px\",y:(componentViewport?.y||0)+0+0+0+2908.2+0+595+0+2130+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-a5jydc-container\",\"data-framer-cursor\":\"1iz7wcx\",nodeId:\"Pih6Yu4NX\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{ZSDiebDov:resolvedLinks5[1]},n9gLl4Eao:{ZSDiebDov:resolvedLinks5[2]}},children:/*#__PURE__*/_jsx(Project,{height:\"100%\",id:\"Pih6Yu4NX\",jmbHURFsg:enumToDisplayNameFunctions[\"FgTryvasc\"]?.(FgTryvasccAk1JNQqN,activeLocale),layoutId:\"Pih6Yu4NX\",qqNc2XiOL:F5JM_atFVcAk1JNQqN,style:{width:\"100%\"},Te9bphHet:toResponsiveImage(vKXD8iKpJcAk1JNQqN),width:\"100%\",xpmiv5OmA:enumToDisplayNameFunctions[\"H8wcwixxo\"]?.(H8wcwixxocAk1JNQqN,activeLocale),ZSDiebDov:resolvedLinks5[0]})})})})})})})},idcAk1JNQqN);})})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18qu5d8\",\"data-framer-name\":\"Services\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__targetOpacity:1,className:\"framer-zinaw9\",\"data-framer-name\":\"Sticky\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dm0yd8\",\"data-framer-name\":\"Heading Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"90px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"80%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(207, 72, 62))\"},children:\"My Expertise\"})})},n9gLl4Eao:{__framer__styleTransformEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(207, 72, 62))\"},children:\"My Expertise\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:362,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,x:0,y:9}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"120px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"80%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(207, 72, 62))\"},children:\"My Expertise\"})}),className:\"framer-93gfla\",fonts:[\"FS;Clash Display-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{y:(componentViewport?.y||0)+0+0+0+5801.2+0+0+60+270},n9gLl4Eao:{width:`calc(${componentViewport?.width||\"100vw\"} - 24px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,width:\"600px\",y:(componentViewport?.y||0)+0+0+0+6279.2+0+0+60+270,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jdtxx6-container\",\"data-framer-name\":\"3D Service Cube\",isModuleExternal:true,name:\"3D Service Cube\",nodeId:\"fOZ5FG35e\",rendersWithMotion:true,scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{__framer__variantAppearEffectEnabled:undefined,style:{width:\"100%\"},variant:\"wEJta6JvS\"}},children:/*#__PURE__*/_jsx(CubeWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref8,target:\"R3Num8N2s\"},{ref:ref9,target:\"dcIvEmhte\"},{ref:ref10,target:\"d9Mz7HRez\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,esNvdxnIX:\"Develop Narratives That Inspire and Engage\\n\\nLeveraging extensive experience with platforms like Netflix, Hulu, and Amazon Prime, our team excels at crafting compelling stories for film, television, and social media that truly resonate with audiences\",H4od7_OPJ:\"Whether you\u2019re a small business owner or a large corporation, modernize your workflows with state-of-the-art technology and robust AI tools. We replace outdated systems with efficient, AI-powered solutions designed to save time, cut costs, and boost overall productivity.\",height:\"100%\",id:\"fOZ5FG35e\",layoutId:\"fOZ5FG35e\",mi8Q91LDu:\"Achieve the Life You\u2019ve Always Wanted. With personalized, one-on-one sessions or group coaching overcoming obstacles, pursuing your dreams, or finding balance, our Life Coaching program is here to guide you.\",name:\"3D Service Cube\",o6SxmVCs0:\"Life Coaching\",qJMwPZX6P:\"Creative\",style:{height:\"100%\",width:\"100%\"},TbLj3ZRRK:\"Scale, Refine, and Flourish.\\nExplore emerging markets while perfecting your current strategies. Our business development solutions empower you to uncover new opportunities, fine-tune your approach, and secure long-term growth.\",variant:\"nGpTYCMAu\",width:\"100%\",XVuU6xaiK:\"Digital Transformation\",ZFGTFb17v:\"Business\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4dam91\",\"data-framer-name\":\"Triggers & More Service Details\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lu5z47 hidden-otwvw4\",\"data-framer-name\":\"2\",id:elementId7,ref:ref8}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g0ko5c hidden-otwvw4\",\"data-framer-name\":\"3\",id:elementId8,ref:ref9}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-10w6u2x hidden-otwvw4\",\"data-framer-name\":\"4\",id:elementId9,ref:ref10}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-17f8goy hidden-otwvw4\",\"data-framer-name\":\"Spacer\"})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fdxnbj\",\"data-framer-name\":\"Reviews - Ticker\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__targetOpacity:1,className:\"framer-1r2ukgm\",\"data-border\":true,\"data-framer-name\":\"Container\",id:elementId10,ref:ref11,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u8l3f2\",\"data-framer-name\":\"Heading Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zxf4xn\",\"data-styles-preset\":\"pOjALZ8om\",style:{\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\"},children:\"Smiles and Stories from\"})}),className:\"framer-7vjkry\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qo0s7g\",\"data-styles-preset\":\"HvbIeng7X\",style:{\"--framer-text-color\":\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(207, 72, 62))\"},children:\"My Clients\"})}),className:\"framer-lfflpl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v9zizh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fy2AdwMgF\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{direction:\"top\"}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"fy2AdwMgF\",layoutId:\"fy2AdwMgF\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:482,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-7lwgb7-container\",inComponentSlot:true,nodeId:\"ihW7_YZnr\",rendersWithMotion:true,scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Review,{atR2ECpOP:true,d_XhtEUH_:\"Justin Hart\",height:\"100%\",id:\"ihW7_YZnr\",J1x6HO72P:addImageAlt({src:\"https://framerusercontent.com/images/FzuUpo7KX0oOQHAcSWf35KDovb4.png\",srcSet:\"https://framerusercontent.com/images/FzuUpo7KX0oOQHAcSWf35KDovb4.png?scale-down-to=512 512w,https://framerusercontent.com/images/FzuUpo7KX0oOQHAcSWf35KDovb4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FzuUpo7KX0oOQHAcSWf35KDovb4.png 1290w\"},\"Avatar\"),layoutId:\"ihW7_YZnr\",style:{width:\"100%\"},variant:\"HDD8R9QNR\",width:\"100%\",XFQNr1s8l:\"Fox Soul, Executive producer\",z4DkhAR8f:'\"We are thrilled with the product photography provided by James. They captured our products beautifully, highlighting their unique features and enhancing their appeal. '})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:482,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-pdmmlx-container\",inComponentSlot:true,nodeId:\"cemvlm8sZ\",rendersWithMotion:true,scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Review,{atR2ECpOP:true,d_XhtEUH_:\"Zakiyyah Wilbert\",height:\"100%\",id:\"cemvlm8sZ\",J1x6HO72P:addImageAlt({src:\"https://framerusercontent.com/images/KkJnAKMbik5zUwbV11Napg3hTA.png\",srcSet:\"https://framerusercontent.com/images/KkJnAKMbik5zUwbV11Napg3hTA.png?scale-down-to=1024 868w,https://framerusercontent.com/images/KkJnAKMbik5zUwbV11Napg3hTA.png 1290w\"},\"Avatar\"),layoutId:\"cemvlm8sZ\",style:{width:\"100%\"},variant:\"HDD8R9QNR\",width:\"100%\",XFQNr1s8l:\"Publicist STARZ Entertainment\",z4DkhAR8f:\"Vic Brew's expertise in sales and marketing transformed our business His strategic insights helped us increase our sales by 125% in just three months, and his hands-on approach made all the difference!\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:482,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-8bzihh-container\",inComponentSlot:true,nodeId:\"NhzrYfU1I\",rendersWithMotion:true,scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Review,{atR2ECpOP:true,d_XhtEUH_:\"Obi Nawanko\",height:\"100%\",id:\"NhzrYfU1I\",J1x6HO72P:addImageAlt({src:\"https://framerusercontent.com/images/rLJ52gCTzhuPTXJ3NLzlwJSqUM.png\",srcSet:\"https://framerusercontent.com/images/rLJ52gCTzhuPTXJ3NLzlwJSqUM.png?scale-down-to=1024 930w,https://framerusercontent.com/images/rLJ52gCTzhuPTXJ3NLzlwJSqUM.png 1290w\"},\"\"),layoutId:\"NhzrYfU1I\",style:{width:\"100%\"},variant:\"HDD8R9QNR\",width:\"100%\",XFQNr1s8l:\"CEO Knotwatr\",z4DkhAR8f:\"Vic has amazing talent. His creative prowess made my task easy to execute. His willingness to work with my ideas while injecting his knowledge helped our team walk away with top tier results. I will definitely be recommending him to other companies and individual creators.\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:482,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-t7uqgf-container\",inComponentSlot:true,nodeId:\"p15olwroW\",rendersWithMotion:true,scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Review,{atR2ECpOP:true,d_XhtEUH_:\"Dr. Louis Deon Jones\",height:\"100%\",id:\"p15olwroW\",J1x6HO72P:addImageAlt({src:\"https://framerusercontent.com/images/g4x7OxTJaPtNdQMbazYutyr5A4.jpg\",srcSet:\"https://framerusercontent.com/images/g4x7OxTJaPtNdQMbazYutyr5A4.jpg 452w\"},\"\"),layoutId:\"p15olwroW\",style:{width:\"100%\"},variant:\"HDD8R9QNR\",width:\"100%\",XFQNr1s8l:\"Filmaker\",z4DkhAR8f:\"Vic Brew\u2019s commitment to storytelling is astounding! His creativity, technical knowhow, and drive to get things done. Helped bring our film to life efficiently.\"})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LsqtmWVgG\"},implicitPathVariables:undefined},{href:{webPageId:\"LsqtmWVgG\"},implicitPathVariables:undefined},{href:{webPageId:\"LsqtmWVgG\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{y:(componentViewport?.y||0)+0+0+0+9033.2+100+0+58+699.2},n9gLl4Eao:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+0+0+0+9511.2+150+0+58+699.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13tufe5-container\",nodeId:\"w139a7L_p\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{FonsFUcAa:resolvedLinks6[1]},n9gLl4Eao:{FonsFUcAa:resolvedLinks6[2]}},children:/*#__PURE__*/_jsx(Button,{FonsFUcAa:resolvedLinks6[0],height:\"100%\",id:\"w139a7L_p\",layoutId:\"w139a7L_p\",NxxZ8Xy2U:\"View all reviews\",variant:\"yzZvJVJCb\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1n52ukv\",\"data-framer-name\":\"Blogs\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c6f8m4\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8nd0kv\",\"data-framer-name\":\"Heading Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zxf4xn\",\"data-styles-preset\":\"pOjALZ8om\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\"},children:\"Stay inspired with my\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zxf4xn\",\"data-styles-preset\":\"pOjALZ8om\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\"},children:\"Stay inspired with my\"})}),className:\"framer-65ii9p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qo0s7g\",\"data-styles-preset\":\"HvbIeng7X\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(240, 92, 58))\"},children:\" Insightful Blogs\"})}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qo0s7g\",\"data-styles-preset\":\"HvbIeng7X\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(240, 92, 58))\"},children:\" Insightful Blogs\"})}),className:\"framer-b5jxj7\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gwemd1\",\"data-framer-name\":\"Blogs Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-9u44pm\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{query:{from:{alias:\"ZG7zdjsHc\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"ZG7zdjsHc\",name:\"AysrUKz64\",type:\"Identifier\"},{collection:\"ZG7zdjsHc\",name:\"eu1SUO8Ae\",type:\"Identifier\"},{collection:\"ZG7zdjsHc\",name:\"MnZrUXvuI\",type:\"Identifier\"},{collection:\"ZG7zdjsHc\",name:\"S9w7PJblN\",type:\"Identifier\"},{collection:\"ZG7zdjsHc\",name:\"mmsKK_xBb\",type:\"Identifier\"},{collection:\"ZG7zdjsHc\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"ZG7zdjsHc\",name:\"vJMe6fpJL\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:true},type:\"BinaryOperation\"}}},n9gLl4Eao:{query:{from:{alias:\"ZG7zdjsHc\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"ZG7zdjsHc\",name:\"AysrUKz64\",type:\"Identifier\"},{collection:\"ZG7zdjsHc\",name:\"eu1SUO8Ae\",type:\"Identifier\"},{collection:\"ZG7zdjsHc\",name:\"MnZrUXvuI\",type:\"Identifier\"},{collection:\"ZG7zdjsHc\",name:\"S9w7PJblN\",type:\"Identifier\"},{collection:\"ZG7zdjsHc\",name:\"mmsKK_xBb\",type:\"Identifier\"},{collection:\"ZG7zdjsHc\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"ZG7zdjsHc\",name:\"vJMe6fpJL\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:true},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ZG7zdjsHc\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"ZG7zdjsHc\",name:\"AysrUKz64\",type:\"Identifier\"},{collection:\"ZG7zdjsHc\",name:\"eu1SUO8Ae\",type:\"Identifier\"},{collection:\"ZG7zdjsHc\",name:\"MnZrUXvuI\",type:\"Identifier\"},{collection:\"ZG7zdjsHc\",name:\"S9w7PJblN\",type:\"Identifier\"},{collection:\"ZG7zdjsHc\",name:\"mmsKK_xBb\",type:\"Identifier\"},{collection:\"ZG7zdjsHc\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"ZG7zdjsHc\",name:\"vJMe6fpJL\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:true},type:\"BinaryOperation\"}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({AysrUKz64:AysrUKz64ZG7zdjsHc,eu1SUO8Ae:eu1SUO8AeZG7zdjsHc,id:idZG7zdjsHc,mmsKK_xBb:mmsKK_xBbZG7zdjsHc,MnZrUXvuI:MnZrUXvuIZG7zdjsHc,S9w7PJblN:S9w7PJblNZG7zdjsHc},index5)=>{eu1SUO8AeZG7zdjsHc??=\"\";MnZrUXvuIZG7zdjsHc??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ZG7zdjsHc-${idZG7zdjsHc}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{MnZrUXvuI:MnZrUXvuIZG7zdjsHc},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{MnZrUXvuI:MnZrUXvuIZG7zdjsHc},webPageId:\"K4rlRvU29\"},implicitPathVariables:undefined},{href:{pathVariables:{MnZrUXvuI:MnZrUXvuIZG7zdjsHc},webPageId:\"K4rlRvU29\"},implicitPathVariables:undefined},{href:{pathVariables:{MnZrUXvuI:MnZrUXvuIZG7zdjsHc},webPageId:\"K4rlRvU29\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:\"555px\",y:(componentViewport?.y||0)+0+0+0+10108.400000000001+100+0+0+31.2+-419+0+0},n9gLl4Eao:{width:\"1120px\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,width:\"366.6667px\",y:(componentViewport?.y||0)+0+0+0+10686.400000000001+150+0+0+31.2+-419+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qzfam7-container\",\"data-framer-cursor\":\"1h5i94v\",nodeId:\"DURrqRBa6\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{Tt9vlOSSP:resolvedLinks7[1]},n9gLl4Eao:{Tt9vlOSSP:resolvedLinks7[2]}},children:/*#__PURE__*/_jsx(CardBlog,{C8jBa9TGn:enumToDisplayNameFunctions1[\"S9w7PJblN\"]?.(S9w7PJblNZG7zdjsHc,activeLocale),evWEV45ok:toResponsiveImage(AysrUKz64ZG7zdjsHc),height:\"100%\",id:\"DURrqRBa6\",layoutId:\"DURrqRBa6\",NDYhAuYs6:false,style:{width:\"100%\"},Tt9vlOSSP:resolvedLinks7[0],variant:\"wvjv46T2J\",vNsfoYWds:toDateString(mmsKK_xBbZG7zdjsHc,{dateStyle:\"long\",locale:\"\"},activeLocaleCode),width:\"100%\",Y39qV5j7J:eu1SUO8AeZG7zdjsHc})})})})})})})},idZG7zdjsHc);})})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gnQflJOpH\"},implicitPathVariables:undefined},{href:{webPageId:\"gnQflJOpH\"},implicitPathVariables:undefined},{href:{webPageId:\"gnQflJOpH\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{y:(componentViewport?.y||0)+0+0+0+10108.400000000001+100+0+31.2-239},n9gLl4Eao:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+0+0+0+10686.400000000001+150+0+31.2-239,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fmnbtg-container\",nodeId:\"x5mfvctG9\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{FonsFUcAa:resolvedLinks8[1]},n9gLl4Eao:{FonsFUcAa:resolvedLinks8[2]}},children:/*#__PURE__*/_jsx(Button,{FonsFUcAa:resolvedLinks8[0],height:\"100%\",id:\"x5mfvctG9\",layoutId:\"x5mfvctG9\",NxxZ8Xy2U:\"All Blogs\",variant:\"fKZmX1c_3\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19mx37g\",\"data-framer-name\":\"FAQ\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sm03kc\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kvfwy\",\"data-framer-name\":\"Heading Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qo0s7g\",\"data-styles-preset\":\"HvbIeng7X\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(207, 72, 62))\"},children:\"FAQ:\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qo0s7g\",\"data-styles-preset\":\"HvbIeng7X\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(207, 72, 62))\"},children:\"FAQ:\"})}),className:\"framer-1uu200q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zxf4xn\",\"data-styles-preset\":\"pOjALZ8om\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\"},children:\"All your answers here\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zxf4xn\",\"data-styles-preset\":\"pOjALZ8om\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\"},children:\"All your answers here\"})}),className:\"framer-l8p8ig\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f1vj45\",\"data-framer-name\":\"FAQ Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+10339.600000000002+100+0+0+0+0},n9gLl4Eao:{width:`min(${componentViewport?.width||\"100vw\"} - 24px, 1680px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:144,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 94px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+11017.600000000002+150+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-25ytl6-container\",nodeId:\"LwG7XV8pw\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(FaqSingle,{height:\"100%\",id:\"LwG7XV8pw\",layoutId:\"LwG7XV8pw\",style:{width:\"100%\"},UkcAZJv33:\"You can book a session by filling out the contact form on my website or by emailing me directly at contact@vicbrewski.com. I'll get back to you within 24 hours to discuss the details.\",variant:\"xSgNKquG_\",width:\"100%\",zNMII1rLe:\"How do I book session with you?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+10339.600000000002+100+0+0+0+144},n9gLl4Eao:{width:`min(${componentViewport?.width||\"100vw\"} - 24px, 1680px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:144,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 94px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+11017.600000000002+150+0+0+0+144,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v9tcig-container\",nodeId:\"wcLZQmxgb\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(FaqSingle,{height:\"100%\",id:\"wcLZQmxgb\",layoutId:\"wcLZQmxgb\",style:{width:\"100%\"},UkcAZJv33:\"+ 10 min consultations for free.\\n\\n+ 1 hour consultations start at $150.\\n\\n+ All other pricing is customized based on the project scope and can range from $200 SD - 10k USD per month/weekw.\",variant:\"HHYRnW75y\",width:\"100%\",zNMII1rLe:\"What are your rates for sessions?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+10339.600000000002+100+0+0+0+288},n9gLl4Eao:{width:`min(${componentViewport?.width||\"100vw\"} - 24px, 1680px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:144,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 94px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+11017.600000000002+150+0+0+0+288,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d95qdb-container\",nodeId:\"E2M_ZBNDc\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(FaqSingle,{height:\"100%\",id:\"E2M_ZBNDc\",layoutId:\"E2M_ZBNDc\",style:{width:\"100%\"},UkcAZJv33:\"Pre-scope consultation.\\n\\nProfessional services backed by a professional toolset.\\n\\nA team that has exclusive access.\\n\\nAs many cinsultation  needed to complete workload.\",variant:\"HHYRnW75y\",width:\"100%\",zNMII1rLe:\"What does your pricing include?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+10339.600000000002+100+0+0+0+432},n9gLl4Eao:{width:`min(${componentViewport?.width||\"100vw\"} - 24px, 1680px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:144,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 94px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+11017.600000000002+150+0+0+0+432,children:/*#__PURE__*/_jsx(Container,{className:\"framer-j9luo1-container\",nodeId:\"WOb22G5NN\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(FaqSingle,{height:\"100%\",id:\"WOb22G5NN\",layoutId:\"WOb22G5NN\",style:{width:\"100%\"},UkcAZJv33:\"Absolutely. We tailor our coaching sessions and film production projects to meet your unique goals, ensuring a personalized approach for every client.\",variant:\"HHYRnW75y\",width:\"100%\",zNMII1rLe:\"Are your services customized?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+10339.600000000002+100+0+0+0+576},n9gLl4Eao:{width:`min(${componentViewport?.width||\"100vw\"} - 24px, 1680px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:144,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 94px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+11017.600000000002+150+0+0+0+576,children:/*#__PURE__*/_jsx(Container,{className:\"framer-stci38-container\",nodeId:\"nzLlQAWza\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(FaqSingle,{height:\"100%\",id:\"nzLlQAWza\",layoutId:\"nzLlQAWza\",style:{width:\"100%\"},UkcAZJv33:\"Your privacy is our priority. We follow strict confidentiality protocols and secure data practices to protect your information at every step.\",variant:\"HHYRnW75y\",width:\"100%\",zNMII1rLe:\"How secure is my personal information?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+10339.600000000002+100+0+0+0+720},n9gLl4Eao:{width:`min(${componentViewport?.width||\"100vw\"} - 24px, 1680px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:144,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 94px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+11017.600000000002+150+0+0+0+720,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rmt1rh-container\",nodeId:\"UIk0O1Jhi\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(FaqSingle,{height:\"100%\",id:\"UIk0O1Jhi\",layoutId:\"UIk0O1Jhi\",style:{width:\"100%\"},UkcAZJv33:\"Sessions typically include goal setting, personalized guidance, accountability measures, and practical tools that help you navigate challenges. Many clients begin noticing improvements in focus, motivation, and overall well-being within just a few sessions.\",variant:\"HHYRnW75y\",width:\"100%\",zNMII1rLe:\"What can I expect during a life coaching session?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+10339.600000000002+100+0+0+0+864},n9gLl4Eao:{width:`min(${componentViewport?.width||\"100vw\"} - 24px, 1680px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:144,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 94px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+11017.600000000002+150+0+0+0+864,children:/*#__PURE__*/_jsx(Container,{className:\"framer-by2e7w-container\",nodeId:\"KRjA3azbw\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(FaqSingle,{height:\"100%\",id:\"KRjA3azbw\",layoutId:\"KRjA3azbw\",style:{width:\"100%\"},UkcAZJv33:\"Our life coaches are experienced professionals with certifications in coaching and personal development. They bring diverse backgrounds and a passion for empowering clients to achieve their best selves.\",variant:\"HHYRnW75y\",width:\"100%\",zNMII1rLe:\"Who are your life coaches?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+10339.600000000002+100+0+0+0+1008},n9gLl4Eao:{width:`min(${componentViewport?.width||\"100vw\"} - 24px, 1680px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:144,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 94px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+11017.600000000002+150+0+0+0+1008,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g6dne2-container\",nodeId:\"FkyVlLomj\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(FaqSingle,{height:\"100%\",id:\"FkyVlLomj\",layoutId:\"FkyVlLomj\",style:{width:\"100%\"},UkcAZJv33:\"We understand that life can be unpredictable. Our flexible scheduling and clear cancellation policies are designed to accommodate your needs. Please review our policy details on the website or contact our support team for assistance through the conact page on our site.\",variant:\"HHYRnW75y\",width:\"100%\",zNMII1rLe:\"What if I need to reschedule or cancel an appointment?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+10339.600000000002+100+0+0+0+1152},n9gLl4Eao:{width:`min(${componentViewport?.width||\"100vw\"} - 24px, 1680px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:144,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 94px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+11017.600000000002+150+0+0+0+1152,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14fc5sz-container\",nodeId:\"PkWCMP9Qo\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(FaqSingle,{height:\"100%\",id:\"PkWCMP9Qo\",layoutId:\"PkWCMP9Qo\",style:{width:\"100%\"},UkcAZJv33:\"Our film production services cover the full spectrum\u2014from pre-production planning and scriptwriting to filming, editing, and post-production. We help bring your vision to life, whether you\u2019re creating a personal brand video, a documentary, or a promotional piece.\",variant:\"HHYRnW75y\",width:\"100%\",zNMII1rLe:\"What film production services do you offer?\"})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{y:(componentViewport?.y||0)+0+0+0+11835.600000000002},n9gLl4Eao:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1102,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+12613.600000000002,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1axs9d7-container\",nodeId:\"WVzY_nvFY\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{variant:\"pB6WvHHYF\"},n9gLl4Eao:{variant:\"qT_RXWXGW\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"WVzY_nvFY\",layoutId:\"WVzY_nvFY\",r4vORIQnG:true,style:{width:\"100%\"},variant:\"RAJRLJqHQ\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bn53kh-container\",id:\"1bn53kh\",isAuthoredByUser:true,isModuleExternal:true,layoutScroll:true,nodeId:\"ZCezUq2zT\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"ZCezUq2zT\",intensity:12,layoutId:\"ZCezUq2zT\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-p64LT.framer-3hkk98, .framer-p64LT .framer-3hkk98 { display: block; }\",\".framer-p64LT.framer-zgsw7e { align-content: center; align-items: center; background-color: var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, #0a0a0a); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-p64LT .framer-1xjyvwg-container { flex: none; height: 80px; left: calc(50.00000000000002% - 100% / 2); mix-blend-mode: exclusion; position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-p64LT.framer-prjyfz { background-color: #000000; inset: 0px; position: fixed; user-select: none; z-index: 9; }\",\".framer-p64LT.framer-1cv0cjy-container { flex: none; height: 100vh; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 9; }\",\".framer-p64LT .framer-1sv2b1r, .framer-p64LT .framer-1f4bu8i, .framer-p64LT .framer-8nd0kv { 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; position: relative; width: 100%; }\",\".framer-p64LT .framer-1wiukws { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p64LT .framer-5xme10 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100vh; justify-content: space-between; left: calc(50.00000000000002% - 100% / 2); mix-blend-mode: exclusion; overflow: hidden; padding: 130px 40px 50px 40px; position: absolute; top: 0px; width: 100%; z-index: 2; }\",\".framer-p64LT .framer-1ckxtxg { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 400px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-p64LT .framer-10a2oru { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 400px; word-break: break-word; word-wrap: break-word; }\",\".framer-p64LT .framer-1qvnrfz-container, .framer-p64LT .framer-1mfjkz6-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-p64LT .framer-ujpgkq { align-content: flex-start; align-items: flex-start; bottom: -14px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: 512px; justify-content: center; left: calc(49.33333333333336% - 1136px / 2); overflow: hidden; padding: 0px; position: absolute; width: 1136px; z-index: 1; }\",\".framer-p64LT .framer-1r7pgrh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 319px; max-width: 1680px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-p64LT .framer-fcljzk { --border-bottom-width: 1px; --border-color: var(--token-6b19d04a-c8c7-46ac-8bc0-4380931dccd5, rgba(255, 255, 255, 0.5)); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-p64LT .framer-7p1hhc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-p64LT .framer-1e0wsos { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: 16px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-p64LT .framer-1831b5g-container { flex: none; height: 12px; position: relative; width: 12px; }\",\".framer-p64LT .framer-yzezt0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-p64LT .framer-moh0jn { flex: 1 0 0px; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-p64LT .framer-w7mlg6 { -webkit-filter: contrast(1.16) grayscale(1); align-content: center; align-items: center; display: flex; filter: contrast(1.16) grayscale(1); flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-p64LT .framer-i1ifx2-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-p64LT .framer-mzv19e { align-content: center; align-items: center; background-color: var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, #000000); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; overflow: visible; padding: 160px 40px 150px 40px; position: relative; transform-style: preserve-3d; width: 100%; z-index: 2; }\",\".framer-p64LT .framer-1kljtx3 { --border-bottom-width: 1px; --border-color: var(--token-67fbec5f-f86d-4a68-8709-0a9a96756c72, rgba(255, 255, 255, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1680px; overflow: hidden; padding: 10px; position: relative; width: 100%; }\",\".framer-p64LT .framer-1utxd7r, .framer-p64LT .framer-175an46, .framer-p64LT .framer-zxqogj, .framer-p64LT .framer-y5ibpq { 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-p64LT .framer-er9bag-container, .framer-p64LT .framer-15bqre5-container { flex: 1.5 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-p64LT .framer-iwezsd-container, .framer-p64LT .framer-19soruj-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-p64LT .framer-wh9kny { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; max-width: 1680px; overflow: visible; padding: 100px 0px 0px 0px; position: relative; transform-style: preserve-3d; width: 100%; z-index: 2; }\",\".framer-p64LT .framer-wsu4eg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-p64LT .framer-1ocd5a1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 43px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-p64LT .framer-65akvn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 700px; word-break: break-word; word-wrap: break-word; }\",\".framer-p64LT .framer-2ign6j, .framer-p64LT .framer-jsr5t3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-p64LT .framer-svp0sd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1680px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-p64LT .framer-1t2rprj, .framer-p64LT .framer-7vjkry, .framer-p64LT .framer-lfflpl, .framer-p64LT .framer-65ii9p, .framer-p64LT .framer-1uu200q, .framer-p64LT .framer-l8p8ig { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-p64LT .framer-146yrgn, .framer-p64LT .framer-1hts28y { display: grid; flex: none; gap: 10px; grid-auto-rows: min-content; grid-template-columns: repeat(5, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-p64LT .framer-buxv70-container, .framer-p64LT .framer-1t078zg-container, .framer-p64LT .framer-1x6cisb-container, .framer-p64LT .framer-s33d51-container, .framer-p64LT .framer-tf3jv4-container, .framer-p64LT .framer-ve4r2x-container, .framer-p64LT .framer-9i7sw-container, .framer-p64LT .framer-sj983z-container, .framer-p64LT .framer-1ocsj3p-container, .framer-p64LT .framer-i1yu68-container, .framer-p64LT .framer-1r5u53u-container, .framer-p64LT .framer-ffx9xc-container, .framer-p64LT .framer-1nqnl9i-container, .framer-p64LT .framer-faifca-container, .framer-p64LT .framer-10oddoa-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-p64LT .framer-1j1ip1j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1680px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-p64LT .framer-eh050o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 31px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p64LT .framer-1qkq5t4 { align-content: center; align-items: center; background-color: var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, #0a0a0a); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 59.5vh; justify-content: center; overflow: visible; padding: 60px 40px 100px 40px; position: sticky; top: 0px; width: 100%; z-index: 2; }\",\".framer-p64LT .framer-ux66s3-container { flex: none; height: 96px; position: relative; width: 100%; }\",\".framer-p64LT .framer-zxrcql { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 174px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 0px 0px 200px 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-p64LT .framer-12scirv { 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 110px 0px 110px; position: relative; width: 100%; z-index: 1; }\",\".framer-p64LT .framer-1ad3h0b, .framer-p64LT .framer-12f6oi3, .framer-p64LT .framer-10a6hf5, .framer-p64LT .framer-1e64s1a, .framer-p64LT .framer-k4w59w { 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; padding: 0px; position: relative; width: min-content; }\",\".framer-p64LT .framer-1mnh56l-container { flex: none; height: auto; position: relative; width: 632px; }\",\".framer-p64LT .framer-1ft87t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 100px 0px 110px; position: relative; width: 100%; z-index: 1; }\",\".framer-p64LT .framer-1sk7j5f-container { flex: none; height: auto; position: relative; width: 718px; }\",\".framer-p64LT .framer-71u7wp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-p64LT .framer-1hvx1o4-container { flex: none; height: 446px; position: relative; width: 451px; }\",\".framer-p64LT .framer-v7i738-container { flex: none; height: 716px; position: relative; width: 505px; }\",\".framer-p64LT .framer-110iyun { 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 100px 0px 110px; position: relative; width: 100%; z-index: 1; }\",\".framer-p64LT .framer-a5jydc-container { flex: none; height: auto; position: relative; width: 653px; }\",\".framer-p64LT .framer-18qu5d8 { 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: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p64LT .framer-zinaw9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 100vh; justify-content: center; overflow: hidden; padding: 60px 40px 100px 40px; position: sticky; top: 0px; width: 100%; z-index: 2; }\",\".framer-p64LT .framer-dm0yd8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; min-height: 96px; overflow: visible; padding: 0px; position: absolute; top: 167px; transform: translateX(-50%); width: 93%; z-index: 1; }\",\".framer-p64LT .framer-93gfla { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 96px; flex: none; height: auto; position: absolute; right: 0px; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: -1; }\",\".framer-p64LT .framer-jdtxx6-container { flex: none; height: 300px; position: relative; transform-style: preserve-3d; width: 600px; }\",\".framer-p64LT .framer-4dam91 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 74px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; pointer-events: none; position: relative; width: 100%; z-index: 3; }\",\".framer-p64LT .framer-1lu5z47, .framer-p64LT .framer-1g0ko5c, .framer-p64LT .framer-10w6u2x, .framer-p64LT .framer-17f8goy { flex: none; height: 50vh; overflow: hidden; pointer-events: none; position: relative; width: 100%; z-index: 1; }\",\".framer-p64LT .framer-1fdxnbj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 150px 40px 150px 40px; position: relative; width: 100%; }\",\".framer-p64LT .framer-1r2ukgm { --border-bottom-width: 1px; --border-color: var(--token-67fbec5f-f86d-4a68-8709-0a9a96756c72, rgba(255, 255, 255, 0.1)); --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-3ef2b024-43b5-4c0c-a7b2-ecacd057a93b, rgba(255, 255, 255, 0.02)); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 29px; height: min-content; justify-content: flex-start; max-width: 1680px; overflow: visible; padding: 58px 0px 68px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-p64LT .framer-1u8l3f2 { 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 40px 0px 40px; position: relative; width: 100%; }\",\".framer-p64LT .framer-1v9zizh-container { flex: none; height: 514px; position: relative; width: 100%; }\",\".framer-p64LT .framer-7lwgb7-container, .framer-p64LT .framer-pdmmlx-container, .framer-p64LT .framer-8bzihh-container, .framer-p64LT .framer-t7uqgf-container { height: auto; position: relative; width: 350px; }\",\".framer-p64LT .framer-13tufe5-container { cursor: pointer; flex: none; height: auto; position: relative; width: auto; z-index: 3; }\",\".framer-p64LT .framer-1n52ukv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: visible; padding: 150px 40px 150px 40px; position: relative; width: 100%; }\",\".framer-p64LT .framer-c6f8m4 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1680px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-p64LT .framer-b5jxj7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: -93px; flex: none; height: auto; left: 60%; position: absolute; transform: translateX(-50%); white-space: pre; width: auto; z-index: 1; }\",\".framer-p64LT .framer-1gwemd1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; min-height: 927px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p64LT .framer-9u44pm { display: grid; flex: none; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); height: min-content; justify-content: center; left: 50%; padding: 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 1120px; z-index: 1; }\",\".framer-p64LT .framer-1qzfam7-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-p64LT .framer-fmnbtg-container { bottom: 189px; flex: none; height: auto; position: absolute; right: 0px; width: auto; z-index: 1; }\",\".framer-p64LT .framer-19mx37g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 150px 40px 150px 40px; position: relative; width: 100%; }\",\".framer-p64LT .framer-1sm03kc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 94px; height: min-content; justify-content: flex-start; max-width: 1680px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p64LT .framer-1kvfwy { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 100px; width: 1px; z-index: 1; }\",\".framer-p64LT .framer-1f1vj45 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-p64LT .framer-25ytl6-container, .framer-p64LT .framer-1v9tcig-container, .framer-p64LT .framer-1d95qdb-container, .framer-p64LT .framer-j9luo1-container, .framer-p64LT .framer-stci38-container, .framer-p64LT .framer-1rmt1rh-container, .framer-p64LT .framer-by2e7w-container, .framer-p64LT .framer-1g6dne2-container, .framer-p64LT .framer-14fc5sz-container, .framer-p64LT .framer-1axs9d7-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-p64LT .framer-1bn53kh-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-p64LT.framer-zgsw7e, .framer-p64LT .framer-1sv2b1r, .framer-p64LT .framer-1wiukws, .framer-p64LT .framer-1ckxtxg, .framer-p64LT .framer-ujpgkq, .framer-p64LT .framer-1e0wsos, .framer-p64LT .framer-w7mlg6, .framer-p64LT .framer-mzv19e, .framer-p64LT .framer-1kljtx3, .framer-p64LT .framer-1utxd7r, .framer-p64LT .framer-175an46, .framer-p64LT .framer-wh9kny, .framer-p64LT .framer-1ocd5a1, .framer-p64LT .framer-2ign6j, .framer-p64LT .framer-svp0sd, .framer-p64LT .framer-zxqogj, .framer-p64LT .framer-jsr5t3, .framer-p64LT .framer-1j1ip1j, .framer-p64LT .framer-eh050o, .framer-p64LT .framer-1f4bu8i, .framer-p64LT .framer-1qkq5t4, .framer-p64LT .framer-y5ibpq, .framer-p64LT .framer-zxrcql, .framer-p64LT .framer-12scirv, .framer-p64LT .framer-1ad3h0b, .framer-p64LT .framer-1ft87t, .framer-p64LT .framer-12f6oi3, .framer-p64LT .framer-10a6hf5, .framer-p64LT .framer-1e64s1a, .framer-p64LT .framer-110iyun, .framer-p64LT .framer-k4w59w, .framer-p64LT .framer-18qu5d8, .framer-p64LT .framer-zinaw9, .framer-p64LT .framer-dm0yd8, .framer-p64LT .framer-4dam91, .framer-p64LT .framer-1fdxnbj, .framer-p64LT .framer-1r2ukgm, .framer-p64LT .framer-1u8l3f2, .framer-p64LT .framer-1n52ukv, .framer-p64LT .framer-c6f8m4, .framer-p64LT .framer-8nd0kv, .framer-p64LT .framer-1gwemd1, .framer-p64LT .framer-19mx37g, .framer-p64LT .framer-1sm03kc, .framer-p64LT .framer-1kvfwy, .framer-p64LT .framer-1f1vj45 { gap: 0px; } .framer-p64LT.framer-zgsw7e > *, .framer-p64LT .framer-1sv2b1r > *, .framer-p64LT .framer-1wiukws > *, .framer-p64LT .framer-1j1ip1j > *, .framer-p64LT .framer-1f4bu8i > *, .framer-p64LT .framer-1u8l3f2 > *, .framer-p64LT .framer-c6f8m4 > *, .framer-p64LT .framer-8nd0kv > *, .framer-p64LT .framer-1kvfwy > *, .framer-p64LT .framer-1f1vj45 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-p64LT.framer-zgsw7e > :first-child, .framer-p64LT .framer-1sv2b1r > :first-child, .framer-p64LT .framer-1wiukws > :first-child, .framer-p64LT .framer-1ckxtxg > :first-child, .framer-p64LT .framer-ujpgkq > :first-child, .framer-p64LT .framer-w7mlg6 > :first-child, .framer-p64LT .framer-mzv19e > :first-child, .framer-p64LT .framer-1kljtx3 > :first-child, .framer-p64LT .framer-wh9kny > :first-child, .framer-p64LT .framer-1ocd5a1 > :first-child, .framer-p64LT .framer-2ign6j > :first-child, .framer-p64LT .framer-svp0sd > :first-child, .framer-p64LT .framer-jsr5t3 > :first-child, .framer-p64LT .framer-1j1ip1j > :first-child, .framer-p64LT .framer-1f4bu8i > :first-child, .framer-p64LT .framer-1qkq5t4 > :first-child, .framer-p64LT .framer-zxrcql > :first-child, .framer-p64LT .framer-1ad3h0b > :first-child, .framer-p64LT .framer-12f6oi3 > :first-child, .framer-p64LT .framer-10a6hf5 > :first-child, .framer-p64LT .framer-1e64s1a > :first-child, .framer-p64LT .framer-k4w59w > :first-child, .framer-p64LT .framer-18qu5d8 > :first-child, .framer-p64LT .framer-zinaw9 > :first-child, .framer-p64LT .framer-4dam91 > :first-child, .framer-p64LT .framer-1fdxnbj > :first-child, .framer-p64LT .framer-1r2ukgm > :first-child, .framer-p64LT .framer-1u8l3f2 > :first-child, .framer-p64LT .framer-1n52ukv > :first-child, .framer-p64LT .framer-c6f8m4 > :first-child, .framer-p64LT .framer-8nd0kv > :first-child, .framer-p64LT .framer-19mx37g > :first-child, .framer-p64LT .framer-1kvfwy > :first-child, .framer-p64LT .framer-1f1vj45 > :first-child { margin-top: 0px; } .framer-p64LT.framer-zgsw7e > :last-child, .framer-p64LT .framer-1sv2b1r > :last-child, .framer-p64LT .framer-1wiukws > :last-child, .framer-p64LT .framer-1ckxtxg > :last-child, .framer-p64LT .framer-ujpgkq > :last-child, .framer-p64LT .framer-w7mlg6 > :last-child, .framer-p64LT .framer-mzv19e > :last-child, .framer-p64LT .framer-1kljtx3 > :last-child, .framer-p64LT .framer-wh9kny > :last-child, .framer-p64LT .framer-1ocd5a1 > :last-child, .framer-p64LT .framer-2ign6j > :last-child, .framer-p64LT .framer-svp0sd > :last-child, .framer-p64LT .framer-jsr5t3 > :last-child, .framer-p64LT .framer-1j1ip1j > :last-child, .framer-p64LT .framer-1f4bu8i > :last-child, .framer-p64LT .framer-1qkq5t4 > :last-child, .framer-p64LT .framer-zxrcql > :last-child, .framer-p64LT .framer-1ad3h0b > :last-child, .framer-p64LT .framer-12f6oi3 > :last-child, .framer-p64LT .framer-10a6hf5 > :last-child, .framer-p64LT .framer-1e64s1a > :last-child, .framer-p64LT .framer-k4w59w > :last-child, .framer-p64LT .framer-18qu5d8 > :last-child, .framer-p64LT .framer-zinaw9 > :last-child, .framer-p64LT .framer-4dam91 > :last-child, .framer-p64LT .framer-1fdxnbj > :last-child, .framer-p64LT .framer-1r2ukgm > :last-child, .framer-p64LT .framer-1u8l3f2 > :last-child, .framer-p64LT .framer-1n52ukv > :last-child, .framer-p64LT .framer-c6f8m4 > :last-child, .framer-p64LT .framer-8nd0kv > :last-child, .framer-p64LT .framer-19mx37g > :last-child, .framer-p64LT .framer-1kvfwy > :last-child, .framer-p64LT .framer-1f1vj45 > :last-child { margin-bottom: 0px; } .framer-p64LT .framer-1ckxtxg > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-p64LT .framer-ujpgkq > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-p64LT .framer-1e0wsos > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-p64LT .framer-1e0wsos > :first-child, .framer-p64LT .framer-1utxd7r > :first-child, .framer-p64LT .framer-175an46 > :first-child, .framer-p64LT .framer-zxqogj > :first-child, .framer-p64LT .framer-eh050o > :first-child, .framer-p64LT .framer-y5ibpq > :first-child, .framer-p64LT .framer-12scirv > :first-child, .framer-p64LT .framer-1ft87t > :first-child, .framer-p64LT .framer-110iyun > :first-child, .framer-p64LT .framer-dm0yd8 > :first-child, .framer-p64LT .framer-1gwemd1 > :first-child, .framer-p64LT .framer-1sm03kc > :first-child { margin-left: 0px; } .framer-p64LT .framer-1e0wsos > :last-child, .framer-p64LT .framer-1utxd7r > :last-child, .framer-p64LT .framer-175an46 > :last-child, .framer-p64LT .framer-zxqogj > :last-child, .framer-p64LT .framer-eh050o > :last-child, .framer-p64LT .framer-y5ibpq > :last-child, .framer-p64LT .framer-12scirv > :last-child, .framer-p64LT .framer-1ft87t > :last-child, .framer-p64LT .framer-110iyun > :last-child, .framer-p64LT .framer-dm0yd8 > :last-child, .framer-p64LT .framer-1gwemd1 > :last-child, .framer-p64LT .framer-1sm03kc > :last-child { margin-right: 0px; } .framer-p64LT .framer-w7mlg6 > *, .framer-p64LT .framer-1kljtx3 > *, .framer-p64LT .framer-18qu5d8 > *, .framer-p64LT .framer-1fdxnbj > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-p64LT .framer-mzv19e > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-p64LT .framer-1utxd7r > *, .framer-p64LT .framer-175an46 > *, .framer-p64LT .framer-zxqogj > *, .framer-p64LT .framer-eh050o > *, .framer-p64LT .framer-y5ibpq > *, .framer-p64LT .framer-12scirv > *, .framer-p64LT .framer-1ft87t > *, .framer-p64LT .framer-110iyun > *, .framer-p64LT .framer-dm0yd8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-p64LT .framer-wh9kny > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-p64LT .framer-1ocd5a1 > * { margin: 0px; margin-bottom: calc(43px / 2); margin-top: calc(43px / 2); } .framer-p64LT .framer-2ign6j > *, .framer-p64LT .framer-jsr5t3 > *, .framer-p64LT .framer-1n52ukv > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-p64LT .framer-svp0sd > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-p64LT .framer-1qkq5t4 > *, .framer-p64LT .framer-zinaw9 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-p64LT .framer-zxrcql > * { margin: 0px; margin-bottom: calc(174px / 2); margin-top: calc(174px / 2); } .framer-p64LT .framer-1ad3h0b > *, .framer-p64LT .framer-12f6oi3 > *, .framer-p64LT .framer-10a6hf5 > *, .framer-p64LT .framer-1e64s1a > *, .framer-p64LT .framer-k4w59w > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-p64LT .framer-4dam91 > * { margin: 0px; margin-bottom: calc(74px / 2); margin-top: calc(74px / 2); } .framer-p64LT .framer-1r2ukgm > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-p64LT .framer-1gwemd1 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-p64LT .framer-19mx37g > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-p64LT .framer-1sm03kc > * { margin: 0px; margin-left: calc(94px / 2); margin-right: calc(94px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-p64LT[data-border=\"true\"]::after, .framer-p64LT [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-p64LT.framer-zgsw7e { width: 810px; } .framer-p64LT .framer-5xme10 { left: calc(52.46913580246916% - 100% / 2); top: 48px; } .framer-p64LT .framer-ujpgkq { bottom: -8px; height: 380px; left: calc(49.629629629629655% - 765px / 2); width: 765px; } .framer-p64LT .framer-1r7pgrh { height: auto; left: 50%; max-width: 1676px; order: 0; position: absolute; top: 26px; transform: translateX(-50%); width: 449px; z-index: 1; } .framer-p64LT .framer-fcljzk { bottom: 72px; order: 1; position: absolute; right: 0px; width: 765px; z-index: 1; } .framer-p64LT .framer-mzv19e { padding: 56px 40px 100px 40px; } .framer-p64LT .framer-wh9kny { gap: 18px; } .framer-p64LT .framer-1ocd5a1, .framer-p64LT .framer-1mnh56l-container, .framer-p64LT .framer-1sk7j5f-container, .framer-p64LT .framer-1hvx1o4-container, .framer-p64LT .framer-a5jydc-container { width: 100%; } .framer-p64LT .framer-65akvn { max-width: unset; width: 100%; } .framer-p64LT .framer-146yrgn, .framer-p64LT .framer-1hts28y { grid-template-columns: repeat(3, minmax(200px, 1fr)); } .framer-p64LT .framer-zxrcql { gap: 60px; padding: 0px 40px 200px 40px; } .framer-p64LT .framer-12scirv, .framer-p64LT .framer-110iyun { padding: 0px; } .framer-p64LT .framer-1ad3h0b, .framer-p64LT .framer-12f6oi3, .framer-p64LT .framer-10a6hf5, .framer-p64LT .framer-1e64s1a, .framer-p64LT .framer-k4w59w { flex: 1 0 0px; width: 1px; } .framer-p64LT .framer-1ft87t { justify-content: center; padding: 0px; } .framer-p64LT .framer-71u7wp { gap: 60px; justify-content: center; padding: 0px; } .framer-p64LT .framer-v7i738-container { height: auto; width: 100%; } .framer-p64LT .framer-1fdxnbj, .framer-p64LT .framer-1n52ukv, .framer-p64LT .framer-19mx37g { padding: 100px 40px 100px 40px; } .framer-p64LT .framer-9u44pm { grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-p64LT .framer-1sm03kc { gap: 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-p64LT .framer-wh9kny, .framer-p64LT .framer-zxrcql, .framer-p64LT .framer-71u7wp, .framer-p64LT .framer-1sm03kc { gap: 0px; } .framer-p64LT .framer-wh9kny > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-p64LT .framer-wh9kny > :first-child, .framer-p64LT .framer-zxrcql > :first-child { margin-top: 0px; } .framer-p64LT .framer-wh9kny > :last-child, .framer-p64LT .framer-zxrcql > :last-child { margin-bottom: 0px; } .framer-p64LT .framer-zxrcql > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-p64LT .framer-71u7wp > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-p64LT .framer-71u7wp > :first-child, .framer-p64LT .framer-1sm03kc > :first-child { margin-left: 0px; } .framer-p64LT .framer-71u7wp > :last-child, .framer-p64LT .framer-1sm03kc > :last-child { margin-right: 0px; } .framer-p64LT .framer-1sm03kc > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }}\",\"@media (max-width: 809px) { .framer-p64LT.framer-zgsw7e { width: 390px; } .framer-p64LT .framer-1wiukws { order: 0; } .framer-p64LT .framer-5xme10 { padding: 100px 12px 100px 12px; } .framer-p64LT .framer-1ckxtxg, .framer-p64LT .framer-1qvnrfz-container { order: 1; } .framer-p64LT .framer-10a2oru { order: 0; width: 330px; } .framer-p64LT .framer-ujpgkq { bottom: unset; height: min-content; left: -758px; min-height: 150px; order: 0; top: 100px; width: 356px; } .framer-p64LT .framer-1r7pgrh { bottom: -294px; height: auto; order: 1; position: absolute; right: -879px; width: auto; z-index: 1; } .framer-p64LT .framer-mzv19e { padding: 36px 12px 30px 12px; } .framer-p64LT .framer-1kljtx3 { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; padding: 0px; } .framer-p64LT .framer-1utxd7r, .framer-p64LT .framer-175an46 { flex-direction: column; } .framer-p64LT .framer-er9bag-container, .framer-p64LT .framer-iwezsd-container, .framer-p64LT .framer-19soruj-container, .framer-p64LT .framer-15bqre5-container, .framer-p64LT .framer-1f1vj45 { flex: none; width: 100%; } .framer-p64LT .framer-wh9kny, .framer-p64LT .framer-zxrcql { gap: 30px; padding: 30px 12px 30px 12px; } .framer-p64LT .framer-1ocd5a1 { align-content: center; align-items: center; width: 100%; } .framer-p64LT .framer-65akvn { max-width: unset; width: 100%; } .framer-p64LT .framer-2ign6j { order: 1; padding: 34px 12px 34px 12px; } .framer-p64LT .framer-1t2rprj, .framer-p64LT .framer-1ad3h0b, .framer-p64LT .framer-12f6oi3, .framer-p64LT .framer-k4w59w { flex: 1 0 0px; width: 1px; } .framer-p64LT .framer-146yrgn, .framer-p64LT .framer-1hts28y { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); } .framer-p64LT .framer-jsr5t3 { order: 2; padding: 0px 12px 0px 12px; } .framer-p64LT .framer-1f4bu8i { order: 3; } .framer-p64LT .framer-1qkq5t4 { height: min-content; padding: 30px 12px 30px 12px; position: relative; top: unset; } .framer-p64LT .framer-12scirv, .framer-p64LT .framer-1ft87t, .framer-p64LT .framer-110iyun { padding: 0px; } .framer-p64LT .framer-1mnh56l-container, .framer-p64LT .framer-1sk7j5f-container, .framer-p64LT .framer-10a6hf5, .framer-p64LT .framer-1hvx1o4-container, .framer-p64LT .framer-1e64s1a, .framer-p64LT .framer-a5jydc-container { width: 100%; } .framer-p64LT .framer-71u7wp { flex-direction: column; gap: 30px; justify-content: flex-start; padding: 0px; } .framer-p64LT .framer-v7i738-container, .framer-p64LT .framer-jdtxx6-container { height: auto; width: 100%; } .framer-p64LT .framer-18qu5d8 { gap: 0px; order: 4; } .framer-p64LT .framer-zinaw9 { gap: 40px; height: min-content; padding: 80px 12px 30px 12px; position: relative; top: unset; } .framer-p64LT .framer-dm0yd8 { min-height: unset; } .framer-p64LT .framer-93gfla { bottom: unset; flex: 1 0 0px; position: relative; right: unset; width: 1px; } .framer-p64LT .framer-4dam91 { min-height: 1610px; } .framer-p64LT .framer-1fdxnbj { order: 6; padding: 0px; } .framer-p64LT .framer-1r2ukgm { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; gap: 40px; padding: 60px 12px 60px 12px; } .framer-p64LT .framer-1v9zizh-container { height: 841px; } .framer-p64LT .framer-1n52ukv { order: 7; padding: 60px 12px 30px 12px; } .framer-p64LT .framer-c6f8m4 { align-content: center; align-items: center; gap: 40px; } .framer-p64LT .framer-b5jxj7 { bottom: unset; left: unset; position: relative; transform: unset; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-p64LT .framer-9u44pm { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-p64LT .framer-19mx37g { order: 8; padding: 30px 12px 60px 12px; } .framer-p64LT .framer-1sm03kc { flex-direction: column; gap: 40px; } .framer-p64LT .framer-1kvfwy { flex: none; position: relative; top: unset; width: 100%; } .framer-p64LT .framer-1axs9d7-container { order: 9; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-p64LT .framer-1utxd7r, .framer-p64LT .framer-175an46, .framer-p64LT .framer-wh9kny, .framer-p64LT .framer-zxrcql, .framer-p64LT .framer-71u7wp, .framer-p64LT .framer-18qu5d8, .framer-p64LT .framer-zinaw9, .framer-p64LT .framer-1r2ukgm, .framer-p64LT .framer-c6f8m4, .framer-p64LT .framer-1sm03kc { gap: 0px; } .framer-p64LT .framer-1utxd7r > *, .framer-p64LT .framer-175an46 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-p64LT .framer-1utxd7r > :first-child, .framer-p64LT .framer-175an46 > :first-child, .framer-p64LT .framer-wh9kny > :first-child, .framer-p64LT .framer-zxrcql > :first-child, .framer-p64LT .framer-71u7wp > :first-child, .framer-p64LT .framer-18qu5d8 > :first-child, .framer-p64LT .framer-zinaw9 > :first-child, .framer-p64LT .framer-1r2ukgm > :first-child, .framer-p64LT .framer-c6f8m4 > :first-child, .framer-p64LT .framer-1sm03kc > :first-child { margin-top: 0px; } .framer-p64LT .framer-1utxd7r > :last-child, .framer-p64LT .framer-175an46 > :last-child, .framer-p64LT .framer-wh9kny > :last-child, .framer-p64LT .framer-zxrcql > :last-child, .framer-p64LT .framer-71u7wp > :last-child, .framer-p64LT .framer-18qu5d8 > :last-child, .framer-p64LT .framer-zinaw9 > :last-child, .framer-p64LT .framer-1r2ukgm > :last-child, .framer-p64LT .framer-c6f8m4 > :last-child, .framer-p64LT .framer-1sm03kc > :last-child { margin-bottom: 0px; } .framer-p64LT .framer-wh9kny > *, .framer-p64LT .framer-zxrcql > *, .framer-p64LT .framer-71u7wp > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-p64LT .framer-18qu5d8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-p64LT .framer-zinaw9 > *, .framer-p64LT .framer-1r2ukgm > *, .framer-p64LT .framer-c6f8m4 > *, .framer-p64LT .framer-1sm03kc > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 13363\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ePjBTtXEX\":{\"layout\":[\"fixed\",\"auto\"]},\"n9gLl4Eao\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"zJL7JOcd9\":{\"pattern\":\":zJL7JOcd9\",\"name\":\"quote\"},\"nhd_W9lmc\":{\"pattern\":\":nhd_W9lmc\",\"name\":\"heading\"},\"ohtDp3gGl\":{\"pattern\":\":ohtDp3gGl\",\"name\":\"about\"},\"BD2cR1SRi\":{\"pattern\":\":BD2cR1SRi\",\"name\":\"about-me\"},\"EbpuSh3rn\":{\"pattern\":\":EbpuSh3rn\",\"name\":\"works\"},\"zqm84JZTO\":{\"pattern\":\":zqm84JZTO\",\"name\":\"services\"},\"eLmWU9DgF\":{\"pattern\":\":eLmWU9DgF\",\"name\":\"about\"},\"t5xhlbAgO\":{\"pattern\":\":t5xhlbAgO\",\"name\":\"2\"},\"HYYvKEv5t\":{\"pattern\":\":HYYvKEv5t\",\"name\":\"3\"},\"y59KWQhZc\":{\"pattern\":\":y59KWQhZc\",\"name\":\"4\"},\"aXTUvran4\":{\"pattern\":\":aXTUvran4\",\"name\":\"about\"}}\n * @framerResponsiveScreen\n */const FramerueiKkVaj3=withCSS(Component,css,\"framer-p64LT\");export default FramerueiKkVaj3;FramerueiKkVaj3.displayName=\"Home\";FramerueiKkVaj3.defaultProps={height:13363,width:1200};addFonts(FramerueiKkVaj3,[{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:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/VFMK2COV3DN37JR7JQ4CAOJPZ7KWKNY7/ODD5YJNDLHZZB2MIT3DPVH4EIHAMZ34D/BSY64LPTT3OPLVKAZKL3AHKRWZ3D74AC.woff2\",weight:\"400\"}]},...NavFonts,...NavMenuOverlayFonts,...ButtonFonts,...PhosphorFonts,...VideoFonts,...StatsFonts,...BrandsFonts,...TitleBlurFonts,...ProjectFonts,...CubeFonts,...ReviewFonts,...TickerFonts,...CardBlogFonts,...FaqSingleFonts,...FooterFonts,...SmoothScrollFonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerueiKkVaj3\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"13363\",\"framerScrollSections\":\"{\\\"zJL7JOcd9\\\":{\\\"pattern\\\":\\\":zJL7JOcd9\\\",\\\"name\\\":\\\"quote\\\"},\\\"nhd_W9lmc\\\":{\\\"pattern\\\":\\\":nhd_W9lmc\\\",\\\"name\\\":\\\"heading\\\"},\\\"ohtDp3gGl\\\":{\\\"pattern\\\":\\\":ohtDp3gGl\\\",\\\"name\\\":\\\"about\\\"},\\\"BD2cR1SRi\\\":{\\\"pattern\\\":\\\":BD2cR1SRi\\\",\\\"name\\\":\\\"about-me\\\"},\\\"EbpuSh3rn\\\":{\\\"pattern\\\":\\\":EbpuSh3rn\\\",\\\"name\\\":\\\"works\\\"},\\\"zqm84JZTO\\\":{\\\"pattern\\\":\\\":zqm84JZTO\\\",\\\"name\\\":\\\"services\\\"},\\\"eLmWU9DgF\\\":{\\\"pattern\\\":\\\":eLmWU9DgF\\\",\\\"name\\\":\\\"about\\\"},\\\"t5xhlbAgO\\\":{\\\"pattern\\\":\\\":t5xhlbAgO\\\",\\\"name\\\":\\\"2\\\"},\\\"HYYvKEv5t\\\":{\\\"pattern\\\":\\\":HYYvKEv5t\\\",\\\"name\\\":\\\"3\\\"},\\\"y59KWQhZc\\\":{\\\"pattern\\\":\\\":y59KWQhZc\\\",\\\"name\\\":\\\"4\\\"},\\\"aXTUvran4\\\":{\\\"pattern\\\":\\\":aXTUvran4\\\",\\\"name\\\":\\\"about\\\"}}\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ePjBTtXEX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"n9gLl4Eao\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "text", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "BNrfbSvpI", "rbI6pe7lp", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerXtRu2trDS", "withCSS", "XtRu2trDS_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "CardServiceFonts", "getFonts", "XtRu2trDS_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "service1", "service1Description", "service2", "service2Description", "service3", "service3Description", "service4", "service4Description", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_humanReadableVariantMap_props_variant", "_ref6", "_ref7", "_ref8", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ZFGTFb17v", "TbLj3ZRRK", "qJMwPZX6P", "esNvdxnIX", "o6SxmVCs0", "mi8Q91LDu", "XVuU6xaiK", "H4od7_OPJ", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap8e2yn9", "args", "onTapitfh0x", "onTap1m23rsr", "onTap1s16g3n", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerAzBpr3xjY", "withCSS", "AzBpr3xjY_default", "addPropertyControls", "ControlType", "addFonts", "RichTextWithFX", "withFX", "RichText2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "VRu1QI171", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "css", "FramerilgmxMe9f", "withCSS", "ilgmxMe9f_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "zNMII1rLe", "UkcAZJv33", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1y831ta", "args", "onTapbj66xi", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerO9s2O5SeP", "withCSS", "O9s2O5SeP_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "GISUwquSq", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "Image2", "getLoadingLazyAtYPosition", "css", "FramerrnBV2gVW1", "withCSS", "rnBV2gVW1_default", "addPropertyControls", "ControlType", "addFonts", "Counter", "decimal", "value", "decimalValue", "direction", "stiffness", "damping", "prefix", "prefixText", "suffix", "suffixText", "color", "fontStyle", "ref", "pe", "updatedDecimalValue", "motionValue", "useMotionValue", "springValue", "useSpring", "isInView", "useInView", "ue", "latest", "u", "l", "p", "addPropertyControls", "ControlType", "props", "CounterFonts", "getFonts", "Counter", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "fontSize", "height", "id", "suffix", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "x9jw34lHv", "FCzUNk8zj", "QZmyCi6ep", "lfxR4tjrX", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "css", "FramerUeNFeauCj", "withCSS", "UeNFeauCj_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavFonts", "getFonts", "UEn7U9jTS_default", "NavMenuOverlayFonts", "hcXsnZxmp_default", "ButtonFonts", "ice_UvhW5_default", "PhosphorFonts", "Icon", "ContainerWithFX", "withFX", "Container", "MotionDivWithFX", "motion", "VideoFonts", "Video", "ImageWithFX", "Image2", "StatsFonts", "UeNFeauCj_default", "BrandsFonts", "rnBV2gVW1_default", "TitleBlurFonts", "ilgmxMe9f_default", "TitleBlurWithVariantAppearEffect", "withVariantAppearEffect", "ProjectFonts", "VvgCSmuri_default", "RichTextWithFX", "RichText2", "CubeFonts", "AzBpr3xjY_default", "CubeWithVariantAppearEffect", "ReviewFonts", "eNfRctY2o_default", "TickerFonts", "Ticker", "CardBlogFonts", "xQwQXHeqp_default", "FaqSingleFonts", "O9s2O5SeP_default", "MotionSectionWithFX", "FooterFonts", "PqQtuErNZ_default", "SmoothScrollFonts", "SmoothScroll", "CursorFonts", "t3kQNA4Z8_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "transition2", "animation2", "addImageAlt", "image", "alt", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "data", "useQueryData", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "transition3", "cursor", "transition4", "cursor1", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "F5JM_atFVqf0vDwWRO", "vKXD8iKpJqf0vDwWRO", "abCVizEmiqf0vDwWRO", "H8wcwixxoqf0vDwWRO", "FgTryvascqf0vDwWRO", "idqf0vDwWRO", "F5JM_atFVHKTrf_n50", "vKXD8iKpJHKTrf_n50", "abCVizEmiHKTrf_n50", "H8wcwixxoHKTrf_n50", "FgTryvascHKTrf_n50", "idHKTrf_n50", "F5JM_atFVTpATeIQGL", "vKXD8iKpJTpATeIQGL", "abCVizEmiTpATeIQGL", "H8wcwixxoTpATeIQGL", "FgTryvascTpATeIQGL", "idTpATeIQGL", "F5JM_atFVlfbPOqUhQ", "vKXD8iKpJlfbPOqUhQ", "abCVizEmilfbPOqUhQ", "H8wcwixxolfbPOqUhQ", "FgTryvasclfbPOqUhQ", "idlfbPOqUhQ", "F5JM_atFVcAk1JNQqN", "vKXD8iKpJcAk1JNQqN", "abCVizEmicAk1JNQqN", "H8wcwixxocAk1JNQqN", "FgTryvasccAk1JNQqN", "idcAk1JNQqN", "AysrUKz64ZG7zdjsHc", "eu1SUO8AeZG7zdjsHc", "MnZrUXvuIZG7zdjsHc", "S9w7PJblNZG7zdjsHc", "mmsKK_xBbZG7zdjsHc", "idZG7zdjsHc", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "Fv5UOj18q3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "isDisplayed", "ref3", "elementId2", "elementId3", "ref4", "router", "useRouter", "isDisplayed1", "ref5", "elementId4", "elementId5", "ref6", "elementId6", "ref7", "ref8", "ref9", "ref10", "elementId7", "elementId8", "elementId9", "elementId10", "ref11", "activeLocaleCode", "useLocaleCode", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "l", "ComponentViewportProvider", "PropertyOverrides2", "AnimatePresence", "Ga", "x", "Link", "ResolveLinks", "resolvedLinks", "ChildrenCanSuspend", "Qiwj4Sxj4_default", "collection", "paginationInfo", "index", "PathVariablesContext", "resolvedLinks1", "enumToDisplayNameFunctions", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks2", "collection2", "paginationInfo2", "loadMore2", "index2", "resolvedLinks3", "collection3", "paginationInfo3", "loadMore3", "index3", "resolvedLinks4", "collection4", "paginationInfo4", "loadMore4", "index4", "resolvedLinks5", "resolvedLinks6", "L8b3IANtH_default", "collection5", "paginationInfo5", "loadMore5", "index5", "resolvedLinks7", "resolvedLinks8", "css", "FramerueiKkVaj3", "withCSS", "ueiKkVaj3_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
