{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/zEmAposrjympIK2ybAcQ/Video.js", "ssg:https://framerusercontent.com/modules/j2v3l13TWjYROXGEPQZT/6pVDC0TqnA2iceBsRRla/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const 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;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();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);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}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{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: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\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__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://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const 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;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);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]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{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\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};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\",placeholder:\"../example.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](http://framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (c76752e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Vimeo from\"https://framerusercontent.com/modules/0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js\";import{Time as TimeDate}from\"https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/TcQV6SEsl3y6G9Op8tp0/Time.js\";import{Video as Video2}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import{Video as Video3}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/zEmAposrjympIK2ybAcQ/Video.js\";import ElementsLearnButton from\"#framer/local/canvasComponent/Ee9dB42Y8/Ee9dB42Y8.js\";import CardsArticleCard from\"#framer/local/canvasComponent/Foq2cnZnI/Foq2cnZnI.js\";import ElementsHeroSectionHeader from\"#framer/local/canvasComponent/FqUhWFls2/FqUhWFls2.js\";import Contact from\"#framer/local/canvasComponent/GI1RVZo7q/GI1RVZo7q.js\";import Monkeyhead from\"#framer/local/canvasComponent/jqyIYgZeQ/jqyIYgZeQ.js\";import SectionsFooter from\"#framer/local/canvasComponent/nHLyTF_Fy/nHLyTF_Fy.js\";import Projects from\"#framer/local/canvasComponent/pt3GhpUNw/pt3GhpUNw.js\";import Video1 from\"#framer/local/canvasComponent/QjX9AgyaJ/QjX9AgyaJ.js\";import ElementsContactButton from\"#framer/local/canvasComponent/U4a3gq6jh/U4a3gq6jh.js\";import SectionsAbout from\"#framer/local/canvasComponent/vlg16CpHH/vlg16CpHH.js\";import SectionsProjectsHeader from\"#framer/local/canvasComponent/ZGwJBWskW/ZGwJBWskW.js\";import ElementsNavigation from\"#framer/local/canvasComponent/ZIcoueGFH/ZIcoueGFH.js\";import*as sharedStyle4 from\"#framer/local/css/aU7lzh3ND/aU7lzh3ND.js\";import*as sharedStyle1 from\"#framer/local/css/D_1WqIISP/D_1WqIISP.js\";import*as sharedStyle from\"#framer/local/css/GIjtjHriL/GIjtjHriL.js\";import*as sharedStyle2 from\"#framer/local/css/qbVcHgDMh/qbVcHgDMh.js\";import*as sharedStyle3 from\"#framer/local/css/qQY7qerWT/qQY7qerWT.js\";import*as sharedStyle5 from\"#framer/local/css/VuA0i5h5Q/VuA0i5h5Q.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const ElementsNavigationFonts=getFonts(ElementsNavigation);const VideoFonts=getFonts(Video);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ElementsHeroSectionHeaderFonts=getFonts(ElementsHeroSectionHeader);const ElementsHeroSectionHeaderWithVariantAppearEffect=withVariantAppearEffect(ElementsHeroSectionHeader);const Video1Fonts=getFonts(Video1);const ContactFonts=getFonts(Contact);const SectionsAboutFonts=getFonts(SectionsAbout);const Video2Fonts=getFonts(Video2);const Video3Fonts=getFonts(Video3);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const CardsArticleCardFonts=getFonts(CardsArticleCard);const ContainerWithFX=withFX(Container);const ElementsLearnButtonFonts=getFonts(ElementsLearnButton);const SectionsFooterFonts=getFonts(SectionsFooter);const SectionsProjectsHeaderFonts=getFonts(SectionsProjectsHeader);const TimeDateFonts=getFonts(TimeDate);const ElementsContactButtonFonts=getFonts(ElementsContactButton);const VimeoFonts=getFonts(Vimeo);const ProjectsFonts=getFonts(Projects);const MonkeyheadFonts=getFonts(Monkeyhead);const breakpoints={DAlKf2r1d:\"(min-width: 1167px) and (max-width: 1439px)\",iJj8uRT3h:\"(min-width: 996px) and (max-width: 1166px)\",O6H7_s1r0:\"(min-width: 640px) and (max-width: 995px)\",uXVxMeSmP:\"(max-width: 639px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-MNgIo\";const variantClassNames={DAlKf2r1d:\"framer-v-kfdzkv\",iJj8uRT3h:\"framer-v-n9wde8\",O6H7_s1r0:\"framer-v-1wx4c09\",uXVxMeSmP:\"framer-v-jf8vfb\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition2={damping:46,delay:0,mass:2.9,stiffness:217,type:\"spring\"};const animation2={backgroundColor:\"rgb(0, 171, 85)\",boxShadow:\"0.39809593676181976px 0.3582863430856378px 2.46368321121613px -1px rgba(12, 199, 43, 0.19403), 1.207253071552259px 1.086527764397033px 7.47128731899597px -2px rgba(12, 199, 43, 0.18189), 3.1913267607422307px 2.8721940846680076px 19.7500588071801px -3px rgba(12, 199, 43, 0.15213), 10px 9px 61.88667061653906px -4px rgba(12, 199, 43, 0.05)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation3={backgroundColor:'var(--token-252101f2-ee22-4ee9-a2dc-c82752d85099, rgb(77, 123, 15)) /* {\"name\":\"Brand-1\"} */',boxShadow:\"0.24145061431045178px 0.24145061431045178px 0.34146273340115624px -1.25px rgba(77, 123, 15, 0.5), 2px 2px 2.8284271247461903px -2.5px rgba(77, 123, 15, 0.5)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition3};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop | xl\":\"WQLkyLRf1\",\"Laptop | lg\":\"DAlKf2r1d\",\"Mobile | 2xs\":\"uXVxMeSmP\",\"Mobile | xs\":\"O6H7_s1r0\",Tablet:\"iJj8uRT3h\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const cursor={alignment:\"center\",component:Monkeyhead,offset:{x:0,y:0},placement:\"bottom\",variant:\"S0CRPQmMu\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,kRZuc5uv3frGxQtihh,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"So6ztNAWI\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"t4xIQBdJ5\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"EkQr8ZrYF\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"IVjyf6Kir\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"iN9H9Fn2H\");const ref6=React.useRef(null);const elementId5=useRouteElementId(\"HKhOUdJ8r\");const ref7=React.useRef(null);const elementId6=useRouteElementId(\"bwpcY7Irv\");const ref8=React.useRef(null);const elementId7=useRouteElementId(\"lW2dkPX6k\");const ref9=React.useRef(null);const elementId8=useRouteElementId(\"heiUgFetp\");const ref10=React.useRef(null);const elementId9=useRouteElementId(\"UeoYmkvEq\");const ref11=React.useRef(null);const elementId10=useRouteElementId(\"E4ovIyY89\");const ref12=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"uXVxMeSmP\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"DAlKf2r1d\",\"iJj8uRT3h\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"iJj8uRT3h\")return false;return true;};const defaultLayoutId=React.useId();useCustomCursors({wavdbr:cursor});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-68e8bb38-c584-4d6a-bdc9-edc8ff84d6b5, rgb(15, 13, 11)); }\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJj8uRT3h:{\"data-framer-cursor\":undefined},O6H7_s1r0:{\"data-framer-cursor\":undefined},uXVxMeSmP:{\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),\"data-framer-cursor\":\"wavdbr\",ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a02z6d\",\"data-framer-name\":\"Start\",id:elementId,ref:ref2}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DAlKf2r1d:{height:109,width:\"1143px\"},iJj8uRT3h:{width:\"998px\"},O6H7_s1r0:{width:\"573px\"},uXVxMeSmP:{height:64,width:\"341px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:102,width:\"1432px\",y:(componentViewport?.y||0)+17,children:/*#__PURE__*/_jsx(Container,{className:\"framer-sc1bxr-container\",style:{transformPerspective:500},children:/*#__PURE__*/_jsx(ElementsNavigation,{height:\"100%\",id:\"q95xwDMfp\",layoutId:\"q95xwDMfp\",style:{height:\"100%\",width:\"100%\"},variant:\"fd4UOGKFh\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:104,width:\"1268px\",y:(componentViewport?.y||0)+-2006,children:/*#__PURE__*/_jsx(Container,{className:\"framer-o77cho-container\",style:{transformPerspective:500},children:/*#__PURE__*/_jsx(ElementsNavigation,{height:\"100%\",id:\"cs3jjFW_B\",layoutId:\"cs3jjFW_B\",style:{height:\"100%\",width:\"100%\"},variant:\"fd4UOGKFh\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-glj4dr\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ff87qg\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kxyveg\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJj8uRT3h:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-4j86a3-container\",\"data-framer-appear-id\":\"4j86a3\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJj8uRT3h:{style:{width:\"100%\"}},O6H7_s1r0:{style:{width:\"100%\"}},uXVxMeSmP:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"VZsNkTniE\",isMixedBorderRadius:false,layoutId:\"VZsNkTniE\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/V6AD1ojThOlD6VqYLzpDDGTQZQ.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-496zv7\",\"data-framer-name\":\"Hero section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DAlKf2r1d:{y:(componentViewport?.y||0)+0+0+-14+122.50000000000284+-1404},O6H7_s1r0:{y:(componentViewport?.y||0)+0+0+0+100.50000000000273+-1404},uXVxMeSmP:{y:(componentViewport?.y||0)+0+0+0+97.50000000000273+-1404}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:553,width:\"545px\",y:(componentViewport?.y||0)+0+0+0+121.80457012507168+-1404,children:/*#__PURE__*/_jsx(Container,{className:\"framer-o9nau6-container\",id:elementId1,ref:ref3,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJj8uRT3h:{variant:\"jiLAOuhxm\"},O6H7_s1r0:{variant:\"jiLAOuhxm\"},uXVxMeSmP:{variant:\"jiLAOuhxm\"}},children:/*#__PURE__*/_jsx(ElementsHeroSectionHeaderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"MFg1KRMtI\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"t4xIQBdJ5\",layoutId:\"t4xIQBdJ5\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"f5IN0kKv7\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r4ywo7\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DAlKf2r1d:{width:\"383px\",y:(componentViewport?.y||0)+0+0+-14+122.50000000000284+14.500000000000398+77},iJj8uRT3h:{height:129,width:\"333px\",y:(componentViewport?.y||0)+0+0+0+121.80457012507168+14.500000000000398+73},O6H7_s1r0:{height:121,width:\"324px\",y:(componentViewport?.y||0)+0+0+0+100.50000000000273+12+73},uXVxMeSmP:{height:440,width:\"322px\",y:(componentViewport?.y||0)+0+0+0+97.50000000000273+-26.00924092409207+-117}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:353,width:\"493px\",y:(componentViewport?.y||0)+0+0+0+121.80457012507168+14.500000000000398+72.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-less94-container\",id:elementId2,ref:ref4,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJj8uRT3h:{variant:\"jiLAOuhxm\"},O6H7_s1r0:{variant:\"jiLAOuhxm\"},uXVxMeSmP:{variant:\"jiLAOuhxm\"}},children:/*#__PURE__*/_jsx(ElementsHeroSectionHeaderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:\"f5IN0kKv7\"},__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"EkQr8ZrYF\",layoutId:\"EkQr8ZrYF\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"f5IN0kKv7\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4diifu\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DAlKf2r1d:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:801,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-14+122.50000000000284+14.500000000000398+648),pixelHeight:801,pixelWidth:1e3,sizes:\"131px\",src:\"https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png\",srcSet:\"https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png?scale-down-to=512 512w,https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png 1000w\"}},iJj8uRT3h:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:801,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+121.80457012507168+14.500000000000398+805-163),pixelHeight:801,pixelWidth:1e3,sizes:\"131px\",src:\"https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png\",srcSet:\"https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png?scale-down-to=512 512w,https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png 1000w\"}},O6H7_s1r0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:801,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+100.50000000000273+12+632-163),pixelHeight:801,pixelWidth:1e3,sizes:\"131px\",src:\"https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png\",srcSet:\"https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png?scale-down-to=512 512w,https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png 1000w\"}},uXVxMeSmP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:801,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+97.50000000000273+-26.00924092409207+760-163),pixelHeight:801,pixelWidth:1e3,sizes:\"131px\",src:\"https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png\",srcSet:\"https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png?scale-down-to=512 512w,https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:801,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+121.80457012507168+14.500000000000398+805-157),pixelHeight:801,pixelWidth:1e3,sizes:\"131px\",src:\"https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png\",srcSet:\"https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png?scale-down-to=512 512w,https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png 1000w\"},className:\"framer-1jqmoo5\",\"data-framer-name\":\"scroll_down_arrow_line_icon_scrolling_screen_sign_vector_26208016\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DAlKf2r1d:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:801,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-14+122.50000000000284+1693-220),pixelHeight:801,pixelWidth:1e3,sizes:\"131px\",src:\"https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png\",srcSet:\"https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png?scale-down-to=512 512w,https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png 1000w\"}},O6H7_s1r0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:801,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+100.50000000000273+627),pixelHeight:801,pixelWidth:1e3,sizes:\"131px\",src:\"https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png\",srcSet:\"https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png?scale-down-to=512 512w,https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png 1000w\"}},uXVxMeSmP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:801,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+97.50000000000273+1559-220),pixelHeight:801,pixelWidth:1e3,sizes:\"131px\",src:\"https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png\",srcSet:\"https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png?scale-down-to=512 512w,https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:801,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+121.80457012507168+1693-220),pixelHeight:801,pixelWidth:1e3,sizes:\"131px\",src:\"https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png\",srcSet:\"https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png?scale-down-to=512 512w,https://framerusercontent.com/images/220DwkwGhV1qlqWkire26S2xuvw.png 1000w\"},className:\"framer-os2vcn\",\"data-framer-name\":\"scroll_down_arrow_line_icon_scrolling_screen_sign_vector_26208016\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13nqtxd\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ysr8cn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})}),className:\"framer-1g8ia36\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DAlKf2r1d:{y:(componentViewport?.y||0)+0+0+-14+122.50000000000284+-624+-82},O6H7_s1r0:{y:(componentViewport?.y||0)+0+0+0+100.50000000000273+-624+-82},uXVxMeSmP:{y:(componentViewport?.y||0)+0+0+0+97.50000000000273+-624+-82}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:861,width:\"725px\",y:(componentViewport?.y||0)+0+0+0+121.80457012507168+-624+-82,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJj8uRT3h:{\"data-framer-cursor\":undefined},O6H7_s1r0:{\"data-framer-cursor\":undefined},uXVxMeSmP:{\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-nhgrew-container\",\"data-framer-cursor\":\"wavdbr\",children:/*#__PURE__*/_jsx(Video1,{height:\"100%\",id:\"UpoMW6lho\",layoutId:\"UpoMW6lho\",LXsP34CDW:ref2,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iblhk0-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"V00bXT9Zk\",isMixedBorderRadius:false,layoutId:\"V00bXT9Zk\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/5lpIyAILOEUInBBfzuPD61BhXzM.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DAlKf2r1d:{y:(componentViewport?.y||0)+0+0+-14+12731-2260},iJj8uRT3h:{height:999,width:\"974px\",y:(componentViewport?.y||0)+0+0+0+12717-2047},O6H7_s1r0:{height:1461,width:\"587px\",y:(componentViewport?.y||0)+0+0+0+10589},uXVxMeSmP:{height:1278,width:\"407px\",y:(componentViewport?.y||0)+0+0+0+10589}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:907,width:\"1047px\",y:(componentViewport?.y||0)+0+0+0+12717-2260,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6wfir4-container\",children:/*#__PURE__*/_jsx(Contact,{height:\"100%\",id:\"XjEEHxWWM\",layoutId:\"XjEEHxWWM\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ylc0zz\",\"data-framer-name\":\"About section\",id:elementId3,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c31neq\",\"data-framer-name\":\"Container\",id:elementId4,ref:ref6,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wfkzov\",\"data-framer-name\":\"Space 2\",id:elementId5,ref:ref7,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})}),className:\"framer-14ir0p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-iwdsg0\",\"data-framer-name\":\"Space 3\",id:elementId6,ref:ref8,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})}),className:\"framer-6pan61\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f88dpp\",\"data-framer-name\":\"Space 4\",id:elementId7,ref:ref9}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9ddrfz\",\"data-framer-name\":\"Space 5\",id:elementId8,ref:ref10}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yesdk1\",\"data-framer-name\":\"Space 6\",id:elementId9,ref:ref11}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oeq8jc\",\"data-framer-name\":\"Space 7\",id:elementId10,ref:ref12}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DAlKf2r1d:{y:(componentViewport?.y||0)+0+0+-14+1524+2080-887+-621},iJj8uRT3h:{y:(componentViewport?.y||0)+0+0+0+1574+1560-887+-995},O6H7_s1r0:{width:\"599px\",y:(componentViewport?.y||0)+0+0+0+1584+1570-918+-514}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:238,width:\"702px\",y:(componentViewport?.y||0)+0+0+0+1574+2030-887+-995,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jqgj99-container hidden-jf8vfb\",children:/*#__PURE__*/_jsx(SectionsAbout,{height:\"100%\",id:\"zALuiEssJ\",layoutId:\"zALuiEssJ\",style:{width:\"100%\"},variant:\"vuytOticK\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-r6914x-container\",children:/*#__PURE__*/_jsx(Video2,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"ka31RsAUA\",isMixedBorderRadius:false,layoutId:\"ka31RsAUA\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/cRmSqcTGf1zHUwAxeoDRKFK9Czk.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i3pou1-container\",style:{scale:.7},children:/*#__PURE__*/_jsx(Video2,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"nWmNBnkvp\",isMixedBorderRadius:false,layoutId:\"nWmNBnkvp\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/qft3oUQtJAIrx0UO71RTfkGYIzc.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qlq7g5-container\",children:/*#__PURE__*/_jsx(Video3,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"gxAykjTbQ\",isMixedBorderRadius:false,layoutId:\"gxAykjTbQ\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1to9nns\",\"data-framer-name\":\"How it work\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mxmzlg\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hu52fa\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-y8j0tf\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-6wd8ps\",\"data-framer-name\":\"Content\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1cwj9u5\",\"data-styles-preset\":\"GIjtjHriL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-47d29547-5a89-49b6-be7c-21159c249a4d, rgb(250, 249, 247))\"},children:[\"WHY WORK \",/*#__PURE__*/_jsx(\"strong\",{children:\"WITH ME\"})]})}),className:\"framer-3j723\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15azz1y\",\"data-styles-preset\":\"D_1WqIISP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-eb8c27e0-67a7-4528-8f45-dec76405f53e, rgb(129, 123, 111))\"},children:\"In the world of creativity, collaboration is key, and here's why partnering with me is the right choice\"})}),className:\"framer-wsn9wn\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1a24dpo\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1welzv9\",\"data-styles-preset\":\"qbVcHgDMh\",style:{\"--framer-text-color\":\"var(--token-47d29547-5a89-49b6-be7c-21159c249a4d, rgb(250, 249, 247))\"},children:\"1.\"})}),className:\"framer-17p6yx8\",\"data-framer-name\":\"Step number\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1odnvgl\",\"data-framer-name\":\"Heading & Description\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ssabmr\",\"data-border\":true,\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-17h5qw0\",\"data-styles-preset\":\"qQY7qerWT\",style:{\"--framer-text-color\":\"var(--token-47d29547-5a89-49b6-be7c-21159c249a4d, rgb(250, 249, 247))\"},children:\"Experience\"})}),className:\"framer-6x8el1\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15azz1y\",\"data-styles-preset\":\"D_1WqIISP\",style:{\"--framer-text-color\":\"var(--token-eb8c27e0-67a7-4528-8f45-dec76405f53e, rgb(129, 123, 111))\"},children:\"With years of hands-on experience as an editor, I bring a wealth of knowledge and expertise to every project.\"})}),className:\"framer-1r60snd\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-wn330w\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1welzv9\",\"data-styles-preset\":\"qbVcHgDMh\",style:{\"--framer-text-color\":\"var(--token-47d29547-5a89-49b6-be7c-21159c249a4d, rgb(250, 249, 247))\"},children:\"2.\"})}),className:\"framer-fl1zfc\",\"data-framer-name\":\"Step number\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-442vbv\",\"data-framer-name\":\"Heading & Description\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-pmuob\",\"data-border\":true,\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-17h5qw0\",\"data-styles-preset\":\"qQY7qerWT\",style:{\"--framer-text-color\":\"var(--token-47d29547-5a89-49b6-be7c-21159c249a4d, rgb(250, 249, 247))\"},children:\"Creative\"})}),className:\"framer-1m210jp\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15azz1y\",\"data-styles-preset\":\"D_1WqIISP\",style:{\"--framer-text-color\":\"var(--token-eb8c27e0-67a7-4528-8f45-dec76405f53e, rgb(129, 123, 111))\"},children:\"Not just a computer savvy, keyboard shortcuts using techno wizard but all that combined with a artists approach.  \"})}),className:\"framer-1rowix0\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-qmwxwj\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1welzv9\",\"data-styles-preset\":\"qbVcHgDMh\",style:{\"--framer-text-color\":\"var(--token-47d29547-5a89-49b6-be7c-21159c249a4d, rgb(250, 249, 247))\"},children:\"3.\"})}),className:\"framer-byw4wo\",\"data-framer-name\":\"Step number\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10zbx5v\",\"data-framer-name\":\"Heading & Description\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bh32pl\",\"data-border\":true,\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-17h5qw0\",\"data-styles-preset\":\"qQY7qerWT\",style:{\"--framer-text-color\":\"var(--token-47d29547-5a89-49b6-be7c-21159c249a4d, rgb(250, 249, 247))\"},children:\"Innovative\"})}),className:\"framer-1mprfqu\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15azz1y\",\"data-styles-preset\":\"D_1WqIISP\",style:{\"--framer-text-color\":\"var(--token-eb8c27e0-67a7-4528-8f45-dec76405f53e, rgb(129, 123, 111))\"},children:\"I thrive on challenges, constantly seeking innovative solutions that set your project apart in a crowded digital landscape.\"})}),className:\"framer-akne9q\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-11sqh76\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1welzv9\",\"data-styles-preset\":\"qbVcHgDMh\",style:{\"--framer-text-color\":\"var(--token-47d29547-5a89-49b6-be7c-21159c249a4d, rgb(250, 249, 247))\"},children:\"4.\"})}),className:\"framer-64xofl\",\"data-framer-name\":\"Step number\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ngsm9j\",\"data-framer-name\":\"Heading & Description\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hzk68v\",\"data-border\":true,\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-17h5qw0\",\"data-styles-preset\":\"qQY7qerWT\",style:{\"--framer-text-color\":\"var(--token-47d29547-5a89-49b6-be7c-21159c249a4d, rgb(250, 249, 247))\"},children:\"Design\"})}),className:\"framer-xc8it6\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15azz1y\",\"data-styles-preset\":\"D_1WqIISP\",style:{\"--framer-text-color\":\"var(--token-eb8c27e0-67a7-4528-8f45-dec76405f53e, rgb(129, 123, 111))\"},children:\"Meticulous attention to detail is at the core of my design process, ensuring a polished and flawless end product.\"})}),className:\"framer-j9utr3\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-vahc80\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1welzv9\",\"data-styles-preset\":\"qbVcHgDMh\",style:{\"--framer-text-color\":\"var(--token-47d29547-5a89-49b6-be7c-21159c249a4d, rgb(250, 249, 247))\"},children:\"5.\"})}),className:\"framer-1mei9ql\",\"data-framer-name\":\"Step number\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fq6mry\",\"data-framer-name\":\"Heading & Description\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dc6mzg\",\"data-border\":true,\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-17h5qw0\",\"data-styles-preset\":\"qQY7qerWT\",style:{\"--framer-text-color\":\"var(--token-47d29547-5a89-49b6-be7c-21159c249a4d, rgb(250, 249, 247))\"},children:\"Partnership\"})}),className:\"framer-13u4h3a\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15azz1y\",\"data-styles-preset\":\"D_1WqIISP\",style:{\"--framer-text-color\":\"var(--token-eb8c27e0-67a7-4528-8f45-dec76405f53e, rgb(129, 123, 111))\"},children:\"I value open communication and collaboration. Your insights are crucial, and together, we'll shape a design that exceeds expectations.\"})}),className:\"framer-ujtnlh\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fobuui-container\",children:/*#__PURE__*/_jsx(Video2,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Wa7S5vCUm\",isMixedBorderRadius:false,layoutId:\"Wa7S5vCUm\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/IlWX6u7mS052bNhAlGT4BwA5xc.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b77k44\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yu2v25\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aeht50\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1cwj9u5\",\"data-styles-preset\":\"GIjtjHriL\",style:{\"--framer-text-color\":\"var(--token-47d29547-5a89-49b6-be7c-21159c249a4d, rgb(250, 249, 247))\"},children:\"\u2022PRESS\u2022\"})}),className:\"framer-bvhmy6\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DAlKf2r1d:{height:324,width:\"1136px\",y:(componentViewport?.y||0)+0+0+-14+8778.000000000004+114},iJj8uRT3h:{width:\"467px\",y:(componentViewport?.y||0)+0+0+0+7896.000000000004+95},O6H7_s1r0:{width:\"420px\",y:(componentViewport?.y||0)+0+0+0+7843+95},uXVxMeSmP:{height:363,width:\"348px\",y:(componentViewport?.y||0)+0+0+0+7843+95}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:340,width:\"1094px\",y:(componentViewport?.y||0)+0+0+0+8765+0+114.80000000000001,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-njhytm-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardsArticleCard,{Bb5CNrp9M:\"\",height:\"100%\",id:\"LCMA16qSV\",layoutId:\"LCMA16qSV\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YqjR6TiEm:kRZuc5uv3frGxQtihh})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://shoutoutla.com/meet-mike-e-lesovsky-storyteller-editor-artist/\",motionChild:true,nodeId:\"vMs6mfRjz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DAlKf2r1d:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-14+8778.000000000004+638.0000000000002),sizes:\"387px\",src:\"https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg\",srcSet:\"https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg 1080w\"}},iJj8uRT3h:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+7896.000000000004+477.0000000000002),sizes:\"287px\",src:\"https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg\",srcSet:\"https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg 1080w\"}},O6H7_s1r0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+7843+433.36817102137786),sizes:\"287px\",src:\"https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg\",srcSet:\"https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg 1080w\"}},uXVxMeSmP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+7843+568.2007125890738),sizes:\"287px\",src:\"https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg\",srcSet:\"https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+8765+533.0580503833518),sizes:\"338px\",src:\"https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg\",srcSet:\"https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg 1080w\"},className:\"framer-1tilbpn framer-lux5qc\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-z6ztts\",\"data-styles-preset\":\"aU7lzh3ND\",style:{\"--framer-text-color\":\"var(--token-47d29547-5a89-49b6-be7c-21159c249a4d, rgb(250, 249, 247))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://shoutoutla.com/meet-mike-e-lesovsky-storyteller-editor-artist/\",motionChild:true,nodeId:\"YDsbjI60X\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-r79ity\",\"data-styles-preset\":\"VuA0i5h5Q\",children:\"Meet Mike E. Lesovsky: Storyteller/Editor/Artist\"})})})}),className:\"framer-gck1vk\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DAlKf2r1d:{height:35,width:\"122px\",y:(componentViewport?.y||0)+0+0+-14+8778.000000000004+859},iJj8uRT3h:{height:218,width:\"-119px\",y:(componentViewport?.y||0)+0+0+0+7896.000000000004+620},O6H7_s1r0:{height:299,width:\"-559px\",y:(componentViewport?.y||0)+0+0+0+7843+620},uXVxMeSmP:{height:299,width:\"-730px\",y:(componentViewport?.y||0)+0+0+0+7843+620}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:293,width:\"90px\",y:(componentViewport?.y||0)+0+0+0+8765+620,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xo5we-container\",children:/*#__PURE__*/_jsx(ElementsLearnButton,{height:\"100%\",id:\"pMiUiZ2EU\",layoutId:\"pMiUiZ2EU\",r8sBnu8cz:\"Read Article\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9gxc86-container\",children:/*#__PURE__*/_jsx(Video2,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"AM7oAWO4B\",isMixedBorderRadius:false,layoutId:\"AM7oAWO4B\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/7jrbOXBQsX7kjtvW2Uue0pKCA.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jgwm49\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1cwj9u5\",\"data-styles-preset\":\"GIjtjHriL\",style:{\"--framer-text-color\":\"var(--token-47d29547-5a89-49b6-be7c-21159c249a4d, rgb(250, 249, 247))\"},children:\"\u2022PRESS\u2022\"})}),className:\"framer-atrs7v\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DAlKf2r1d:{y:(componentViewport?.y||0)+0+0+-14+12731- -6859+0+98.80000000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:283,width:\"1138px\",y:(componentViewport?.y||0)+0+0+0+12717- -6859+0+98.80000000000001,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yfnrb5-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardsArticleCard,{Bb5CNrp9M:\"\",height:\"100%\",id:\"cS4iSBs_6\",layoutId:\"cS4iSBs_6\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YqjR6TiEm:kRZuc5uv3frGxQtihh})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://shoutoutla.com/meet-mike-e-lesovsky-storyteller-editor-artist/\",motionChild:true,nodeId:\"vO3jns2TL\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DAlKf2r1d:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-14+12731- -6859+0+427.8),sizes:\"267px\",src:\"https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg\",srcSet:\"https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+12717- -6859+0+427.8),sizes:\"267px\",src:\"https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg\",srcSet:\"https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4dJL9x8owPMoGxIqJ4LGgqWyh44.jpg 1080w\"},className:\"framer-1bpxnzc framer-lux5qc\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-z6ztts\",\"data-styles-preset\":\"aU7lzh3ND\",style:{\"--framer-text-color\":\"var(--token-47d29547-5a89-49b6-be7c-21159c249a4d, rgb(250, 249, 247))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://shoutoutla.com/meet-mike-e-lesovsky-storyteller-editor-artist/\",motionChild:true,nodeId:\"HvYvGgKec\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-r79ity\",\"data-styles-preset\":\"VuA0i5h5Q\",children:\"Meet Mike E. Lesovsky: Storyteller/Editor/Artist\"})})})}),className:\"framer-1985jlf\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10lqq2c\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u2cb8m\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qf4wxh\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DAlKf2r1d:{y:(componentViewport?.y||0)+0+0+-14+12731- -6859+1040-329}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,width:\"90px\",y:(componentViewport?.y||0)+0+0+0+12717- -6859+1040-329,children:/*#__PURE__*/_jsx(Container,{className:\"framer-105qea9-container\",children:/*#__PURE__*/_jsx(ElementsLearnButton,{height:\"100%\",id:\"KBzceDlzX\",layoutId:\"KBzceDlzX\",r8sBnu8cz:\"Read Article\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nf4gmn\",\"data-border\":true,\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15azz1y\",\"data-styles-preset\":\"D_1WqIISP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cc7207b5-20d8-4524-843a-150380cf0cc0, rgb(173, 168, 159))\"},children:\"Contact me and let's bring your vision to life\"})}),className:\"framer-1vwsirl\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/mikeelesovsky/\",motionChild:true,nodeId:\"bo0XeKaVo\",openInNewTab:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DAlKf2r1d:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-14+12731- -8275+0+133),pixelHeight:2048,pixelWidth:2048,sizes:\"119px\",src:\"https://framerusercontent.com/images/d5tXz7xgz6PDV5a2qhc1umEoI.png\",srcSet:\"https://framerusercontent.com/images/d5tXz7xgz6PDV5a2qhc1umEoI.png?scale-down-to=512 512w,https://framerusercontent.com/images/d5tXz7xgz6PDV5a2qhc1umEoI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/d5tXz7xgz6PDV5a2qhc1umEoI.png 2048w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+12717- -8275+0+133),pixelHeight:2048,pixelWidth:2048,sizes:\"119px\",src:\"https://framerusercontent.com/images/d5tXz7xgz6PDV5a2qhc1umEoI.png\",srcSet:\"https://framerusercontent.com/images/d5tXz7xgz6PDV5a2qhc1umEoI.png?scale-down-to=512 512w,https://framerusercontent.com/images/d5tXz7xgz6PDV5a2qhc1umEoI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/d5tXz7xgz6PDV5a2qhc1umEoI.png 2048w\"},className:\"framer-1ahnfcg framer-lux5qc\",\"data-framer-name\":\"LinkedIn_icon_svg\",whileHover:animation2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/mike_e_lesovsky/\",motionChild:true,nodeId:\"iZixHvqoO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DAlKf2r1d:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:225,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-14+12731- -8275+0+273),pixelHeight:225,pixelWidth:225,src:\"https://framerusercontent.com/images/w2S9nHGMRLXENKdYrhw7VqC0Y.jpeg\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:225,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+12717- -8275+0+273),pixelHeight:225,pixelWidth:225,src:\"https://framerusercontent.com/images/w2S9nHGMRLXENKdYrhw7VqC0Y.jpeg\"},className:\"framer-zllsay framer-lux5qc\",\"data-framer-name\":\"Unknown\",whileHover:animation3})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DAlKf2r1d:{y:(componentViewport?.y||0)+0+0+-14+12731- -8275+-9410}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:728,width:\"1312px\",y:(componentViewport?.y||0)+0+0+0+12717- -8275+-9410,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fdsiuh-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJj8uRT3h:{variant:\"JKoSuML0E\"},O6H7_s1r0:{variant:\"JKoSuML0E\"},uXVxMeSmP:{variant:\"JKoSuML0E\"}},children:/*#__PURE__*/_jsx(SectionsFooter,{height:\"100%\",id:\"GWGUSN6Td\",layoutId:\"GWGUSN6Td\",style:{height:\"100%\",width:\"100%\"},variant:\"Jao45Um7g\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DAlKf2r1d:{y:(componentViewport?.y||0)+0+0+-14+12731- -2881}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:168,width:\"909px\",y:(componentViewport?.y||0)+0+0+0+12717- -2881,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vh8ewi-container\",children:/*#__PURE__*/_jsx(SectionsProjectsHeader,{height:\"100%\",id:\"u76gmVzsV\",layoutId:\"u76gmVzsV\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18s6zf4\",\"data-framer-name\":\"Container\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nkp4vp\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e6fw1m-container\",children:/*#__PURE__*/_jsx(Video2,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"FJ2lgtCtv\",isMixedBorderRadius:false,layoutId:\"FJ2lgtCtv\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/zeirjU4xobwHxvvwnGY1pUQI.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lkfw6a\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\\xa92024lesovsky.com\"})}),className:\"framer-58lo2e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1i8q7us\",\"data-framer-name\":\"Smile\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 188 206\"><path d=\"M 61.794 99.474 C 61.794 100.991 61.357 103.583 63.593 103.583 C 65.106 103.583 67.359 101.562 67.446 99.988 C 67.539 98.334 67.205 96.393 65.134 96.393 C 64.015 96.393 61.259 95.919 60.766 96.907 M 113.699 94.852 C 113.699 98.175 113.267 100.487 117.525 99.36 C 120.589 98.55 124.491 96.079 124.491 92.541 C 124.491 88.406 121.007 88.689 117.81 88.689 C 114.724 88.689 115.755 92.491 115.755 94.852 M 36.611 129.262 C 45.779 137.591 54.129 146.355 65.962 151.005 C 73.737 154.059 82.513 153.401 90.687 153.401 C 100.201 153.401 108.152 150.654 116.325 145.812 C 131.308 136.936 147.319 124.242 155.954 108.777 C 159.643 102.169 160.576 95.84 162.007 88.689\" fill=\"transparent\" stroke-width=\"7.46\" stroke=\"rgb(153, 153, 153)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 70.253 55.115 C 53.072 55.115 42.431 58.366 29.618 71.094 C 14.885 85.732 7.141 103.664 4.819 123.926 C 2.603 143.269 3.058 160.784 16.811 175.592 C 38.57 199.015 75.769 204.199 106.114 201.366 C 132.64 198.889 159.745 182.52 172.363 158.389 C 186.733 130.909 187.697 93.261 176.903 64.563 C 170.946 48.723 160.504 35.155 147.796 24.093 C 133.88 11.979 116.804 7.682 98.836 5.432 C 74.344 2.366 48.172 3.248 26.242 15.23\" fill=\"transparent\" stroke-width=\"7.46\" stroke=\"rgb(153, 153, 153)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9009338354,withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19y89l6-container\",style:{scale:2.3},children:/*#__PURE__*/_jsx(TimeDate,{color:\"rgb(247, 240, 240)\",font:{fontFamily:'\"Anonymous Pro\", monospace',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"gCbnDrr74\",layoutId:\"gCbnDrr74\",monthFormat:\"long\",outputType:\"time\",showMinutes:true,showMonth:true,showSeconds:true,showWeekday:true,showYear:true,style:{height:\"100%\",width:\"100%\"},tabularFont:true,timeFormat:\"12h\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jx1uy9\",\"data-border\":true,\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15azz1y\",\"data-styles-preset\":\"D_1WqIISP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cc7207b5-20d8-4524-843a-150380cf0cc0, rgb(173, 168, 159))\"},children:\"Contact me and let's bring your vision to life\"})}),className:\"framer-1fvbmcn\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/mikeelesovsky/\",motionChild:true,nodeId:\"S6WOsOJRR\",openInNewTab:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DAlKf2r1d:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-14+9256+0+296),pixelHeight:2048,pixelWidth:2048,sizes:\"119px\",src:\"https://framerusercontent.com/images/d5tXz7xgz6PDV5a2qhc1umEoI.png\",srcSet:\"https://framerusercontent.com/images/d5tXz7xgz6PDV5a2qhc1umEoI.png?scale-down-to=512 512w,https://framerusercontent.com/images/d5tXz7xgz6PDV5a2qhc1umEoI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/d5tXz7xgz6PDV5a2qhc1umEoI.png 2048w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+9256+0+296),pixelHeight:2048,pixelWidth:2048,sizes:\"119px\",src:\"https://framerusercontent.com/images/d5tXz7xgz6PDV5a2qhc1umEoI.png\",srcSet:\"https://framerusercontent.com/images/d5tXz7xgz6PDV5a2qhc1umEoI.png?scale-down-to=512 512w,https://framerusercontent.com/images/d5tXz7xgz6PDV5a2qhc1umEoI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/d5tXz7xgz6PDV5a2qhc1umEoI.png 2048w\"},className:\"framer-jne1cw framer-lux5qc\",\"data-framer-name\":\"LinkedIn_icon_svg\",whileHover:animation2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/mike_e_lesovsky/\",motionChild:true,nodeId:\"GgJeox0CV\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DAlKf2r1d:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:225,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-14+9256+0+599),pixelHeight:225,pixelWidth:225,src:\"https://framerusercontent.com/images/w2S9nHGMRLXENKdYrhw7VqC0Y.jpeg\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:225,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+9256+0+599),pixelHeight:225,pixelWidth:225,src:\"https://framerusercontent.com/images/w2S9nHGMRLXENKdYrhw7VqC0Y.jpeg\"},className:\"framer-1d8ih7b framer-lux5qc\",\"data-framer-name\":\"Unknown\",whileHover:animation3})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ylb980\",\"data-framer-name\":\"Contact\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"141px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Reach Out\"})}),className:\"framer-ynl0he\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oalqot\",\"data-framer-name\":\"Column\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DAlKf2r1d:{y:(componentViewport?.y||0)+0+0+-14+9256+0+877+100+229.20000000000002+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:126,width:\"126px\",y:(componentViewport?.y||0)+0+0+0+9256+0+877+100+229.20000000000002+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qtt30t-container\",children:/*#__PURE__*/_jsx(ElementsContactButton,{height:\"100%\",id:\"enD9N561m\",layoutId:\"enD9N561m\",RSukByqRf:\"Contact\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DAlKf2r1d:{y:(componentViewport?.y||0)+0+0+-14+9256+-7708}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:872,width:\"712px\",y:(componentViewport?.y||0)+0+0+0+9256+-7708,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jfiybd-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJj8uRT3h:{variant:\"JKoSuML0E\"},O6H7_s1r0:{variant:\"JKoSuML0E\"},uXVxMeSmP:{variant:\"JKoSuML0E\"}},children:/*#__PURE__*/_jsx(SectionsFooter,{height:\"100%\",id:\"ZJ8Bablw7\",layoutId:\"ZJ8Bablw7\",style:{height:\"100%\",width:\"100%\"},variant:\"Jao45Um7g\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1srdcxz-container\",children:/*#__PURE__*/_jsx(Video2,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"i7MtVM9qm\",isMixedBorderRadius:false,layoutId:\"i7MtVM9qm\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/cRmSqcTGf1zHUwAxeoDRKFK9Czk.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DAlKf2r1d:{height:-4027,width:\"1040px\",y:(componentViewport?.y||0)+0+0+-14+9256+124},iJj8uRT3h:{width:\"1033px\"},O6H7_s1r0:{width:\"636px\"},uXVxMeSmP:{width:\"420px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:-4041,width:\"1452px\",y:(componentViewport?.y||0)+0+0+0+9256+124,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f6djem-container\",children:/*#__PURE__*/_jsx(Contact,{height:\"100%\",id:\"XED0SKFpZ\",layoutId:\"XED0SKFpZ\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DAlKf2r1d:{y:(componentViewport?.y||0)+0+0+-14+9256+-5036- -1526}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:206,width:\"180px\",y:(componentViewport?.y||0)+0+0+0+9256+-5050- -1526,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uu0jjm-container\",children:/*#__PURE__*/_jsx(ElementsContactButton,{height:\"100%\",id:\"x_BSIxqFb\",layoutId:\"x_BSIxqFb\",RSukByqRf:\"Contact\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vda67m\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\\xa92024lesovsky.com\"})}),className:\"framer-qnqrze\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-313dw4\",\"data-framer-name\":\"Smile\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 188 206\"><path d=\"M 61.794 99.474 C 61.794 100.991 61.357 103.583 63.593 103.583 C 65.106 103.583 67.359 101.562 67.446 99.988 C 67.539 98.334 67.205 96.393 65.134 96.393 C 64.015 96.393 61.259 95.919 60.766 96.907 M 113.699 94.852 C 113.699 98.175 113.267 100.487 117.525 99.36 C 120.589 98.55 124.491 96.079 124.491 92.541 C 124.491 88.406 121.007 88.689 117.81 88.689 C 114.724 88.689 115.755 92.491 115.755 94.852 M 36.611 129.262 C 45.779 137.591 54.129 146.355 65.962 151.005 C 73.737 154.059 82.513 153.401 90.687 153.401 C 100.201 153.401 108.152 150.654 116.325 145.812 C 131.308 136.936 147.319 124.242 155.954 108.777 C 159.643 102.169 160.576 95.84 162.007 88.689\" fill=\"transparent\" stroke-width=\"7.46\" stroke=\"rgb(153, 153, 153)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 70.253 55.115 C 53.072 55.115 42.431 58.366 29.618 71.094 C 14.885 85.732 7.141 103.664 4.819 123.926 C 2.603 143.269 3.058 160.784 16.811 175.592 C 38.57 199.015 75.769 204.199 106.114 201.366 C 132.64 198.889 159.745 182.52 172.363 158.389 C 186.733 130.909 187.697 93.261 176.903 64.563 C 170.946 48.723 160.504 35.155 147.796 24.093 C 133.88 11.979 116.804 7.682 98.836 5.432 C 74.344 2.366 48.172 3.248 26.242 15.23\" fill=\"transparent\" stroke-width=\"7.46\" stroke=\"rgb(153, 153, 153)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9009338354,withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qyqi14-container\",style:{scale:2.3},children:/*#__PURE__*/_jsx(TimeDate,{color:\"rgb(247, 240, 240)\",font:{fontFamily:'\"Anonymous Pro\", monospace',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"uk2tY_heI\",layoutId:\"uk2tY_heI\",monthFormat:\"long\",outputType:\"time\",showMinutes:true,showMonth:true,showSeconds:true,showWeekday:true,showYear:true,style:{height:\"100%\",width:\"100%\"},tabularFont:true,timeFormat:\"12h\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6svemq-container hidden-kfdzkv hidden-n9wde8\",children:/*#__PURE__*/_jsx(Video2,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"DDEpkbooi\",isMixedBorderRadius:false,layoutId:\"DDEpkbooi\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:\"https://vimeo.com/1037114026\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-143a71s-container hidden-n9wde8\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"cTbtiTjtJ\",isMixedBorderRadius:false,layoutId:\"cTbtiTjtJ\",loop:true,mute:true,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:\"https://vimeo.com/1037114026\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DAlKf2r1d:{width:\"1123px\",y:(componentViewport?.y||0)+0+0+-14+3646},iJj8uRT3h:{width:\"924px\"},O6H7_s1r0:{height:1115,width:\"354px\",y:(componentViewport?.y||0)+0+0+0+3670},uXVxMeSmP:{height:659,width:\"82px\",y:(componentViewport?.y||0)+0+0+0+4072.5384615384646}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1096,width:\"1426px\",y:(componentViewport?.y||0)+0+0+0+3646,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cu0r9u-container\",children:/*#__PURE__*/_jsx(Projects,{height:\"100%\",id:\"gTJ2BR9Ns\",layoutId:\"gTJ2BR9Ns\",style:{height:\"100%\",width:\"100%\"},variant:\"wuFfQzDkR\",width:\"100%\"})})})})]})})})]})}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MNgIo.framer-lux5qc, .framer-MNgIo .framer-lux5qc { display: block; }\",\".framer-MNgIo.framer-72rtr7 { align-content: flex-start; align-items: flex-start; background-color: var(--token-68e8bb38-c584-4d6a-bdc9-edc8ff84d6b5, #0f0d0b); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 12717px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-MNgIo .framer-1a02z6d { background-color: var(--token-68e8bb38-c584-4d6a-bdc9-edc8ff84d6b5, #000000); flex: none; height: 64px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 4px; width: 100%; }\",\".framer-MNgIo .framer-sc1bxr-container { flex: none; height: 102px; left: calc(49.58333333333336% - 1432px / 2); opacity: 0.95; position: absolute; top: 17px; width: 1432px; z-index: 10; }\",\".framer-MNgIo .framer-o77cho-container { flex: none; height: 104px; left: -1362px; opacity: 0.95; position: absolute; top: -2006px; width: 1268px; z-index: 10; }\",\".framer-MNgIo .framer-glj4dr { bottom: 0px; flex: none; left: -9px; overflow: hidden; position: absolute; top: 0px; width: 1424px; }\",\".framer-MNgIo .framer-ff87qg { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-MNgIo .framer-1kxyveg { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-MNgIo .framer-4j86a3-container { bottom: 11052px; flex: none; left: 46px; position: absolute; right: 0px; top: 909px; z-index: 1; }\",\".framer-MNgIo .framer-496zv7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1693px; justify-content: flex-start; left: calc(50.491573033707894% - 1423px / 2); overflow: visible; padding: 0px; position: absolute; top: calc(7.614253126720702% - 1693px / 2); width: 1423px; z-index: 1; }\",\".framer-MNgIo .framer-o9nau6-container { flex: none; height: 553px; left: 975px; max-width: 560px; position: absolute; top: -1404px; width: 545px; z-index: 10; }\",\".framer-MNgIo .framer-1r4ywo7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: 805px; justify-content: flex-start; left: calc(36.40196767392834% - min(1168px, 965px) / 2); max-width: 1168px; overflow: hidden; padding: 0px 24px 0px 24px; position: absolute; top: calc(24.63083284111048% - 805px / 2); width: 965px; z-index: 1; }\",\".framer-MNgIo .framer-less94-container { flex: none; height: 353px; left: 8px; max-width: 560px; position: absolute; top: 73px; width: 493px; z-index: 1; }\",\".framer-MNgIo .framer-4diifu { bottom: -169px; flex: none; height: 717px; left: -1127px; overflow: visible; position: absolute; width: 1062px; }\",\".framer-MNgIo .framer-1jqmoo5 { aspect-ratio: 1.2484394506866416 / 1; bottom: 52px; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 105px); left: 568px; overflow: visible; position: absolute; width: 131px; z-index: 1; }\",\".framer-MNgIo .framer-os2vcn { aspect-ratio: 1.2484394506866416 / 1; bottom: 115px; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 105px); left: -411px; overflow: visible; position: absolute; width: 131px; z-index: 1; }\",\".framer-MNgIo .framer-13nqtxd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: 495px; justify-content: flex-start; left: 66px; max-width: 1168px; overflow: hidden; padding: 0px 24px 0px 24px; position: absolute; top: -624px; width: 603px; z-index: 1; }\",\".framer-MNgIo .framer-ysr8cn { align-content: center; align-items: center; bottom: -120px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: -15px; overflow: visible; padding: 0px; position: absolute; right: -255px; top: -66px; }\",\".framer-MNgIo .framer-1g8ia36, .framer-MNgIo .framer-14ir0p, .framer-MNgIo .framer-6pan61 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-MNgIo .framer-nhgrew-container { bottom: -284px; flex: none; position: absolute; right: -803px; top: -82px; width: 725px; z-index: 1; }\",\".framer-MNgIo .framer-1iblhk0-container { flex: none; height: 685px; left: calc(54.67322557976109% - 663px / 2); position: absolute; top: -105px; width: 663px; z-index: 1; }\",\".framer-MNgIo .framer-6wfir4-container { bottom: 1353px; flex: none; height: 907px; left: calc(49.929775280898895% - 1047px / 2); position: absolute; width: 1047px; z-index: 1; }\",\".framer-MNgIo .framer-1ylc0zz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 2030px; justify-content: center; overflow: visible; padding: 780px 0px 780px 0px; position: absolute; right: -8px; top: 1574px; width: 1405px; z-index: 1; }\",\".framer-MNgIo .framer-c31neq { align-content: center; align-items: center; bottom: 26px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 154px; height: 861px; justify-content: center; left: calc(50.96085409252671% - min(1168px, 757px) / 2); max-width: 1168px; overflow: visible; padding: 160px 24px 192px 24px; position: absolute; width: 757px; z-index: 1; }\",\".framer-MNgIo .framer-1wfkzov { align-content: center; align-items: center; background-color: var(--token-68e8bb38-c584-4d6a-bdc9-edc8ff84d6b5, #000000); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 39px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-MNgIo .framer-iwdsg0 { align-content: center; align-items: center; background-color: var(--token-68e8bb38-c584-4d6a-bdc9-edc8ff84d6b5, #000000); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 336px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 528px; }\",\".framer-MNgIo .framer-1f88dpp, .framer-MNgIo .framer-9ddrfz, .framer-MNgIo .framer-1yesdk1, .framer-MNgIo .framer-oeq8jc { background-color: var(--token-68e8bb38-c584-4d6a-bdc9-edc8ff84d6b5, #000000); flex: none; height: 39px; overflow: visible; position: relative; width: 260px; }\",\".framer-MNgIo .framer-1jqgj99-container { flex: none; height: auto; left: 50%; position: absolute; top: -995px; transform: translateX(-50%); width: 702px; z-index: 2; }\",\".framer-MNgIo .framer-r6914x-container { bottom: -20852px; flex: none; height: 608px; position: absolute; right: -11px; width: 624px; z-index: 1; }\",\".framer-MNgIo .framer-1i3pou1-container { flex: none; height: 1096px; left: -123px; position: absolute; top: 2290px; width: 819px; z-index: 1; }\",\".framer-MNgIo .framer-qlq7g5-container { flex: none; height: 1216px; position: relative; width: 784px; }\",\".framer-MNgIo .framer-1to9nns { align-content: center; align-items: center; bottom: 2683px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1368px; justify-content: center; left: -6px; overflow: visible; padding: 2028px 0px 2028px 0px; position: absolute; right: -19px; top: 5736px; z-index: 1; }\",\".framer-MNgIo .framer-mxmzlg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1535px; justify-content: flex-start; left: calc(49.96549344375433% - 1009px / 2); overflow: hidden; padding: 0px; position: absolute; top: 190px; width: 1009px; z-index: 1; }\",\".framer-MNgIo .framer-hu52fa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1032px; justify-content: flex-start; left: -830px; overflow: hidden; padding: 516px 0px 516px 0px; position: absolute; right: -1013px; top: -1060px; z-index: 1; }\",\".framer-MNgIo .framer-y8j0tf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 720px; height: 522px; justify-content: flex-start; left: calc(50.00000000000002% - min(1168px, 1168px) / 2); max-width: 1168px; overflow: visible; padding: 0px 24px 0px 24px; position: absolute; top: 182px; width: 1168px; z-index: 1; }\",\".framer-MNgIo .framer-6wd8ps { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MNgIo .framer-3j723 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 636px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-MNgIo .framer-wsn9wn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 630px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-MNgIo .framer-1a24dpo, .framer-MNgIo .framer-wn330w, .framer-MNgIo .framer-qmwxwj, .framer-MNgIo .framer-11sqh76, .framer-MNgIo .framer-vahc80 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MNgIo .framer-17p6yx8, .framer-MNgIo .framer-fl1zfc, .framer-MNgIo .framer-byw4wo, .framer-MNgIo .framer-64xofl, .framer-MNgIo .framer-1mei9ql { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 64px; word-break: break-word; word-wrap: break-word; }\",\".framer-MNgIo .framer-1odnvgl, .framer-MNgIo .framer-442vbv, .framer-MNgIo .framer-10zbx5v, .framer-MNgIo .framer-1ngsm9j, .framer-MNgIo .framer-fq6mry { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-MNgIo .framer-1ssabmr, .framer-MNgIo .framer-pmuob, .framer-MNgIo .framer-1bh32pl, .framer-MNgIo .framer-1hzk68v, .framer-MNgIo .framer-dc6mzg { --border-bottom-width: 1px; --border-color: var(--token-936fd169-2ae1-4cd1-afc5-f74c79a2c1f5, rgba(255, 255, 255, 0.1)); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 3px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-MNgIo .framer-6x8el1, .framer-MNgIo .framer-1m210jp, .framer-MNgIo .framer-1mprfqu, .framer-MNgIo .framer-xc8it6, .framer-MNgIo .framer-13u4h3a { --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-MNgIo .framer-1r60snd, .framer-MNgIo .framer-1rowix0, .framer-MNgIo .framer-akne9q, .framer-MNgIo .framer-j9utr3, .framer-MNgIo .framer-ujtnlh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-MNgIo .framer-1fobuui-container { bottom: -62px; flex: none; height: 704px; left: 0px; position: absolute; width: 565px; z-index: 1; }\",\".framer-MNgIo .framer-b77k44 { flex: none; height: 824px; overflow: hidden; position: relative; width: 100%; }\",\".framer-MNgIo .framer-1yu2v25 { flex: none; height: 645px; overflow: hidden; position: absolute; right: 0px; top: -653px; width: 664px; }\",\".framer-MNgIo .framer-1aeht50 { align-content: center; align-items: center; bottom: 3035px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 62px; justify-content: flex-start; left: 114px; max-width: 1168px; overflow: visible; padding: 0px 24px 0px 24px; position: absolute; right: 142px; top: 8765px; z-index: 1; }\",\".framer-MNgIo .framer-bvhmy6, .framer-MNgIo .framer-atrs7v { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-MNgIo .framer-njhytm-container { flex: none; height: 340px; position: relative; width: 1094px; }\",\".framer-MNgIo .framer-1tilbpn { flex: none; height: 336px; left: calc(53.082191780821944% - 338px / 2); position: absolute; text-decoration: none; top: calc(76.45125958378972% - 336px / 2); width: 338px; z-index: 1; }\",\".framer-MNgIo .framer-gck1vk { bottom: 47px; flex: none; left: 74px; position: absolute; right: 585px; top: 763px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-MNgIo .framer-xo5we-container { bottom: 4px; flex: none; left: 535px; position: absolute; right: 543px; top: 620px; z-index: 1; }\",\".framer-MNgIo .framer-9gxc86-container { bottom: 4115px; flex: none; height: 929px; left: 378px; position: absolute; width: 1010px; z-index: 1; }\",\".framer-MNgIo .framer-jgwm49 { align-content: center; align-items: center; bottom: -7899px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 46px; height: 1040px; justify-content: flex-start; left: calc(50.00000000000002% - min(1168px, 1168px) / 2); max-width: 1168px; overflow: visible; padding: 0px 24px 0px 24px; position: absolute; width: 1168px; z-index: 1; }\",\".framer-MNgIo .framer-1yfnrb5-container { flex: none; height: 283px; position: relative; width: 1138px; }\",\".framer-MNgIo .framer-1bpxnzc { flex: none; height: 149px; position: relative; text-decoration: none; width: 267px; }\",\".framer-MNgIo .framer-1985jlf { bottom: 356px; flex: none; height: 28px; left: calc(28.167808219178102% - 629px / 2); position: absolute; white-space: pre-wrap; width: 629px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-MNgIo .framer-10lqq2c { 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: 1120px; }\",\".framer-MNgIo .framer-1u2cb8m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 112px; height: min-content; justify-content: flex-start; max-width: 1168px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: min-content; }\",\".framer-MNgIo .framer-1qf4wxh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 180px; height: min-content; justify-content: center; min-height: 26px; overflow: hidden; padding: 0px; position: relative; width: 1120px; }\",\".framer-MNgIo .framer-105qea9-container { bottom: 307px; flex: none; height: 22px; left: 15px; position: absolute; width: 90px; z-index: 1; }\",\".framer-MNgIo .framer-1nf4gmn { --border-bottom-width: 1px; --border-color: var(--token-936fd169-2ae1-4cd1-afc5-f74c79a2c1f5, rgba(255, 255, 255, 0.1)); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; bottom: -9619px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: 1344px; justify-content: flex-start; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; z-index: 1; }\",\".framer-MNgIo .framer-1vwsirl, .framer-MNgIo .framer-1fvbmcn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 420px; position: relative; white-space: pre-wrap; width: 420px; word-break: break-word; word-wrap: break-word; }\",\".framer-MNgIo .framer-1ahnfcg, .framer-MNgIo .framer-jne1cw { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 119px); overflow: visible; position: relative; text-decoration: none; width: 119px; }\",\".framer-MNgIo .framer-zllsay, .framer-MNgIo .framer-1d8ih7b { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 94px); overflow: visible; position: relative; text-decoration: none; width: 94px; }\",\".framer-MNgIo .framer-fdsiuh-container { flex: none; height: 728px; left: calc(49.929775280898895% - 1312px / 2); position: absolute; top: -9410px; width: 1312px; z-index: 1; }\",\".framer-MNgIo .framer-1vh8ewi-container { bottom: -3049px; flex: none; height: 168px; position: absolute; right: -10805px; width: 909px; z-index: 10; }\",\".framer-MNgIo .framer-18s6zf4 { align-content: center; align-items: center; bottom: 8599px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 62px; justify-content: flex-start; left: 100px; max-width: 1168px; overflow: visible; padding: 0px 24px 0px 24px; position: absolute; right: 169px; top: 7594px; z-index: 1; }\",\".framer-MNgIo .framer-1nkp4vp { align-content: center; align-items: center; bottom: -11598px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 2251px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; width: 1431px; z-index: 1; }\",\".framer-MNgIo .framer-1e6fw1m-container { flex: none; height: 752px; left: calc(49.4060097833683% - 1435px / 2); position: absolute; top: calc(47.647673810768445% - 752px / 2); width: 1435px; z-index: 1; }\",\".framer-MNgIo .framer-1lkfw6a { bottom: -23px; flex: none; height: 1261px; left: calc(50.00000000000002% - 1256px / 2); overflow: hidden; position: absolute; width: 1256px; z-index: 1; }\",\".framer-MNgIo .framer-58lo2e, .framer-MNgIo .framer-qnqrze { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 0px; position: absolute; right: -65px; top: -365px; white-space: pre-wrap; width: 0px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-MNgIo .framer-1i8q7us, .framer-MNgIo .framer-313dw4 { flex: none; height: 206px; left: calc(21.92550948699932% - 188px / 2); position: absolute; top: calc(80.01885014137609% - 206px / 2); width: 188px; }\",\".framer-MNgIo .framer-19y89l6-container, .framer-MNgIo .framer-qyqi14-container { flex: none; height: 20px; left: calc(81.44764581869293% - 91px / 2); position: absolute; top: calc(86.993769470405% - 20px / 2); width: 91px; }\",\".framer-MNgIo .framer-jx1uy9 { --border-bottom-width: 1px; --border-color: var(--token-936fd169-2ae1-4cd1-afc5-f74c79a2c1f5, rgba(255, 255, 255, 0.1)); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; bottom: 8511px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 184px; justify-content: flex-start; left: 16px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 9256px; z-index: 1; }\",\".framer-MNgIo .framer-1ylb980 { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-MNgIo .framer-ynl0he { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-MNgIo .framer-oalqot { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 540px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MNgIo .framer-1qtt30t-container { flex: none; height: 126px; position: relative; width: 126px; }\",\".framer-MNgIo .framer-1jfiybd-container { flex: none; height: 872px; position: absolute; right: -411px; top: -7708px; width: 712px; z-index: 1; }\",\".framer-MNgIo .framer-1srdcxz-container { bottom: 0px; flex: none; height: 200px; position: absolute; right: -1094px; width: 820px; z-index: 1; }\",\".framer-MNgIo .framer-1f6djem-container { bottom: -1133px; flex: none; left: -1661px; position: absolute; right: 1617px; top: 124px; z-index: 1; }\",\".framer-MNgIo .framer-uu0jjm-container { bottom: -1732px; flex: none; height: 206px; left: calc(50.00000000000002% - 180px / 2); position: absolute; width: 180px; z-index: 1; }\",\".framer-MNgIo .framer-vda67m { bottom: 0px; flex: none; height: 1179px; overflow: hidden; position: absolute; right: -7px; width: 1422px; z-index: 1; }\",\".framer-MNgIo .framer-6svemq-container { bottom: 386px; flex: none; left: 12px; position: absolute; right: -15px; top: -10px; }\",\".framer-MNgIo .framer-143a71s-container { flex: none; height: 705px; left: 0px; position: absolute; top: 88px; width: 1393px; }\",\".framer-MNgIo .framer-1cu0r9u-container { flex: none; height: 1096px; left: -2px; position: absolute; right: 0px; top: 3646px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-MNgIo.framer-72rtr7, .framer-MNgIo .framer-1kxyveg, .framer-MNgIo .framer-496zv7, .framer-MNgIo .framer-1r4ywo7, .framer-MNgIo .framer-13nqtxd, .framer-MNgIo .framer-ysr8cn, .framer-MNgIo .framer-1ylc0zz, .framer-MNgIo .framer-c31neq, .framer-MNgIo .framer-1wfkzov, .framer-MNgIo .framer-iwdsg0, .framer-MNgIo .framer-1to9nns, .framer-MNgIo .framer-mxmzlg, .framer-MNgIo .framer-hu52fa, .framer-MNgIo .framer-y8j0tf, .framer-MNgIo .framer-6wd8ps, .framer-MNgIo .framer-1a24dpo, .framer-MNgIo .framer-1odnvgl, .framer-MNgIo .framer-1ssabmr, .framer-MNgIo .framer-wn330w, .framer-MNgIo .framer-442vbv, .framer-MNgIo .framer-pmuob, .framer-MNgIo .framer-qmwxwj, .framer-MNgIo .framer-10zbx5v, .framer-MNgIo .framer-1bh32pl, .framer-MNgIo .framer-11sqh76, .framer-MNgIo .framer-1ngsm9j, .framer-MNgIo .framer-1hzk68v, .framer-MNgIo .framer-vahc80, .framer-MNgIo .framer-fq6mry, .framer-MNgIo .framer-dc6mzg, .framer-MNgIo .framer-1aeht50, .framer-MNgIo .framer-jgwm49, .framer-MNgIo .framer-10lqq2c, .framer-MNgIo .framer-1u2cb8m, .framer-MNgIo .framer-1qf4wxh, .framer-MNgIo .framer-1nf4gmn, .framer-MNgIo .framer-18s6zf4, .framer-MNgIo .framer-1nkp4vp, .framer-MNgIo .framer-jx1uy9, .framer-MNgIo .framer-1ylb980, .framer-MNgIo .framer-oalqot { gap: 0px; } .framer-MNgIo.framer-72rtr7 > *, .framer-MNgIo .framer-1kxyveg > *, .framer-MNgIo .framer-mxmzlg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-MNgIo.framer-72rtr7 > :first-child, .framer-MNgIo .framer-1kxyveg > :first-child, .framer-MNgIo .framer-c31neq > :first-child, .framer-MNgIo .framer-1to9nns > :first-child, .framer-MNgIo .framer-mxmzlg > :first-child, .framer-MNgIo .framer-y8j0tf > :first-child, .framer-MNgIo .framer-1odnvgl > :first-child, .framer-MNgIo .framer-442vbv > :first-child, .framer-MNgIo .framer-10zbx5v > :first-child, .framer-MNgIo .framer-1ngsm9j > :first-child, .framer-MNgIo .framer-fq6mry > :first-child, .framer-MNgIo .framer-1aeht50 > :first-child, .framer-MNgIo .framer-jgwm49 > :first-child, .framer-MNgIo .framer-1u2cb8m > :first-child, .framer-MNgIo .framer-1nf4gmn > :first-child, .framer-MNgIo .framer-18s6zf4 > :first-child, .framer-MNgIo .framer-jx1uy9 > :first-child, .framer-MNgIo .framer-1ylb980 > :first-child { margin-top: 0px; } .framer-MNgIo.framer-72rtr7 > :last-child, .framer-MNgIo .framer-1kxyveg > :last-child, .framer-MNgIo .framer-c31neq > :last-child, .framer-MNgIo .framer-1to9nns > :last-child, .framer-MNgIo .framer-mxmzlg > :last-child, .framer-MNgIo .framer-y8j0tf > :last-child, .framer-MNgIo .framer-1odnvgl > :last-child, .framer-MNgIo .framer-442vbv > :last-child, .framer-MNgIo .framer-10zbx5v > :last-child, .framer-MNgIo .framer-1ngsm9j > :last-child, .framer-MNgIo .framer-fq6mry > :last-child, .framer-MNgIo .framer-1aeht50 > :last-child, .framer-MNgIo .framer-jgwm49 > :last-child, .framer-MNgIo .framer-1u2cb8m > :last-child, .framer-MNgIo .framer-1nf4gmn > :last-child, .framer-MNgIo .framer-18s6zf4 > :last-child, .framer-MNgIo .framer-jx1uy9 > :last-child, .framer-MNgIo .framer-1ylb980 > :last-child { margin-bottom: 0px; } .framer-MNgIo .framer-496zv7 > *, .framer-MNgIo .framer-ysr8cn > *, .framer-MNgIo .framer-1ylc0zz > *, .framer-MNgIo .framer-1wfkzov > *, .framer-MNgIo .framer-iwdsg0 > *, .framer-MNgIo .framer-hu52fa > *, .framer-MNgIo .framer-10lqq2c > *, .framer-MNgIo .framer-1nkp4vp > *, .framer-MNgIo .framer-oalqot > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-MNgIo .framer-496zv7 > :first-child, .framer-MNgIo .framer-1r4ywo7 > :first-child, .framer-MNgIo .framer-13nqtxd > :first-child, .framer-MNgIo .framer-ysr8cn > :first-child, .framer-MNgIo .framer-1ylc0zz > :first-child, .framer-MNgIo .framer-1wfkzov > :first-child, .framer-MNgIo .framer-iwdsg0 > :first-child, .framer-MNgIo .framer-hu52fa > :first-child, .framer-MNgIo .framer-6wd8ps > :first-child, .framer-MNgIo .framer-1a24dpo > :first-child, .framer-MNgIo .framer-1ssabmr > :first-child, .framer-MNgIo .framer-wn330w > :first-child, .framer-MNgIo .framer-pmuob > :first-child, .framer-MNgIo .framer-qmwxwj > :first-child, .framer-MNgIo .framer-1bh32pl > :first-child, .framer-MNgIo .framer-11sqh76 > :first-child, .framer-MNgIo .framer-1hzk68v > :first-child, .framer-MNgIo .framer-vahc80 > :first-child, .framer-MNgIo .framer-dc6mzg > :first-child, .framer-MNgIo .framer-10lqq2c > :first-child, .framer-MNgIo .framer-1qf4wxh > :first-child, .framer-MNgIo .framer-1nkp4vp > :first-child, .framer-MNgIo .framer-oalqot > :first-child { margin-left: 0px; } .framer-MNgIo .framer-496zv7 > :last-child, .framer-MNgIo .framer-1r4ywo7 > :last-child, .framer-MNgIo .framer-13nqtxd > :last-child, .framer-MNgIo .framer-ysr8cn > :last-child, .framer-MNgIo .framer-1ylc0zz > :last-child, .framer-MNgIo .framer-1wfkzov > :last-child, .framer-MNgIo .framer-iwdsg0 > :last-child, .framer-MNgIo .framer-hu52fa > :last-child, .framer-MNgIo .framer-6wd8ps > :last-child, .framer-MNgIo .framer-1a24dpo > :last-child, .framer-MNgIo .framer-1ssabmr > :last-child, .framer-MNgIo .framer-wn330w > :last-child, .framer-MNgIo .framer-pmuob > :last-child, .framer-MNgIo .framer-qmwxwj > :last-child, .framer-MNgIo .framer-1bh32pl > :last-child, .framer-MNgIo .framer-11sqh76 > :last-child, .framer-MNgIo .framer-1hzk68v > :last-child, .framer-MNgIo .framer-vahc80 > :last-child, .framer-MNgIo .framer-dc6mzg > :last-child, .framer-MNgIo .framer-10lqq2c > :last-child, .framer-MNgIo .framer-1qf4wxh > :last-child, .framer-MNgIo .framer-1nkp4vp > :last-child, .framer-MNgIo .framer-oalqot > :last-child { margin-right: 0px; } .framer-MNgIo .framer-1r4ywo7 > *, .framer-MNgIo .framer-13nqtxd > * { margin: 0px; margin-left: calc(96px / 2); margin-right: calc(96px / 2); } .framer-MNgIo .framer-c31neq > * { margin: 0px; margin-bottom: calc(154px / 2); margin-top: calc(154px / 2); } .framer-MNgIo .framer-1to9nns > * { margin: 0px; margin-bottom: calc(1368px / 2); margin-top: calc(1368px / 2); } .framer-MNgIo .framer-y8j0tf > * { margin: 0px; margin-bottom: calc(720px / 2); margin-top: calc(720px / 2); } .framer-MNgIo .framer-6wd8ps > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-MNgIo .framer-1a24dpo > *, .framer-MNgIo .framer-wn330w > *, .framer-MNgIo .framer-qmwxwj > *, .framer-MNgIo .framer-11sqh76 > *, .framer-MNgIo .framer-vahc80 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-MNgIo .framer-1odnvgl > *, .framer-MNgIo .framer-442vbv > *, .framer-MNgIo .framer-10zbx5v > *, .framer-MNgIo .framer-1ngsm9j > *, .framer-MNgIo .framer-fq6mry > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-MNgIo .framer-1ssabmr > *, .framer-MNgIo .framer-pmuob > *, .framer-MNgIo .framer-1bh32pl > *, .framer-MNgIo .framer-1hzk68v > *, .framer-MNgIo .framer-dc6mzg > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-MNgIo .framer-1aeht50 > *, .framer-MNgIo .framer-18s6zf4 > * { margin: 0px; margin-bottom: calc(62px / 2); margin-top: calc(62px / 2); } .framer-MNgIo .framer-jgwm49 > * { margin: 0px; margin-bottom: calc(46px / 2); margin-top: calc(46px / 2); } .framer-MNgIo .framer-1u2cb8m > * { margin: 0px; margin-bottom: calc(112px / 2); margin-top: calc(112px / 2); } .framer-MNgIo .framer-1qf4wxh > * { margin: 0px; margin-left: calc(180px / 2); margin-right: calc(180px / 2); } .framer-MNgIo .framer-1nf4gmn > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-MNgIo .framer-jx1uy9 > * { margin: 0px; margin-bottom: calc(184px / 2); margin-top: calc(184px / 2); } .framer-MNgIo .framer-1ylb980 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-MNgIo[data-border=\"true\"]::after, .framer-MNgIo [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1167px) and (max-width: 1439px) { .framer-MNgIo.framer-72rtr7 { width: 1167px; } .framer-MNgIo .framer-sc1bxr-container { height: 109px; left: calc(49.87146529562984% - 1143px / 2); width: 1143px; } .framer-MNgIo .framer-glj4dr { width: 1169px; } .framer-MNgIo .framer-ff87qg { right: unset; width: 1169px; } .framer-MNgIo .framer-1kxyveg { left: calc(46.13764044943822% - 1012px / 2); right: unset; top: -14px; width: 1012px; } .framer-MNgIo .framer-4j86a3-container { left: -139px; right: -6px; } .framer-MNgIo .framer-496zv7 { left: calc(54.84189723320161% - 1178px / 2); top: calc(7.61134239258505% - 1693px / 2); width: 1178px; } .framer-MNgIo .framer-1r4ywo7 { left: calc(28.862478777589157% - min(1168px, 683px) / 2); width: 683px; } .framer-MNgIo .framer-less94-container { bottom: 375px; height: unset; left: 45px; right: 255px; top: 77px; width: unset; } .framer-MNgIo .framer-1jqmoo5 { aspect-ratio: unset; height: unset; right: -16px; top: 648px; width: unset; } .framer-MNgIo .framer-1iblhk0-container { height: 729px; left: 459px; top: -11px; width: 601px; } .framer-MNgIo .framer-1ylc0zz { height: 2080px; left: -18px; right: -132px; top: 1524px; width: unset; } .framer-MNgIo .framer-1jqgj99-container { left: 49%; top: -621px; } .framer-MNgIo .framer-1to9nns { bottom: 2948px; right: 17px; top: 5830px; } .framer-MNgIo .framer-1aeht50 { bottom: unset; height: 936px; left: calc(55.138339920948646% - min(1168px, 1156px) / 2); right: unset; top: calc(72.6258738512293% - 936px / 2); width: 1156px; } .framer-MNgIo .framer-bvhmy6 { order: 0; } .framer-MNgIo .framer-njhytm-container { bottom: 498px; height: unset; left: 10px; order: 1; position: absolute; right: 10px; top: 114px; width: unset; z-index: 1; } .framer-MNgIo .framer-1tilbpn { height: 218px; left: calc(49.34725848563971% - 387px / 2); order: 2; top: calc(79.80769230769234% - 218px / 2); width: 387px; } .framer-MNgIo .framer-gck1vk { bottom: -30px; left: 26px; order: 3; right: 779px; top: 875px; } .framer-MNgIo .framer-xo5we-container { bottom: 42px; left: 489px; order: 4; right: 545px; top: 859px; } .framer-MNgIo .framer-9gxc86-container { left: -33px; right: -114px; width: unset; } .framer-MNgIo .framer-vda67m { left: -17px; right: -131px; width: unset; } .framer-MNgIo .framer-143a71s-container { left: unset; right: 0px; top: 84px; width: 1138px; } .framer-MNgIo .framer-1cu0r9u-container { right: unset; width: 1123px; }}\",\"@media (min-width: 996px) and (max-width: 1166px) { .framer-MNgIo.framer-72rtr7 { align-content: center; align-items: center; width: 996px; } .framer-MNgIo .framer-sc1bxr-container { left: calc(50.30120481927713% - 998px / 2); width: 998px; } .framer-MNgIo .framer-glj4dr { width: 956px; } .framer-MNgIo .framer-ff87qg { right: unset; width: 956px; } .framer-MNgIo .framer-1kxyveg { right: -49px; } .framer-MNgIo .framer-4j86a3-container { bottom: unset; height: auto; left: 50%; right: unset; top: 10%; transform: translate(-50%, -50%); width: 100%; } .framer-MNgIo .framer-496zv7 { left: calc(48.823529411764724% - 971px / 2); width: 971px; } .framer-MNgIo .framer-1r4ywo7 { gap: 17px; left: calc(26.776519052523195% - min(1168px, 461px) / 2); padding: 0px; width: 461px; } .framer-MNgIo .framer-less94-container { bottom: 603px; height: unset; left: 73px; right: 55px; top: 73px; width: unset; } .framer-MNgIo .framer-1jqmoo5 { bottom: 58px; left: 455px; } .framer-MNgIo .framer-1iblhk0-container { height: 715px; left: 385px; top: -3px; width: 533px; } .framer-MNgIo .framer-6wfir4-container { bottom: 1048px; height: 999px; left: calc(49.950248756218926% - 974px / 2); width: 974px; } .framer-MNgIo .framer-1ylc0zz { height: 1560px; left: calc(50.10660980810236% - 915px / 2); right: unset; width: 915px; } .framer-MNgIo .framer-1to9nns { bottom: 2433px; left: 45px; right: 35px; top: 5896px; } .framer-MNgIo .framer-mxmzlg { left: -8px; width: 834px; } .framer-MNgIo .framer-b77k44 { height: 274px; left: -71px; position: absolute; top: calc(46.73745173745176% - 274px / 2); width: 986px; z-index: 1; } .framer-MNgIo .framer-1aeht50 { bottom: unset; height: 842px; left: calc(54.69083155650322% - min(1168px, 959px) / 2); right: unset; top: calc(65.400644806165% - 842px / 2); width: 959px; } .framer-MNgIo .framer-njhytm-container { bottom: 407px; height: unset; left: 263px; position: absolute; right: 229px; top: 95px; width: unset; z-index: 1; } .framer-MNgIo .framer-1tilbpn { height: 190px; left: calc(48.90350877192985% - 287px / 2); top: calc(67.93349168646084% - 190px / 2); width: 287px; } .framer-MNgIo .framer-gck1vk { bottom: 33px; left: unset; right: 473px; top: 742px; width: 340px; } .framer-MNgIo .framer-9gxc86-container { bottom: 2751px; height: 729px; left: calc(50.621118012422386% - 885px / 2); width: 885px; } .framer-MNgIo .framer-vda67m { height: 1167px; right: -1px; width: 990px; } .framer-MNgIo .framer-1cu0r9u-container { left: calc(49.315068493150704% - 924px / 2); right: unset; width: 924px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-MNgIo .framer-1r4ywo7 { gap: 0px; } .framer-MNgIo .framer-1r4ywo7 > * { margin: 0px; margin-left: calc(17px / 2); margin-right: calc(17px / 2); } .framer-MNgIo .framer-1r4ywo7 > :first-child { margin-left: 0px; } .framer-MNgIo .framer-1r4ywo7 > :last-child { margin-right: 0px; } }}\",\"@media (min-width: 640px) and (max-width: 995px) { .framer-MNgIo.framer-72rtr7 { width: 640px; } .framer-MNgIo .framer-sc1bxr-container { left: calc(49.21875000000002% - 573px / 2); width: 573px; } .framer-MNgIo .framer-glj4dr { width: 633px; } .framer-MNgIo .framer-ff87qg { right: unset; width: 633px; } .framer-MNgIo .framer-1kxyveg { left: calc(50.00000000000002% - 608px / 2); right: unset; width: 608px; } .framer-MNgIo .framer-4j86a3-container { bottom: unset; height: auto; left: 0px; right: unset; width: 101%; } .framer-MNgIo .framer-496zv7 { height: 1579px; left: calc(52.30263157894739% - 579px / 2); top: calc(6.9985059369348335% - 1579px / 2); width: 579px; } .framer-MNgIo .framer-1r4ywo7 { bottom: 935px; height: unset; left: 15px; right: 9px; top: 12px; width: unset; } .framer-MNgIo .framer-less94-container { height: 121px; left: 1px; top: 73px; width: 324px; } .framer-MNgIo .framer-1jqmoo5 { bottom: 58px; left: 455px; } .framer-MNgIo .framer-os2vcn { bottom: unset; left: -384px; top: 627px; } .framer-MNgIo .framer-1iblhk0-container { bottom: 965px; height: unset; left: 295px; right: -10px; top: -95px; width: unset; } .framer-MNgIo .framer-6wfir4-container { bottom: 667px; height: unset; left: 25px; right: -4px; top: 10589px; width: unset; } .framer-MNgIo .framer-1ylc0zz { height: 1570px; left: 0px; top: 1584px; width: unset; } .framer-MNgIo .framer-c31neq { height: 892px; left: unset; right: -48px; width: 287px; } .framer-MNgIo .framer-1jqgj99-container { left: -377px; top: -514px; transform: unset; width: 599px; } .framer-MNgIo .framer-1i3pou1-container { left: -504px; top: 2204px; width: 704px; } .framer-MNgIo .framer-qlq7g5-container { width: 624px; } .framer-MNgIo .framer-1to9nns { bottom: 2433px; left: 236px; right: -16px; top: 5914px; } .framer-MNgIo .framer-mxmzlg { height: 1418px; left: -213px; right: 0px; width: unset; } .framer-MNgIo .framer-3j723 { width: 595px; } .framer-MNgIo .framer-b77k44 { height: 274px; left: -71px; position: absolute; top: calc(46.73745173745176% - 274px / 2); width: 986px; z-index: 1; } .framer-MNgIo .framer-1aeht50 { bottom: 3951px; left: 12px; right: 77px; top: 7843px; } .framer-MNgIo .framer-njhytm-container { left: 26px; position: absolute; top: 95px; width: 420px; z-index: 1; } .framer-MNgIo .framer-1tilbpn { height: 190px; left: calc(47.20616570327555% - 287px / 2); top: calc(57.24465558194777% - 190px / 2); width: 287px; } .framer-MNgIo .framer-gck1vk { bottom: 155px; left: unset; right: 112px; top: 620px; width: 340px; } .framer-MNgIo .framer-9gxc86-container { bottom: 2751px; height: 729px; left: calc(51.80921052631581% - 557px / 2); width: 557px; } .framer-MNgIo .framer-vda67m { height: 811px; left: -10px; right: -15px; width: unset; } .framer-MNgIo .framer-6svemq-container { bottom: unset; height: 359px; left: -3px; right: unset; top: 92px; width: 633px; } .framer-MNgIo .framer-143a71s-container { height: 452px; right: 0px; top: 40px; width: unset; } .framer-MNgIo .framer-1cu0r9u-container { bottom: 7932px; height: unset; left: 266px; right: -12px; top: 3670px; }}\",\"@media (max-width: 639px) { .framer-MNgIo.framer-72rtr7 { width: 424px; } .framer-MNgIo .framer-sc1bxr-container { height: 64px; left: calc(50.70754716981134% - 341px / 2); width: 341px; } .framer-MNgIo .framer-glj4dr { left: -3px; right: 0px; width: unset; } .framer-MNgIo .framer-ff87qg { left: 8px; right: unset; width: 409px; } .framer-MNgIo .framer-1kxyveg { left: unset; right: -5px; width: 392px; } .framer-MNgIo .framer-4j86a3-container { bottom: unset; height: auto; left: -11px; right: unset; top: 798px; width: 103%; } .framer-MNgIo .framer-496zv7 { height: 1559px; left: calc(48.97959183673471% - 395px / 2); top: calc(6.896280569316684% - 1559px / 2); width: 395px; } .framer-MNgIo .framer-1r4ywo7 { height: 760px; left: calc(50.12658227848104% - min(1168px, 396px) / 2); top: calc(22.70627062706273% - 760px / 2); width: 396px; } .framer-MNgIo .framer-less94-container { height: 440px; left: 7px; top: -117px; width: 322px; } .framer-MNgIo .framer-1jqmoo5 { bottom: 58px; left: 455px; } .framer-MNgIo .framer-1iblhk0-container { bottom: 973px; height: unset; left: 145px; right: 27px; top: 231px; width: unset; } .framer-MNgIo .framer-6wfir4-container { bottom: 850px; height: unset; left: -11px; right: -4px; top: 10589px; width: unset; } .framer-MNgIo .framer-1ylc0zz { height: 1569px; left: 0px; right: 0px; top: 1565px; width: unset; } .framer-MNgIo .framer-c31neq { left: calc(50.98445595854925% - min(1168px, 385px) / 2); width: 385px; } .framer-MNgIo .framer-1i3pou1-container { height: 617px; left: -75px; top: 2362px; width: 501px; } .framer-MNgIo .framer-qlq7g5-container { height: 1048px; width: 403px; } .framer-MNgIo .framer-1to9nns { bottom: 2433px; left: 0px; right: -38px; top: 5923px; } .framer-MNgIo .framer-mxmzlg { height: 1583px; left: 0px; right: 0px; top: 142px; width: unset; } .framer-MNgIo .framer-hu52fa, .framer-MNgIo .framer-64xofl { order: 0; } .framer-MNgIo .framer-3j723 { order: 1; width: 380px; } .framer-MNgIo .framer-wsn9wn { order: 2; width: 392px; } .framer-MNgIo .framer-1a24dpo { order: 3; } .framer-MNgIo .framer-wn330w { order: 4; } .framer-MNgIo .framer-qmwxwj { order: 5; } .framer-MNgIo .framer-11sqh76 { order: 6; } .framer-MNgIo .framer-1ngsm9j { order: 1; } .framer-MNgIo .framer-vahc80 { order: 8; } .framer-MNgIo .framer-1fobuui-container { order: 9; width: 386px; } .framer-MNgIo .framer-b77k44 { height: 274px; left: 0px; position: absolute; right: 0px; top: calc(46.73240082549876% - 274px / 2); width: unset; z-index: 1; } .framer-MNgIo .framer-1aeht50 { bottom: 3951px; left: 12px; right: 32px; top: 7843px; } .framer-MNgIo .framer-njhytm-container { height: 363px; left: 0px; position: absolute; right: 0px; top: 95px; width: unset; z-index: 1; } .framer-MNgIo .framer-1tilbpn { height: 190px; left: calc(47.3684210526316% - 287px / 2); top: calc(71.85273159144894% - 190px / 2); width: 287px; } .framer-MNgIo .framer-gck1vk { bottom: 4px; left: unset; right: -16px; top: 771px; width: 340px; } .framer-MNgIo .framer-9gxc86-container { bottom: 2751px; height: 729px; left: -9px; right: -6px; width: unset; } .framer-MNgIo .framer-vda67m { height: unset; left: -5px; right: -6px; top: 12037px; width: unset; } .framer-MNgIo .framer-6svemq-container { bottom: unset; height: 350px; left: -29px; } .framer-MNgIo .framer-143a71s-container { height: 317px; right: 0px; width: unset; } .framer-MNgIo .framer-1cu0r9u-container { height: 659px; left: calc(112.17616580310883% - 82px / 2); right: unset; top: calc(34.615384615384635% - 659px / 2); width: 82px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12717\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"DAlKf2r1d\":{\"layout\":[\"fixed\",\"fixed\"]},\"iJj8uRT3h\":{\"layout\":[\"fixed\",\"fixed\"]},\"O6H7_s1r0\":{\"layout\":[\"fixed\",\"fixed\"]},\"uXVxMeSmP\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"So6ztNAWI\":{\"pattern\":\":So6ztNAWI\",\"name\":\"start\"},\"t4xIQBdJ5\":{\"pattern\":\":t4xIQBdJ5\",\"name\":\"hero-content\"},\"EkQr8ZrYF\":{\"pattern\":\":EkQr8ZrYF\",\"name\":\"hero-content\"},\"IVjyf6Kir\":{\"pattern\":\":IVjyf6Kir\",\"name\":\"about\"},\"iN9H9Fn2H\":{\"pattern\":\":iN9H9Fn2H\",\"name\":\"about-section\"},\"HKhOUdJ8r\":{\"pattern\":\":HKhOUdJ8r\",\"name\":\"space-2\"},\"bwpcY7Irv\":{\"pattern\":\":bwpcY7Irv\",\"name\":\"space-3\"},\"lW2dkPX6k\":{\"pattern\":\":lW2dkPX6k\",\"name\":\"space-4\"},\"heiUgFetp\":{\"pattern\":\":heiUgFetp\",\"name\":\"space-5\"},\"UeoYmkvEq\":{\"pattern\":\":UeoYmkvEq\",\"name\":\"space-6\"},\"E4ovIyY89\":{\"pattern\":\":E4ovIyY89\",\"name\":\"space-7\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-MNgIo\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:12717,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Anonymous Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/anonymouspro/v21/rP2Bp2a15UIB7Un-bOeISG3pLlk89CH98Ko.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"}]},...ElementsNavigationFonts,...VideoFonts,...ElementsHeroSectionHeaderFonts,...Video1Fonts,...ContactFonts,...SectionsAboutFonts,...Video2Fonts,...Video3Fonts,...CardsArticleCardFonts,...ElementsLearnButtonFonts,...SectionsFooterFonts,...SectionsProjectsHeaderFonts,...TimeDateFonts,...ElementsContactButtonFonts,...VimeoFonts,...ProjectsFonts,...MonkeyheadFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"12717\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"So6ztNAWI\\\":{\\\"pattern\\\":\\\":So6ztNAWI\\\",\\\"name\\\":\\\"start\\\"},\\\"t4xIQBdJ5\\\":{\\\"pattern\\\":\\\":t4xIQBdJ5\\\",\\\"name\\\":\\\"hero-content\\\"},\\\"EkQr8ZrYF\\\":{\\\"pattern\\\":\\\":EkQr8ZrYF\\\",\\\"name\\\":\\\"hero-content\\\"},\\\"IVjyf6Kir\\\":{\\\"pattern\\\":\\\":IVjyf6Kir\\\",\\\"name\\\":\\\"about\\\"},\\\"iN9H9Fn2H\\\":{\\\"pattern\\\":\\\":iN9H9Fn2H\\\",\\\"name\\\":\\\"about-section\\\"},\\\"HKhOUdJ8r\\\":{\\\"pattern\\\":\\\":HKhOUdJ8r\\\",\\\"name\\\":\\\"space-2\\\"},\\\"bwpcY7Irv\\\":{\\\"pattern\\\":\\\":bwpcY7Irv\\\",\\\"name\\\":\\\"space-3\\\"},\\\"lW2dkPX6k\\\":{\\\"pattern\\\":\\\":lW2dkPX6k\\\",\\\"name\\\":\\\"space-4\\\"},\\\"heiUgFetp\\\":{\\\"pattern\\\":\\\":heiUgFetp\\\",\\\"name\\\":\\\"space-5\\\"},\\\"UeoYmkvEq\\\":{\\\"pattern\\\":\\\":UeoYmkvEq\\\",\\\"name\\\":\\\"space-6\\\"},\\\"E4ovIyY89\\\":{\\\"pattern\\\":\\\":E4ovIyY89\\\",\\\"name\\\":\\\"space-7\\\"}}\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DAlKf2r1d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"iJj8uRT3h\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"O6H7_s1r0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uXVxMeSmP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "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", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "ElementsNavigationFonts", "getFonts", "ZIcoueGFH_default", "VideoFonts", "Video", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "ElementsHeroSectionHeaderFonts", "FqUhWFls2_default", "ElementsHeroSectionHeaderWithVariantAppearEffect", "withVariantAppearEffect", "Video1Fonts", "QjX9AgyaJ_default", "ContactFonts", "GI1RVZo7q_default", "SectionsAboutFonts", "vlg16CpHH_default", "Video2Fonts", "Video3Fonts", "MotionDivWithFX", "withFX", "motion", "RichTextWithFX", "RichText2", "CardsArticleCardFonts", "Foq2cnZnI_default", "ContainerWithFX", "ElementsLearnButtonFonts", "Ee9dB42Y8_default", "SectionsFooterFonts", "nHLyTF_Fy_default", "SectionsProjectsHeaderFonts", "ZGwJBWskW_default", "TimeDateFonts", "Time", "ElementsContactButtonFonts", "U4a3gq6jh_default", "VimeoFonts", "Vimeo_default", "ProjectsFonts", "pt3GhpUNw_default", "MonkeyheadFonts", "jqyIYgZeQ_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transformTemplate1", "_", "t", "transition2", "animation2", "transition3", "animation3", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "kRZuc5uv3frGxQtihh", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "elementId2", "ref4", "elementId3", "ref5", "elementId4", "ref6", "elementId5", "ref7", "elementId6", "ref8", "elementId7", "ref9", "elementId8", "ref10", "elementId9", "ref11", "elementId10", "ref12", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "Image2", "x", "Link", "SVG", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
