{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/jFOAZKc2EvehHtUZX1Hf/Video.js", "ssg:https://framerusercontent.com/modules/sjWaw9u2EmmgUJu7SiXI/koBrNTVb79RrdqgOaewW/HFDNiYZQk.js", "ssg:https://framerusercontent.com/modules/413O4Rou6cpAu7VYnzHH/GocBbONeH7mnHP3vrDZF/dYW2tpFa6.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"0px 0px 100px 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(isStaticRenderer)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (e1a43d5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"j4RbnCsEC\",\"gsYBCsE5f\"];const serializationHash=\"framer-eU0UH\";const variantClassNames={gsYBCsE5f:\"framer-v-191unbs\",j4RbnCsEC:\"framer-v-1hl1bq5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"j4RbnCsEC\",Rotated:\"gsYBCsE5f\"};const getProps=({height,id,image,tap,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"j4RbnCsEC\",YIJXKXMmj:tap??props.YIJXKXMmj,Z4S9ZLLoB:image??props.Z4S9ZLLoB??{src:\"https://framerusercontent.com/images/SYi5SqgCufMfnYz3WXGfQ90fUvM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/SYi5SqgCufMfnYz3WXGfQ90fUvM.png?scale-down-to=512 512w,https://framerusercontent.com/images/SYi5SqgCufMfnYz3WXGfQ90fUvM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SYi5SqgCufMfnYz3WXGfQ90fUvM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/SYi5SqgCufMfnYz3WXGfQ90fUvM.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/SYi5SqgCufMfnYz3WXGfQ90fUvM.png 4167w\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,Z4S9ZLLoB,YIJXKXMmj,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"j4RbnCsEC\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapoh0ibj=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(YIJXKXMmj){const res=await YIJXKXMmj(...args);if(res===false)return false;}});const onMouseEnter1eb3jy5=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"gsYBCsE5f\");});const onMouseLeave108mzfp=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"j4RbnCsEC\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1hl1bq5\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"j4RbnCsEC\",onMouseEnter:onMouseEnter1eb3jy5,onTap:onTapoh0ibj,ref:refBinding,style:{rotate:0,...style},variants:{gsYBCsE5f:{rotate:360}},...addPropertyOverrides({gsYBCsE5f:{\"data-framer-name\":\"Rotated\",onMouseEnter:undefined,onMouseLeave:onMouseLeave108mzfp}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"C7WjAWT1P\"},motionChild:true,nodeId:\"Wz5IVGVBd\",openInNewTab:false,scopeId:\"HFDNiYZQk\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(Z4S9ZLLoB)},className:\"framer-1xugpbs framer-1rkdaco\",layoutDependency:layoutDependency,layoutId:\"Wz5IVGVBd\",style:{rotate:0},variants:{gsYBCsE5f:{rotate:359}},...addPropertyOverrides({gsYBCsE5f:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20.000140837594557),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(Z4S9ZLLoB)}}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-eU0UH.framer-1rkdaco, .framer-eU0UH .framer-1rkdaco { display: block; }\",\".framer-eU0UH.framer-1hl1bq5 { cursor: pointer; height: 240px; overflow: visible; position: relative; width: 240px; }\",\".framer-eU0UH .framer-1xugpbs { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 240px); left: 0px; overflow: visible; position: absolute; right: 0px; text-decoration: none; top: 0px; }\",\".framer-eU0UH.framer-v-191unbs.framer-1hl1bq5 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 240px); }\",\".framer-eU0UH.framer-v-191unbs .framer-1xugpbs { height: var(--framer-aspect-ratio-supported, 200px); left: 20px; right: 20px; top: 20px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 240\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"gsYBCsE5f\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Z4S9ZLLoB\":\"image\",\"YIJXKXMmj\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHFDNiYZQk=withCSS(Component,css,\"framer-eU0UH\");export default FramerHFDNiYZQk;FramerHFDNiYZQk.displayName=\"Rotating Button 4\";FramerHFDNiYZQk.defaultProps={height:240,width:240};addPropertyControls(FramerHFDNiYZQk,{variant:{options:[\"j4RbnCsEC\",\"gsYBCsE5f\"],optionTitles:[\"Variant 1\",\"Rotated\"],title:\"Variant\",type:ControlType.Enum},Z4S9ZLLoB:{__defaultAssetReference:\"SYi5SqgCufMfnYz3WXGfQ90fUvM.png\",title:\"Image\",type:ControlType.ResponsiveImage},YIJXKXMmj:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerHFDNiYZQk,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHFDNiYZQk\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"240\",\"framerVariables\":\"{\\\"Z4S9ZLLoB\\\":\\\"image\\\",\\\"YIJXKXMmj\\\":\\\"tap\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gsYBCsE5f\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"240\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HFDNiYZQk.map", "// Generated by Framer (7d51cf8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteHandler,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/jFOAZKc2EvehHtUZX1Hf/Video.js\";import Footer from\"#framer/local/canvasComponent/FCnxU1UZZ/FCnxU1UZZ.js\";import RotatingButton4 from\"#framer/local/canvasComponent/HFDNiYZQk/HFDNiYZQk.js\";import Header2 from\"#framer/local/canvasComponent/oV5Ius2n0/oV5Ius2n0.js\";import ProjectLink from\"#framer/local/canvasComponent/sZOv7iaOr/sZOv7iaOr.js\";import metadataProvider from\"#framer/local/webPageMetadata/dYW2tpFa6/dYW2tpFa6.js\";const Header2Fonts=getFonts(Header2);const ProjectLinkFonts=getFonts(ProjectLink);const ImageWithFX=withFX(Image);const VideoFonts=getFonts(Video);const RotatingButton4Fonts=getFonts(RotatingButton4);const FooterFonts=getFonts(Footer);const breakpoints={cHJPqp_n1:\"(min-width: 1440px)\",OnPGpwkHJ:\"(max-width: 639px)\",UQVpSMylb:\"(min-width: 640px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-pc3Hu\";const variantClassNames={cHJPqp_n1:\"framer-v-1lz3zqk\",OnPGpwkHJ:\"framer-v-1ckrnkl\",UQVpSMylb:\"framer-v-12m84oa\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"cHJPqp_n1\",Phone:\"OnPGpwkHJ\",Tablet:\"UQVpSMylb\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"cHJPqp_n1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);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 openRoute1ugvvtp=useRouteHandler(\"TvGBGBZLF\",true);const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const HUUwEeEl01febjzf=activeVariantCallback(async(...args)=>{return openRoute1ugvvtp();});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"cHJPqp_n1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-79c68df7-4245-44e2-8f97-f918bee5cff5, rgb(0, 0, 0)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1lz3zqk\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:92,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-87b7qa-container\",nodeId:\"Xm6ZjO5b2\",scopeId:\"dYW2tpFa6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OnPGpwkHJ:{variant:\"hgtxec7ow\"},UQVpSMylb:{variant:\"igFkxdrFR\"}},children:/*#__PURE__*/_jsx(Header2,{height:\"100%\",HUUwEeEl0:HUUwEeEl01febjzf,id:\"Xm6ZjO5b2\",layoutId:\"Xm6ZjO5b2\",style:{width:\"100%\"},variant:\"DvcDnP1Ol\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gkbl9l\",\"data-framer-name\":\"Project Heading\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10sok6x\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i5cvst\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-85fb4cf8-573f-47d6-9caa-f0b092790f7d, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TvGBGBZLF\"},motionChild:true,nodeId:\"OpLfIwHBR\",openInNewTab:false,scopeId:\"dYW2tpFa6\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"2025\"})})})}),className:\"framer-x3phhk\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OnPGpwkHJ:{y:(componentViewport?.y||0)+0+92+56+0+0+0+0+21}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+92+56+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5phzwm-container\",nodeId:\"HpEKIsygh\",scopeId:\"dYW2tpFa6\",children:/*#__PURE__*/_jsx(ProjectLink,{height:\"100%\",id:\"HpEKIsygh\",layoutId:\"HpEKIsygh\",VLuoYiGxU:\"Aviva Investors\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-togp99\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-d85d8d2e-a90b-41e9-8852-32af98456a8d, rgb(2, 10, 54))\"},children:\"Creating a refined motion system for Aviva Investors, bringing their updated brand identity to life through clear and impactful motion design.\"})}),className:\"framer-hmxksz\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8qe3o8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-c30f424b-1ccb-4d94-827a-c7e5c524df2e, rgb(138, 138, 138))\"},children:\"Social\"})}),className:\"framer-iq0240\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rk0u7s\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OnPGpwkHJ:{background:{alt:\"Image of a computer and keyboard on a desk\",fit:\"fill\",intrinsicHeight:3456,intrinsicWidth:5184,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+395+0+0),pixelHeight:2154,pixelWidth:4320,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/OuQywm52Zsy34kehQZ3Benigaec.png\",srcSet:\"https://framerusercontent.com/images/OuQywm52Zsy34kehQZ3Benigaec.png?scale-down-to=512 512w,https://framerusercontent.com/images/OuQywm52Zsy34kehQZ3Benigaec.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OuQywm52Zsy34kehQZ3Benigaec.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/OuQywm52Zsy34kehQZ3Benigaec.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/OuQywm52Zsy34kehQZ3Benigaec.png 4320w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:80,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Image of a computer and keyboard on a desk\",fit:\"fill\",intrinsicHeight:3456,intrinsicWidth:5184,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+295+0+0),pixelHeight:2154,pixelWidth:4320,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/OuQywm52Zsy34kehQZ3Benigaec.png\",srcSet:\"https://framerusercontent.com/images/OuQywm52Zsy34kehQZ3Benigaec.png?scale-down-to=512 512w,https://framerusercontent.com/images/OuQywm52Zsy34kehQZ3Benigaec.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OuQywm52Zsy34kehQZ3Benigaec.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/OuQywm52Zsy34kehQZ3Benigaec.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/OuQywm52Zsy34kehQZ3Benigaec.png 4320w\"},className:\"framer-i8z2yi\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eewn6p\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12hyaad\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-d85d8d2e-a90b-41e9-8852-32af98456a8d, rgb(2, 10, 54))\"},children:\"Background\"})}),className:\"framer-3ajn4x\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--token-d85d8d2e-a90b-41e9-8852-32af98456a8d, rgb(2, 10, 54))\"},children:\"Aviva Investors sought to translate their refreshed brand identity into motion, aiming to elevate their motion graphics while maintaining a professional and corporate tone that would resonate with their audience and stakeholders. I was brought in to lead this transition, tasked with developing a comprehensive set of motion guidelines that would define the brand\u2019s motion language and serve as a foundation for all future motion and video work.\"})}),className:\"framer-1lyino\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h6e41c\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16n5zbh-container\",isModuleExternal:true,nodeId:\"myA_wDrJ2\",scopeId:\"dYW2tpFa6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OnPGpwkHJ:{borderRadius:5,bottomLeftRadius:5,bottomRightRadius:5,topLeftRadius:5,topRightRadius:5},UQVpSMylb:{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,topLeftRadius:10,topRightRadius:10}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:false,height:\"100%\",id:\"myA_wDrJ2\",isMixedBorderRadius:false,layoutId:\"myA_wDrJ2\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/u603Cvb5V8IJ4QYMQyOtuBi70.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ifri9j-container\",isModuleExternal:true,nodeId:\"Bif_Ej9pv\",scopeId:\"dYW2tpFa6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OnPGpwkHJ:{borderRadius:5,bottomLeftRadius:5,bottomRightRadius:5,topLeftRadius:5,topRightRadius:5},UQVpSMylb:{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,topLeftRadius:10,topRightRadius:10}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:false,height:\"100%\",id:\"Bif_Ej9pv\",isMixedBorderRadius:false,layoutId:\"Bif_Ej9pv\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/sJPqhvOSuWdqpaiRaz2LxC9Bg.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-588253\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-upo1ib\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-d85d8d2e-a90b-41e9-8852-32af98456a8d, rgb(2, 10, 54))\"},children:\"Solution\"})}),className:\"framer-fi1okc\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--token-d85d8d2e-a90b-41e9-8852-32af98456a8d, rgb(2, 10, 54))\"},children:\"The motion guidelines I developed centred on using Aviva\u2019s distinctive A and V shapes as bold, dynamic elements that guided transitions and framed content. These shapes became the foundation of the motion system, helping to create a seamless connection between static brand assets and animated content. To support the guidelines, I also produced a series of kinetic motion examples that visualised key themes and offered inspiration for future video work, ensuring consistency while allowing creative flexibility.\"})}),className:\"framer-dhcjjo\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kd3iog\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-124xx1z-container\",isModuleExternal:true,nodeId:\"CVES2o1_u\",scopeId:\"dYW2tpFa6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OnPGpwkHJ:{borderRadius:5,bottomLeftRadius:5,bottomRightRadius:5,topLeftRadius:5,topRightRadius:5},UQVpSMylb:{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,style:{height:\"100%\",width:\"100%\"},topLeftRadius:10,topRightRadius:10}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:false,height:\"100%\",id:\"CVES2o1_u\",isMixedBorderRadius:false,layoutId:\"CVES2o1_u\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/xLaans8Ob0Kvb0oISuMSVOUD0.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wmar1e-container\",isModuleExternal:true,nodeId:\"HzBNREQJY\",scopeId:\"dYW2tpFa6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OnPGpwkHJ:{borderRadius:5,bottomLeftRadius:5,bottomRightRadius:5,topLeftRadius:5,topRightRadius:5},UQVpSMylb:{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,style:{height:\"100%\",width:\"100%\"},topLeftRadius:10,topRightRadius:10}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:false,height:\"100%\",id:\"HzBNREQJY\",isMixedBorderRadius:false,layoutId:\"HzBNREQJY\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/OLLdaX5Ui9I8MlvkCdWHVI3wEQ.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uehuq4\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gl6552-container\",isModuleExternal:true,nodeId:\"hJ7nhtxy7\",scopeId:\"dYW2tpFa6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OnPGpwkHJ:{borderRadius:5,bottomLeftRadius:5,bottomRightRadius:5,topLeftRadius:5,topRightRadius:5},UQVpSMylb:{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,style:{height:\"100%\",width:\"100%\"},topLeftRadius:10,topRightRadius:10}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:false,height:\"100%\",id:\"hJ7nhtxy7\",isMixedBorderRadius:false,layoutId:\"hJ7nhtxy7\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/HbM5Du4Qv0xSK3oapocP59iWlr4.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-m9y2g5-container\",isModuleExternal:true,nodeId:\"aquQtgzOo\",scopeId:\"dYW2tpFa6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OnPGpwkHJ:{borderRadius:5,bottomLeftRadius:5,bottomRightRadius:5,topLeftRadius:5,topRightRadius:5},UQVpSMylb:{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,style:{height:\"100%\",width:\"100%\"},topLeftRadius:10,topRightRadius:10}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:false,height:\"100%\",id:\"aquQtgzOo\",isMixedBorderRadius:false,layoutId:\"aquQtgzOo\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/gzohc1A9JhiCC8KFOJ9CbBYSjw.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mizniu\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rf045b-container\",isModuleExternal:true,nodeId:\"bUyYyuhoe\",scopeId:\"dYW2tpFa6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OnPGpwkHJ:{borderRadius:5,bottomLeftRadius:5,bottomRightRadius:5,topLeftRadius:5,topRightRadius:5},UQVpSMylb:{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,style:{height:\"100%\",width:\"100%\"},topLeftRadius:10,topRightRadius:10}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:false,height:\"100%\",id:\"bUyYyuhoe\",isMixedBorderRadius:false,layoutId:\"bUyYyuhoe\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/PueMzf6zs0zVLsTmRAEXh4u8M.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ymixoa-container\",isModuleExternal:true,nodeId:\"sRr7KNrDL\",scopeId:\"dYW2tpFa6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OnPGpwkHJ:{borderRadius:5,bottomLeftRadius:5,bottomRightRadius:5,topLeftRadius:5,topRightRadius:5},UQVpSMylb:{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,style:{height:\"100%\",width:\"100%\"},topLeftRadius:10,topRightRadius:10}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:false,height:\"100%\",id:\"sRr7KNrDL\",isMixedBorderRadius:false,layoutId:\"sRr7KNrDL\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/f7wHcKc2VZgZB7Qa0jNfULgsw.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ugoso7\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-89gvmm-container\",isModuleExternal:true,nodeId:\"rpNkHN8Bp\",scopeId:\"dYW2tpFa6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OnPGpwkHJ:{borderRadius:5,bottomLeftRadius:5,bottomRightRadius:5,topLeftRadius:5,topRightRadius:5},UQVpSMylb:{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,topLeftRadius:10,topRightRadius:10}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:false,height:\"100%\",id:\"rpNkHN8Bp\",isMixedBorderRadius:false,layoutId:\"rpNkHN8Bp\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/0pAYZzfRzCh7uUuxnI1Mxz51o.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14kx1yp-container\",isModuleExternal:true,nodeId:\"ejcXcRrFo\",scopeId:\"dYW2tpFa6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OnPGpwkHJ:{borderRadius:5,bottomLeftRadius:5,bottomRightRadius:5,topLeftRadius:5,topRightRadius:5},UQVpSMylb:{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,topLeftRadius:10,topRightRadius:10}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:false,height:\"100%\",id:\"ejcXcRrFo\",isMixedBorderRadius:false,layoutId:\"ejcXcRrFo\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/lIdeg3dxgsMlw1Q9izzKyeAFzJU.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nt8ezf\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OnPGpwkHJ:{background:{alt:\"Image of people at a desk with their computers\",fit:\"fill\",intrinsicHeight:3723,intrinsicWidth:5584,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3019.3+20+0),pixelHeight:1276,pixelWidth:2560,src:\"https://framerusercontent.com/images/euboNkZ4l5RhuTZPyXMQ5KSQwps.png\"}},UQVpSMylb:{background:{alt:\"Image of people at a desk with their computers\",fit:\"fill\",intrinsicHeight:3723,intrinsicWidth:5584,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2570.8+0+0),pixelHeight:1276,pixelWidth:2560,src:\"https://framerusercontent.com/images/euboNkZ4l5RhuTZPyXMQ5KSQwps.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Image of people at a desk with their computers\",fit:\"fill\",intrinsicHeight:3723,intrinsicWidth:5584,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2491.4+0+0),pixelHeight:1276,pixelWidth:2560,src:\"https://framerusercontent.com/images/euboNkZ4l5RhuTZPyXMQ5KSQwps.png\"},className:\"framer-s9sqjt\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rjl2ye\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12h60lf\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OnPGpwkHJ:{background:{alt:\"Image of an unmade bed\",fit:\"fill\",intrinsicHeight:4288,intrinsicWidth:2848,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3617.3+0+0+0+0),pixelHeight:2572,pixelWidth:2512,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, (${componentViewport?.width||\"100vw\"} - 40px) * 0.9667)`,src:\"https://framerusercontent.com/images/38qrOuqW1rrkcoYnYlP89UZbzM.png\",srcSet:\"https://framerusercontent.com/images/38qrOuqW1rrkcoYnYlP89UZbzM.png?scale-down-to=1024 1000w,https://framerusercontent.com/images/38qrOuqW1rrkcoYnYlP89UZbzM.png?scale-down-to=2048 2000w,https://framerusercontent.com/images/38qrOuqW1rrkcoYnYlP89UZbzM.png 2512w\"}},UQVpSMylb:{background:{alt:\"Image of an unmade bed\",fit:\"fill\",intrinsicHeight:4288,intrinsicWidth:2848,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3128.8+40+0+0),pixelHeight:2572,pixelWidth:2512,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, (${componentViewport?.width||\"100vw\"} - 80px) * 0.9667) - 24px) / 2, 1px)`,src:\"https://framerusercontent.com/images/38qrOuqW1rrkcoYnYlP89UZbzM.png\",srcSet:\"https://framerusercontent.com/images/38qrOuqW1rrkcoYnYlP89UZbzM.png?scale-down-to=1024 1000w,https://framerusercontent.com/images/38qrOuqW1rrkcoYnYlP89UZbzM.png?scale-down-to=2048 2000w,https://framerusercontent.com/images/38qrOuqW1rrkcoYnYlP89UZbzM.png 2512w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Image of an unmade bed\",fit:\"fill\",intrinsicHeight:4288,intrinsicWidth:2848,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3049.4+80+0+0),pixelHeight:2572,pixelWidth:2512,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 160px, (${componentViewport?.width||\"100vw\"} - 160px) * 0.9667) - 24px) / 2, 1px)`,src:\"https://framerusercontent.com/images/38qrOuqW1rrkcoYnYlP89UZbzM.png\",srcSet:\"https://framerusercontent.com/images/38qrOuqW1rrkcoYnYlP89UZbzM.png?scale-down-to=1024 1000w,https://framerusercontent.com/images/38qrOuqW1rrkcoYnYlP89UZbzM.png?scale-down-to=2048 2000w,https://framerusercontent.com/images/38qrOuqW1rrkcoYnYlP89UZbzM.png 2512w\"},className:\"framer-ung1ub\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OnPGpwkHJ:{background:{alt:\"Image of a bed with a cup of coffee sitting on it\",fit:\"fill\",intrinsicHeight:5456,intrinsicWidth:3632,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3617.3+0+0+0+543),pixelHeight:2572,pixelWidth:2512,src:\"https://framerusercontent.com/images/vODBkgkO1b3mbKYAapqlphOhZdM.png?scale-down-to=2048\"}},UQVpSMylb:{background:{alt:\"Image of a bed with a cup of coffee sitting on it\",fit:\"fill\",intrinsicHeight:5456,intrinsicWidth:3632,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3128.8+40+0+0),pixelHeight:2572,pixelWidth:2512,src:\"https://framerusercontent.com/images/vODBkgkO1b3mbKYAapqlphOhZdM.png?scale-down-to=2048\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Image of a bed with a cup of coffee sitting on it\",fit:\"fill\",intrinsicHeight:5456,intrinsicWidth:3632,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3049.4+80+0+0),pixelHeight:2572,pixelWidth:2512,src:\"https://framerusercontent.com/images/vODBkgkO1b3mbKYAapqlphOhZdM.png?scale-down-to=2048\"},className:\"framer-c5tqyo\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r3ixhw\",\"data-framer-name\":\"Project\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OnPGpwkHJ:{background:{alt:\"Image of an iPhone lying on a table\",fit:\"fill\",intrinsicHeight:3648,intrinsicWidth:5472,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4699.3+20+0),pixelHeight:718,pixelWidth:1440,src:\"https://framerusercontent.com/images/lmpYJFO2pB9YNS8LnJLBQSLKk8.png\"}},UQVpSMylb:{background:{alt:\"Image of an iPhone lying on a table\",fit:\"fill\",intrinsicHeight:3648,intrinsicWidth:5472,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3727.8+40+0),pixelHeight:718,pixelWidth:1440,src:\"https://framerusercontent.com/images/lmpYJFO2pB9YNS8LnJLBQSLKk8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Image of an iPhone lying on a table\",fit:\"fill\",intrinsicHeight:3648,intrinsicWidth:5472,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3668.4+80+0),pixelHeight:718,pixelWidth:1440,src:\"https://framerusercontent.com/images/lmpYJFO2pB9YNS8LnJLBQSLKk8.png\"},className:\"framer-knl0st\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OnPGpwkHJ:{height:60,width:\"60px\",y:(componentViewport?.y||0)+0+4699.3+20+0+257},UQVpSMylb:{height:120,width:\"120px\",y:(componentViewport?.y||0)+0+3727.8+40+0+228.0287}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:\"240px\",y:(componentViewport?.y||0)+0+3668.4+80+0+167,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1akagwt-container\",nodeId:\"GnAGFlYr8\",scopeId:\"dYW2tpFa6\",children:/*#__PURE__*/_jsx(RotatingButton4,{height:\"100%\",id:\"GnAGFlYr8\",layoutId:\"GnAGFlYr8\",style:{height:\"100%\",width:\"100%\"},variant:\"j4RbnCsEC\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OnPGpwkHJ:{y:(componentViewport?.y||0)+0+5313.3},UQVpSMylb:{y:(componentViewport?.y||0)+0+4381.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4402.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-as9mt-container\",nodeId:\"XkFBCAAON\",scopeId:\"dYW2tpFa6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OnPGpwkHJ:{variant:\"uLY8aVZoC\"},UQVpSMylb:{variant:\"vRe9YnwWP\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"XkFBCAAON\",layoutId:\"XkFBCAAON\",style:{width:\"100%\"},variant:\"akt1lXG5M\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pc3Hu.framer-txml42, .framer-pc3Hu .framer-txml42 { display: block; }\",\".framer-pc3Hu.framer-1lz3zqk { align-content: center; align-items: center; background-color: var(--token-79c68df7-4245-44e2-8f97-f918bee5cff5, #000000); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1440px; }\",\".framer-pc3Hu .framer-87b7qa-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-pc3Hu .framer-1gkbl9l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 56px 24px 56px 24px; position: relative; width: 100%; }\",\".framer-pc3Hu .framer-10sok6x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 97%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pc3Hu .framer-1i5cvst { 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: 264px; }\",\".framer-pc3Hu .framer-x3phhk { --framer-link-hover-text-color: var(--token-8856508d-3cdd-4b9d-93c5-9410ff7516dc, #2047f4); --framer-link-text-color: var(--token-c30f424b-1ccb-4d94-827a-c7e5c524df2e, #aeaecb); flex: none; height: 13px; overflow: hidden; position: relative; white-space: pre-wrap; width: 33px; word-break: break-word; word-wrap: break-word; }\",\".framer-pc3Hu .framer-5phzwm-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-pc3Hu .framer-togp99 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-pc3Hu .framer-hmxksz, .framer-pc3Hu .framer-3ajn4x, .framer-pc3Hu .framer-fi1okc { --framer-link-hover-text-color: var(--token-8856508d-3cdd-4b9d-93c5-9410ff7516dc, #2047f4); --framer-link-text-color: var(--token-d85d8d2e-a90b-41e9-8852-32af98456a8d, #020a36); flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 320px; word-break: break-word; word-wrap: break-word; }\",\".framer-pc3Hu .framer-8qe3o8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-pc3Hu .framer-iq0240 { --framer-link-hover-text-color: var(--token-8856508d-3cdd-4b9d-93c5-9410ff7516dc, #2047f4); --framer-link-text-color: var(--token-d85d8d2e-a90b-41e9-8852-32af98456a8d, #020a36); flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-pc3Hu .framer-rk0u7s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-pc3Hu .framer-i8z2yi { aspect-ratio: 2.0069686411149825 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 718px); overflow: hidden; position: relative; width: 100%; }\",\".framer-pc3Hu .framer-1eewn6p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 128px 81px 128px 81px; position: relative; width: 100%; }\",\".framer-pc3Hu .framer-12hyaad { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 97%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pc3Hu .framer-1lyino { --framer-link-hover-text-color: var(--token-8856508d-3cdd-4b9d-93c5-9410ff7516dc, #2047f4); --framer-link-text-color: var(--token-d85d8d2e-a90b-41e9-8852-32af98456a8d, #020a36); flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-pc3Hu .framer-h6e41c, .framer-pc3Hu .framer-1mizniu, .framer-pc3Hu .framer-ugoso7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 80px 80px 80px; position: relative; width: 100%; }\",\".framer-pc3Hu .framer-16n5zbh-container, .framer-pc3Hu .framer-1ifri9j-container, .framer-pc3Hu .framer-124xx1z-container, .framer-pc3Hu .framer-wmar1e-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-pc3Hu .framer-588253 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-pc3Hu .framer-upo1ib { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; max-width: 97%; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-pc3Hu .framer-dhcjjo { --framer-link-hover-text-color: var(--token-8856508d-3cdd-4b9d-93c5-9410ff7516dc, #2047f4); --framer-link-text-color: var(--token-d85d8d2e-a90b-41e9-8852-32af98456a8d, #020a36); flex: 1 0 0px; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-pc3Hu .framer-kd3iog, .framer-pc3Hu .framer-1uehuq4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 80px 24px 80px; position: relative; width: 100%; }\",\".framer-pc3Hu .framer-gl6552-container, .framer-pc3Hu .framer-m9y2g5-container, .framer-pc3Hu .framer-rf045b-container, .framer-pc3Hu .framer-ymixoa-container, .framer-pc3Hu .framer-89gvmm-container, .framer-pc3Hu .framer-14kx1yp-container { flex: none; height: auto; position: relative; width: 49%; }\",\".framer-pc3Hu .framer-nt8ezf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-pc3Hu .framer-s9sqjt, .framer-pc3Hu .framer-knl0st { aspect-ratio: 2.0069686411149825 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 617px); max-width: 97%; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-pc3Hu .framer-1rjl2ye { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 80px 20px 80px; position: relative; width: 100%; }\",\".framer-pc3Hu .framer-12h60lf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 97%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pc3Hu .framer-ung1ub, .framer-pc3Hu .framer-c5tqyo { aspect-ratio: 0.976878612716763 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 621px); overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-pc3Hu .framer-r3ixhw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-pc3Hu .framer-1akagwt-container { flex: none; height: 240px; left: calc(50.00000000000002% - 240px / 2); position: absolute; top: calc(50.00000000000002% - 240px / 2); width: 240px; }\",\".framer-pc3Hu .framer-as9mt-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-pc3Hu.framer-1lz3zqk, .framer-pc3Hu .framer-1gkbl9l, .framer-pc3Hu .framer-1i5cvst, .framer-pc3Hu .framer-8qe3o8, .framer-pc3Hu .framer-rk0u7s, .framer-pc3Hu .framer-1eewn6p, .framer-pc3Hu .framer-12hyaad, .framer-pc3Hu .framer-h6e41c, .framer-pc3Hu .framer-588253, .framer-pc3Hu .framer-upo1ib, .framer-pc3Hu .framer-kd3iog, .framer-pc3Hu .framer-1uehuq4, .framer-pc3Hu .framer-1mizniu, .framer-pc3Hu .framer-ugoso7, .framer-pc3Hu .framer-nt8ezf, .framer-pc3Hu .framer-1rjl2ye, .framer-pc3Hu .framer-12h60lf, .framer-pc3Hu .framer-r3ixhw { gap: 0px; } .framer-pc3Hu.framer-1lz3zqk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-pc3Hu.framer-1lz3zqk > :first-child, .framer-pc3Hu .framer-1gkbl9l > :first-child, .framer-pc3Hu .framer-rk0u7s > :first-child, .framer-pc3Hu .framer-1eewn6p > :first-child, .framer-pc3Hu .framer-12hyaad > :first-child, .framer-pc3Hu .framer-nt8ezf > :first-child, .framer-pc3Hu .framer-1rjl2ye > :first-child, .framer-pc3Hu .framer-r3ixhw > :first-child { margin-top: 0px; } .framer-pc3Hu.framer-1lz3zqk > :last-child, .framer-pc3Hu .framer-1gkbl9l > :last-child, .framer-pc3Hu .framer-rk0u7s > :last-child, .framer-pc3Hu .framer-1eewn6p > :last-child, .framer-pc3Hu .framer-12hyaad > :last-child, .framer-pc3Hu .framer-nt8ezf > :last-child, .framer-pc3Hu .framer-1rjl2ye > :last-child, .framer-pc3Hu .framer-r3ixhw > :last-child { margin-bottom: 0px; } .framer-pc3Hu .framer-1gkbl9l > *, .framer-pc3Hu .framer-rk0u7s > *, .framer-pc3Hu .framer-1eewn6p > *, .framer-pc3Hu .framer-nt8ezf > *, .framer-pc3Hu .framer-1rjl2ye > *, .framer-pc3Hu .framer-r3ixhw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-pc3Hu .framer-1i5cvst > *, .framer-pc3Hu .framer-h6e41c > *, .framer-pc3Hu .framer-kd3iog > *, .framer-pc3Hu .framer-1uehuq4 > *, .framer-pc3Hu .framer-1mizniu > *, .framer-pc3Hu .framer-ugoso7 > *, .framer-pc3Hu .framer-12h60lf > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-pc3Hu .framer-1i5cvst > :first-child, .framer-pc3Hu .framer-8qe3o8 > :first-child, .framer-pc3Hu .framer-h6e41c > :first-child, .framer-pc3Hu .framer-588253 > :first-child, .framer-pc3Hu .framer-upo1ib > :first-child, .framer-pc3Hu .framer-kd3iog > :first-child, .framer-pc3Hu .framer-1uehuq4 > :first-child, .framer-pc3Hu .framer-1mizniu > :first-child, .framer-pc3Hu .framer-ugoso7 > :first-child, .framer-pc3Hu .framer-12h60lf > :first-child { margin-left: 0px; } .framer-pc3Hu .framer-1i5cvst > :last-child, .framer-pc3Hu .framer-8qe3o8 > :last-child, .framer-pc3Hu .framer-h6e41c > :last-child, .framer-pc3Hu .framer-588253 > :last-child, .framer-pc3Hu .framer-upo1ib > :last-child, .framer-pc3Hu .framer-kd3iog > :last-child, .framer-pc3Hu .framer-1uehuq4 > :last-child, .framer-pc3Hu .framer-1mizniu > :last-child, .framer-pc3Hu .framer-ugoso7 > :last-child, .framer-pc3Hu .framer-12h60lf > :last-child { margin-right: 0px; } .framer-pc3Hu .framer-8qe3o8 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-pc3Hu .framer-12hyaad > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-pc3Hu .framer-588253 > *, .framer-pc3Hu .framer-upo1ib > * { margin: 0px; margin-left: calc(72px / 2); margin-right: calc(72px / 2); } }\",\"@media (min-width: 640px) and (max-width: 1439px) { .framer-pc3Hu.framer-1lz3zqk { width: 640px; } .framer-pc3Hu .framer-togp99 { gap: 64px; justify-content: flex-start; } .framer-pc3Hu .framer-hmxksz { flex: 1 0 0px; width: 1px; } .framer-pc3Hu .framer-i8z2yi { height: var(--framer-aspect-ratio-supported, 319px); } .framer-pc3Hu .framer-1eewn6p { padding: 80px 40px 40px 40px; } .framer-pc3Hu .framer-h6e41c { flex-direction: column; gap: 20px; padding: 0px 40px 0px 40px; } .framer-pc3Hu .framer-16n5zbh-container, .framer-pc3Hu .framer-1ifri9j-container, .framer-pc3Hu .framer-dhcjjo { flex: none; width: 100%; } .framer-pc3Hu .framer-588253 { flex-direction: column; gap: 32px; padding: 40px; } .framer-pc3Hu .framer-upo1ib { flex: none; flex-direction: column; gap: 32px; width: 100%; } .framer-pc3Hu .framer-kd3iog, .framer-pc3Hu .framer-1uehuq4 { gap: 20px; padding: 0px 40px 20px 40px; } .framer-pc3Hu .framer-124xx1z-container, .framer-pc3Hu .framer-wmar1e-container { flex: none; height: 155px; width: 48%; } .framer-pc3Hu .framer-gl6552-container, .framer-pc3Hu .framer-m9y2g5-container, .framer-pc3Hu .framer-rf045b-container, .framer-pc3Hu .framer-ymixoa-container { flex: 1 0 0px; height: 155px; width: 1px; } .framer-pc3Hu .framer-1mizniu { gap: 20px; padding: 0px 40px 40px 40px; } .framer-pc3Hu .framer-ugoso7 { flex-direction: column; gap: 20px; padding: 0px 40px 40px 40px; } .framer-pc3Hu .framer-89gvmm-container, .framer-pc3Hu .framer-14kx1yp-container { width: 100%; } .framer-pc3Hu .framer-nt8ezf { padding: 0px 40px 0px 40px; } .framer-pc3Hu .framer-s9sqjt, .framer-pc3Hu .framer-knl0st { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; height: var(--framer-aspect-ratio-supported, 270px); } .framer-pc3Hu .framer-1rjl2ye { gap: 20px; padding: 40px; } .framer-pc3Hu .framer-ung1ub, .framer-pc3Hu .framer-c5tqyo { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; height: var(--framer-aspect-ratio-supported, 265px); } .framer-pc3Hu .framer-r3ixhw { padding: 40px; } .framer-pc3Hu .framer-1akagwt-container { height: 120px; left: calc(50.00000000000002% - 120px / 2); top: calc(50.17921146953407% - 120px / 2); width: 120px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-pc3Hu .framer-togp99, .framer-pc3Hu .framer-h6e41c, .framer-pc3Hu .framer-588253, .framer-pc3Hu .framer-upo1ib, .framer-pc3Hu .framer-kd3iog, .framer-pc3Hu .framer-1uehuq4, .framer-pc3Hu .framer-1mizniu, .framer-pc3Hu .framer-ugoso7, .framer-pc3Hu .framer-1rjl2ye { gap: 0px; } .framer-pc3Hu .framer-togp99 > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-pc3Hu .framer-togp99 > :first-child, .framer-pc3Hu .framer-kd3iog > :first-child, .framer-pc3Hu .framer-1uehuq4 > :first-child, .framer-pc3Hu .framer-1mizniu > :first-child { margin-left: 0px; } .framer-pc3Hu .framer-togp99 > :last-child, .framer-pc3Hu .framer-kd3iog > :last-child, .framer-pc3Hu .framer-1uehuq4 > :last-child, .framer-pc3Hu .framer-1mizniu > :last-child { margin-right: 0px; } .framer-pc3Hu .framer-h6e41c > *, .framer-pc3Hu .framer-ugoso7 > *, .framer-pc3Hu .framer-1rjl2ye > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-pc3Hu .framer-h6e41c > :first-child, .framer-pc3Hu .framer-588253 > :first-child, .framer-pc3Hu .framer-upo1ib > :first-child, .framer-pc3Hu .framer-ugoso7 > :first-child, .framer-pc3Hu .framer-1rjl2ye > :first-child { margin-top: 0px; } .framer-pc3Hu .framer-h6e41c > :last-child, .framer-pc3Hu .framer-588253 > :last-child, .framer-pc3Hu .framer-upo1ib > :last-child, .framer-pc3Hu .framer-ugoso7 > :last-child, .framer-pc3Hu .framer-1rjl2ye > :last-child { margin-bottom: 0px; } .framer-pc3Hu .framer-588253 > *, .framer-pc3Hu .framer-upo1ib > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-pc3Hu .framer-kd3iog > *, .framer-pc3Hu .framer-1uehuq4 > *, .framer-pc3Hu .framer-1mizniu > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }}\",\"@media (max-width: 639px) { .framer-pc3Hu.framer-1lz3zqk { width: 390px; } .framer-pc3Hu .framer-1gkbl9l { padding: 56px 16px 56px 16px; } .framer-pc3Hu .framer-10sok6x { flex-direction: column; gap: 16px; justify-content: flex-start; } .framer-pc3Hu .framer-1i5cvst { flex-direction: column; gap: 8px; } .framer-pc3Hu .framer-togp99 { flex: none; flex-direction: column; gap: 16px; justify-content: flex-start; width: 100%; } .framer-pc3Hu .framer-hmxksz, .framer-pc3Hu .framer-3ajn4x, .framer-pc3Hu .framer-fi1okc, .framer-pc3Hu .framer-gl6552-container, .framer-pc3Hu .framer-m9y2g5-container, .framer-pc3Hu .framer-rf045b-container, .framer-pc3Hu .framer-ymixoa-container, .framer-pc3Hu .framer-89gvmm-container, .framer-pc3Hu .framer-14kx1yp-container { width: 100%; } .framer-pc3Hu .framer-i8z2yi { height: var(--framer-aspect-ratio-supported, 195px); } .framer-pc3Hu .framer-1eewn6p { gap: 20px; padding: 40px 20px 40px 20px; } .framer-pc3Hu .framer-12hyaad { gap: 24px; } .framer-pc3Hu .framer-h6e41c { flex-direction: column; padding: 0px 20px 0px 20px; } .framer-pc3Hu .framer-16n5zbh-container, .framer-pc3Hu .framer-1ifri9j-container, .framer-pc3Hu .framer-dhcjjo, .framer-pc3Hu .framer-124xx1z-container, .framer-pc3Hu .framer-wmar1e-container { flex: none; width: 100%; } .framer-pc3Hu .framer-588253 { align-content: center; align-items: center; flex-direction: column; gap: 20px; padding: 40px 20px 40px 20px; } .framer-pc3Hu .framer-upo1ib { flex: none; flex-direction: column; gap: 32px; width: 100%; } .framer-pc3Hu .framer-kd3iog, .framer-pc3Hu .framer-1uehuq4, .framer-pc3Hu .framer-1mizniu { flex-direction: column; padding: 0px 20px 20px 20px; } .framer-pc3Hu .framer-ugoso7 { flex-direction: column; height: 418px; padding: 0px 20px 0px 20px; } .framer-pc3Hu .framer-nt8ezf, .framer-pc3Hu .framer-r3ixhw { padding: 20px; } .framer-pc3Hu .framer-s9sqjt, .framer-pc3Hu .framer-knl0st { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; height: var(--framer-aspect-ratio-supported, 169px); } .framer-pc3Hu .framer-1rjl2ye { padding: 0px 20px 20px 20px; } .framer-pc3Hu .framer-12h60lf { flex-direction: column; } .framer-pc3Hu .framer-ung1ub, .framer-pc3Hu .framer-c5tqyo { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: var(--framer-aspect-ratio-supported, 347px); width: 100%; } .framer-pc3Hu .framer-1akagwt-container { height: 60px; left: calc(50.00000000000002% - 60px / 2); top: calc(50.00000000000002% - 60px / 2); width: 60px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-pc3Hu .framer-10sok6x, .framer-pc3Hu .framer-1i5cvst, .framer-pc3Hu .framer-togp99, .framer-pc3Hu .framer-1eewn6p, .framer-pc3Hu .framer-12hyaad, .framer-pc3Hu .framer-h6e41c, .framer-pc3Hu .framer-588253, .framer-pc3Hu .framer-upo1ib, .framer-pc3Hu .framer-kd3iog, .framer-pc3Hu .framer-1uehuq4, .framer-pc3Hu .framer-1mizniu, .framer-pc3Hu .framer-ugoso7, .framer-pc3Hu .framer-12h60lf { gap: 0px; } .framer-pc3Hu .framer-10sok6x > *, .framer-pc3Hu .framer-togp99 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-pc3Hu .framer-10sok6x > :first-child, .framer-pc3Hu .framer-1i5cvst > :first-child, .framer-pc3Hu .framer-togp99 > :first-child, .framer-pc3Hu .framer-1eewn6p > :first-child, .framer-pc3Hu .framer-12hyaad > :first-child, .framer-pc3Hu .framer-h6e41c > :first-child, .framer-pc3Hu .framer-588253 > :first-child, .framer-pc3Hu .framer-upo1ib > :first-child, .framer-pc3Hu .framer-kd3iog > :first-child, .framer-pc3Hu .framer-1uehuq4 > :first-child, .framer-pc3Hu .framer-1mizniu > :first-child, .framer-pc3Hu .framer-ugoso7 > :first-child, .framer-pc3Hu .framer-12h60lf > :first-child { margin-top: 0px; } .framer-pc3Hu .framer-10sok6x > :last-child, .framer-pc3Hu .framer-1i5cvst > :last-child, .framer-pc3Hu .framer-togp99 > :last-child, .framer-pc3Hu .framer-1eewn6p > :last-child, .framer-pc3Hu .framer-12hyaad > :last-child, .framer-pc3Hu .framer-h6e41c > :last-child, .framer-pc3Hu .framer-588253 > :last-child, .framer-pc3Hu .framer-upo1ib > :last-child, .framer-pc3Hu .framer-kd3iog > :last-child, .framer-pc3Hu .framer-1uehuq4 > :last-child, .framer-pc3Hu .framer-1mizniu > :last-child, .framer-pc3Hu .framer-ugoso7 > :last-child, .framer-pc3Hu .framer-12h60lf > :last-child { margin-bottom: 0px; } .framer-pc3Hu .framer-1i5cvst > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-pc3Hu .framer-1eewn6p > *, .framer-pc3Hu .framer-588253 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-pc3Hu .framer-12hyaad > *, .framer-pc3Hu .framer-h6e41c > *, .framer-pc3Hu .framer-kd3iog > *, .framer-pc3Hu .framer-1uehuq4 > *, .framer-pc3Hu .framer-1mizniu > *, .framer-pc3Hu .framer-ugoso7 > *, .framer-pc3Hu .framer-12h60lf > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-pc3Hu .framer-upo1ib > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6008\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UQVpSMylb\":{\"layout\":[\"fixed\",\"auto\"]},\"OnPGpwkHJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerdYW2tpFa6=withCSS(Component,css,\"framer-pc3Hu\");export default FramerdYW2tpFa6;FramerdYW2tpFa6.displayName=\"Suzuki\";FramerdYW2tpFa6.defaultProps={height:6008,width:1440};addFonts(FramerdYW2tpFa6,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]},...Header2Fonts,...ProjectLinkFonts,...VideoFonts,...RotatingButton4Fonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdYW2tpFa6\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"6008\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UQVpSMylb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OnPGpwkHJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "tap", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Z4S9ZLLoB", "YIJXKXMmj", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapoh0ibj", "args", "onMouseEnter1eb3jy5", "onMouseLeave108mzfp", "scopingClassNames", "cx", "LayoutGroup", "Link", "Image2", "getLoadingLazyAtYPosition", "css", "FramerHFDNiYZQk", "withCSS", "HFDNiYZQk_default", "addPropertyControls", "ControlType", "addFonts", "Header2Fonts", "getFonts", "oV5Ius2n0_default", "ProjectLinkFonts", "sZOv7iaOr_default", "ImageWithFX", "withFX", "Image2", "VideoFonts", "Video", "RotatingButton4Fonts", "HFDNiYZQk_default", "FooterFonts", "FCnxU1UZZ_default", "breakpoints", "serializationHash", "variantClassNames", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "openRoute1ugvvtp", "useRouteHandler", "activeVariantCallback", "delay", "useActiveVariantCallback", "HUUwEeEl01febjzf", "args", "scopingClassNames", "cx", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "oV5Ius2n0_default", "RichText2", "x", "Link", "sZOv7iaOr_default", "getLoadingLazyAtYPosition", "ImageWithFX", "Video", "Image2", "HFDNiYZQk_default", "FCnxU1UZZ_default", "css", "FramerdYW2tpFa6", "withCSS", "dYW2tpFa6_default", "addFonts", "Header2Fonts", "ProjectLinkFonts", "VideoFonts", "RotatingButton4Fonts", "FooterFonts", "__FramerMetadata__"]
}
