{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js", "ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/rBrKKn00iawJDh20IA79/APA3YDEUY0gak7usX32U/Cp1tWBHJ6.js", "ssg:https://framerusercontent.com/modules/sU9DpwfVOyiYdH4gzk2m/ZxCjF1sMpyLqtSd82n05/kp2RiqYIg.js", "ssg:https://framerusercontent.com/modules/2oEnQhxIPaJo8riQHxQG/XPbTajY3ykiknjYB2E3X/m09s1O2Le.js", "ssg:https://framerusercontent.com/modules/h8ioHyt4BUxuvVCE1Q10/aTM6mEMGlM19JjX8exDe/AvoidLayoutJumping_Prod.js", "ssg:https://framerusercontent.com/modules/m9mdsBy8am45tkwJsQcr/NP5VIdlkGTBIGfFYKt2u/DCLIKUpS4.js", "ssg:https://framerusercontent.com/modules/6pHEGgimVAf9itbtkAbk/hlP9kuCP3MUDCCcgR5fA/TliclEh3s.js", "ssg:https://framerusercontent.com/modules/7MLf10MxfFO4yg028YsW/nIEHQ287WyJYFMlapEtg/Before_and_after.js", "ssg:https://framerusercontent.com/modules/4yaOc7pCEWmjO3ukZ8Bn/7VNYRd9AEPLdpOl2xG16/componentPresets.js", "ssg:https://framerusercontent.com/modules/txL9ulbaHWH3rNlH6ZZz/TRmuTOxK2sa6EzdDdqP3/DwdExbv9J.js", "ssg:https://framerusercontent.com/modules/5psbTE4DPj5gM8Fb9DbW/jfmmqoTQWkSQwNr3F6DB/zVoRr5luo.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??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??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??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//     !isStaticRenderer\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??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster=\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\",playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedURL,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHTML,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html,style}){const ref=useRef();const onCanvas=useIsOnCanvas();const[iframeHeight,setIframeHeight]=useState(0);const hasAutoHeight=!style.height;const hasScript=html.includes(\"</script>\");useEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);if(hasScript){const srcDoc=`<html>\n    <head>\n        <style>body { margin: 0; }</style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>`;const currentStyle={...iframeStyle,...style};if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (f712822)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/u4i6cb7XDJT81PUD1RZR/1vUoddt9IQZyvPPWF22S/MzCgcxP7y.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/n3XuEkznU20GzcvSmIQm/0IvTswf8bYla5BpMaVO6/p66ucvXZ2.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/uJFFDUA3meZFhIPraUnl/ZFEkYVM3TAHqCmBfMAlM/qodemAsk4.js\";const cycleOrder=[\"oXXarZF3i\",\"BItbKnGPb\",\"k_3r9fHPX\"];const serializationHash=\"framer-76Ul5\";const variantClassNames={BItbKnGPb:\"framer-v-1cbaeag\",k_3r9fHPX:\"framer-v-1ielqie\",oXXarZF3i:\"framer-v-1i761ja\"};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 transformTemplate1=(_,t)=>`translateX(-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={Desktop:\"oXXarZF3i\",Hover:\"BItbKnGPb\",Mobile:\"k_3r9fHPX\"};const getProps=({featuredImage,height,id,link,title,width,...props})=>{return{...props,CYP_4_Igm:link??props.CYP_4_Igm,khwz4aXjQ:featuredImage??props.khwz4aXjQ,pmf3WyjGf:title??props.pmf3WyjGf??\"Title\",variant:humanReadableVariantMap[props.variant]??props.variant??\"oXXarZF3i\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,CYP_4_Igm,pmf3WyjGf,khwz4aXjQ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oXXarZF3i\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1iyjg1p=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"BItbKnGPb\");});const onMouseLeavesc9eml=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"oXXarZF3i\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:CYP_4_Igm,motionChild:true,nodeId:\"oXXarZF3i\",scopeId:\"Cp1tWBHJ6\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1i761ja\",className,classNames)} framer-14f5nbr`,\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"oXXarZF3i\",onMouseEnter:onMouseEnter1iyjg1p,ref:refBinding,style:{...style},...addPropertyOverrides({BItbKnGPb:{\"data-framer-name\":\"Hover\",onMouseLeave:onMouseLeavesc9eml},k_3r9fHPX:{\"data-framer-name\":\"Mobile\",\"data-highlight\":undefined,onMouseEnter:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eqtj6k\",layoutDependency:layoutDependency,layoutId:\"b80kR9yUm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tf3ym6\",\"data-styles-preset\":\"p66ucvXZ2\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-021f0aa4-0d20-4364-8ca8-a28f6e4e7505, rgb(255, 255, 255)))\"},children:\"Next case\"})}),className:\"framer-10pt0su\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eowDe4xpp\",style:{\"--extracted-r6o4lv\":\"var(--token-021f0aa4-0d20-4364-8ca8-a28f6e4e7505, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-o9tme2\",\"data-styles-preset\":\"MzCgcxP7y\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-021f0aa4-0d20-4364-8ca8-a28f6e4e7505, rgb(255, 255, 255)))\"},children:\"Title\"})}),className:\"framer-mxkxd5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SsUVGm9mR\",style:{\"--extracted-1of0zx5\":\"var(--token-021f0aa4-0d20-4364-8ca8-a28f6e4e7505, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:pmf3WyjGf,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({k_3r9fHPX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-15hyfjk\",\"data-styles-preset\":\"qodemAsk4\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-021f0aa4-0d20-4364-8ca8-a28f6e4e7505, rgb(255, 255, 255)))\"},children:\"Title\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||800)-299),sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.4741)`,...toResponsiveImage(khwz4aXjQ)},className:\"framer-axkg58\",\"data-framer-name\":\"Project Image\",layoutDependency:layoutDependency,layoutId:\"K7z8VEaAo\",transformTemplate:transformTemplate1,...addPropertyOverrides({BItbKnGPb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||800)-239),sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.3796)`,...toResponsiveImage(khwz4aXjQ)}},k_3r9fHPX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||800)-330),sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.5231)`,...toResponsiveImage(khwz4aXjQ)}}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-76Ul5.framer-14f5nbr, .framer-76Ul5 .framer-14f5nbr { display: block; }\",\".framer-76Ul5.framer-1i761ja { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; min-height: calc(var(--framer-viewport-height, 100vh) * 1); padding: 0px; position: relative; text-decoration: none; width: 1080px; }\",\".framer-76Ul5 .framer-1eqtj6k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-76Ul5 .framer-10pt0su, .framer-76Ul5 .framer-mxkxd5 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-76Ul5 .framer-axkg58 { aspect-ratio: 1.7142857142857142 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 299px); left: 50%; overflow: hidden; position: absolute; width: 47%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-76Ul5.framer-1i761ja, .framer-76Ul5 .framer-1eqtj6k { gap: 0px; } .framer-76Ul5.framer-1i761ja > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-76Ul5.framer-1i761ja > :first-child, .framer-76Ul5 .framer-1eqtj6k > :first-child { margin-top: 0px; } .framer-76Ul5.framer-1i761ja > :last-child, .framer-76Ul5 .framer-1eqtj6k > :last-child { margin-bottom: 0px; } .framer-76Ul5 .framer-1eqtj6k > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-76Ul5.framer-v-1cbaeag .framer-axkg58 { height: var(--framer-aspect-ratio-supported, 239px); width: 38%; }\",\".framer-76Ul5.framer-v-1ielqie .framer-axkg58 { height: var(--framer-aspect-ratio-supported, 330px); width: 52%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 1080\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"BItbKnGPb\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"k_3r9fHPX\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]}}}\n * @framerVariables {\"CYP_4_Igm\":\"link\",\"pmf3WyjGf\":\"title\",\"khwz4aXjQ\":\"featuredImage\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerCp1tWBHJ6=withCSS(Component,css,\"framer-76Ul5\");export default FramerCp1tWBHJ6;FramerCp1tWBHJ6.displayName=\"Next Project Item\";FramerCp1tWBHJ6.defaultProps={height:800,width:1080};addPropertyControls(FramerCp1tWBHJ6,{variant:{options:[\"oXXarZF3i\",\"BItbKnGPb\",\"k_3r9fHPX\"],optionTitles:[\"Desktop\",\"Hover\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},CYP_4_Igm:{title:\"Link\",type:ControlType.Link},pmf3WyjGf:{defaultValue:\"Title\",title:\"Title\",type:ControlType.String},khwz4aXjQ:{title:\"Featured Image\",type:ControlType.ResponsiveImage}});addFonts(FramerCp1tWBHJ6,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCp1tWBHJ6\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"CYP_4_Igm\\\":\\\"link\\\",\\\"pmf3WyjGf\\\":\\\"title\\\",\\\"khwz4aXjQ\\\":\\\"featuredImage\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1080\",\"framerIntrinsicHeight\":\"800\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"BItbKnGPb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"k_3r9fHPX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]}}}\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Cp1tWBHJ6.map", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-Klzgs .framer-styles-preset-t8obrb:not(.rich-text-wrapper), .framer-Klzgs .framer-styles-preset-t8obrb.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #0088ff; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #0099ff; --framer-link-text-decoration: none; }\"];export const className=\"framer-Klzgs\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (033a048)\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*as sharedStyle3 from\"https://framerusercontent.com/modules/sU9DpwfVOyiYdH4gzk2m/ZxCjF1sMpyLqtSd82n05/kp2RiqYIg.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/u4i6cb7XDJT81PUD1RZR/1vUoddt9IQZyvPPWF22S/MzCgcxP7y.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/n3XuEkznU20GzcvSmIQm/0IvTswf8bYla5BpMaVO6/p66ucvXZ2.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/uJFFDUA3meZFhIPraUnl/ZFEkYVM3TAHqCmBfMAlM/qodemAsk4.js\";import Divider from\"https://framerusercontent.com/modules/xC8CnDiM2hxCplpNls4A/xyYwJtDWJnLCVw3B5Izr/kJYAUq3Dc.js\";const DividerFonts=getFonts(Divider);const cycleOrder=[\"tOxdq2ax7\",\"w06SCNb7L\"];const serializationHash=\"framer-i4czi\";const variantClassNames={tOxdq2ax7:\"framer-v-k8ll6f\",w06SCNb7L:\"framer-v-4u39lu\"};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(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"tOxdq2ax7\",\"Variant 2\":\"w06SCNb7L\"};const getProps=({bottomText,content,height,id,topText,width,...props})=>{return{...props,fmfyFfnAj:content??props.fmfyFfnAj??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"text\"})}),ssri0BYiC:topText??props.ssri0BYiC??\"Role / services\",variant:humanReadableVariantMap[props.variant]??props.variant??\"tOxdq2ax7\",YIzoIYA_s:bottomText??props.YIzoIYA_s??\"Design & Development\"};};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,ssri0BYiC,YIzoIYA_s,fmfyFfnAj,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"tOxdq2ax7\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];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,className:cx(serializationHash,...sharedStyleClassNames,\"framer-k8ll6f\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"tOxdq2ax7\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref??ref1,style:{...style},...addPropertyOverrides({w06SCNb7L:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tf3ym6\",\"data-styles-preset\":\"p66ucvXZ2\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-60a0abed-7fdb-4c64-96c8-aef4e864ed8a, rgb(166, 166, 166)))\"},children:\"Role / services\"})}),className:\"framer-zayx68\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"J8C6Bkd_Q\",style:{\"--extracted-r6o4lv\":\"var(--token-60a0abed-7fdb-4c64-96c8-aef4e864ed8a, rgb(166, 166, 166))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ssri0BYiC,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pqmlww-container\",layoutDependency:layoutDependency,layoutId:\"wARE_wBA_-container\",children:/*#__PURE__*/_jsx(Divider,{height:\"100%\",id:\"wARE_wBA_\",layoutId:\"wARE_wBA_\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tf3ym6\",\"data-styles-preset\":\"p66ucvXZ2\",children:\"Design & Development\"})}),className:\"framer-1mm8j9u\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x8yvs9LK4\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:YIzoIYA_s,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({w06SCNb7L:{children:fmfyFfnAj,stylesPresetsClassNames:{a:\"framer-styles-preset-t8obrb\",h1:\"framer-styles-preset-o9tme2\",h2:\"framer-styles-preset-15hyfjk\",p:\"framer-styles-preset-1tf3ym6\"},text:undefined}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-i4czi.framer-f6cnok, .framer-i4czi .framer-f6cnok { display: block; }\",\".framer-i4czi.framer-k8ll6f { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 293px; }\",\".framer-i4czi .framer-zayx68, .framer-i4czi .framer-1mm8j9u { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-i4czi .framer-1pqmlww-container { flex: none; height: 1px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-i4czi.framer-k8ll6f { gap: 0px; } .framer-i4czi.framer-k8ll6f > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-i4czi.framer-k8ll6f > :first-child { margin-top: 0px; } .framer-i4czi.framer-k8ll6f > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 91\n * @framerIntrinsicWidth 293\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"w06SCNb7L\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ssri0BYiC\":\"topText\",\"YIzoIYA_s\":\"bottomText\",\"fmfyFfnAj\":\"content\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerm09s1O2Le=withCSS(Component,css,\"framer-i4czi\");export default Framerm09s1O2Le;Framerm09s1O2Le.displayName=\"Project Detail\";Framerm09s1O2Le.defaultProps={height:91,width:293};addPropertyControls(Framerm09s1O2Le,{variant:{options:[\"tOxdq2ax7\",\"w06SCNb7L\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},ssri0BYiC:{defaultValue:\"Role / services\",displayTextArea:false,title:\"Top Text\",type:ControlType.String},YIzoIYA_s:{defaultValue:\"Design & Development\",displayTextArea:false,title:\"Bottom Text\",type:ControlType.String},fmfyFfnAj:{defaultValue:\"<p>text</p>\",title:\"Content\",type:ControlType.RichText}});addFonts(Framerm09s1O2Le,[{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\"}]},...DividerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerm09s1O2Le\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"293\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"ssri0BYiC\\\":\\\"topText\\\",\\\"YIzoIYA_s\\\":\\\"bottomText\\\",\\\"fmfyFfnAj\\\":\\\"content\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w06SCNb7L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"91\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useEffect,useRef}from\"react\";/**\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n *\n * @framerDisableUnlink\n */export default function AvoidLayoutJumping({direction,style}){const isCanvas=RenderTarget.current()===RenderTarget.canvas;const ref=useRef(null);const rafId=useRef();const vertical=direction===\"vertical\"||direction===\"both\";const horizontal=direction===\"horizontal\"||direction===\"both\";useEffect(()=>{if(isCanvas)return;const parent=ref.current?.parentElement?.parentElement;if(!parent)return;const container=parent.parentElement;if(!container)return;const updateSize=()=>{const rect=parent.getBoundingClientRect();if(horizontal){container.style.width=`${rect.width}px`;}if(vertical){container.style.height=`${rect.height}px`;}rafId.current=requestAnimationFrame(updateSize);};// Start the RAF loop\nrafId.current=requestAnimationFrame(updateSize);return()=>{if(rafId.current){cancelAnimationFrame(rafId.current);}if(container){if(horizontal){container.style.width=\"\";}if(vertical){container.style.height=\"\";}}};},[direction]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...style}});}AvoidLayoutJumping.displayName=\"Layout Jump Preventer\";addPropertyControls(AvoidLayoutJumping,{direction:{type:ControlType.Enum,defaultValue:\"vertical\",options:[\"vertical\",\"horizontal\",\"both\"],optionTitles:[\"Vertical\",\"Horizontal\",\"Both\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\",// @ts-ignore\noptionIcons:[\"direction-vertical\",\"direction-horizontal\",\"direction-all\"],description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"AvoidLayoutJumping\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"auto\",\"framerSupportedLayoutHeight\":\"auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AvoidLayoutJumping_Prod.map", "// Generated by Framer (f712822)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/ems0xOEr9e0ulJzF36sQ/3NoaLn38uxT4KYWbzAUw/J23Ukkv1U.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/n3XuEkznU20GzcvSmIQm/0IvTswf8bYla5BpMaVO6/p66ucvXZ2.js\";const cycleOrder=[\"Gntg36sBX\",\"xmIw8JklP\"];const serializationHash=\"framer-PgvJ4\";const variantClassNames={Gntg36sBX:\"framer-v-15ozxa3\",xmIw8JklP:\"framer-v-1xase4c\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const 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:\"xmIw8JklP\",Open:\"Gntg36sBX\"};const getProps=({answer,click,height,id,question,width,...props})=>{return{...props,o7pvRsa_Q:answer??props.o7pvRsa_Q??\"Framer is a no-code website builder where you design and develop at the same time. Feels magical, right?\",variant:humanReadableVariantMap[props.variant]??props.variant??\"Gntg36sBX\",xodNVrpHN:question??props.xodNVrpHN??\"What is Framer?\",ZCnZ16xHS:click??props.ZCnZ16xHS};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,xodNVrpHN,o7pvRsa_Q,ZCnZ16xHS,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Gntg36sBX\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1udj1cj=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(ZCnZ16xHS){const res=await ZCnZ16xHS(...args);if(res===false)return false;}setVariant(\"xmIw8JklP\");});const onTap1xcchh9=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(ZCnZ16xHS){const res=await ZCnZ16xHS(...args);if(res===false)return false;}setVariant(\"Gntg36sBX\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-15ozxa3\",className,classNames),\"data-framer-name\":\"Open\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Gntg36sBX\",onTap:onTap1udj1cj,ref:refBinding,style:{...style},...addPropertyOverrides({xmIw8JklP:{\"data-framer-name\":\"Closed\",onTap:onTap1xcchh9}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1it2te4\",\"data-framer-name\":\"Question\",layoutDependency:layoutDependency,layoutId:\"Y32dj9SiO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1twiww0\",\"data-styles-preset\":\"J23Ukkv1U\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ccfe87cb-c517-43ae-907a-63f745b81ffb, rgb(0, 0, 0)))\"},children:\"What is Framer?\"})}),className:\"framer-1odr4dr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"R7s2AvpzS\",style:{\"--extracted-r6o4lv\":\"var(--token-ccfe87cb-c517-43ae-907a-63f745b81ffb, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:xodNVrpHN,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kzm3be\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"Eu9TNqwAG\",style:{opacity:.6,rotate:45},variants:{xmIw8JklP:{rotate:0}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-b9hogy\",layoutDependency:layoutDependency,layoutId:\"j1NyNTI8j\",style:{backgroundColor:\"var(--token-ccfe87cb-c517-43ae-907a-63f745b81ffb, rgb(0, 0, 0))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qmjdg\",layoutDependency:layoutDependency,layoutId:\"UReIP5cxb\",style:{backgroundColor:\"var(--token-ccfe87cb-c517-43ae-907a-63f745b81ffb, rgb(0, 0, 0))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5jbv0j\",\"data-framer-name\":\"Question\",layoutDependency:layoutDependency,layoutId:\"ZrnEjhVhD\",style:{opacity:1},variants:{xmIw8JklP:{opacity:0}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tf3ym6\",\"data-styles-preset\":\"p66ucvXZ2\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(109, 109, 110))\"},children:\"Framer is a no-code website builder where you design and develop at the same time. Feels magical, right?\"})}),className:\"framer-1h2imfm\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"B3DhB4Q3d\",style:{\"--extracted-r6o4lv\":\"rgb(109, 109, 110)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:o7pvRsa_Q,verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PgvJ4.framer-1ntzkju, .framer-PgvJ4 .framer-1ntzkju { display: block; }\",\".framer-PgvJ4.framer-15ozxa3 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 560px; }\",\".framer-PgvJ4 .framer-1it2te4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 0px 12px 0px; position: relative; width: 100%; }\",\".framer-PgvJ4 .framer-1odr4dr { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-PgvJ4 .framer-1kzm3be { flex: none; height: 16px; overflow: hidden; position: relative; width: 16px; z-index: 1; }\",\".framer-PgvJ4 .framer-b9hogy { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-PgvJ4 .framer-qmjdg { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-PgvJ4 .framer-5jbv0j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PgvJ4 .framer-1h2imfm { -webkit-user-select: none; flex: 1 0 0px; height: auto; max-width: 400px; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PgvJ4.framer-15ozxa3, .framer-PgvJ4 .framer-1it2te4, .framer-PgvJ4 .framer-5jbv0j { gap: 0px; } .framer-PgvJ4.framer-15ozxa3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PgvJ4.framer-15ozxa3 > :first-child { margin-top: 0px; } .framer-PgvJ4.framer-15ozxa3 > :last-child { margin-bottom: 0px; } .framer-PgvJ4 .framer-1it2te4 > *, .framer-PgvJ4 .framer-5jbv0j > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PgvJ4 .framer-1it2te4 > :first-child, .framer-PgvJ4 .framer-5jbv0j > :first-child { margin-left: 0px; } .framer-PgvJ4 .framer-1it2te4 > :last-child, .framer-PgvJ4 .framer-5jbv0j > :last-child { margin-right: 0px; } }\",\".framer-PgvJ4.framer-v-1xase4c.framer-15ozxa3 { height: 49px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 144\n * @framerIntrinsicWidth 560\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xmIw8JklP\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"xodNVrpHN\":\"question\",\"o7pvRsa_Q\":\"answer\",\"ZCnZ16xHS\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerDCLIKUpS4=withCSS(Component,css,\"framer-PgvJ4\");export default FramerDCLIKUpS4;FramerDCLIKUpS4.displayName=\"Accordion 2\";FramerDCLIKUpS4.defaultProps={height:144,width:560};addPropertyControls(FramerDCLIKUpS4,{variant:{options:[\"Gntg36sBX\",\"xmIw8JklP\"],optionTitles:[\"Open\",\"Closed\"],title:\"Variant\",type:ControlType.Enum},xodNVrpHN:{defaultValue:\"What is Framer?\",displayTextArea:false,title:\"Question\",type:ControlType.String},o7pvRsa_Q:{defaultValue:\"Framer is a no-code website builder where you design and develop at the same time. Feels magical, right?\",displayTextArea:false,title:\"Answer\",type:ControlType.String},ZCnZ16xHS:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerDCLIKUpS4,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDCLIKUpS4\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"144\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xmIw8JklP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"560\",\"framerVariables\":\"{\\\"xodNVrpHN\\\":\\\"question\\\",\\\"o7pvRsa_Q\\\":\\\"answer\\\",\\\"ZCnZ16xHS\\\":\\\"click\\\"}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DCLIKUpS4.map", "// Generated by Framer (f712822)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import LayoutJumpPreventer from\"https://framerusercontent.com/modules/h8ioHyt4BUxuvVCE1Q10/aTM6mEMGlM19JjX8exDe/AvoidLayoutJumping_Prod.js\";import Accordion2 from\"https://framerusercontent.com/modules/m9mdsBy8am45tkwJsQcr/NP5VIdlkGTBIGfFYKt2u/DCLIKUpS4.js\";const LayoutJumpPreventerFonts=getFonts(LayoutJumpPreventer);const Accordion2Fonts=getFonts(Accordion2);const cycleOrder=[\"eAWXAM8Ec\",\"FburTXVPT\",\"gFiCQK7TK\",\"lFxlaF5hs\",\"t0JZpXvlN\",\"wK_w09Rvg\",\"MJyt6FpcB\",\"sp3euy9RH\",\"OD9e7XDih\"];const serializationHash=\"framer-hBDcm\";const variantClassNames={eAWXAM8Ec:\"framer-v-1twby76\",FburTXVPT:\"framer-v-1llzk81\",gFiCQK7TK:\"framer-v-i7hzsu\",lFxlaF5hs:\"framer-v-gfnbog\",MJyt6FpcB:\"framer-v-1gf5l98\",OD9e7XDih:\"framer-v-1a1prov\",sp3euy9RH:\"framer-v-69kqwk\",t0JZpXvlN:\"framer-v-f13ujq\",wK_w09Rvg:\"framer-v-bw5r1z\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-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={\"1\":\"FburTXVPT\",\"2\":\"gFiCQK7TK\",\"3\":\"lFxlaF5hs\",\"4\":\"t0JZpXvlN\",\"5\":\"wK_w09Rvg\",\"6\":\"MJyt6FpcB\",\"7\":\"sp3euy9RH\",\"8\":\"OD9e7XDih\",Default:\"eAWXAM8Ec\"};const getProps=({click,height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"eAWXAM8Ec\",vHFfBFr0q:click??props.vHFfBFr0q};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,vHFfBFr0q,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"eAWXAM8Ec\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const ZCnZ16xHS1jzd8d2=activeVariantCallback(async(...args)=>{if(vHFfBFr0q){const res=await vHFfBFr0q(...args);if(res===false)return false;}setVariant(\"FburTXVPT\");});const ZCnZ16xHSs1xp1y=activeVariantCallback(async(...args)=>{if(vHFfBFr0q){const res=await vHFfBFr0q(...args);if(res===false)return false;}setVariant(\"eAWXAM8Ec\");});const ZCnZ16xHSx3aobp=activeVariantCallback(async(...args)=>{if(vHFfBFr0q){const res=await vHFfBFr0q(...args);if(res===false)return false;}setVariant(\"gFiCQK7TK\");});const ZCnZ16xHS1l1kos2=activeVariantCallback(async(...args)=>{if(vHFfBFr0q){const res=await vHFfBFr0q(...args);if(res===false)return false;}setVariant(\"lFxlaF5hs\");});const ZCnZ16xHSvqrtyy=activeVariantCallback(async(...args)=>{if(vHFfBFr0q){const res=await vHFfBFr0q(...args);if(res===false)return false;}setVariant(\"t0JZpXvlN\");});const ZCnZ16xHS1dbgi7l=activeVariantCallback(async(...args)=>{if(vHFfBFr0q){const res=await vHFfBFr0q(...args);if(res===false)return false;}setVariant(\"wK_w09Rvg\");});const ZCnZ16xHSlmvugz=activeVariantCallback(async(...args)=>{if(vHFfBFr0q){const res=await vHFfBFr0q(...args);if(res===false)return false;}setVariant(\"MJyt6FpcB\");});const ZCnZ16xHS6vaz5f=activeVariantCallback(async(...args)=>{if(vHFfBFr0q){const res=await vHFfBFr0q(...args);if(res===false)return false;}setVariant(\"sp3euy9RH\");});const ZCnZ16xHShl907b=activeVariantCallback(async(...args)=>{if(vHFfBFr0q){const res=await vHFfBFr0q(...args);if(res===false)return false;}setVariant(\"OD9e7XDih\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1twby76\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"eAWXAM8Ec\",ref:refBinding,style:{...style},...addPropertyOverrides({FburTXVPT:{\"data-framer-name\":\"1\"},gFiCQK7TK:{\"data-framer-name\":\"2\"},lFxlaF5hs:{\"data-framer-name\":\"3\"},MJyt6FpcB:{\"data-framer-name\":\"6\"},OD9e7XDih:{\"data-framer-name\":\"8\"},sp3euy9RH:{\"data-framer-name\":\"7\"},t0JZpXvlN:{\"data-framer-name\":\"4\"},wK_w09Rvg:{\"data-framer-name\":\"5\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wqm8ia-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"fijEzrWU3-container\",nodeId:\"fijEzrWU3\",rendersWithMotion:true,scopeId:\"TliclEh3s\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(LayoutJumpPreventer,{direction:\"vertical\",height:\"100%\",id:\"fijEzrWU3\",layoutId:\"fijEzrWU3\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:144,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||590)-0-1065)/2+0+0),...addPropertyOverrides({FburTXVPT:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||761)-0-1065)/2+0+0)},gFiCQK7TK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||837)-0-1065)/2+0+0)},lFxlaF5hs:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||761)-0-1065)/2+0+0)},MJyt6FpcB:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||680)-0-1110)/2+0+0)},OD9e7XDih:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||706)-0-1155)/2+0+0)},sp3euy9RH:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||736)-0-1065)/2+0+0)},t0JZpXvlN:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||685)-0-1065)/2+0+0)},wK_w09Rvg:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||710)-0-1115)/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1th40oc-container\",layoutDependency:layoutDependency,layoutId:\"OraFoSCCj-container\",nodeId:\"OraFoSCCj\",rendersWithMotion:true,scopeId:\"TliclEh3s\",children:/*#__PURE__*/_jsx(Accordion2,{height:\"100%\",id:\"OraFoSCCj\",layoutId:\"OraFoSCCj\",o7pvRsa_Q:\"Life\u2026 is a minimalist widget that helps you stay mindful of your time by visualizing your remaining lifetime as a clean, customizable dot grid. Whether you prefer to see your time in hours, weeks, or breaths \u2014 it\u2019s a visual reminder to live intentionally.\",style:{width:\"100%\"},variant:\"xmIw8JklP\",width:\"100%\",xodNVrpHN:\"What is Life\u2026?\",ZCnZ16xHS:ZCnZ16xHS1jzd8d2,...addPropertyOverrides({FburTXVPT:{variant:\"Gntg36sBX\",ZCnZ16xHS:ZCnZ16xHSs1xp1y}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:144,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||590)-0-1065)/2+144+14),...addPropertyOverrides({FburTXVPT:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||761)-0-1065)/2+144+14)},gFiCQK7TK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||837)-0-1065)/2+144+14)},lFxlaF5hs:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||761)-0-1065)/2+144+14)},MJyt6FpcB:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||680)-0-1110)/2+144+14)},OD9e7XDih:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||706)-0-1155)/2+144+14)},sp3euy9RH:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||736)-0-1065)/2+144+14)},t0JZpXvlN:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||685)-0-1065)/2+144+14)},wK_w09Rvg:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||710)-0-1115)/2+144+14)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ga2vj5-container\",layoutDependency:layoutDependency,layoutId:\"AoZM2k2nX-container\",nodeId:\"AoZM2k2nX\",rendersWithMotion:true,scopeId:\"TliclEh3s\",children:/*#__PURE__*/_jsx(Accordion2,{height:\"100%\",id:\"AoZM2k2nX\",layoutId:\"AoZM2k2nX\",o7pvRsa_Q:\"Once you enter your current age, the widget calculates your estimated remaining time based on average life expectancy. You can display this time in: \t\u2022\tHours \t\u2022\tDays \t\u2022\tWeeks \t\u2022\tBreaths (for deep thinkers \uD83D\uDE09)  Each dot represents a unit of time and gradually fills up your screen \u2014 turning your iPhone into a subtle yet powerful reflection tool.\",style:{width:\"100%\"},variant:\"xmIw8JklP\",width:\"100%\",xodNVrpHN:\"How does it work?\",ZCnZ16xHS:ZCnZ16xHSx3aobp,...addPropertyOverrides({gFiCQK7TK:{variant:\"Gntg36sBX\",ZCnZ16xHS:ZCnZ16xHSs1xp1y}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:144,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||590)-0-1065)/2+288+28),...addPropertyOverrides({FburTXVPT:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||761)-0-1065)/2+288+28)},gFiCQK7TK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||837)-0-1065)/2+288+28)},lFxlaF5hs:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||761)-0-1065)/2+288+28)},MJyt6FpcB:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||680)-0-1110)/2+288+28)},OD9e7XDih:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||706)-0-1155)/2+288+28)},sp3euy9RH:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||736)-0-1065)/2+288+28)},t0JZpXvlN:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||685)-0-1065)/2+288+28)},wK_w09Rvg:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||710)-0-1115)/2+288+28)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-l1gkjs-container\",layoutDependency:layoutDependency,layoutId:\"jRVe9uR66-container\",nodeId:\"jRVe9uR66\",rendersWithMotion:true,scopeId:\"TliclEh3s\",children:/*#__PURE__*/_jsx(Accordion2,{height:\"100%\",id:\"jRVe9uR66\",layoutId:\"jRVe9uR66\",o7pvRsa_Q:\"You can adjust: \t\u2022\tYour current age \t\u2022\tTime unit (hours, weeks, etc.) \t\u2022\tDot size and spacing \t\u2022\tDot color and background \t\u2022\tWidget size (small, medium)  More customization features will follow in future updates.\",style:{width:\"100%\"},variant:\"xmIw8JklP\",width:\"100%\",xodNVrpHN:\"What can I customize?\",ZCnZ16xHS:ZCnZ16xHS1l1kos2,...addPropertyOverrides({lFxlaF5hs:{variant:\"Gntg36sBX\",ZCnZ16xHS:ZCnZ16xHSs1xp1y}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:144,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||590)-0-1065)/2+432+42),...addPropertyOverrides({FburTXVPT:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||761)-0-1065)/2+432+42)},gFiCQK7TK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||837)-0-1065)/2+432+42)},lFxlaF5hs:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||761)-0-1065)/2+432+42)},MJyt6FpcB:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||680)-0-1110)/2+432+42)},OD9e7XDih:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||706)-0-1155)/2+432+42)},sp3euy9RH:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||736)-0-1065)/2+432+42)},t0JZpXvlN:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||685)-0-1065)/2+432+42)},wK_w09Rvg:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||710)-0-1115)/2+432+42)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1j5fo2r-container\",layoutDependency:layoutDependency,layoutId:\"RKoSoG_yh-container\",nodeId:\"RKoSoG_yh\",rendersWithMotion:true,scopeId:\"TliclEh3s\",children:/*#__PURE__*/_jsx(Accordion2,{height:\"100%\",id:\"RKoSoG_yh\",layoutId:\"RKoSoG_yh\",o7pvRsa_Q:\"Nope. Life\u2026 is 100% private. No login, no registration, no cloud syncing. Everything happens on your device.\",style:{width:\"100%\"},variant:\"xmIw8JklP\",width:\"100%\",xodNVrpHN:\"Do I need an account?\",ZCnZ16xHS:ZCnZ16xHSvqrtyy,...addPropertyOverrides({t0JZpXvlN:{variant:\"Gntg36sBX\",ZCnZ16xHS:ZCnZ16xHSs1xp1y}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:94,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||590)-0-1065)/2+576+56),...addPropertyOverrides({FburTXVPT:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||761)-0-1065)/2+576+56)},gFiCQK7TK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||837)-0-1065)/2+576+56)},lFxlaF5hs:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||761)-0-1065)/2+576+56)},MJyt6FpcB:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||680)-0-1110)/2+576+56)},OD9e7XDih:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||706)-0-1155)/2+576+56)},sp3euy9RH:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||736)-0-1065)/2+576+56)},t0JZpXvlN:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||685)-0-1065)/2+576+56)},wK_w09Rvg:{height:144,y:(componentViewport?.y||0)+0+(((componentViewport?.height||710)-0-1115)/2+576+56)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1n9fpca-container\",layoutDependency:layoutDependency,layoutId:\"fT_cO7A5b-container\",nodeId:\"fT_cO7A5b\",rendersWithMotion:true,scopeId:\"TliclEh3s\",children:/*#__PURE__*/_jsx(Accordion2,{height:\"100%\",id:\"fT_cO7A5b\",layoutId:\"fT_cO7A5b\",o7pvRsa_Q:\"Absolutely not. We do not collect, track, or share any personal data. There is no analytics tracking or third-party data collection in Life\u2026. You can find our full Privacy Policy here.\",style:{height:\"100%\",width:\"100%\"},variant:\"xmIw8JklP\",width:\"100%\",xodNVrpHN:\"Does the app collect personal data?\",ZCnZ16xHS:ZCnZ16xHS1dbgi7l,...addPropertyOverrides({wK_w09Rvg:{style:{width:\"100%\"},variant:\"Gntg36sBX\",ZCnZ16xHS:ZCnZ16xHSs1xp1y}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:99,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||590)-0-1065)/2+670+70),...addPropertyOverrides({FburTXVPT:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||761)-0-1065)/2+670+70)},gFiCQK7TK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||837)-0-1065)/2+670+70)},lFxlaF5hs:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||761)-0-1065)/2+670+70)},MJyt6FpcB:{height:144,y:(componentViewport?.y||0)+0+(((componentViewport?.height||680)-0-1110)/2+670+70)},OD9e7XDih:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||706)-0-1155)/2+670+70)},sp3euy9RH:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||736)-0-1065)/2+670+70)},t0JZpXvlN:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||685)-0-1065)/2+670+70)},wK_w09Rvg:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||710)-0-1115)/2+720+70)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sjnpry-container\",layoutDependency:layoutDependency,layoutId:\"WgFY1MYf9-container\",nodeId:\"WgFY1MYf9\",rendersWithMotion:true,scopeId:\"TliclEh3s\",children:/*#__PURE__*/_jsx(Accordion2,{height:\"100%\",id:\"WgFY1MYf9\",layoutId:\"WgFY1MYf9\",o7pvRsa_Q:\"We\u2019d love to hear from you! Please email us at l.scheidel@msi-partners.de and we\u2019ll get back to you as soon as possible.\",style:{height:\"100%\",width:\"100%\"},variant:\"xmIw8JklP\",width:\"100%\",xodNVrpHN:\"I have feedback or found a bug. What should I do?\",ZCnZ16xHS:ZCnZ16xHSlmvugz,...addPropertyOverrides({MJyt6FpcB:{style:{width:\"100%\"},variant:\"Gntg36sBX\",ZCnZ16xHS:ZCnZ16xHSs1xp1y}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:144,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||590)-0-1065)/2+769+84),...addPropertyOverrides({FburTXVPT:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||761)-0-1065)/2+769+84)},gFiCQK7TK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||837)-0-1065)/2+769+84)},lFxlaF5hs:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||761)-0-1065)/2+769+84)},MJyt6FpcB:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||680)-0-1110)/2+814+84)},OD9e7XDih:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||706)-0-1155)/2+769+84)},sp3euy9RH:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||736)-0-1065)/2+769+84)},t0JZpXvlN:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||685)-0-1065)/2+769+84)},wK_w09Rvg:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||710)-0-1115)/2+819+84)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fs7uf-container\",layoutDependency:layoutDependency,layoutId:\"fBpHNP81E-container\",nodeId:\"fBpHNP81E\",rendersWithMotion:true,scopeId:\"TliclEh3s\",children:/*#__PURE__*/_jsx(Accordion2,{height:\"100%\",id:\"fBpHNP81E\",layoutId:\"fBpHNP81E\",o7pvRsa_Q:\"Life\u2026 was created by Leo S., a designer passionate about simplicity, focus, and intentional living. This is a personal project \u2014 no big team, no pressure. Just a helpful tool to stay present.\",style:{width:\"100%\"},variant:\"xmIw8JklP\",width:\"100%\",xodNVrpHN:\"Who created this app?\",ZCnZ16xHS:ZCnZ16xHS6vaz5f,...addPropertyOverrides({sp3euy9RH:{variant:\"Gntg36sBX\",ZCnZ16xHS:ZCnZ16xHSs1xp1y}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||590)-0-1065)/2+913+98),...addPropertyOverrides({FburTXVPT:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||761)-0-1065)/2+913+98)},gFiCQK7TK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||837)-0-1065)/2+913+98)},lFxlaF5hs:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||761)-0-1065)/2+913+98)},MJyt6FpcB:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||680)-0-1110)/2+958+98)},OD9e7XDih:{height:144,y:(componentViewport?.y||0)+0+(((componentViewport?.height||706)-0-1155)/2+913+98)},sp3euy9RH:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||736)-0-1065)/2+913+98)},t0JZpXvlN:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||685)-0-1065)/2+913+98)},wK_w09Rvg:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||710)-0-1115)/2+963+98)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1exh5jx-container\",layoutDependency:layoutDependency,layoutId:\"Ea9gQHQ3s-container\",nodeId:\"Ea9gQHQ3s\",rendersWithMotion:true,scopeId:\"TliclEh3s\",children:/*#__PURE__*/_jsx(Accordion2,{height:\"100%\",id:\"Ea9gQHQ3s\",layoutId:\"Ea9gQHQ3s\",o7pvRsa_Q:\"Yes, please! We\u2019re constantly working to improve the experience. Email us at l.scheidel@msi-partners.de \u2014 your input is always welcome.\",style:{height:\"100%\",width:\"100%\"},variant:\"xmIw8JklP\",width:\"100%\",xodNVrpHN:\"Can I suggest a feature?\",ZCnZ16xHS:ZCnZ16xHShl907b,...addPropertyOverrides({OD9e7XDih:{style:{width:\"100%\"},variant:\"Gntg36sBX\",ZCnZ16xHS:ZCnZ16xHSs1xp1y}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hBDcm.framer-g1udlw, .framer-hBDcm .framer-g1udlw { display: block; }\",\".framer-hBDcm.framer-1twby76 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 452px; }\",\".framer-hBDcm .framer-wqm8ia-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; width: auto; z-index: 1; }\",\".framer-hBDcm .framer-1th40oc-container, .framer-hBDcm .framer-ga2vj5-container, .framer-hBDcm .framer-l1gkjs-container, .framer-hBDcm .framer-1j5fo2r-container, .framer-hBDcm .framer-fs7uf-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-hBDcm .framer-1n9fpca-container { flex: none; height: 94px; position: relative; width: 100%; }\",\".framer-hBDcm .framer-sjnpry-container { flex: none; height: 99px; position: relative; width: 100%; }\",\".framer-hBDcm .framer-1exh5jx-container { flex: none; height: 54px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hBDcm.framer-1twby76 { gap: 0px; } .framer-hBDcm.framer-1twby76 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-hBDcm.framer-1twby76 > :first-child { margin-top: 0px; } .framer-hBDcm.framer-1twby76 > :last-child { margin-bottom: 0px; } }\",\".framer-hBDcm.framer-v-bw5r1z .framer-1n9fpca-container, .framer-hBDcm.framer-v-1gf5l98 .framer-sjnpry-container, .framer-hBDcm.framer-v-1a1prov .framer-1exh5jx-container { height: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 590\n * @framerIntrinsicWidth 452\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"FburTXVPT\":{\"layout\":[\"fixed\",\"auto\"]},\"gFiCQK7TK\":{\"layout\":[\"fixed\",\"auto\"]},\"lFxlaF5hs\":{\"layout\":[\"fixed\",\"auto\"]},\"t0JZpXvlN\":{\"layout\":[\"fixed\",\"auto\"]},\"wK_w09Rvg\":{\"layout\":[\"fixed\",\"auto\"]},\"MJyt6FpcB\":{\"layout\":[\"fixed\",\"auto\"]},\"sp3euy9RH\":{\"layout\":[\"fixed\",\"auto\"]},\"OD9e7XDih\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"vHFfBFr0q\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerTliclEh3s=withCSS(Component,css,\"framer-hBDcm\");export default FramerTliclEh3s;FramerTliclEh3s.displayName=\"Accordions 2\";FramerTliclEh3s.defaultProps={height:590,width:452};addPropertyControls(FramerTliclEh3s,{variant:{options:[\"eAWXAM8Ec\",\"FburTXVPT\",\"gFiCQK7TK\",\"lFxlaF5hs\",\"t0JZpXvlN\",\"wK_w09Rvg\",\"MJyt6FpcB\",\"sp3euy9RH\",\"OD9e7XDih\"],optionTitles:[\"Default\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\"],title:\"Variant\",type:ControlType.Enum},vHFfBFr0q:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerTliclEh3s,[{explicitInter:true,fonts:[]},...LayoutJumpPreventerFonts,...Accordion2Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTliclEh3s\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"452\",\"framerIntrinsicHeight\":\"590\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"vHFfBFr0q\\\":\\\"click\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FburTXVPT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gFiCQK7TK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lFxlaF5hs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"t0JZpXvlN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wK_w09Rvg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MJyt6FpcB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sp3euy9RH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OD9e7XDih\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useRef}from\"react\";import{addPropertyControls,ControlType}from\"framer\";export function BeforeAfterSlider({beforeImage,afterImage,width,height}){const[position,setPosition]=useState(68);const sliderRef=useRef(null);const handleDrag=e=>{const rect=sliderRef.current.getBoundingClientRect();const offsetX=e.clientX-rect.left;const newPos=offsetX/rect.width*100;setPosition(Math.max(0,Math.min(100,newPos)));};return /*#__PURE__*/_jsxs(\"div\",{ref:sliderRef,style:{position:\"relative\",width:\"100%\",height:\"100%\",overflow:\"hidden\",// Keine abgerundeten Ecken:\n// borderRadius: \"12px\",\ncursor:\"ew-resize\",userSelect:\"none\"},onMouseMove:e=>e.buttons===1&&handleDrag(e),onMouseDown:handleDrag,children:[/*#__PURE__*/_jsx(\"img\",{src:beforeImage,alt:\"Before\",style:{position:\"absolute\",top:0,left:0,width:\"100%\",height:\"100%\",objectFit:\"cover\"}}),/*#__PURE__*/_jsx(\"img\",{src:afterImage,alt:\"After\",style:{position:\"absolute\",top:0,left:0,width:\"100%\",height:\"100%\",objectFit:\"cover\",clipPath:`inset(0 ${100-position}% 0 0)`}}),/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",top:0,left:`${position}%`,width:\"4px\",height:\"100%\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",transform:\"translateX(-50%)\"}}),/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",top:\"50%\",left:`${position}%`,transform:\"translate(-50%, -50%)\",width:\"36px\",height:\"36px\",backgroundColor:\"#fff\",borderRadius:\"50%\",boxShadow:\"0 2px 8px rgba(0,0,0,0.3)\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",cursor:\"grab\"},children:/*#__PURE__*/_jsx(\"span\",{style:{fontSize:\"24px\",fontWeight:\"bold\",color:\"#666\",lineHeight:1,transform:\"translateY(-1px)\"},children:\"\u2194\"})})]});}BeforeAfterSlider.defaultProps={beforeImage:\"https://via.placeholder.com/600x300?text=Before\",afterImage:\"https://via.placeholder.com/600x300?text=After\"};addPropertyControls(BeforeAfterSlider,{beforeImage:{type:ControlType.Image,title:\"Before Image\"},afterImage:{type:ControlType.Image,title:\"After Image\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"BeforeAfterSlider\":{\"type\":\"reactComponent\",\"name\":\"BeforeAfterSlider\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Before_and_after.map", "// Generated by Framer (b2780b5)\nexport const props={FM2EdmpHG:{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,isMixedBorderRadius:false,isRed:true,topLeftRadius:0,topRightRadius:0},K8fN7sEeX:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,darkTheme:\"framerDark\",font:{fontFamily:'\"Fragment Mono\", monospace',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},isMixedBorderRadius:false,lightTheme:\"framerLight\",padding:30,paddingBottom:30,paddingLeft:30,paddingPerSide:false,paddingRight:30,paddingTop:30,theme:\"framerDark\",themeMode:\"Static\",topLeftRadius:15,topRightRadius:15}};export const fonts={K8fN7sEeX:[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}]};\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"props\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f712822)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;SF Compact Display Bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"SF Compact Display Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/FyrQtAztWSYPor8kJOO9IV1j4.otf\"}]}];export const css=['.framer-JQCLJ .framer-styles-preset-14m37ck:not(.rich-text-wrapper), .framer-JQCLJ .framer-styles-preset-14m37ck.rich-text-wrapper h3 { --framer-font-family: \"SF Compact Display Bold\", \"SF Compact Display Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.02em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-JQCLJ\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f712822)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,FormBooleanInput,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouter,withCSS,withFX}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{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import{Video as Video1}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import Embed1 from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/qXyG1UgqGGx5DS4G9abM/Smooth_Scroll.js\";import NextProjectItem from\"#framer/local/canvasComponent/Cp1tWBHJ6/Cp1tWBHJ6.js\";import Cursor from\"#framer/local/canvasComponent/eeaUg3cDj/eeaUg3cDj.js\";import MenuTrigger2 from\"#framer/local/canvasComponent/g99qDBne2/g99qDBne2.js\";import Logo from\"#framer/local/canvasComponent/IINSHdzLF/IINSHdzLF.js\";import MenuContainer2 from\"#framer/local/canvasComponent/KuAavLe_0/KuAavLe_0.js\";import ProjectDetail from\"#framer/local/canvasComponent/m09s1O2Le/m09s1O2Le.js\";import Accordions2 from\"#framer/local/canvasComponent/TliclEh3s/TliclEh3s.js\";import TextLink from\"#framer/local/canvasComponent/TMbURzCsz/TMbURzCsz.js\";import Button2 from\"#framer/local/canvasComponent/VMDAFWcTd/VMDAFWcTd.js\";import{BeforeAfterSlider}from\"#framer/local/codeFile/QMsUW_e/Before_and_after.js\";import Work,{enumToDisplayNameFunctions}from\"#framer/local/collection/ywx541h2d/ywx541h2d.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle3 from\"#framer/local/css/DwdExbv9J/DwdExbv9J.js\";import*as sharedStyle5 from\"#framer/local/css/kp2RiqYIg/kp2RiqYIg.js\";import*as sharedStyle from\"#framer/local/css/MzCgcxP7y/MzCgcxP7y.js\";import*as sharedStyle4 from\"#framer/local/css/Ol0IRhcEE/Ol0IRhcEE.js\";import*as sharedStyle1 from\"#framer/local/css/p66ucvXZ2/p66ucvXZ2.js\";import*as sharedStyle2 from\"#framer/local/css/qodemAsk4/qodemAsk4.js\";import metadataProvider from\"#framer/local/webPageMetadata/zVoRr5luo/zVoRr5luo.js\";const LogoFonts=getFonts(Logo);const ProjectDetailFonts=getFonts(ProjectDetail);const MotionSectionWithFX=withFX(motion.section);const TextLinkFonts=getFonts(TextLink);const VideoFonts=getFonts(Video);const BeforeAfterSliderFonts=getFonts(BeforeAfterSlider);const Video1Fonts=getFonts(Video1);const EmbedFonts=getFonts(Embed);const Embed1Fonts=getFonts(Embed1);const Button2Fonts=getFonts(Button2);const Accordions2Fonts=getFonts(Accordions2);const NextProjectItemFonts=getFonts(NextProjectItem);const SmoothScrollFonts=getFonts(SmoothScroll);const MenuTrigger2Fonts=getFonts(MenuTrigger2);const MenuContainer2Fonts=getFonts(MenuContainer2);const CursorFonts=getFonts(Cursor);const breakpoints={gZOEGklw_:\"(max-width: 809px)\",nyfm2y274:\"(min-width: 810px) and (max-width: 1199px)\",OvIfs_B32:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-o6Jou\";const variantClassNames={gZOEGklw_:\"framer-v-1563gjf\",nyfm2y274:\"framer-v-180dxe3\",OvIfs_B32:\"framer-v-5aonfh\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition1={bounce:0,delay:0,duration:.8,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:500,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:500,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"OvIfs_B32\",Phone:\"gZOEGklw_\",Tablet:\"nyfm2y274\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"OvIfs_B32\"};};const cursor={component:Cursor,variant:\"ZLyxTgQ5Q\"};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 currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"zVoRr5luo\",data:Work,type:\"Collection\"},select:[{collection:\"zVoRr5luo\",name:\"Jww2Un3Z2\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"YiZ6kOzbH\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"gu_5Hctsb\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"vI7Y3SKaW\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"Os0KDO4WO\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"JixfLd1Bb\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"bJZczwUbi\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"bngrwGHbj\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"WcG0wtYvp\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"v3IadHZ7q\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"L4xGrKTqD\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"pPvg5SNev\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"rbtipB7u4\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"AMMXRHkHU\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"f8qSWwBuV\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"oiPxiGZYR\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"sMKslFuvd\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"RKaGyYPAh\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"F_YvuHfTJ\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"LaSv9lpTu\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"wzvy7Kvwr\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"OCLiQtKaA\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"E2JUMZuU3\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"l8byFb8Z2\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"CEf3Iy9wD\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"LWji77t2p\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"or7nEvSqI\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"zVoRr5luo\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,Jww2Un3Z2=getFromCurrentRouteData(\"Jww2Un3Z2\")??\"\",gu_5Hctsb=getFromCurrentRouteData(\"gu_5Hctsb\")??\"\",bJZczwUbi=getFromCurrentRouteData(\"bJZczwUbi\")??\"\",bngrwGHbj=getFromCurrentRouteData(\"bngrwGHbj\"),vI7Y3SKaW=getFromCurrentRouteData(\"vI7Y3SKaW\")??\"\",Os0KDO4WO=getFromCurrentRouteData(\"Os0KDO4WO\")??\"\",JixfLd1Bb=getFromCurrentRouteData(\"JixfLd1Bb\"),WcG0wtYvp=getFromCurrentRouteData(\"WcG0wtYvp\"),LaSv9lpTu=getFromCurrentRouteData(\"LaSv9lpTu\")??true,l8byFb8Z2=getFromCurrentRouteData(\"l8byFb8Z2\")??true,or7nEvSqI=getFromCurrentRouteData(\"or7nEvSqI\")??true,LWji77t2p=getFromCurrentRouteData(\"LWji77t2p\")??true,CEf3Iy9wD=getFromCurrentRouteData(\"CEf3Iy9wD\")??true,pPvg5SNev=getFromCurrentRouteData(\"pPvg5SNev\")??true,v3IadHZ7q=getFromCurrentRouteData(\"v3IadHZ7q\"),rbtipB7u4=getFromCurrentRouteData(\"rbtipB7u4\")??true,wzvy7Kvwr=getFromCurrentRouteData(\"wzvy7Kvwr\"),f8qSWwBuV=getFromCurrentRouteData(\"f8qSWwBuV\")??true,AMMXRHkHU=getFromCurrentRouteData(\"AMMXRHkHU\")??true,L4xGrKTqD=getFromCurrentRouteData(\"L4xGrKTqD\")??true,F_YvuHfTJ=getFromCurrentRouteData(\"F_YvuHfTJ\")??true,sMKslFuvd=getFromCurrentRouteData(\"sMKslFuvd\")??true,OCLiQtKaA=getFromCurrentRouteData(\"OCLiQtKaA\"),oiPxiGZYR=getFromCurrentRouteData(\"oiPxiGZYR\")??true,E2JUMZuU3=getFromCurrentRouteData(\"E2JUMZuU3\"),RKaGyYPAh=getFromCurrentRouteData(\"RKaGyYPAh\")??true,fsRrg1kQbWXpDLYGOt,Jww2Un3Z2WXpDLYGOt,bngrwGHbjWXpDLYGOt,idWXpDLYGOt,YiZ6kOzbH=getFromCurrentRouteData(\"YiZ6kOzbH\")??0,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,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);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const VFQz_3t2P3bnx0g=({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 visible=isSet(gu_5Hctsb);const visible1=isSet(bJZczwUbi);const visible2=isSet(bngrwGHbj);const visible3=isSet(vI7Y3SKaW);const visible4=isSet(Os0KDO4WO);const router=useRouter();const visible5=isSet(WcG0wtYvp);const visible6=isSet(v3IadHZ7q);const isDisplayed=value=>{if(!isBrowser())return true;if(baseVariant===\"gZOEGklw_\")return false;return value;};const visible7=isSet(wzvy7Kvwr);const visible8=isSet(OCLiQtKaA);const visible9=isSet(E2JUMZuU3);const isDisplayed1=value=>{if(!isBrowser())return true;if(baseVariant===\"gZOEGklw_\")return value;return false;};useCustomCursors({\"1ciim1j\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"OvIfs_B32\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-25453f9e-f224-4ce7-8031-a0c47a3c7692, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-5aonfh\",className),\"data-framer-cursor\":\"1ciim1j\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,width:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,y:(componentViewport?.y||0)+45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nv6u8t-container\",nodeId:\"nfXHUWLaS\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"nfXHUWLaS\",layoutId:\"nfXHUWLaS\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-176z2t4\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:110,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qszsl0\",\"data-framer-name\":\"Section Hero\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lfalze\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-o9tme2\",\"data-styles-preset\":\"MzCgcxP7y\",children:\"Content\"})}),className:\"framer-jy2ctz\",fonts:[\"Inter\"],text:Jww2Un3Z2,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9nrmo\",children:[visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZOEGklw_:{width:`min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9)`},nyfm2y274:{width:`min(max((min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9) + 40px) / 0, 1px), min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9) * 0.4)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:91,width:`min(max((min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.8) + 40px) / 0, 1px), min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.8) * 0.4)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o3fkgf-container\",\"data-framer-name\":\"Services\",name:\"Services\",nodeId:\"yxfIltgVT\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(ProjectDetail,{fmfyFfnAj:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"text\"})}),height:\"100%\",id:\"yxfIltgVT\",layoutId:\"yxfIltgVT\",name:\"Services\",ssri0BYiC:\"Focus Areas\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"tOxdq2ax7\",width:\"100%\",YIzoIYA_s:gu_5Hctsb})})})}),visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZOEGklw_:{width:`min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9)`},nyfm2y274:{width:`min(max((min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9) + 40px) / 0, 1px), min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9) * 0.4)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:91,width:`min(max((min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.8) + 40px) / 0, 1px), min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.8) * 0.4)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2nvid9-container\",\"data-framer-name\":\"Year\",name:\"Year\",nodeId:\"Em9_0ClhB\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(ProjectDetail,{fmfyFfnAj:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"text\"})}),height:\"100%\",id:\"Em9_0ClhB\",layoutId:\"Em9_0ClhB\",name:\"Year\",ssri0BYiC:\"Year\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"tOxdq2ax7\",width:\"100%\",YIzoIYA_s:bJZczwUbi})})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-15vdjf6\",\"data-framer-name\":\"Section Gallery\",children:[visible2&&/*#__PURE__*/_jsx(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",sizes:`min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9)`,...toResponsiveImage(bngrwGHbj),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-10q6z49\",\"data-framer-name\":\"Featured Image\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-105aqit\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-stwqff\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tf3ym6\",\"data-styles-preset\":\"p66ucvXZ2\",style:{\"--framer-text-color\":\"var(--token-60a0abed-7fdb-4c64-96c8-aef4e864ed8a, rgb(166, 166, 166))\"},children:\"Details\"})}),className:\"framer-juzxfg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13q0skb\",children:[visible3&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"FM2EdmpHG\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"K8fN7sEeX\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:vI7Y3SKaW,className:\"framer-1rrsmx2\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-t8obrb\",blockquote:\"framer-styles-preset-1shvun4\",h1:\"framer-styles-preset-o9tme2\",h2:\"framer-styles-preset-15hyfjk\",h3:\"framer-styles-preset-14m37ck\",p:\"framer-styles-preset-nzuel8\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible4&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:Os0KDO4WO,implicitPathVariables:undefined},{href:Os0KDO4WO,implicitPathVariables:undefined},{href:Os0KDO4WO,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8z8p60-container\",nodeId:\"Qe83dvHQr\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZOEGklw_:{OsJAhFUEL:resolvedLinks[2]},nyfm2y274:{OsJAhFUEL:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(TextLink,{aoEpAdqyT:\"rgb(0, 148, 255)\",HcNjQiLlI:true,height:\"100%\",id:\"Qe83dvHQr\",layoutId:\"Qe83dvHQr\",oAPD13KW4:enumToDisplayNameFunctions[\"JixfLd1Bb\"]?.(JixfLd1Bb,activeLocale),OsJAhFUEL:resolvedLinks[0],variant:\"KGn3Ehqcr\",width:\"100%\"})})})})})]})]})}),visible5&&/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",sizes:`min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9)`,...toResponsiveImage(WcG0wtYvp)},className:\"framer-4y7oai\",\"data-framer-name\":\"Image 1\"}),LaSv9lpTu&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1832,pixelWidth:2683,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/j1EkOqiq0GChFYGuKDJCjpTVSk.webp\",srcSet:\"https://framerusercontent.com/images/j1EkOqiq0GChFYGuKDJCjpTVSk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/j1EkOqiq0GChFYGuKDJCjpTVSk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/j1EkOqiq0GChFYGuKDJCjpTVSk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/j1EkOqiq0GChFYGuKDJCjpTVSk.webp 2683w\"},className:\"framer-cvzl95\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u37by5-container\",isModuleExternal:true,nodeId:\"UrMdNTznQ\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"UrMdNTznQ\",isMixedBorderRadius:false,layoutId:\"UrMdNTznQ\",loop:true,muted:false,objectFit:\"cover\",playing:false,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/G5QjXUqbcqdaiSN5b1suqNwJc0.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:40.2,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),LaSv9lpTu&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1832,pixelWidth:2683,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/j1EkOqiq0GChFYGuKDJCjpTVSk.webp\",srcSet:\"https://framerusercontent.com/images/j1EkOqiq0GChFYGuKDJCjpTVSk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/j1EkOqiq0GChFYGuKDJCjpTVSk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/j1EkOqiq0GChFYGuKDJCjpTVSk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/j1EkOqiq0GChFYGuKDJCjpTVSk.webp 2683w\"},className:\"framer-xt8jds\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tmzi5h-container\",isModuleExternal:true,nodeId:\"ovSysAhdX\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"ovSysAhdX\",isMixedBorderRadius:false,layoutId:\"ovSysAhdX\",loop:true,muted:false,objectFit:\"cover\",playing:false,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/rh3a9wgJeZdHOdlnITf4xI5rBw.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:38.5,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),l8byFb8Z2&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-pexabr\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ml6xmj-container\",isAuthoredByUser:true,nodeId:\"H87OmM3Ic\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(BeforeAfterSlider,{afterImage:\"https://framerusercontent.com/images/CTOmtfPi9b9v8ofbJs8CBJuANw8.webp\",beforeImage:\"https://framerusercontent.com/images/gLUQ0dCZ3VznplCnUC2hvBhB1qY.png\",height:\"100%\",id:\"H87OmM3Ic\",layoutId:\"H87OmM3Ic\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),or7nEvSqI&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xer467-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"W9AaudMOY\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(Video1,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"W9AaudMOY\",isMixedBorderRadius:false,layoutId:\"W9AaudMOY\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/ZH4YGBEYqm4RdCxswhOwT9LH7g.webp\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/Gb3TPjsQvCWvUl9dhbHyWCeKI.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),LWji77t2p&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8xh0nw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dpIHFu5AC\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(Video1,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"dpIHFu5AC\",isMixedBorderRadius:false,layoutId:\"dpIHFu5AC\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/ZksqTjvepJzOmYc1Og9XXDyaPc.webp\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/9lsUiWpu2fcIPpKyFRbssH7oM.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),CEf3Iy9wD&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-d1vvoe-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IzwP4bLai\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(Video1,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"IzwP4bLai\",isMixedBorderRadius:false,layoutId:\"IzwP4bLai\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/c3UPXV1Po2dhI3Nzvs0UJ05wyKw.webp\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/WB8aUrcpyoXDYGJeAa75hrz5KI.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),pPvg5SNev&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-18jos35\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7ybp1n-container\",isModuleExternal:true,nodeId:\"QeJ3DI50R\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe allowfullscreen=\"allowfullscreen\" scrolling=\"no\" class=\"fp-iframe\" src=\"https://heyzine.com/flip-book/37fd7d58ad.html#page/2\" style=\"border: 0px; width: 100%; height: 100%;\"></iframe>',id:\"QeJ3DI50R\",layoutId:\"QeJ3DI50R\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),visible6&&/*#__PURE__*/_jsx(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",sizes:`min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9)`,...toResponsiveImage(v3IadHZ7q)},className:\"framer-1167qk\",\"data-framer-name\":\"Image 2\"}),isDisplayed(rbtipB7u4)&&/*#__PURE__*/_jsx(\"div\",{className:cx(\"framer-hbdmn5\",\"hidden-1563gjf\",!rbtipB7u4&&\"hidden-5aonfh\",!rbtipB7u4&&\"hidden-180dxe3\"),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1escn0t-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wxY3Az7CP\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(Embed1,{height:\"100%\",html:'<iframe allowfullscreen=\"allowfullscreen\" scrolling=\"no\" class=\"fp-iframe\" src=\"https://heyzine.com/flip-book/7e05d47f6a.html#page/2\" style=\"border: 0px; width: 100%; height: 100%;\"></iframe>',id:\"wxY3Az7CP\",layoutId:\"wxY3Az7CP\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://668e984cecd47f15eaf4d652--creative-kringle-54feef.netlify.app/#p=1\",width:\"100%\"})})})}),visible7&&/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",sizes:`min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9)`,...toResponsiveImage(wzvy7Kvwr)},className:\"framer-12cz6wo\",\"data-framer-name\":\"Image 4\"}),isDisplayed(f8qSWwBuV)&&/*#__PURE__*/_jsx(\"div\",{className:cx(\"framer-1ewf5h1\",\"hidden-1563gjf\",!f8qSWwBuV&&\"hidden-5aonfh\",!f8qSWwBuV&&\"hidden-180dxe3\"),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1345ert-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Yr5SC0qzq\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nyfm2y274:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Embed1,{height:\"100%\",html:'<iframe allowfullscreen=\"allowfullscreen\" scrolling=\"no\" class=\"fp-iframe\" src=\"https://heyzine.com/flip-book/02e18690fd.html#page/3\" style=\"border: 0px; width: 100%; height: 400px;\"></iframe>',id:\"Yr5SC0qzq\",layoutId:\"Yr5SC0qzq\",style:{width:\"100%\"},type:\"html\",url:\"https://668e917423d93f1224e1ec86--bejewelled-tartufo-afb9a4.netlify.app/#p=1\",width:\"100%\"})})})})}),isDisplayed(AMMXRHkHU)&&/*#__PURE__*/_jsx(\"div\",{className:cx(\"framer-pkgjuc\",\"hidden-1563gjf\",!AMMXRHkHU&&\"hidden-5aonfh\",!AMMXRHkHU&&\"hidden-180dxe3\"),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pupe58-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"OpVUcg4U6\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nyfm2y274:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Embed1,{height:\"100%\",html:'<iframe allowfullscreen=\"allowfullscreen\" scrolling=\"no\" class=\"fp-iframe\" src=\"https://heyzine.com/flip-book/f437a1f0cf.html\" style=\"border: 0px; width: 100%; height: 400px;\"></iframe>',id:\"OpVUcg4U6\",layoutId:\"OpVUcg4U6\",style:{width:\"100%\"},type:\"html\",url:\"https://668e917423d93f1224e1ec86--bejewelled-tartufo-afb9a4.netlify.app/#p=1\",width:\"100%\"})})})})}),L4xGrKTqD&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ybyukb\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14phy2u-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JE6KOj8n8\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(Embed1,{height:\"100%\",html:'<iframe allowfullscreen=\"allowfullscreen\" scrolling=\"no\" class=\"fp-iframe\" src=\"https://heyzine.com/flip-book/0f33cb9127.html\" style=\"border: 0px; width: 100%; height: 100%;\"></iframe>',id:\"JE6KOj8n8\",layoutId:\"JE6KOj8n8\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://668e984cecd47f15eaf4d652--creative-kringle-54feef.netlify.app/#p=1\",width:\"100%\"})})})}),F_YvuHfTJ&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-105ql5n\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s2bsgx-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"tixVc3xxK\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(Embed1,{height:\"100%\",html:'<iframe allowfullscreen=\"allowfullscreen\" scrolling=\"no\" class=\"fp-iframe\" src=\"https://heyzine.com/flip-book/4f83e1fd58.html\" style=\"border: 0px; width: 100%; height: 100%;\"></iframe>',id:\"tixVc3xxK\",layoutId:\"tixVc3xxK\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://668e984cecd47f15eaf4d652--creative-kringle-54feef.netlify.app/#p=1\",width:\"100%\"})})})}),sMKslFuvd&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c4fsid\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mo1j4b-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Cv7j2qIY6\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(Embed1,{height:\"100%\",html:'<iframe allowfullscreen=\"allowfullscreen\" scrolling=\"no\" class=\"fp-iframe\" src=\"https://heyzine.com/flip-book/243b6dcc4c.html#page/6\" style=\"border: 0px; width: 100%; height: 100%;\"></iframe>',id:\"Cv7j2qIY6\",layoutId:\"Cv7j2qIY6\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://668e984cecd47f15eaf4d652--creative-kringle-54feef.netlify.app/#p=1\",width:\"100%\"})})})}),visible8&&/*#__PURE__*/_jsx(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",sizes:`min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9)`,...toResponsiveImage(OCLiQtKaA)},className:\"framer-mr9i40\",\"data-framer-name\":\"Image 5\"}),oiPxiGZYR&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1992ex1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14bif7-container\",isModuleExternal:true,nodeId:\"NudwnSnD0\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe allowfullscreen=\"allowfullscreen\" scrolling=\"no\" class=\"fp-iframe\" src=\"https://heyzine.com/flip-book/02e18690fd.html#page/2\" style=\"border: 0px; width: 100%; height: 400px;\"></iframe>',id:\"NudwnSnD0\",layoutId:\"NudwnSnD0\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),visible9&&/*#__PURE__*/_jsx(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",sizes:`min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9)`,...toResponsiveImage(E2JUMZuU3)},className:\"framer-oex75a\",\"data-framer-name\":\"Image 6\"}),isDisplayed1(AMMXRHkHU)&&/*#__PURE__*/_jsx(\"div\",{className:cx(\"framer-x6u8y\",\"hidden-5aonfh\",\"hidden-180dxe3\",!AMMXRHkHU&&\"hidden-1563gjf\"),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mezzsj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Sfcl6j8L1\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(Embed1,{height:\"100%\",html:'<iframe allowfullscreen=\"allowfullscreen\" scrolling=\"no\" class=\"fp-iframe\" src=\"https://heyzine.com/flip-book/f437a1f0cf.html#page/2\" style=\"border: 0px; width: 100%; height: 400px;\"></iframe>',id:\"Sfcl6j8L1\",layoutId:\"Sfcl6j8L1\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://668e917423d93f1224e1ec86--bejewelled-tartufo-afb9a4.netlify.app/#p=1\",width:\"100%\"})})})}),isDisplayed1(rbtipB7u4)&&/*#__PURE__*/_jsx(\"div\",{className:cx(\"framer-cgqt6u\",\"hidden-5aonfh\",\"hidden-180dxe3\",!rbtipB7u4&&\"hidden-1563gjf\"),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-n2ehoi-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gkdaeBeA3\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(Embed1,{height:\"100%\",html:'<iframe allowfullscreen=\"allowfullscreen\" scrolling=\"no\" class=\"fp-iframe\" src=\"https://heyzine.com/flip-book/7e05d47f6a.html#page/2\" style=\"border: 0px; width: 100%; height: 800px;\"></iframe>',id:\"gkdaeBeA3\",layoutId:\"gkdaeBeA3\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://668e984cecd47f15eaf4d652--creative-kringle-54feef.netlify.app/#p=1\",width:\"100%\"})})})}),or7nEvSqI&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-eoizmm-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Al2j1lvPZ\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(Video1,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Al2j1lvPZ\",isMixedBorderRadius:false,layoutId:\"Al2j1lvPZ\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/KGEWEcmPv1JF0WGGQyW0AMAL4.webp\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/G9whNoeA8owXVm7SjyEOTg33PlE.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),LaSv9lpTu&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1832,pixelWidth:2683,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/j1EkOqiq0GChFYGuKDJCjpTVSk.webp\",srcSet:\"https://framerusercontent.com/images/j1EkOqiq0GChFYGuKDJCjpTVSk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/j1EkOqiq0GChFYGuKDJCjpTVSk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/j1EkOqiq0GChFYGuKDJCjpTVSk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/j1EkOqiq0GChFYGuKDJCjpTVSk.webp 2683w\"},className:\"framer-hqiejh\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4otpao-container\",isModuleExternal:true,nodeId:\"hqVs2ic45\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"hqVs2ic45\",isMixedBorderRadius:false,layoutId:\"hqVs2ic45\",loop:true,muted:false,objectFit:\"cover\",playing:false,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/V8fxhAD0zMXpwkOQ9ci2neuX6c.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:74.7,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),LaSv9lpTu&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1832,pixelWidth:2683,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/j1EkOqiq0GChFYGuKDJCjpTVSk.webp\",srcSet:\"https://framerusercontent.com/images/j1EkOqiq0GChFYGuKDJCjpTVSk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/j1EkOqiq0GChFYGuKDJCjpTVSk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/j1EkOqiq0GChFYGuKDJCjpTVSk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/j1EkOqiq0GChFYGuKDJCjpTVSk.webp 2683w\"},className:\"framer-1s8zfht\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uwx5nm-container\",isModuleExternal:true,nodeId:\"HtcEkJDNg\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"HtcEkJDNg\",isMixedBorderRadius:false,layoutId:\"HtcEkJDNg\",loop:true,muted:false,objectFit:\"cover\",playing:false,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/RCQmdsTAUmxoWr86g2BUaSFaHE.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:38.7,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),RKaGyYPAh&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-15itfn\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rx1igs\",children:/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/a22e365b-d0b5-4b7e-afdb-1b7ee04be565/submit\",className:\"framer-sj6rct\",nodeId:\"EdAQH5dg9\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"label\",{className:\"framer-1llfehe\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-5299l3\",inputName:\"Name\",placeholder:\"Name\",required:true,type:\"text\"})}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-c6i69h\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-2gzq83\",inputName:\"Email\",placeholder:\"Email\",required:true,type:\"email\"})}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-q1s98z\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1cdqbn6\",inputName:\"Message\",placeholder:\"Message\",type:\"textarea\"})}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-15jkucl\",children:[/*#__PURE__*/_jsx(FormBooleanInput,{className:\"framer-14isni4\",defaultChecked:false,inputName:\"Newsletter\",required:true,type:\"checkbox\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nyfm2y274:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIENvbXBhY3QgRGlzcGxheSBSZWd1bGFy\",\"--framer-font-family\":'\"SF Compact Display Regular\", \"SF Compact Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(109, 109, 110)\"},children:\"I accept the privacy policy of this website. By using this form, I agree to the storage and processing of my data by this website.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIENvbXBhY3QgRGlzcGxheSBSZWd1bGFy\",\"--framer-font-family\":'\"SF Compact Display Regular\", \"SF Compact Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-2ea564e9-0c12-4a1f-a7db-53264667420a, rgb(109, 109, 110))\"},children:\"I accept the privacy policy of this website. By using this form, I agree to the storage and processing of my data by this website.\"})}),className:\"framer-1yp6hvq\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;SF Compact Display Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZOEGklw_:{width:`min(min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9), 962px)`},nyfm2y274:{width:`min(min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9) * 1.0015, 962px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:`min(max(min(min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9), 962px), 1px), 962px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gx9zuv-container\",nodeId:\"y9L6SZ6rI\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",id:\"y9L6SZ6rI\",layoutId:\"y9L6SZ6rI\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:\"u6AmDJ8vg\",width:\"100%\"})})})})]})})})}),RKaGyYPAh&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ir97ji\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8fuuix\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15hyfjk\",\"data-styles-preset\":\"qodemAsk4\",children:\"Frequently Asked Questions (FAQ) \u2013 Life\u2026\"})}),className:\"framer-1avyfow\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZOEGklw_:{width:`min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9)`},nyfm2y274:{width:`min(min(min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9), 941px), min(min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9), 941px) * 0.59)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:590,width:`max((min(min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9), 962px) - 58px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d9a70g-container\",nodeId:\"jQqQurTkm\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nyfm2y274:{style:{maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Accordions2,{height:\"100%\",id:\"jQqQurTkm\",layoutId:\"jQqQurTkm\",style:{width:\"100%\"},variant:\"eAWXAM8Ec\",width:\"100%\"})})})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16gig62\",\"data-framer-name\":\"Next Project Helper\"}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-8ogqsw\",\"data-framer-name\":\"Section Next Project\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hodb5x\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"WXpDLYGOt\",data:Work,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"WXpDLYGOt\",name:\"fsRrg1kQb\",type:\"Identifier\"},{collection:\"WXpDLYGOt\",name:\"Jww2Un3Z2\",type:\"Identifier\"},{collection:\"WXpDLYGOt\",name:\"bngrwGHbj\",type:\"Identifier\"},{collection:\"WXpDLYGOt\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"WXpDLYGOt\",name:\"BPX7VUXSn\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:YiZ6kOzbH},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({bngrwGHbj:bngrwGHbjWXpDLYGOt,fsRrg1kQb:fsRrg1kQbWXpDLYGOt,id:idWXpDLYGOt,Jww2Un3Z2:Jww2Un3Z2WXpDLYGOt},index)=>{fsRrg1kQbWXpDLYGOt??=\"\";Jww2Un3Z2WXpDLYGOt??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`WXpDLYGOt-${idWXpDLYGOt}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{fsRrg1kQb:fsRrg1kQbWXpDLYGOt},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{fsRrg1kQb:fsRrg1kQbWXpDLYGOt},webPageId:\"zVoRr5luo\"},implicitPathVariables:undefined},{href:{pathVariables:{fsRrg1kQb:fsRrg1kQbWXpDLYGOt},webPageId:\"zVoRr5luo\"},implicitPathVariables:undefined},{href:{pathVariables:{fsRrg1kQb:fsRrg1kQbWXpDLYGOt},webPageId:\"zVoRr5luo\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"max(100vw, 1px)\",y:0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZOEGklw_:{\"data-framer-cursor\":undefined},nyfm2y274:{\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-u6bjez-container\",\"data-framer-cursor\":\"1ciim1j\",nodeId:\"WH87BS5G0\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZOEGklw_:{CYP_4_Igm:resolvedLinks1[2],variant:\"k_3r9fHPX\"},nyfm2y274:{CYP_4_Igm:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(NextProjectItem,{CYP_4_Igm:resolvedLinks1[0],height:\"100%\",id:\"WH87BS5G0\",khwz4aXjQ:toResponsiveImage(bngrwGHbjWXpDLYGOt),layoutId:\"WH87BS5G0\",pmf3WyjGf:Jww2Un3Z2WXpDLYGOt,style:{width:\"100%\"},variant:\"oXXarZF3i\",width:\"100%\"})})})})})})})},idWXpDLYGOt);})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qiz84m-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"G1jeD8VuW\",scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"G1jeD8VuW\",intensity:10,layoutId:\"G1jeD8VuW\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:20,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1fs8p9a-container\",id:\"1fs8p9a\",layoutScroll:true,nodeId:\"I79amJGKL\",scopeId:\"zVoRr5luo\",children:[/*#__PURE__*/_jsx(MenuTrigger2,{height:\"100%\",id:\"I79amJGKL\",layoutId:\"I79amJGKL\",variant:overlay.visible?\"Uw5U4EIi7\":\"ZE5RfgXtq\",VFQz_3t2P:VFQz_3t2P3bnx0g({overlay}),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},className:cx(scopingClassNames,\"framer-276q4b\"),\"data-framer-portal-id\":\"1fs8p9a\",exit:{opacity:0},initial:{opacity:0},onTap:()=>overlay.hide(),transition:{bounce:0,delay:0,duration:.8,type:\"spring\"}},\"uyxn9ASKN\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZOEGklw_:{width:\"100vw\"},nyfm2y274:{width:\"50vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"35vw\",children:/*#__PURE__*/_jsx(Container,{animate:animation1,className:cx(scopingClassNames,\"framer-a0nqey-container\"),\"data-framer-portal-id\":\"1fs8p9a\",exit:animation,inComponentSlot:true,initial:animation2,nodeId:\"N1FmEUIj2\",rendersWithMotion:true,scopeId:\"zVoRr5luo\",children:/*#__PURE__*/_jsx(MenuContainer2,{height:\"100%\",id:\"N1FmEUIj2\",layoutId:\"N1FmEUIj2\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),getContainer())})})]})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-o6Jou.framer-1o3c4qn, .framer-o6Jou .framer-1o3c4qn { display: block; }\",\".framer-o6Jou.framer-5aonfh { align-content: center; align-items: center; background-color: var(--token-25453f9e-f224-4ce7-8031-a0c47a3c7692, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-o6Jou .framer-nv6u8t-container { flex: none; height: auto; left: 50%; max-width: 90%; position: absolute; top: 45px; transform: translateX(-50%); width: 90%; z-index: 8; }\",\".framer-o6Jou .framer-176z2t4 { align-content: center; align-items: center; background-color: var(--token-25453f9e-f224-4ce7-8031-a0c47a3c7692, #ffffff); box-shadow: 0px 120px 250px 0px rgba(0, 0, 0, 0.75); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 7; }\",\".framer-o6Jou .framer-qszsl0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: 70vh; justify-content: center; max-width: 80%; min-height: 80vh; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-o6Jou .framer-1lfalze { 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: 120px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-o6Jou .framer-jy2ctz, .framer-o6Jou .framer-1avyfow { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-o6Jou .framer-9nrmo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-o6Jou .framer-1o3fkgf-container, .framer-o6Jou .framer-2nvid9-container { flex: 1 0 0px; height: auto; max-width: 40%; position: relative; width: 1px; }\",\".framer-o6Jou .framer-15vdjf6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: center; max-width: 90%; overflow: hidden; padding: 0px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-o6Jou .framer-10q6z49 { aspect-ratio: 1.7142857142857142 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 630px); overflow: hidden; position: relative; width: 100%; }\",\".framer-o6Jou .framer-105aqit { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 90%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-o6Jou .framer-stwqff { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: flex-start; max-width: 720px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-o6Jou .framer-juzxfg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-o6Jou .framer-13q0skb { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-o6Jou .framer-1rrsmx2 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-o6Jou .framer-8z8p60-container, .framer-o6Jou .framer-qiz84m-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-o6Jou .framer-4y7oai, .framer-o6Jou .framer-1167qk, .framer-o6Jou .framer-12cz6wo, .framer-o6Jou .framer-oex75a { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 720px); overflow: hidden; position: relative; width: 100%; }\",\".framer-o6Jou .framer-cvzl95, .framer-o6Jou .framer-xt8jds, .framer-o6Jou .framer-hqiejh, .framer-o6Jou .framer-1s8zfht { align-content: center; align-items: center; aspect-ratio: 1.7142857142857142 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 630px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-o6Jou .framer-u37by5-container, .framer-o6Jou .framer-1tmzi5h-container, .framer-o6Jou .framer-4otpao-container, .framer-o6Jou .framer-uwx5nm-container { aspect-ratio: 1.7142857142857142 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 630px); position: relative; width: 1px; }\",\".framer-o6Jou .framer-pexabr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-o6Jou .framer-ml6xmj-container { aspect-ratio: 1.5 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 720px); position: relative; width: 1px; }\",\".framer-o6Jou .framer-xer467-container { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 807px); position: relative; width: 100%; }\",\".framer-o6Jou .framer-8xh0nw-container, .framer-o6Jou .framer-d1vvoe-container, .framer-o6Jou .framer-eoizmm-container { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 720px); position: relative; width: 100%; }\",\".framer-o6Jou .framer-18jos35 { align-content: center; align-items: center; aspect-ratio: 2.89544235924933 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 373px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o6Jou .framer-7ybp1n-container, .framer-o6Jou .framer-1escn0t-container, .framer-o6Jou .framer-14phy2u-container, .framer-o6Jou .framer-s2bsgx-container, .framer-o6Jou .framer-1mo1j4b-container, .framer-o6Jou .framer-14bif7-container, .framer-o6Jou .framer-1mezzsj-container, .framer-o6Jou .framer-n2ehoi-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-o6Jou .framer-hbdmn5 { align-content: center; align-items: center; aspect-ratio: 1.3935483870967742 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 775px); justify-content: center; overflow: visible; padding: 0px 3px 0px 0px; position: relative; width: 100%; }\",\".framer-o6Jou .framer-1ewf5h1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 320px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o6Jou .framer-1345ert-container, .framer-o6Jou .framer-pupe58-container, .framer-o6Jou .framer-1d9a70g-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-o6Jou .framer-pkgjuc { align-content: center; align-items: center; aspect-ratio: 3.375 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 400px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o6Jou .framer-ybyukb, .framer-o6Jou .framer-105ql5n, .framer-o6Jou .framer-1c4fsid { align-content: center; align-items: center; aspect-ratio: 1.3917525773195876 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 776px); justify-content: center; overflow: visible; padding: 0px 2px 0px 0px; position: relative; width: 100%; }\",\".framer-o6Jou .framer-mr9i40 { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 133px); overflow: hidden; position: relative; width: 100%; }\",\".framer-o6Jou .framer-1992ex1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 373px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o6Jou .framer-x6u8y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 99px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o6Jou .framer-cgqt6u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 487px; justify-content: center; overflow: visible; padding: 0px 2px 0px 0px; position: relative; width: 100%; }\",\".framer-o6Jou .framer-15itfn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; max-width: 962px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-o6Jou .framer-1rx1igs { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: center; max-width: 962px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-o6Jou .framer-sj6rct { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-o6Jou .framer-1llfehe, .framer-o6Jou .framer-c6i69h, .framer-o6Jou .framer-q1s98z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-o6Jou .framer-5299l3 { --framer-input-background: rgba(109, 109, 110, 0.06); --framer-input-font-color: var(--token-2ea564e9-0c12-4a1f-a7db-53264667420a, #6d6d6e); --framer-input-font-family: \"SF Compact Display Regular\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 15px; --framer-input-icon-color: #999999; --framer-input-padding: 15px; --framer-input-placeholder-color: rgba(27, 34, 39, 0.5); flex: none; height: 45px; position: relative; width: 100%; }','.framer-o6Jou .framer-2gzq83 { --framer-input-background: var(--token-221dc06b-b4de-4458-a087-16bd4f682b01, rgba(109, 109, 110, 0.08)); --framer-input-font-color: #6d6d6e; --framer-input-font-family: \"SF Compact Display Regular\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 15px; --framer-input-icon-color: #999999; --framer-input-padding: 15px; --framer-input-placeholder-color: rgba(27, 34, 39, 0.5); flex: none; height: 45px; position: relative; width: 100%; }','.framer-o6Jou .framer-1cdqbn6 { --framer-input-background: var(--token-221dc06b-b4de-4458-a087-16bd4f682b01, rgba(109, 109, 110, 0.08)); --framer-input-font-color: #6d6d6e; --framer-input-font-family: \"SF Compact Display Regular\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 15px; --framer-input-icon-color: #999999; --framer-input-padding: 15px; --framer-input-placeholder-color: rgba(27, 34, 39, 0.5); --framer-input-wrapper-height: auto; flex: none; height: auto; min-height: 170px; position: relative; width: 100%; }',\".framer-o6Jou .framer-15jkucl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-o6Jou .framer-14isni4 { --framer-input-background: #f3f3f3; --framer-input-boolean-checked-background: var(--token-ccfe87cb-c517-43ae-907a-63f745b81ffb, #000000); --framer-input-icon-color: #ffffff; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); position: relative; width: 18px; }\",\".framer-o6Jou .framer-1yp6hvq { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 94%; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-o6Jou .framer-1gx9zuv-container { flex: none; height: 45px; position: relative; width: 100%; }\",\".framer-o6Jou .framer-ir97ji { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 58px; height: min-content; justify-content: center; max-width: 962px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-o6Jou .framer-8fuuix { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 454px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-o6Jou .framer-16gig62 { flex: none; height: 808px; min-height: 101vh; overflow: hidden; position: relative; width: 100%; }\",\".framer-o6Jou .framer-8ogqsw { align-content: center; align-items: center; background-color: #000000; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: fixed; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-o6Jou .framer-1hodb5x { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-o6Jou .framer-u6bjez-container { flex: none; height: auto; min-height: 100vh; position: relative; width: 100%; }\",\".framer-o6Jou .framer-1fs8p9a-container { flex: none; height: auto; position: fixed; right: 20px; top: 20px; width: auto; z-index: 10; }\",\".framer-o6Jou.framer-276q4b { background-color: rgba(0, 0, 0, 0.5); inset: 0px; position: fixed; user-select: none; z-index: 9; }\",\".framer-o6Jou.framer-a0nqey-container { flex: none; height: 100%; position: fixed; right: 0px; top: 0px; width: 35%; will-change: var(--framer-will-change-effect-override, transform); z-index: 9; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-o6Jou.framer-5aonfh, .framer-o6Jou .framer-176z2t4, .framer-o6Jou .framer-qszsl0, .framer-o6Jou .framer-1lfalze, .framer-o6Jou .framer-9nrmo, .framer-o6Jou .framer-15vdjf6, .framer-o6Jou .framer-105aqit, .framer-o6Jou .framer-stwqff, .framer-o6Jou .framer-13q0skb, .framer-o6Jou .framer-cvzl95, .framer-o6Jou .framer-xt8jds, .framer-o6Jou .framer-pexabr, .framer-o6Jou .framer-18jos35, .framer-o6Jou .framer-hbdmn5, .framer-o6Jou .framer-1ewf5h1, .framer-o6Jou .framer-pkgjuc, .framer-o6Jou .framer-ybyukb, .framer-o6Jou .framer-105ql5n, .framer-o6Jou .framer-1c4fsid, .framer-o6Jou .framer-1992ex1, .framer-o6Jou .framer-x6u8y, .framer-o6Jou .framer-cgqt6u, .framer-o6Jou .framer-hqiejh, .framer-o6Jou .framer-1s8zfht, .framer-o6Jou .framer-15itfn, .framer-o6Jou .framer-1rx1igs, .framer-o6Jou .framer-sj6rct, .framer-o6Jou .framer-1llfehe, .framer-o6Jou .framer-c6i69h, .framer-o6Jou .framer-q1s98z, .framer-o6Jou .framer-15jkucl, .framer-o6Jou .framer-ir97ji, .framer-o6Jou .framer-8fuuix, .framer-o6Jou .framer-8ogqsw, .framer-o6Jou .framer-1hodb5x { gap: 0px; } .framer-o6Jou.framer-5aonfh > *, .framer-o6Jou .framer-176z2t4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-o6Jou.framer-5aonfh > :first-child, .framer-o6Jou .framer-176z2t4 > :first-child, .framer-o6Jou .framer-qszsl0 > :first-child, .framer-o6Jou .framer-15vdjf6 > :first-child, .framer-o6Jou .framer-13q0skb > :first-child, .framer-o6Jou .framer-1rx1igs > :first-child, .framer-o6Jou .framer-sj6rct > :first-child, .framer-o6Jou .framer-1llfehe > :first-child, .framer-o6Jou .framer-c6i69h > :first-child, .framer-o6Jou .framer-q1s98z > :first-child, .framer-o6Jou .framer-1hodb5x > :first-child { margin-top: 0px; } .framer-o6Jou.framer-5aonfh > :last-child, .framer-o6Jou .framer-176z2t4 > :last-child, .framer-o6Jou .framer-qszsl0 > :last-child, .framer-o6Jou .framer-15vdjf6 > :last-child, .framer-o6Jou .framer-13q0skb > :last-child, .framer-o6Jou .framer-1rx1igs > :last-child, .framer-o6Jou .framer-sj6rct > :last-child, .framer-o6Jou .framer-1llfehe > :last-child, .framer-o6Jou .framer-c6i69h > :last-child, .framer-o6Jou .framer-q1s98z > :last-child, .framer-o6Jou .framer-1hodb5x > :last-child { margin-bottom: 0px; } .framer-o6Jou .framer-qszsl0 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-o6Jou .framer-1lfalze > *, .framer-o6Jou .framer-105aqit > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-o6Jou .framer-1lfalze > :first-child, .framer-o6Jou .framer-9nrmo > :first-child, .framer-o6Jou .framer-105aqit > :first-child, .framer-o6Jou .framer-stwqff > :first-child, .framer-o6Jou .framer-cvzl95 > :first-child, .framer-o6Jou .framer-xt8jds > :first-child, .framer-o6Jou .framer-pexabr > :first-child, .framer-o6Jou .framer-18jos35 > :first-child, .framer-o6Jou .framer-hbdmn5 > :first-child, .framer-o6Jou .framer-1ewf5h1 > :first-child, .framer-o6Jou .framer-pkgjuc > :first-child, .framer-o6Jou .framer-ybyukb > :first-child, .framer-o6Jou .framer-105ql5n > :first-child, .framer-o6Jou .framer-1c4fsid > :first-child, .framer-o6Jou .framer-1992ex1 > :first-child, .framer-o6Jou .framer-x6u8y > :first-child, .framer-o6Jou .framer-cgqt6u > :first-child, .framer-o6Jou .framer-hqiejh > :first-child, .framer-o6Jou .framer-1s8zfht > :first-child, .framer-o6Jou .framer-15itfn > :first-child, .framer-o6Jou .framer-15jkucl > :first-child, .framer-o6Jou .framer-ir97ji > :first-child, .framer-o6Jou .framer-8fuuix > :first-child, .framer-o6Jou .framer-8ogqsw > :first-child { margin-left: 0px; } .framer-o6Jou .framer-1lfalze > :last-child, .framer-o6Jou .framer-9nrmo > :last-child, .framer-o6Jou .framer-105aqit > :last-child, .framer-o6Jou .framer-stwqff > :last-child, .framer-o6Jou .framer-cvzl95 > :last-child, .framer-o6Jou .framer-xt8jds > :last-child, .framer-o6Jou .framer-pexabr > :last-child, .framer-o6Jou .framer-18jos35 > :last-child, .framer-o6Jou .framer-hbdmn5 > :last-child, .framer-o6Jou .framer-1ewf5h1 > :last-child, .framer-o6Jou .framer-pkgjuc > :last-child, .framer-o6Jou .framer-ybyukb > :last-child, .framer-o6Jou .framer-105ql5n > :last-child, .framer-o6Jou .framer-1c4fsid > :last-child, .framer-o6Jou .framer-1992ex1 > :last-child, .framer-o6Jou .framer-x6u8y > :last-child, .framer-o6Jou .framer-cgqt6u > :last-child, .framer-o6Jou .framer-hqiejh > :last-child, .framer-o6Jou .framer-1s8zfht > :last-child, .framer-o6Jou .framer-15itfn > :last-child, .framer-o6Jou .framer-15jkucl > :last-child, .framer-o6Jou .framer-ir97ji > :last-child, .framer-o6Jou .framer-8fuuix > :last-child, .framer-o6Jou .framer-8ogqsw > :last-child { margin-right: 0px; } .framer-o6Jou .framer-9nrmo > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-o6Jou .framer-15vdjf6 > *, .framer-o6Jou .framer-1rx1igs > * { margin: 0px; margin-bottom: calc(160px / 2); margin-top: calc(160px / 2); } .framer-o6Jou .framer-stwqff > * { margin: 0px; margin-left: calc(160px / 2); margin-right: calc(160px / 2); } .framer-o6Jou .framer-13q0skb > *, .framer-o6Jou .framer-1hodb5x > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-o6Jou .framer-cvzl95 > *, .framer-o6Jou .framer-xt8jds > *, .framer-o6Jou .framer-pexabr > *, .framer-o6Jou .framer-18jos35 > *, .framer-o6Jou .framer-hbdmn5 > *, .framer-o6Jou .framer-1ewf5h1 > *, .framer-o6Jou .framer-pkgjuc > *, .framer-o6Jou .framer-ybyukb > *, .framer-o6Jou .framer-105ql5n > *, .framer-o6Jou .framer-1c4fsid > *, .framer-o6Jou .framer-1992ex1 > *, .framer-o6Jou .framer-x6u8y > *, .framer-o6Jou .framer-cgqt6u > *, .framer-o6Jou .framer-hqiejh > *, .framer-o6Jou .framer-1s8zfht > *, .framer-o6Jou .framer-15jkucl > *, .framer-o6Jou .framer-8fuuix > *, .framer-o6Jou .framer-8ogqsw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-o6Jou .framer-15itfn > * { margin: 0px; margin-left: calc(120px / 2); margin-right: calc(120px / 2); } .framer-o6Jou .framer-sj6rct > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-o6Jou .framer-1llfehe > *, .framer-o6Jou .framer-c6i69h > *, .framer-o6Jou .framer-q1s98z > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-o6Jou .framer-ir97ji > * { margin: 0px; margin-left: calc(58px / 2); margin-right: calc(58px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-o6Jou.framer-5aonfh { width: 810px; } .framer-o6Jou .framer-qszsl0 { max-width: 90%; min-height: 75vh; } .framer-o6Jou .framer-1lfalze { padding: 0px; } .framer-o6Jou .framer-15vdjf6 { gap: 80px; } .framer-o6Jou .framer-10q6z49, .framer-o6Jou .framer-u37by5-container { height: var(--framer-aspect-ratio-supported, 425px); order: 0; } .framer-o6Jou .framer-105aqit { max-width: 100%; order: 2; } .framer-o6Jou .framer-stwqff { max-width: 100%; } .framer-o6Jou .framer-4y7oai { height: var(--framer-aspect-ratio-supported, 486px); order: 3; } .framer-o6Jou .framer-cvzl95 { height: var(--framer-aspect-ratio-supported, 425px); order: 4; } .framer-o6Jou .framer-xt8jds { height: var(--framer-aspect-ratio-supported, 426px); order: 5; } .framer-o6Jou .framer-1tmzi5h-container { height: var(--framer-aspect-ratio-supported, 426px); } .framer-o6Jou .framer-pexabr { order: 26; } .framer-o6Jou .framer-ml6xmj-container { height: var(--framer-aspect-ratio-supported, 486px); } .framer-o6Jou .framer-xer467-container { height: var(--framer-aspect-ratio-supported, 545px); order: 1; } .framer-o6Jou .framer-8xh0nw-container { height: var(--framer-aspect-ratio-supported, 486px); order: 6; } .framer-o6Jou .framer-d1vvoe-container { height: var(--framer-aspect-ratio-supported, 486px); order: 7; } .framer-o6Jou .framer-18jos35 { height: var(--framer-aspect-ratio-supported, 251px); order: 8; } .framer-o6Jou .framer-1167qk { height: var(--framer-aspect-ratio-supported, 486px); order: 10; } .framer-o6Jou .framer-hbdmn5 { aspect-ratio: unset; height: 661px; order: 11; padding: 0px 2px 0px 0px; } .framer-o6Jou .framer-12cz6wo { height: var(--framer-aspect-ratio-supported, 486px); order: 12; } .framer-o6Jou .framer-1ewf5h1 { height: 240px; order: 9; } .framer-o6Jou .framer-1345ert-container, .framer-o6Jou .framer-pupe58-container { height: 100%; } .framer-o6Jou .framer-pkgjuc { order: 17; } .framer-o6Jou .framer-ybyukb { height: var(--framer-aspect-ratio-supported, 524px); order: 18; } .framer-o6Jou .framer-105ql5n { height: var(--framer-aspect-ratio-supported, 524px); order: 16; } .framer-o6Jou .framer-1c4fsid { height: var(--framer-aspect-ratio-supported, 524px); order: 15; } .framer-o6Jou .framer-mr9i40 { order: 13; } .framer-o6Jou .framer-1992ex1 { order: 14; } .framer-o6Jou .framer-oex75a { height: var(--framer-aspect-ratio-supported, 486px); order: 19; } .framer-o6Jou .framer-eoizmm-container { height: var(--framer-aspect-ratio-supported, 486px); order: 25; } .framer-o6Jou .framer-hqiejh { height: var(--framer-aspect-ratio-supported, 425px); order: 27; } .framer-o6Jou .framer-4otpao-container, .framer-o6Jou .framer-uwx5nm-container { height: var(--framer-aspect-ratio-supported, 425px); } .framer-o6Jou .framer-1s8zfht { height: var(--framer-aspect-ratio-supported, 425px); order: 28; } .framer-o6Jou .framer-15itfn { flex-direction: column; max-width: unset; order: 29; } .framer-o6Jou .framer-1rx1igs { align-content: center; align-items: center; flex: none; order: 0; width: 100%; } .framer-o6Jou .framer-1yp6hvq { max-width: unset; } .framer-o6Jou .framer-ir97ji { flex-direction: column; max-width: 941px; order: 30; } .framer-o6Jou .framer-8fuuix { flex: none; width: 100%; } .framer-o6Jou .framer-1d9a70g-container { flex: none; max-width: 59%; width: 100%; } .framer-o6Jou.framer-a0nqey-container { width: 50%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-o6Jou .framer-15vdjf6, .framer-o6Jou .framer-15itfn, .framer-o6Jou .framer-ir97ji { gap: 0px; } .framer-o6Jou .framer-15vdjf6 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-o6Jou .framer-15vdjf6 > :first-child, .framer-o6Jou .framer-15itfn > :first-child, .framer-o6Jou .framer-ir97ji > :first-child { margin-top: 0px; } .framer-o6Jou .framer-15vdjf6 > :last-child, .framer-o6Jou .framer-15itfn > :last-child, .framer-o6Jou .framer-ir97ji > :last-child { margin-bottom: 0px; } .framer-o6Jou .framer-15itfn > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-o6Jou .framer-ir97ji > * { margin: 0px; margin-bottom: calc(58px / 2); margin-top: calc(58px / 2); } }}\",\"@media (max-width: 809px) { .framer-o6Jou.framer-5aonfh { width: 390px; } .framer-o6Jou .framer-qszsl0 { gap: 70px; max-width: 90%; min-height: 90vh; order: 0; padding: 0px 0px 40px 0px; } .framer-o6Jou .framer-9nrmo { flex-direction: column; } .framer-o6Jou .framer-1o3fkgf-container, .framer-o6Jou .framer-2nvid9-container { flex: none; max-width: 100%; width: 100%; } .framer-o6Jou .framer-15vdjf6 { gap: 80px; order: 1; } .framer-o6Jou .framer-10q6z49 { height: var(--framer-aspect-ratio-supported, 204px); order: 0; } .framer-o6Jou .framer-105aqit { max-width: 100%; order: 2; } .framer-o6Jou .framer-stwqff { flex-direction: column; gap: 40px; max-width: 100%; } .framer-o6Jou .framer-13q0skb { align-self: unset; flex: none; height: min-content; justify-content: flex-start; width: 100%; } .framer-o6Jou .framer-4y7oai { height: var(--framer-aspect-ratio-supported, 234px); order: 3; } .framer-o6Jou .framer-cvzl95 { height: var(--framer-aspect-ratio-supported, 205px); order: 4; } .framer-o6Jou .framer-u37by5-container, .framer-o6Jou .framer-1tmzi5h-container, .framer-o6Jou .framer-4otpao-container, .framer-o6Jou .framer-uwx5nm-container { height: var(--framer-aspect-ratio-supported, 205px); } .framer-o6Jou .framer-xt8jds { height: var(--framer-aspect-ratio-supported, 205px); order: 5; } .framer-o6Jou .framer-pexabr { order: 26; } .framer-o6Jou .framer-ml6xmj-container { height: var(--framer-aspect-ratio-supported, 234px); } .framer-o6Jou .framer-xer467-container { height: var(--framer-aspect-ratio-supported, 262px); order: 1; } .framer-o6Jou .framer-8xh0nw-container { height: var(--framer-aspect-ratio-supported, 234px); order: 6; } .framer-o6Jou .framer-d1vvoe-container { height: var(--framer-aspect-ratio-supported, 234px); order: 7; } .framer-o6Jou .framer-18jos35 { height: var(--framer-aspect-ratio-supported, 150px); order: 8; } .framer-o6Jou .framer-1167qk { height: var(--framer-aspect-ratio-supported, 234px); order: 10; } .framer-o6Jou .framer-12cz6wo { height: var(--framer-aspect-ratio-supported, 234px); order: 14; } .framer-o6Jou .framer-ybyukb { height: var(--framer-aspect-ratio-supported, 252px); order: 19; } .framer-o6Jou .framer-105ql5n { height: var(--framer-aspect-ratio-supported, 252px); order: 16; } .framer-o6Jou .framer-1c4fsid { height: var(--framer-aspect-ratio-supported, 252px); order: 15; } .framer-o6Jou .framer-mr9i40 { order: 21; } .framer-o6Jou .framer-1992ex1 { height: 104px; order: 22; } .framer-o6Jou .framer-oex75a { height: var(--framer-aspect-ratio-supported, 234px); order: 24; } .framer-o6Jou .framer-x6u8y { order: 23; } .framer-o6Jou .framer-cgqt6u { height: 274px; order: 12; } .framer-o6Jou .framer-eoizmm-container { height: var(--framer-aspect-ratio-supported, 234px); order: 25; } .framer-o6Jou .framer-hqiejh { height: var(--framer-aspect-ratio-supported, 205px); order: 27; } .framer-o6Jou .framer-1s8zfht { height: var(--framer-aspect-ratio-supported, 205px); order: 28; } .framer-o6Jou .framer-15itfn { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 100px; max-width: unset; order: 29; overflow: visible; } .framer-o6Jou .framer-1rx1igs { flex: none; order: 0; width: 100%; } .framer-o6Jou .framer-1yp6hvq { max-width: unset; } .framer-o6Jou .framer-ir97ji { flex-direction: column; max-width: unset; order: 30; } .framer-o6Jou .framer-8fuuix { flex: none; max-width: 300px; width: 100%; } .framer-o6Jou .framer-1avyfow { max-width: 328px; } .framer-o6Jou .framer-1d9a70g-container { flex: none; width: 100%; } .framer-o6Jou.framer-a0nqey-container { width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-o6Jou .framer-qszsl0, .framer-o6Jou .framer-9nrmo, .framer-o6Jou .framer-15vdjf6, .framer-o6Jou .framer-stwqff, .framer-o6Jou .framer-15itfn, .framer-o6Jou .framer-ir97ji { gap: 0px; } .framer-o6Jou .framer-qszsl0 > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-o6Jou .framer-qszsl0 > :first-child, .framer-o6Jou .framer-9nrmo > :first-child, .framer-o6Jou .framer-15vdjf6 > :first-child, .framer-o6Jou .framer-stwqff > :first-child, .framer-o6Jou .framer-15itfn > :first-child, .framer-o6Jou .framer-ir97ji > :first-child { margin-top: 0px; } .framer-o6Jou .framer-qszsl0 > :last-child, .framer-o6Jou .framer-9nrmo > :last-child, .framer-o6Jou .framer-15vdjf6 > :last-child, .framer-o6Jou .framer-stwqff > :last-child, .framer-o6Jou .framer-15itfn > :last-child, .framer-o6Jou .framer-ir97ji > :last-child { margin-bottom: 0px; } .framer-o6Jou .framer-9nrmo > *, .framer-o6Jou .framer-stwqff > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-o6Jou .framer-15vdjf6 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-o6Jou .framer-15itfn > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-o6Jou .framer-ir97ji > * { margin: 0px; margin-bottom: calc(58px / 2); margin-top: calc(58px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10355\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nyfm2y274\":{\"layout\":[\"fixed\",\"auto\"]},\"gZOEGklw_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerzVoRr5luo=withCSS(Component,css,\"framer-o6Jou\");export default FramerzVoRr5luo;FramerzVoRr5luo.displayName=\"Page\";FramerzVoRr5luo.defaultProps={height:10355,width:1200};addFonts(FramerzVoRr5luo,[{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:\"SF Compact Display Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/fM43dMMg0iBEGGHNka7ZxYG7Nho.otf\"}]},...LogoFonts,...ProjectDetailFonts,...TextLinkFonts,...VideoFonts,...BeforeAfterSliderFonts,...Video1Fonts,...EmbedFonts,...Embed1Fonts,...Button2Fonts,...Accordions2Fonts,...NextProjectItemFonts,...SmoothScrollFonts,...MenuTrigger2Fonts,...MenuContainer2Fonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...componentPresets.fonts?.[\"K8fN7sEeX\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"K8fN7sEeX\"]):[],...componentPresets.fonts?.[\"FM2EdmpHG\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"FM2EdmpHG\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzVoRr5luo\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nyfm2y274\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gZOEGklw_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"10355\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "Embed", "type", "url", "html", "style", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "iframeHeight", "setIframeHeight", "hasScript", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "htmlStyle", "containerStyles", "Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "featuredImage", "height", "id", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "CYP_4_Igm", "pmf3WyjGf", "khwz4aXjQ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1iyjg1p", "args", "onMouseLeavesc9eml", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerCp1tWBHJ6", "withCSS", "Cp1tWBHJ6_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "DividerFonts", "getFonts", "kJYAUq3Dc_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "bottomText", "content", "height", "id", "topText", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ssri0BYiC", "YIzoIYA_s", "fmfyFfnAj", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "Framerm09s1O2Le", "withCSS", "m09s1O2Le_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "AvoidLayoutJumping", "direction", "style", "isCanvas", "RenderTarget", "ref", "pe", "rafId", "vertical", "horizontal", "ue", "parent", "container", "updateSize", "rect", "p", "addPropertyControls", "ControlType", "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", "click", "height", "id", "question", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "xodNVrpHN", "o7pvRsa_Q", "ZCnZ16xHS", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1udj1cj", "args", "onTap1xcchh9", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "css", "FramerDCLIKUpS4", "withCSS", "DCLIKUpS4_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "LayoutJumpPreventerFonts", "getFonts", "AvoidLayoutJumping", "Accordion2Fonts", "DCLIKUpS4_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", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "vHFfBFr0q", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "ZCnZ16xHS1jzd8d2", "args", "ZCnZ16xHSs1xp1y", "ZCnZ16xHSx3aobp", "ZCnZ16xHS1l1kos2", "ZCnZ16xHSvqrtyy", "ZCnZ16xHS1dbgi7l", "ZCnZ16xHSlmvugz", "ZCnZ16xHS6vaz5f", "ZCnZ16xHShl907b", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerTliclEh3s", "withCSS", "TliclEh3s_default", "addPropertyControls", "ControlType", "addFonts", "BeforeAfterSlider", "beforeImage", "afterImage", "width", "height", "position", "setPosition", "ye", "sliderRef", "pe", "handleDrag", "e", "rect", "newPos", "u", "p", "addPropertyControls", "ControlType", "props", "fonts", "fontStore", "fonts", "css", "className", "LogoFonts", "getFonts", "IINSHdzLF_default", "ProjectDetailFonts", "m09s1O2Le_default", "MotionSectionWithFX", "withFX", "motion", "TextLinkFonts", "TMbURzCsz_default", "VideoFonts", "Video", "BeforeAfterSliderFonts", "BeforeAfterSlider", "Video1Fonts", "EmbedFonts", "Embed", "Embed1Fonts", "Button2Fonts", "VMDAFWcTd_default", "Accordions2Fonts", "TliclEh3s_default", "NextProjectItemFonts", "Cp1tWBHJ6_default", "SmoothScrollFonts", "SmoothScroll", "MenuTrigger2Fonts", "g99qDBne2_default", "MenuContainer2Fonts", "KuAavLe_0_default", "CursorFonts", "eeaUg3cDj_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "isSet", "value", "toResponsiveImage", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transition1", "animation", "animation1", "animation2", "getContainer", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "ywx541h2d_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "Jww2Un3Z2", "gu_5Hctsb", "bJZczwUbi", "bngrwGHbj", "vI7Y3SKaW", "Os0KDO4WO", "JixfLd1Bb", "WcG0wtYvp", "LaSv9lpTu", "l8byFb8Z2", "or7nEvSqI", "LWji77t2p", "CEf3Iy9wD", "pPvg5SNev", "v3IadHZ7q", "rbtipB7u4", "wzvy7Kvwr", "f8qSWwBuV", "AMMXRHkHU", "L4xGrKTqD", "F_YvuHfTJ", "sMKslFuvd", "OCLiQtKaA", "oiPxiGZYR", "E2JUMZuU3", "RKaGyYPAh", "fsRrg1kQbWXpDLYGOt", "Jww2Un3Z2WXpDLYGOt", "bngrwGHbjWXpDLYGOt", "idWXpDLYGOt", "YiZ6kOzbH", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "VFQz_3t2P3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "visible1", "visible2", "visible3", "visible4", "router", "useRouter", "visible5", "visible6", "isDisplayed", "visible7", "visible8", "visible9", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "RichText2", "x", "PropertyOverrides2", "Image2", "ComponentPresetsProvider", "ResolveLinks", "resolvedLinks", "enumToDisplayNameFunctions", "FormContainer", "formState", "l", "FormPlainTextInput2", "FormBooleanInput", "ChildrenCanSuspend", "collection", "paginationInfo", "index", "PathVariablesContext", "resolvedLinks1", "AnimatePresence", "Ga", "css", "FramerzVoRr5luo", "withCSS", "zVoRr5luo_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
