{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js", "ssg:https://framerusercontent.com/modules/PKIGK2Wd14AGLNDHnUGY/Ii8LdhOt5YMsy3Crhunw/ZGBpxaErX.js", "ssg:https://framerusercontent.com/modules/5BYsx6MRl65d9jYTfsYP/XyDjCSLOqIK0rpRrnv9W/RTX6Vaose.js", "ssg:https://framerusercontent.com/modules/wcCw44dXA2zcQPPJn4v0/uTwv4xWAZbpiOtkWa2o4/f4UNVII3L.js", "ssg:https://framerusercontent.com/modules/ftGNAQIj4gN8iVZzORZO/oNwxoZwtsIOMtQhfjdir/mP_gj8zRM.js", "ssg:https://framerusercontent.com/modules/4C2H9sPBJBDceB2hEONf/YBqx2ik2JZNWZUuqxT0I/BGOMZ0TlV.js", "ssg:https://framerusercontent.com/modules/iCUYIZ5yTnQTSMcXGYQj/7Rop9XxmcfGoBW2sfwH0/cMRx4NMLk.js", "ssg:https://framerusercontent.com/modules/XWZArk1sBvJSNbKMYyx4/8nBCvxN2YTsFusdOTBp0/w_dpBKhoq.js", "ssg:https://framerusercontent.com/modules/ZxEjbjJU3wq8WX76XWw9/d66TaMyH5XHPx159HA25/mvvPGF7R3.js", "ssg:https://framerusercontent.com/modules/kZnVcbpNDqkN7gnSlSED/GDihSjuQbEWCHt4hcQsS/dOwxhpPUd.js", "ssg:https://framerusercontent.com/modules/psKE0F02D4szLg1MS9w4/sK6wZFHZ7iSJa0rotDdd/KYMveFRib.js", "ssg:https://framerusercontent.com/modules/9MpmVm1NfWPML4yytAdt/rI9gAuLlJlJV5gBmc8V3/LR_EVOsEt-0.js", "ssg:https://framerusercontent.com/modules/9MpmVm1NfWPML4yytAdt/rI9gAuLlJlJV5gBmc8V3/LR_EVOsEt.js", "ssg:https://framerusercontent.com/modules/52TlDyJwK9gNgLv9ZFrt/K8eWodVNioJDCONuEy26/LR_EVOsEt.js", "ssg:https://framerusercontent.com/modules/6r8kkl6tUxj6OOzjFd9b/OTVs3GMzoyuxaBupWrxC/v75Tpw1Yr.js", "ssg:https://framerusercontent.com/modules/1gECsDt6zFO6FMciFaZ9/q1XtJqtfA5VviUWc8BFv/v75Tpw1Yr.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://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 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:\"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(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(// 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===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:isPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isOnCanvas&&!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:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (dbba614)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";const VideoFonts=getFonts(Video);const VideoControls=getPropertyControls(Video);const serializationHash=\"framer-UeQ4D\";const variantClassNames={RS6emmaiO:\"framer-v-1snfvv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,uploadScreen,video,videoFile,width,...props})=>{var _ref,_ref1;return{...props,GZWgCeD3H:(_ref=uploadScreen!==null&&uploadScreen!==void 0?uploadScreen:props.GZWgCeD3H)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/OaOIxwisXg0d7Lyr86uEipAHJ8.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/OaOIxwisXg0d7Lyr86uEipAHJ8.png?scale-down-to=2048 963w,https://framerusercontent.com/images/OaOIxwisXg0d7Lyr86uEipAHJ8.png 971w\"},ItVAo0Wec:(_ref1=videoFile!==null&&videoFile!==void 0?videoFile:props.ItVAo0Wec)!==null&&_ref1!==void 0?_ref1:\"https://framerusercontent.com/assets/Yu3av9Pujm29eVbKoUjhaYyaEI.mp4\",tGwDy51AR:video!==null&&video!==void 0?video:props.tGwDy51AR};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,GZWgCeD3H,ItVAo0Wec,tGwDy51AR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"RS6emmaiO\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(GZWgCeD3H),...{positionX:\"center\",positionY:\"center\"}},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1snfvv\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"RS6emmaiO\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:tGwDy51AR&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-25hfw6-container\",layoutDependency:layoutDependency,layoutId:\"Fixg7fhVJ-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Fixg7fhVJ\",isMixedBorderRadius:false,layoutId:\"Fixg7fhVJ\",loop:true,muted:true,objectFit:\"fill\",playing:true,posterEnabled:false,srcFile:ItVAo0Wec,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UeQ4D.framer-1kknvnn, .framer-UeQ4D .framer-1kknvnn { display: block; }\",\".framer-UeQ4D.framer-1snfvv { height: 1734px; overflow: hidden; position: relative; width: 800px; }\",\".framer-UeQ4D .framer-25hfw6-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1734\n * @framerIntrinsicWidth 800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"GZWgCeD3H\":\"uploadScreen\",\"ItVAo0Wec\":\"videoFile\",\"tGwDy51AR\":\"video\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZGBpxaErX=withCSS(Component,css,\"framer-UeQ4D\");export default FramerZGBpxaErX;FramerZGBpxaErX.displayName=\"Screen/iPhone 15 Pro Max\";FramerZGBpxaErX.defaultProps={height:1734,width:800};addPropertyControls(FramerZGBpxaErX,{GZWgCeD3H:{__defaultAssetReference:\"data:framer/asset-reference,OaOIxwisXg0d7Lyr86uEipAHJ8.png?originalFilename=Iphone+15+Pro.png&preferredSize=auto\",description:\"\",title:\"Upload screen\",type:ControlType.ResponsiveImage},ItVAo0Wec:(VideoControls===null||VideoControls===void 0?void 0:VideoControls[\"srcFile\"])&&{...VideoControls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,Yu3av9Pujm29eVbKoUjhaYyaEI.mp4?originalFilename=Mobile+BG.mp4\",description:undefined,hidden:undefined,title:\"Video File\"},tGwDy51AR:{defaultValue:false,title:\"Video\",type:ControlType.Boolean}});addFonts(FramerZGBpxaErX,[{explicitInter:true,fonts:[]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZGBpxaErX\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"1734\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"GZWgCeD3H\\\":\\\"uploadScreen\\\",\\\"ItVAo0Wec\\\":\\\"videoFile\\\",\\\"tGwDy51AR\\\":\\\"video\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"800\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZGBpxaErX.map", "// Generated by Framer (dbba614)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ScreenIPhone15ProMax from\"https://framerusercontent.com/modules/PKIGK2Wd14AGLNDHnUGY/Ii8LdhOt5YMsy3Crhunw/ZGBpxaErX.js\";const ScreenIPhone15ProMaxFonts=getFonts(ScreenIPhone15ProMax);const ScreenIPhone15ProMaxControls=getPropertyControls(ScreenIPhone15ProMax);const serializationHash=\"framer-HUIHv\";const variantClassNames={hX5e4lyPM:\"framer-v-1m1upim\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,perspective,shadow,uploadScreen,video,videoFile,width,...props})=>{var _ref,_ref1,_ref2;return{...props,da84zRPjO:uploadScreen!==null&&uploadScreen!==void 0?uploadScreen:props.da84zRPjO,dAFTwEW0i:(_ref=shadow!==null&&shadow!==void 0?shadow:props.dAFTwEW0i)!==null&&_ref!==void 0?_ref:1,gWDvYDCVa:video!==null&&video!==void 0?video:props.gWDvYDCVa,hRoO8Fu8_:(_ref1=videoFile!==null&&videoFile!==void 0?videoFile:props.hRoO8Fu8_)!==null&&_ref1!==void 0?_ref1:\"https://framerusercontent.com/assets/Yu3av9Pujm29eVbKoUjhaYyaEI.mp4\",QR4iC9mu0:(_ref2=perspective!==null&&perspective!==void 0?perspective:props.QR4iC9mu0)!==null&&_ref2!==void 0?_ref2:1200};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,da84zRPjO,gWDvYDCVa,hRoO8Fu8_,dAFTwEW0i,QR4iC9mu0,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"hX5e4lyPM\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1m1upim\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"hX5e4lyPM\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1666.6667108182567,intrinsicWidth:1666.6667108182567,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:1500,pixelWidth:1500,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/UCWjyOgrEGSQuEjUnMQoIaPu8w.png\",srcSet:\"https://framerusercontent.com/images/UCWjyOgrEGSQuEjUnMQoIaPu8w.png?scale-down-to=512 512w,https://framerusercontent.com/images/UCWjyOgrEGSQuEjUnMQoIaPu8w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UCWjyOgrEGSQuEjUnMQoIaPu8w.png 1500w\"},className:\"framer-9q3qm6\",\"data-framer-name\":\"Shadow\",layoutDependency:layoutDependency,layoutId:\"lpd6VzP8V\",style:{opacity:dAFTwEW0i}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1666.6667108182567,intrinsicWidth:1666.6667108182567,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:1500,pixelWidth:1500,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/YPqVEuP1PlebdZjg1Z9h9ilP9w.png\",srcSet:\"https://framerusercontent.com/images/YPqVEuP1PlebdZjg1Z9h9ilP9w.png?scale-down-to=512 512w,https://framerusercontent.com/images/YPqVEuP1PlebdZjg1Z9h9ilP9w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YPqVEuP1PlebdZjg1Z9h9ilP9w.png 1500w\"},className:\"framer-45q5t3\",\"data-framer-name\":\"Model\",layoutDependency:layoutDependency,layoutId:\"dTrVZK3DZ\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:1500,pixelWidth:1500,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/RAgp1qG3RnxuGANcTtg7MmZecAQ.png\",srcSet:\"https://framerusercontent.com/images/RAgp1qG3RnxuGANcTtg7MmZecAQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/RAgp1qG3RnxuGANcTtg7MmZecAQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RAgp1qG3RnxuGANcTtg7MmZecAQ.png 1500w\"},className:\"framer-1nnjeci\",\"data-framer-name\":\"Screen Mask\",layoutDependency:layoutDependency,layoutId:\"TaHNa1j3k\",style:{mask:\"url('https://framerusercontent.com/images/4bVUlQCPWiy5hybp3IUcqD7meqE.png') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/4bVUlQCPWiy5hybp3IUcqD7meqE.png') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||800)-0-0)*.7325,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.3213)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||800)-0)*.4775000000000002-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||800)-0-0)*.7325/2),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pkvett-container\",layoutDependency:layoutDependency,layoutId:\"NWwn3Y3AU-container\",style:{rotate:40,rotateX:-2,rotateY:-2,skewX:18,skewY:-28,transformPerspective:QR4iC9mu0},children:/*#__PURE__*/_jsx(ScreenIPhone15ProMax,{GZWgCeD3H:toResponsiveImage(da84zRPjO),height:\"100%\",id:\"NWwn3Y3AU\",ItVAo0Wec:hRoO8Fu8_,layoutId:\"NWwn3Y3AU\",style:{height:\"100%\",width:\"100%\"},tGwDy51AR:gWDvYDCVa,width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HUIHv.framer-xm7smu, .framer-HUIHv .framer-xm7smu { display: block; }\",\".framer-HUIHv.framer-1m1upim { height: 800px; overflow: hidden; position: relative; width: 800px; }\",\".framer-HUIHv .framer-9q3qm6, .framer-HUIHv .framer-45q5t3, .framer-HUIHv .framer-1nnjeci { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-HUIHv .framer-pkvett-container { flex: none; height: 73%; left: calc(48.12500000000002% - 32.125% / 2); position: absolute; top: calc(47.75000000000002% - 73.25% / 2); width: 32%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"da84zRPjO\":\"uploadScreen\",\"gWDvYDCVa\":\"video\",\"hRoO8Fu8_\":\"videoFile\",\"dAFTwEW0i\":\"shadow\",\"QR4iC9mu0\":\"perspective\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRTX6Vaose=withCSS(Component,css,\"framer-HUIHv\");export default FramerRTX6Vaose;FramerRTX6Vaose.displayName=\"iPhone 15 Floating/Mockup\";FramerRTX6Vaose.defaultProps={height:800,width:800};addPropertyControls(FramerRTX6Vaose,{da84zRPjO:{description:\"800 x 1734 px\",title:\"Upload Screen\",type:ControlType.ResponsiveImage},gWDvYDCVa:{defaultValue:false,title:\"Video\",type:ControlType.Boolean},hRoO8Fu8_:(ScreenIPhone15ProMaxControls===null||ScreenIPhone15ProMaxControls===void 0?void 0:ScreenIPhone15ProMaxControls[\"ItVAo0Wec\"])&&{...ScreenIPhone15ProMaxControls[\"ItVAo0Wec\"],__defaultAssetReference:\"data:framer/asset-reference,Yu3av9Pujm29eVbKoUjhaYyaEI.mp4?originalFilename=Mobile+BG.mp4\",description:undefined,hidden:undefined,title:\"Video File\"},dAFTwEW0i:{defaultValue:1,max:1,min:0,step:.01,title:\"Shadow\",type:ControlType.Number},QR4iC9mu0:{defaultValue:1200,max:5e3,min:500,step:1,title:\"Perspective\",type:ControlType.Number}});addFonts(FramerRTX6Vaose,[{explicitInter:true,fonts:[]},...ScreenIPhone15ProMaxFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRTX6Vaose\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"800\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"800\",\"framerVariables\":\"{\\\"da84zRPjO\\\":\\\"uploadScreen\\\",\\\"gWDvYDCVa\\\":\\\"video\\\",\\\"hRoO8Fu8_\\\":\\\"videoFile\\\",\\\"dAFTwEW0i\\\":\\\"shadow\\\",\\\"QR4iC9mu0\\\":\\\"perspective\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RTX6Vaose.map", "// Generated by Framer (4ba8877)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";const VideoFonts=getFonts(Video);const VideoControls=getPropertyControls(Video);const serializationHash=\"framer-o9xq2\";const variantClassNames={ccmLcRK8G:\"framer-v-eucp87\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,uploadScreen,video,videoFile,width,...props})=>{var _ref,_ref1;return{...props,BLnqlNgCT:(_ref=videoFile!==null&&videoFile!==void 0?videoFile:props.BLnqlNgCT)!==null&&_ref!==void 0?_ref:\"https://framerusercontent.com/assets/DPhHKeyPIKFVpIEaGgjgcSChz0.mp4\",byr6CFmxe:video!==null&&video!==void 0?video:props.byr6CFmxe,RuJEHx8Ju:(_ref1=uploadScreen!==null&&uploadScreen!==void 0?uploadScreen:props.RuJEHx8Ju)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/jbSEA28Jh8MAb3sxBOZrHbQ4wVw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/jbSEA28Jh8MAb3sxBOZrHbQ4wVw.png?scale-down-to=512 512w,https://framerusercontent.com/images/jbSEA28Jh8MAb3sxBOZrHbQ4wVw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jbSEA28Jh8MAb3sxBOZrHbQ4wVw.png 1768w\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,RuJEHx8Ju,byr6CFmxe,BLnqlNgCT,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"ccmLcRK8G\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(RuJEHx8Ju),...{positionX:\"center\",positionY:\"center\"}},className:cx(serializationHash,...sharedStyleClassNames,\"framer-eucp87\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ccmLcRK8G\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:byr6CFmxe&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l2756f-container\",layoutDependency:layoutDependency,layoutId:\"GIkkHs_tc-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"GIkkHs_tc\",isMixedBorderRadius:false,layoutId:\"GIkkHs_tc\",loop:true,muted:true,objectFit:\"fill\",playing:true,posterEnabled:false,srcFile:BLnqlNgCT,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-o9xq2.framer-1p4z0k2, .framer-o9xq2 .framer-1p4z0k2 { display: block; }\",\".framer-o9xq2.framer-eucp87 { height: 628px; overflow: hidden; position: relative; width: 971px; }\",\".framer-o9xq2 .framer-1l2756f-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 628\n * @framerIntrinsicWidth 971\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"RuJEHx8Ju\":\"uploadScreen\",\"byr6CFmxe\":\"video\",\"BLnqlNgCT\":\"videoFile\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerf4UNVII3L=withCSS(Component,css,\"framer-o9xq2\");export default Framerf4UNVII3L;Framerf4UNVII3L.displayName='Screen/MacBook Pro 16\"';Framerf4UNVII3L.defaultProps={height:628,width:971};addPropertyControls(Framerf4UNVII3L,{RuJEHx8Ju:{__defaultAssetReference:\"data:framer/asset-reference,jbSEA28Jh8MAb3sxBOZrHbQ4wVw.png?originalFilename=Macbook+Pro+16+-+2025.png&preferredSize=auto\",description:\"\",title:\"Upload screen\",type:ControlType.ResponsiveImage},byr6CFmxe:{defaultValue:false,title:\"Video\",type:ControlType.Boolean},BLnqlNgCT:(VideoControls===null||VideoControls===void 0?void 0:VideoControls[\"srcFile\"])&&{...VideoControls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,DPhHKeyPIKFVpIEaGgjgcSChz0.mp4?originalFilename=Desktop+BG.mp4\",description:undefined,hidden:undefined,title:\"Video File\"}});addFonts(Framerf4UNVII3L,[{explicitInter:true,fonts:[]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerf4UNVII3L\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"RuJEHx8Ju\\\":\\\"uploadScreen\\\",\\\"byr6CFmxe\\\":\\\"video\\\",\\\"BLnqlNgCT\\\":\\\"videoFile\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"628\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"971\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./f4UNVII3L.map", "// Generated by Framer (d6b3045)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ScreenMacBookPro16 from\"https://framerusercontent.com/modules/wcCw44dXA2zcQPPJn4v0/uTwv4xWAZbpiOtkWa2o4/f4UNVII3L.js\";const ScreenMacBookPro16Fonts=getFonts(ScreenMacBookPro16);const ScreenMacBookPro16Controls=getPropertyControls(ScreenMacBookPro16);const serializationHash=\"framer-lNE6M\";const variantClassNames={iJhQ7FpKq:\"framer-v-1d5wf3t\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,shadow,uploadScreen,video,videoFile,width,...props})=>{var _ref,_ref1;return{...props,BZx7yhrCM:video!==null&&video!==void 0?video:props.BZx7yhrCM,LcoS8xnFv:(_ref=videoFile!==null&&videoFile!==void 0?videoFile:props.LcoS8xnFv)!==null&&_ref!==void 0?_ref:\"https://framerusercontent.com/assets/DPhHKeyPIKFVpIEaGgjgcSChz0.mp4\",ubyNWkN4V:(_ref1=shadow!==null&&shadow!==void 0?shadow:props.ubyNWkN4V)!==null&&_ref1!==void 0?_ref1:1,VR69n9fXh:uploadScreen!==null&&uploadScreen!==void 0?uploadScreen:props.VR69n9fXh};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,VR69n9fXh,BZx7yhrCM,LcoS8xnFv,ubyNWkN4V,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"iJhQ7FpKq\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1d5wf3t\",className,classNames),\"data-framer-name\":\"Iso\",layoutDependency:layoutDependency,layoutId:\"iJhQ7FpKq\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1818.1817787737893,intrinsicWidth:1818.1817787737893,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:2e3,pixelWidth:2e3,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/PqnfMbbwQfHM4zwB4uaJZ14kpps.png\",srcSet:\"https://framerusercontent.com/images/PqnfMbbwQfHM4zwB4uaJZ14kpps.png?scale-down-to=512 512w,https://framerusercontent.com/images/PqnfMbbwQfHM4zwB4uaJZ14kpps.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PqnfMbbwQfHM4zwB4uaJZ14kpps.png 2000w\"},className:\"framer-1sk3mgf\",\"data-framer-name\":\"Shadow\",layoutDependency:layoutDependency,layoutId:\"BzYezOatv\",style:{opacity:ubyNWkN4V}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1818.1817787737893,intrinsicWidth:1818.1817787737893,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:2e3,pixelWidth:2e3,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/hmXs2QZj1U1wdkOFqSnWaLlTv0k.png\",srcSet:\"https://framerusercontent.com/images/hmXs2QZj1U1wdkOFqSnWaLlTv0k.png?scale-down-to=512 512w,https://framerusercontent.com/images/hmXs2QZj1U1wdkOFqSnWaLlTv0k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hmXs2QZj1U1wdkOFqSnWaLlTv0k.png 2000w\"},className:\"framer-nxvkj6\",\"data-framer-name\":\"Model\",layoutDependency:layoutDependency,layoutId:\"cTIFXnr4e\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:2e3,pixelWidth:2e3,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/hmXs2QZj1U1wdkOFqSnWaLlTv0k.png\",srcSet:\"https://framerusercontent.com/images/hmXs2QZj1U1wdkOFqSnWaLlTv0k.png?scale-down-to=512 512w,https://framerusercontent.com/images/hmXs2QZj1U1wdkOFqSnWaLlTv0k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hmXs2QZj1U1wdkOFqSnWaLlTv0k.png 2000w\"},className:\"framer-a3lvp6\",\"data-framer-name\":\"Screen Mask\",layoutDependency:layoutDependency,layoutId:\"k4CBV4x5a\",style:{mask:\"url('https://framerusercontent.com/images/fLOHrHfB88Zq4LM9igpfUR76peo.png') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/fLOHrHfB88Zq4LM9igpfUR76peo.png') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||800)-0-0)*.3525,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.515)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||800)-0)*.38750000000000023-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||800)-0-0)*.3525/2),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i67le-container\",layoutDependency:layoutDependency,layoutId:\"rBAc6NfzX-container\",style:{rotate:21.8,rotateX:3,rotateY:-7,skewX:22,skewY:5},children:/*#__PURE__*/_jsx(ScreenMacBookPro16,{BLnqlNgCT:LcoS8xnFv,byr6CFmxe:BZx7yhrCM,height:\"100%\",id:\"rBAc6NfzX\",layoutId:\"rBAc6NfzX\",RuJEHx8Ju:toResponsiveImage(VR69n9fXh),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lNE6M.framer-45wgo4, .framer-lNE6M .framer-45wgo4 { display: block; }\",\".framer-lNE6M.framer-1d5wf3t { height: 800px; overflow: hidden; position: relative; width: 800px; }\",\".framer-lNE6M .framer-1sk3mgf, .framer-lNE6M .framer-nxvkj6, .framer-lNE6M .framer-a3lvp6 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-lNE6M .framer-1i67le-container { flex: none; height: 35%; left: calc(63.50000000000002% - 51.5% / 2); position: absolute; top: calc(38.75000000000002% - 35.25% / 2); width: 52%; z-index: 1; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"VR69n9fXh\":\"uploadScreen\",\"BZx7yhrCM\":\"video\",\"LcoS8xnFv\":\"videoFile\",\"ubyNWkN4V\":\"shadow\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermP_gj8zRM=withCSS(Component,css,\"framer-lNE6M\");export default FramermP_gj8zRM;FramermP_gj8zRM.displayName='MacBook Pro 16\"/Mockup';FramermP_gj8zRM.defaultProps={height:800,width:800};addPropertyControls(FramermP_gj8zRM,{VR69n9fXh:{description:\"971 x 628 px\",title:\"Upload Screen\",type:ControlType.ResponsiveImage},BZx7yhrCM:{defaultValue:false,title:\"Video\",type:ControlType.Boolean},LcoS8xnFv:(ScreenMacBookPro16Controls===null||ScreenMacBookPro16Controls===void 0?void 0:ScreenMacBookPro16Controls[\"BLnqlNgCT\"])&&{...ScreenMacBookPro16Controls[\"BLnqlNgCT\"],__defaultAssetReference:\"data:framer/asset-reference,DPhHKeyPIKFVpIEaGgjgcSChz0.mp4?originalFilename=Desktop+BG.mp4\",description:undefined,hidden:undefined,title:\"Video File\"},ubyNWkN4V:{defaultValue:1,max:1,min:0,step:.01,title:\"Shadow\",type:ControlType.Number}});addFonts(FramermP_gj8zRM,[{explicitInter:true,fonts:[]},...ScreenMacBookPro16Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermP_gj8zRM\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"800\",\"framerVariables\":\"{\\\"VR69n9fXh\\\":\\\"uploadScreen\\\",\\\"BZx7yhrCM\\\":\\\"video\\\",\\\"LcoS8xnFv\\\":\\\"videoFile\\\",\\\"ubyNWkN4V\\\":\\\"shadow\\\"}\",\"framerIntrinsicWidth\":\"800\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d6b3045)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";const VideoFonts=getFonts(Video);const VideoControls=getPropertyControls(Video);const serializationHash=\"framer-2ANow\";const variantClassNames={IUbmaa8IA:\"framer-v-zanstp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,uploadScreen,video,videoFile,width,...props})=>{var _ref,_ref1;return{...props,EkaIvTQpE:(_ref=videoFile!==null&&videoFile!==void 0?videoFile:props.EkaIvTQpE)!==null&&_ref!==void 0?_ref:\"https://framerusercontent.com/assets/DPhHKeyPIKFVpIEaGgjgcSChz0.mp4\",tkS_klyRM:video!==null&&video!==void 0?video:props.tkS_klyRM,ugbrm2PdD:(_ref1=uploadScreen!==null&&uploadScreen!==void 0?uploadScreen:props.ugbrm2PdD)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/wZGihIpF2M3KBUeExNUy1gej4.png\",srcSet:\"https://framerusercontent.com/images/wZGihIpF2M3KBUeExNUy1gej4.png?scale-down-to=512 512w,https://framerusercontent.com/images/wZGihIpF2M3KBUeExNUy1gej4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wZGihIpF2M3KBUeExNUy1gej4.png 1738w\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ugbrm2PdD,tkS_klyRM,EkaIvTQpE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"IUbmaa8IA\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(ugbrm2PdD),...{positionX:\"center\",positionY:\"center\"}},className:cx(serializationHash,...sharedStyleClassNames,\"framer-zanstp\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"IUbmaa8IA\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:tkS_klyRM&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1963haz-container\",layoutDependency:layoutDependency,layoutId:\"neNgfJZzz-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"neNgfJZzz\",isMixedBorderRadius:false,layoutId:\"neNgfJZzz\",loop:true,muted:true,objectFit:\"fill\",playing:true,posterEnabled:false,srcFile:EkaIvTQpE,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2ANow.framer-1x9jhdw, .framer-2ANow .framer-1x9jhdw { display: block; }\",\".framer-2ANow.framer-zanstp { height: 978px; overflow: hidden; position: relative; width: 1738px; }\",\".framer-2ANow .framer-1963haz-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 978\n * @framerIntrinsicWidth 1738\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"ugbrm2PdD\":\"uploadScreen\",\"tkS_klyRM\":\"video\",\"EkaIvTQpE\":\"videoFile\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBGOMZ0TlV=withCSS(Component,css,\"framer-2ANow\");export default FramerBGOMZ0TlV;FramerBGOMZ0TlV.displayName=\"Screen/Apple Pro Display XDR\";FramerBGOMZ0TlV.defaultProps={height:978,width:1738};addPropertyControls(FramerBGOMZ0TlV,{ugbrm2PdD:{__defaultAssetReference:\"data:framer/asset-reference,wZGihIpF2M3KBUeExNUy1gej4.png?originalFilename=Pro+Display+XDR+2024.png&preferredSize=auto\",title:\"Upload screen\",type:ControlType.ResponsiveImage},tkS_klyRM:{defaultValue:false,title:\"Video\",type:ControlType.Boolean},EkaIvTQpE:(VideoControls===null||VideoControls===void 0?void 0:VideoControls[\"srcFile\"])&&{...VideoControls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,DPhHKeyPIKFVpIEaGgjgcSChz0.mp4?originalFilename=Desktop+BG.mp4\",description:undefined,hidden:undefined,title:\"Video File\"}});addFonts(FramerBGOMZ0TlV,[{explicitInter:true,fonts:[]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBGOMZ0TlV\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1738\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"ugbrm2PdD\\\":\\\"uploadScreen\\\",\\\"tkS_klyRM\\\":\\\"video\\\",\\\"EkaIvTQpE\\\":\\\"videoFile\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"978\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BGOMZ0TlV.map", "// Generated by Framer (f22aa3d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ScreenAppleProDisplayXDR from\"https://framerusercontent.com/modules/4C2H9sPBJBDceB2hEONf/YBqx2ik2JZNWZUuqxT0I/BGOMZ0TlV.js\";const ScreenAppleProDisplayXDRFonts=getFonts(ScreenAppleProDisplayXDR);const ScreenAppleProDisplayXDRControls=getPropertyControls(ScreenAppleProDisplayXDR);const serializationHash=\"framer-1QEwZ\";const variantClassNames={ihfYH1z3S:\"framer-v-1hpjtmz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,shadow,uploadScreen,video,videoFile,width,...props})=>{var _ref,_ref1;return{...props,cuSXmJOoX:uploadScreen!==null&&uploadScreen!==void 0?uploadScreen:props.cuSXmJOoX,eIlFg8KR9:(_ref=videoFile!==null&&videoFile!==void 0?videoFile:props.eIlFg8KR9)!==null&&_ref!==void 0?_ref:\"https://framerusercontent.com/assets/DPhHKeyPIKFVpIEaGgjgcSChz0.mp4\",flqb2QWTh:video!==null&&video!==void 0?video:props.flqb2QWTh,x1DxEuTjj:(_ref1=shadow!==null&&shadow!==void 0?shadow:props.x1DxEuTjj)!==null&&_ref1!==void 0?_ref1:1};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,cuSXmJOoX,flqb2QWTh,eIlFg8KR9,x1DxEuTjj,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"ihfYH1z3S\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1hpjtmz\",className,classNames),\"data-framer-name\":\"Front\",layoutDependency:layoutDependency,layoutId:\"ihfYH1z3S\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1818.1817787737893,intrinsicWidth:1818.1817787737893,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:2e3,pixelWidth:2e3,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/lcqdMDydROOxwp0c5kSfh0S9890.png\",srcSet:\"https://framerusercontent.com/images/lcqdMDydROOxwp0c5kSfh0S9890.png?scale-down-to=512 512w,https://framerusercontent.com/images/lcqdMDydROOxwp0c5kSfh0S9890.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lcqdMDydROOxwp0c5kSfh0S9890.png 2000w\"},className:\"framer-18o6wd3\",\"data-framer-name\":\"Shadow\",layoutDependency:layoutDependency,layoutId:\"dZgkrcWQH\",style:{opacity:x1DxEuTjj}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1818.1817787737893,intrinsicWidth:1818.1817787737893,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:2e3,pixelWidth:2e3,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/z2tcCbgMvepsDvyvl6QDoCpkgN4.png\",srcSet:\"https://framerusercontent.com/images/z2tcCbgMvepsDvyvl6QDoCpkgN4.png?scale-down-to=512 512w,https://framerusercontent.com/images/z2tcCbgMvepsDvyvl6QDoCpkgN4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/z2tcCbgMvepsDvyvl6QDoCpkgN4.png 2000w\"},className:\"framer-sh6xeb\",\"data-framer-name\":\"Model\",layoutDependency:layoutDependency,layoutId:\"FOM1RqNS5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:2e3,pixelWidth:2e3,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/z2tcCbgMvepsDvyvl6QDoCpkgN4.png\",srcSet:\"https://framerusercontent.com/images/z2tcCbgMvepsDvyvl6QDoCpkgN4.png?scale-down-to=512 512w,https://framerusercontent.com/images/z2tcCbgMvepsDvyvl6QDoCpkgN4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/z2tcCbgMvepsDvyvl6QDoCpkgN4.png 2000w\"},className:\"framer-joqfun\",\"data-framer-name\":\"Screen Mask\",layoutDependency:layoutDependency,layoutId:\"Fg4v9WxZZ\",style:{mask:\"url('https://framerusercontent.com/images/nLQDUpOM8vJMSokIXWIMV62X2Kc.png') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/nLQDUpOM8vJMSokIXWIMV62X2Kc.png') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||800)-0-0)*.489,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.869)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||800)-0)*.4210000000000002-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||800)-0-0)*.489/2),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cpyg51-container\",layoutDependency:layoutDependency,layoutId:\"qikdNY36E-container\",children:/*#__PURE__*/_jsx(ScreenAppleProDisplayXDR,{EkaIvTQpE:eIlFg8KR9,height:\"100%\",id:\"qikdNY36E\",layoutId:\"qikdNY36E\",style:{height:\"100%\",width:\"100%\"},tkS_klyRM:flqb2QWTh,ugbrm2PdD:toResponsiveImage(cuSXmJOoX),width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1QEwZ.framer-tpzp55, .framer-1QEwZ .framer-tpzp55 { display: block; }\",\".framer-1QEwZ.framer-1hpjtmz { height: 800px; overflow: hidden; position: relative; width: 800px; }\",\".framer-1QEwZ .framer-18o6wd3, .framer-1QEwZ .framer-sh6xeb, .framer-1QEwZ .framer-joqfun { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-1QEwZ .framer-cpyg51-container { flex: none; height: 49%; left: calc(50.00000000000002% - 86.9% / 2); position: absolute; top: calc(42.10000000000002% - 48.9% / 2); width: 87%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"cuSXmJOoX\":\"uploadScreen\",\"flqb2QWTh\":\"video\",\"eIlFg8KR9\":\"videoFile\",\"x1DxEuTjj\":\"shadow\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercMRx4NMLk=withCSS(Component,css,\"framer-1QEwZ\");export default FramercMRx4NMLk;FramercMRx4NMLk.displayName=\"Apple Pro Display XDR/Mockup\";FramercMRx4NMLk.defaultProps={height:800,width:800};addPropertyControls(FramercMRx4NMLk,{cuSXmJOoX:{description:\"1738 x 978 px\",title:\"Upload Screen\",type:ControlType.ResponsiveImage},flqb2QWTh:{defaultValue:false,title:\"Video\",type:ControlType.Boolean},eIlFg8KR9:(ScreenAppleProDisplayXDRControls===null||ScreenAppleProDisplayXDRControls===void 0?void 0:ScreenAppleProDisplayXDRControls[\"EkaIvTQpE\"])&&{...ScreenAppleProDisplayXDRControls[\"EkaIvTQpE\"],__defaultAssetReference:\"data:framer/asset-reference,DPhHKeyPIKFVpIEaGgjgcSChz0.mp4?originalFilename=Desktop+BG.mp4\",description:undefined,hidden:undefined,title:\"Video File\"},x1DxEuTjj:{defaultValue:1,max:1,min:0,step:.01,title:\"Shadow\",type:ControlType.Number}});addFonts(FramercMRx4NMLk,[{explicitInter:true,fonts:[]},...ScreenAppleProDisplayXDRFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercMRx4NMLk\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"800\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"cuSXmJOoX\\\":\\\"uploadScreen\\\",\\\"flqb2QWTh\\\":\\\"video\\\",\\\"eIlFg8KR9\\\":\\\"videoFile\\\",\\\"x1DxEuTjj\\\":\\\"shadow\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"800\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d6b3045)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";const VideoFonts=getFonts(Video);const VideoControls=getPropertyControls(Video);const serializationHash=\"framer-HCUqz\";const variantClassNames={rJebSoZ_r:\"framer-v-akx9qm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,uploadScreen,video,videoFile,width,...props})=>{var _ref,_ref1;return{...props,EnjYf2Cq8:(_ref=uploadScreen!==null&&uploadScreen!==void 0?uploadScreen:props.EnjYf2Cq8)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/Owz8Au99hgqFsTxGliPfjqEY7ms.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Owz8Au99hgqFsTxGliPfjqEY7ms.png?scale-down-to=2048 963w,https://framerusercontent.com/images/Owz8Au99hgqFsTxGliPfjqEY7ms.png 971w\"},GXBfLkeXN:video!==null&&video!==void 0?video:props.GXBfLkeXN,ljgn1WOP1:(_ref1=videoFile!==null&&videoFile!==void 0?videoFile:props.ljgn1WOP1)!==null&&_ref1!==void 0?_ref1:\"https://framerusercontent.com/assets/Yu3av9Pujm29eVbKoUjhaYyaEI.mp4\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,EnjYf2Cq8,GXBfLkeXN,ljgn1WOP1,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"rJebSoZ_r\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(EnjYf2Cq8),...{positionX:\"center\",positionY:\"center\"}},className:cx(serializationHash,...sharedStyleClassNames,\"framer-akx9qm\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"rJebSoZ_r\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:GXBfLkeXN&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-74gnqm-container\",layoutDependency:layoutDependency,layoutId:\"VDVxkfVZd-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"VDVxkfVZd\",isMixedBorderRadius:false,layoutId:\"VDVxkfVZd\",loop:true,muted:true,objectFit:\"fill\",playing:true,posterEnabled:false,srcFile:ljgn1WOP1,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HCUqz.framer-1tiku8k, .framer-HCUqz .framer-1tiku8k { display: block; }\",\".framer-HCUqz.framer-akx9qm { height: 1038px; overflow: hidden; position: relative; width: 479px; }\",\".framer-HCUqz .framer-74gnqm-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1038\n * @framerIntrinsicWidth 479\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"EnjYf2Cq8\":\"uploadScreen\",\"GXBfLkeXN\":\"video\",\"ljgn1WOP1\":\"videoFile\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerw_dpBKhoq=withCSS(Component,css,\"framer-HCUqz\");export default Framerw_dpBKhoq;Framerw_dpBKhoq.displayName=\"Screen/iPhone 16 Plus\";Framerw_dpBKhoq.defaultProps={height:1038,width:479};addPropertyControls(Framerw_dpBKhoq,{EnjYf2Cq8:{__defaultAssetReference:\"data:framer/asset-reference,Owz8Au99hgqFsTxGliPfjqEY7ms.png?originalFilename=iPhone+16+Plus.png&preferredSize=auto\",title:\"Upload screen\",type:ControlType.ResponsiveImage},GXBfLkeXN:{defaultValue:false,title:\"Video\",type:ControlType.Boolean},ljgn1WOP1:(VideoControls===null||VideoControls===void 0?void 0:VideoControls[\"srcFile\"])&&{...VideoControls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,Yu3av9Pujm29eVbKoUjhaYyaEI.mp4?originalFilename=Mobile+BG.mp4\",description:undefined,hidden:undefined,title:\"Video File\"}});addFonts(Framerw_dpBKhoq,[{explicitInter:true,fonts:[]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerw_dpBKhoq\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"EnjYf2Cq8\\\":\\\"uploadScreen\\\",\\\"GXBfLkeXN\\\":\\\"video\\\",\\\"ljgn1WOP1\\\":\\\"videoFile\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"1038\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"479\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./w_dpBKhoq.map", "// Generated by Framer (f22aa3d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ScreenIPhone16Plus from\"https://framerusercontent.com/modules/XWZArk1sBvJSNbKMYyx4/8nBCvxN2YTsFusdOTBp0/w_dpBKhoq.js\";const ScreenIPhone16PlusFonts=getFonts(ScreenIPhone16Plus);const ScreenIPhone16PlusControls=getPropertyControls(ScreenIPhone16Plus);const serializationHash=\"framer-BcWq8\";const variantClassNames={rjGvAnBJU:\"framer-v-mwt16l\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,shadow,uploadScreen,video,videoFile,width,...props})=>{var _ref,_ref1;return{...props,kOt_E0l76:(_ref=videoFile!==null&&videoFile!==void 0?videoFile:props.kOt_E0l76)!==null&&_ref!==void 0?_ref:\"https://framerusercontent.com/assets/Yu3av9Pujm29eVbKoUjhaYyaEI.mp4\",m94MBR1Wc:uploadScreen!==null&&uploadScreen!==void 0?uploadScreen:props.m94MBR1Wc,pb96H8iAB:(_ref1=shadow!==null&&shadow!==void 0?shadow:props.pb96H8iAB)!==null&&_ref1!==void 0?_ref1:1,XwRAncnnj:video!==null&&video!==void 0?video:props.XwRAncnnj};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,m94MBR1Wc,XwRAncnnj,kOt_E0l76,pb96H8iAB,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"rjGvAnBJU\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-mwt16l\",className,classNames),\"data-framer-name\":\"Front\",layoutDependency:layoutDependency,layoutId:\"rjGvAnBJU\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1687.2726907020765,intrinsicWidth:1687.2726907020765,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:1856,pixelWidth:1856,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/5HWVgqBRTTX1kW6AEsxmNjvUv4k.png\",srcSet:\"https://framerusercontent.com/images/5HWVgqBRTTX1kW6AEsxmNjvUv4k.png?scale-down-to=512 512w,https://framerusercontent.com/images/5HWVgqBRTTX1kW6AEsxmNjvUv4k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5HWVgqBRTTX1kW6AEsxmNjvUv4k.png 1856w\"},className:\"framer-1lygzot\",\"data-framer-name\":\"Shadow\",layoutDependency:layoutDependency,layoutId:\"tyUqvcLmR\",style:{opacity:pb96H8iAB}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1687.2726907020765,intrinsicWidth:1687.2726907020765,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:1856,pixelWidth:1856,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/zlIBIDBHZmfvXu0dJ47sXViWeU.png\",srcSet:\"https://framerusercontent.com/images/zlIBIDBHZmfvXu0dJ47sXViWeU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zlIBIDBHZmfvXu0dJ47sXViWeU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zlIBIDBHZmfvXu0dJ47sXViWeU.png 1856w\"},className:\"framer-ho43y2\",\"data-framer-name\":\"Model\",layoutDependency:layoutDependency,layoutId:\"XFK9csU9G\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1856,intrinsicWidth:1856,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:1856,pixelWidth:1856,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/zlIBIDBHZmfvXu0dJ47sXViWeU.png\",srcSet:\"https://framerusercontent.com/images/zlIBIDBHZmfvXu0dJ47sXViWeU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zlIBIDBHZmfvXu0dJ47sXViWeU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zlIBIDBHZmfvXu0dJ47sXViWeU.png 1856w\"},className:\"framer-1tcmysx\",\"data-framer-name\":\"Screen Mask\",layoutDependency:layoutDependency,layoutId:\"M58r49AQu\",style:{mask:\"url('https://framerusercontent.com/images/qv6dX5DJvWx1MG8Aqv53oAlDTI0.png') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/qv6dX5DJvWx1MG8Aqv53oAlDTI0.png') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||800)-0-0)*.6925,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.325)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||800)-0)*.5050000000000002-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||800)-0-0)*.6925/2),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k1jbbn-container\",layoutDependency:layoutDependency,layoutId:\"rehN_otAI-container\",children:/*#__PURE__*/_jsx(ScreenIPhone16Plus,{EnjYf2Cq8:toResponsiveImage(m94MBR1Wc),GXBfLkeXN:XwRAncnnj,height:\"100%\",id:\"rehN_otAI\",layoutId:\"rehN_otAI\",ljgn1WOP1:kOt_E0l76,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BcWq8.framer-1kddxol, .framer-BcWq8 .framer-1kddxol { display: block; }\",\".framer-BcWq8.framer-mwt16l { height: 800px; overflow: hidden; position: relative; width: 800px; }\",\".framer-BcWq8 .framer-1lygzot, .framer-BcWq8 .framer-ho43y2, .framer-BcWq8 .framer-1tcmysx { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-BcWq8 .framer-1k1jbbn-container { flex: none; height: 69%; left: calc(50.00000000000002% - 32.5% / 2); position: absolute; top: calc(50.50000000000002% - 69.25% / 2); width: 33%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"m94MBR1Wc\":\"uploadScreen\",\"XwRAncnnj\":\"video\",\"kOt_E0l76\":\"videoFile\",\"pb96H8iAB\":\"shadow\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermvvPGF7R3=withCSS(Component,css,\"framer-BcWq8\");export default FramermvvPGF7R3;FramermvvPGF7R3.displayName=\"iPhone 16 Plus/Mockup\";FramermvvPGF7R3.defaultProps={height:800,width:800};addPropertyControls(FramermvvPGF7R3,{m94MBR1Wc:{description:\"479 x 1038 px\",title:\"Upload Screen\",type:ControlType.ResponsiveImage},XwRAncnnj:{defaultValue:false,title:\"Video\",type:ControlType.Boolean},kOt_E0l76:(ScreenIPhone16PlusControls===null||ScreenIPhone16PlusControls===void 0?void 0:ScreenIPhone16PlusControls[\"ljgn1WOP1\"])&&{...ScreenIPhone16PlusControls[\"ljgn1WOP1\"],__defaultAssetReference:\"data:framer/asset-reference,Yu3av9Pujm29eVbKoUjhaYyaEI.mp4?originalFilename=Mobile+BG.mp4\",description:undefined,hidden:undefined,title:\"Video File\"},pb96H8iAB:{defaultValue:1,max:1,min:0,step:.01,title:\"Shadow\",type:ControlType.Number}});addFonts(FramermvvPGF7R3,[{explicitInter:true,fonts:[]},...ScreenIPhone16PlusFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermvvPGF7R3\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"800\",\"framerIntrinsicWidth\":\"800\",\"framerVariables\":\"{\\\"m94MBR1Wc\\\":\\\"uploadScreen\\\",\\\"XwRAncnnj\\\":\\\"video\\\",\\\"kOt_E0l76\\\":\\\"videoFile\\\",\\\"pb96H8iAB\\\":\\\"shadow\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"uszeBvmxb\",\"FPun_WWd4\"];const serializationHash=\"framer-bkSdy\";const variantClassNames={FPun_WWd4:\"framer-v-1vgwepy\",uszeBvmxb:\"framer-v-13e45of\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"uszeBvmxb\",Phone:\"FPun_WWd4\"};const getProps=({height,id,link,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,CBxle7Hty:(_ref=title!==null&&title!==void 0?title:props.CBxle7Hty)!==null&&_ref!==void 0?_ref:\"Branding\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"uszeBvmxb\",WIf5MEY74:link!==null&&link!==void 0?link:props.WIf5MEY74};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,WIf5MEY74,CBxle7Hty,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"uszeBvmxb\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:WIf5MEY74,nodeId:\"uszeBvmxb\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-13e45of\",className,classNames)} framer-1q3zkdf`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"uszeBvmxb\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0.4)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,...style},...addPropertyOverrides({FPun_WWd4:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Branding\"})}),className:\"framer-2s7eg2\",\"data-framer-name\":\"Title\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"V6BwDOWej\",style:{\"--extracted-r6o4lv\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:CBxle7Hty,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FPun_WWd4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Branding\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bkSdy.framer-1q3zkdf, .framer-bkSdy .framer-1q3zkdf { display: block; }\",\".framer-bkSdy.framer-13e45of { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 7px 14px 7px 14px; position: relative; text-decoration: none; width: min-content; }\",\".framer-bkSdy .framer-2s7eg2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bkSdy.framer-13e45of { gap: 0px; } .framer-bkSdy.framer-13e45of > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-bkSdy.framer-13e45of > :first-child { margin-left: 0px; } .framer-bkSdy.framer-13e45of > :last-child { margin-right: 0px; } }\",\".framer-bkSdy.framer-v-1vgwepy.framer-13e45of { padding: 6px 10px 6px 10px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 28\n * @framerIntrinsicWidth 83\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"FPun_WWd4\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"WIf5MEY74\":\"link\",\"CBxle7Hty\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerdOwxhpPUd=withCSS(Component,css,\"framer-bkSdy\");export default FramerdOwxhpPUd;FramerdOwxhpPUd.displayName=\"UI / Category tag\";FramerdOwxhpPUd.defaultProps={height:28,width:83};addPropertyControls(FramerdOwxhpPUd,{variant:{options:[\"uszeBvmxb\",\"FPun_WWd4\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},WIf5MEY74:{title:\"Link\",type:ControlType.Link},CBxle7Hty:{defaultValue:\"Branding\",title:\"Title\",type:ControlType.String}});addFonts(FramerdOwxhpPUd,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdOwxhpPUd\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"WIf5MEY74\\\":\\\"link\\\",\\\"CBxle7Hty\\\":\\\"title\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"83\",\"framerIntrinsicHeight\":\"28\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FPun_WWd4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dOwxhpPUd.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PathVariablesContext,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useQueryData,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Category from\"https://framerusercontent.com/modules/iEwLopw7f0spxIui7jXI/Fysa8bPhnZFJB2ocBWVj/rXPb48_DN.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/o0bL1okoaX6rV6RV51j7/P0inHmaYo9rvOzooWCKS/DPl1XeZ47.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/wZgE9eausgdDoHOfEG7B/d3LHUbrwQZAKqqqkXG0r/hOrfMQMhw.js\";import UICategoryTagNoLink from\"https://framerusercontent.com/modules/fecYumqT0pAD2Qn2yJ18/T7LYnjqHB7AKqbufj0Jw/SX7TmRT4a.js\";const UICategoryTagNoLinkFonts=getFonts(UICategoryTagNoLink);const enabledGestures={dRd9b_kWP:{hover:true}};const cycleOrder=[\"dRd9b_kWP\",\"IYoM4m0Ii\",\"oFWgC4z7f\"];const serializationHash=\"framer-FaFCv\";const variantClassNames={dRd9b_kWP:\"framer-v-1ci7gye\",IYoM4m0Ii:\"framer-v-18secjf\",oFWgC4z7f:\"framer-v-1avm2eu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.5,ease:[.68,0,.16,.97],type:\"tween\"};const query=(prequery,{pY5nfFcdb})=>prequery({from:{alias:\"Tmk181TsU\",data:Category,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},orderBy:[{arguments:[{type:\"LiteralValue\",value:pY5nfFcdb},{collection:\"Tmk181TsU\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"Tmk181TsU\",name:\"JRY3_qGYV\",type:\"Identifier\"},{collection:\"Tmk181TsU\",name:\"E9FnOb4ni\",type:\"Identifier\"},{collection:\"Tmk181TsU\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Tmk181TsU\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{type:\"LiteralValue\",value:pY5nfFcdb},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};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={Desktop:\"dRd9b_kWP\",Phone:\"oFWgC4z7f\",Tablet:\"IYoM4m0Ii\"};const getProps=({category,description,height,id,mainImage,title,width,...props})=>{return{...props,j8kI8S_33:mainImage??props.j8kI8S_33,m4363AwRQ:title??props.m4363AwRQ??\"Radiant skincare branding\",pY5nfFcdb:category??props.pY5nfFcdb??[\"v_YTIUkHB\",\"XMTbXBpZV\"],QAad4Lrvr:description??props.QAad4Lrvr??\"Visual identity and packaging design for a skincare line.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"dRd9b_kWP\"};};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,j8kI8S_33,pY5nfFcdb,m4363AwRQ,QAad4Lrvr,JRY3_qGYVTmk181TsU,E9FnOb4niTmk181TsU,idTmk181TsU,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dRd9b_kWP\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1ci7gye\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"dRd9b_kWP\",ref:refBinding,style:{...style},...addPropertyOverrides({\"dRd9b_kWP-hover\":{\"data-framer-name\":undefined},IYoM4m0Ii:{\"data-framer-name\":\"Tablet\"},oFWgC4z7f:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-kfgcwu\",\"data-border\":true,\"data-framer-name\":\"Corner\",layoutDependency:layoutDependency,layoutId:\"D27kj6ISZ\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",rotate:-90}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-adpg5u\",layoutDependency:layoutDependency,layoutId:\"Tmk181TsU\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Tmk181TsU\",data:Category,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},orderBy:[{arguments:[{type:\"LiteralValue\",value:pY5nfFcdb},{collection:\"Tmk181TsU\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"Tmk181TsU\",name:\"JRY3_qGYV\",type:\"Identifier\"},{collection:\"Tmk181TsU\",name:\"E9FnOb4ni\",type:\"Identifier\"},{collection:\"Tmk181TsU\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Tmk181TsU\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{type:\"LiteralValue\",value:pY5nfFcdb},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({E9FnOb4ni:E9FnOb4niTmk181TsU,id:idTmk181TsU,JRY3_qGYV:JRY3_qGYVTmk181TsU},index)=>{JRY3_qGYVTmk181TsU??=\"\";E9FnOb4niTmk181TsU??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Tmk181TsU-${idTmk181TsU}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{E9FnOb4ni:E9FnOb4niTmk181TsU},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+30+0,...addPropertyOverrides({IYoM4m0Ii:{y:(componentViewport?.y||0)+24+0},oFWgC4z7f:{y:(componentViewport?.y||0)+20+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12wifwf-container\",layoutDependency:layoutDependency,layoutId:\"JmgGnDa4w-container\",nodeId:\"JmgGnDa4w\",rendersWithMotion:true,scopeId:\"KYMveFRib\",children:/*#__PURE__*/_jsx(UICategoryTagNoLink,{CBxle7Hty:JRY3_qGYVTmk181TsU,height:\"100%\",id:\"JmgGnDa4w\",layoutId:\"JmgGnDa4w\",variant:\"rjG2EGi_j\",width:\"100%\",...addPropertyOverrides({IYoM4m0Ii:{variant:\"xYtgxa_Pg\"},oFWgC4z7f:{variant:\"xYtgxa_Pg\"}},baseVariant,gestureVariant)})})})})},idTmk181TsU);})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xevmbi\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"XmeWtGP2Z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5jibgy\",\"data-styles-preset\":\"DPl1XeZ47\",children:\"Radiant skincare branding\"})}),className:\"framer-ess9fq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HlFfousUJ\",text:m4363AwRQ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:\"Visual identity and packaging design for a skincare line.\"})}),className:\"framer-1xqua39\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OCAoT0UW0\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.7)\"},text:QAad4Lrvr,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(j8kI8S_33),...{positionX:\"center\",positionY:\"top\"}},className:\"framer-1t97e4u\",layoutDependency:layoutDependency,layoutId:\"diej3RxBv\",style:{mask:\"linear-gradient(180deg, rgb(0, 0, 0) 45%, rgba(0, 0, 0, 0.4) 100%) add\",scale:1,WebkitMask:\"linear-gradient(180deg, rgb(0, 0, 0) 45%, rgba(0, 0, 0, 0.4) 100%) add\"},variants:{\"dRd9b_kWP-hover\":{scale:1.09},oFWgC4z7f:{mask:\"linear-gradient(180deg, rgb(0, 0, 0) 27.6171875%, rgba(0, 0, 0, 0.3) 100%) add\",WebkitMask:\"linear-gradient(180deg, rgb(0, 0, 0) 27.6171875%, rgba(0, 0, 0, 0.3) 100%) add\"}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FaFCv.framer-oanl8k, .framer-FaFCv .framer-oanl8k { display: block; }\",\".framer-FaFCv.framer-1ci7gye { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 600px; justify-content: flex-end; overflow: hidden; padding: 50px; position: relative; width: 554px; }\",\".framer-FaFCv .framer-kfgcwu { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 9px); position: absolute; right: 30px; top: 30px; width: 9px; z-index: 1; }\",\".framer-FaFCv .framer-adpg5u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; left: 30px; padding: 0px; position: absolute; top: 30px; width: min-content; z-index: 1; }\",\".framer-FaFCv .framer-12wifwf-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-FaFCv .framer-1xevmbi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-FaFCv .framer-ess9fq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-FaFCv .framer-1xqua39 { --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 600px; position: relative; width: 100%; }\",\".framer-FaFCv .framer-1t97e4u { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FaFCv.framer-1ci7gye, .framer-FaFCv .framer-adpg5u, .framer-FaFCv .framer-1xevmbi { gap: 0px; } .framer-FaFCv.framer-1ci7gye > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-FaFCv.framer-1ci7gye > :first-child, .framer-FaFCv .framer-1xevmbi > :first-child { margin-top: 0px; } .framer-FaFCv.framer-1ci7gye > :last-child, .framer-FaFCv .framer-1xevmbi > :last-child { margin-bottom: 0px; } .framer-FaFCv .framer-adpg5u > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-FaFCv .framer-adpg5u > :first-child { margin-left: 0px; } .framer-FaFCv .framer-adpg5u > :last-child { margin-right: 0px; } .framer-FaFCv .framer-1xevmbi > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-FaFCv.framer-v-18secjf.framer-1ci7gye { cursor: unset; padding: 40px; }\",\".framer-FaFCv.framer-v-18secjf .framer-kfgcwu, .framer-FaFCv.framer-v-1avm2eu .framer-kfgcwu { right: 24px; top: 24px; }\",\".framer-FaFCv.framer-v-18secjf .framer-adpg5u { gap: 4px; left: 24px; top: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FaFCv.framer-v-18secjf .framer-adpg5u { gap: 0px; } .framer-FaFCv.framer-v-18secjf .framer-adpg5u > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-FaFCv.framer-v-18secjf .framer-adpg5u > :first-child { margin-left: 0px; } .framer-FaFCv.framer-v-18secjf .framer-adpg5u > :last-child { margin-right: 0px; } }\",\".framer-FaFCv.framer-v-1avm2eu.framer-1ci7gye { cursor: unset; padding: 30px; width: 390px; }\",\".framer-FaFCv.framer-v-1avm2eu .framer-adpg5u { flex-direction: column; gap: 4px; left: 20px; top: 20px; }\",\".framer-FaFCv.framer-v-1avm2eu .framer-1xevmbi { gap: 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FaFCv.framer-v-1avm2eu .framer-adpg5u, .framer-FaFCv.framer-v-1avm2eu .framer-1xevmbi { gap: 0px; } .framer-FaFCv.framer-v-1avm2eu .framer-adpg5u > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-FaFCv.framer-v-1avm2eu .framer-adpg5u > :first-child, .framer-FaFCv.framer-v-1avm2eu .framer-1xevmbi > :first-child { margin-top: 0px; } .framer-FaFCv.framer-v-1avm2eu .framer-adpg5u > :last-child, .framer-FaFCv.framer-v-1avm2eu .framer-1xevmbi > :last-child { margin-bottom: 0px; } .framer-FaFCv.framer-v-1avm2eu .framer-1xevmbi > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-FaFCv.framer-v-1ci7gye.hover .framer-kfgcwu { right: 40px; top: 40px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-FaFCv[data-border=\"true\"]::after, .framer-FaFCv [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 554\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"IYoM4m0Ii\":{\"layout\":[\"fixed\",\"fixed\"]},\"oFWgC4z7f\":{\"layout\":[\"fixed\",\"fixed\"]},\"FPqbl1N_H\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"j8kI8S_33\":\"mainImage\",\"pY5nfFcdb\":\"category\",\"m4363AwRQ\":\"title\",\"QAad4Lrvr\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKYMveFRib=withCSS(Component,css,\"framer-FaFCv\");export default FramerKYMveFRib;FramerKYMveFRib.displayName=\"Projetcs / Project item\";FramerKYMveFRib.defaultProps={height:600,width:554};addPropertyControls(FramerKYMveFRib,{variant:{options:[\"dRd9b_kWP\",\"IYoM4m0Ii\",\"oFWgC4z7f\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},j8kI8S_33:{title:\"Main Image\",type:ControlType.ResponsiveImage},pY5nfFcdb:{dataIdentifier:\"local-module:collection/rXPb48_DN:default\",defaultValue:[\"v_YTIUkHB\",\"XMTbXBpZV\"],title:\"Category\",type:ControlType.MultiCollectionReference},m4363AwRQ:{defaultValue:\"Radiant skincare branding\",title:\"Title\",type:ControlType.String},QAad4Lrvr:{defaultValue:\"Visual identity and packaging design for a skincare line.\",title:\"Description\",type:ControlType.String}});addFonts(FramerKYMveFRib,[{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\"}]},...UICategoryTagNoLinkFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKYMveFRib\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"554\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IYoM4m0Ii\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oFWgC4z7f\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FPqbl1N_H\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"600\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"j8kI8S_33\\\":\\\"mainImage\\\",\\\"pY5nfFcdb\\\":\\\"category\\\",\\\"m4363AwRQ\\\":\\\"title\\\",\\\"QAad4Lrvr\\\":\\\"description\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KYMveFRib.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dmjd5e\",\"data-styles-preset\":\"q35quwzCc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12)))\"},children:\"Wi\u0119cej projekt\\xf3w\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dmjd5e\",\"data-styles-preset\":\"q35quwzCc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255)))\"},children:\"Wi\u0119cej projekt\\xf3w\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f7d95e4)\nimport*as localizedValues from\"./LR_EVOsEt-0.js\";const valuesByLocaleId={CAvoiwCQ0:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/AbtUjpbhFMet9R5cuhc0/7azdp8Iw60vqkpQbcXot/q35quwzCc.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/9MpmVm1NfWPML4yytAdt/rI9gAuLlJlJV5gBmc8V3/LR_EVOsEt.js\";const enabledGestures={hl4DUHJiz:{hover:true}};const cycleOrder=[\"hl4DUHJiz\",\"AILpDROUQ\"];const serializationHash=\"framer-ucRV2\";const variantClassNames={AILpDROUQ:\"framer-v-1sjyisx\",hl4DUHJiz:\"framer-v-105cwrn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.5,ease:[.68,0,.16,.97],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"hl4DUHJiz\",Phone:\"AILpDROUQ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"hl4DUHJiz\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hl4DUHJiz\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JsWSQcZ5w\"},motionChild:true,nodeId:\"hl4DUHJiz\",scopeId:\"LR_EVOsEt\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-105cwrn\",className,classNames)} framer-ehp6pw`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"hl4DUHJiz\",ref:refBinding,style:{backgroundColor:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",...style},variants:{\"hl4DUHJiz-hover\":{backgroundColor:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\"}},...addPropertyOverrides({\"hl4DUHJiz-hover\":{\"data-framer-name\":undefined},AILpDROUQ:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mv61t0\",\"data-border\":true,\"data-framer-name\":\"Corner\",layoutDependency:layoutDependency,layoutId:\"d3IDQMV5t\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",rotate:-90},variants:{\"hl4DUHJiz-hover\":{\"--border-color\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",rotate:-133}}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dmjd5e\",\"data-styles-preset\":\"q35quwzCc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12)))\"},children:\"More projects\"})}),className:\"framer-14pvhce\",\"data-framer-name\":\"We aimed to bring Vero\u2019s vision of authentic social interaction to life by focusing on seamless design and user privacy.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sJTiLisXT\",style:{\"--extracted-r6o4lv\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",\"--framer-paragraph-spacing\":\"0px\",rotate:-90},variants:{\"hl4DUHJiz-hover\":{\"--extracted-r6o4lv\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\"},AILpDROUQ:{rotate:0}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"hl4DUHJiz-hover\":{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dmjd5e\",\"data-styles-preset\":\"q35quwzCc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255)))\"},children:\"More projects\"})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ucRV2.framer-ehp6pw, .framer-ucRV2 .framer-ehp6pw { display: block; }\",\".framer-ucRV2.framer-105cwrn { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; height: 600px; justify-content: space-between; overflow: hidden; padding: 30px 30px 86px 30px; position: relative; text-decoration: none; width: 90px; }\",\".framer-ucRV2 .framer-1mv61t0 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 9px); position: relative; width: 9px; z-index: 1; }\",\".framer-ucRV2 .framer-14pvhce { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ucRV2.framer-v-1sjyisx.framer-105cwrn { cursor: unset; flex-direction: row; height: 74px; padding: 30px; width: 390px; }\",\".framer-ucRV2.framer-v-1sjyisx .framer-1mv61t0 { order: 1; }\",\".framer-ucRV2.framer-v-1sjyisx .framer-14pvhce { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ucRV2.framer-v-1sjyisx.framer-105cwrn { gap: 0px; } .framer-ucRV2.framer-v-1sjyisx.framer-105cwrn > *, .framer-ucRV2.framer-v-1sjyisx.framer-105cwrn > :first-child, .framer-ucRV2.framer-v-1sjyisx.framer-105cwrn > :last-child { margin: 0px; } }\",...sharedStyle.css,'.framer-ucRV2[data-border=\"true\"]::after, .framer-ucRV2 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 90\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"AILpDROUQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"lm3RyHT0g\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerLR_EVOsEt=withCSS(Component,css,\"framer-ucRV2\");export default FramerLR_EVOsEt;FramerLR_EVOsEt.displayName=\"Projetcs / More projects button\";FramerLR_EVOsEt.defaultProps={height:600,width:90};addPropertyControls(FramerLR_EVOsEt,{variant:{options:[\"hl4DUHJiz\",\"AILpDROUQ\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerLR_EVOsEt,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLR_EVOsEt\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"600\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"90\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"AILpDROUQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lm3RyHT0g\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (128ce9c)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={CAvoiwCQ0:new LazyValue(()=>import(\"./v75Tpw1Yr-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (128ce9c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import IPhone15FloatingMockup from\"https://framerusercontent.com/modules/5BYsx6MRl65d9jYTfsYP/XyDjCSLOqIK0rpRrnv9W/RTX6Vaose.js\";import MacBookPro16Mockup from\"https://framerusercontent.com/modules/ftGNAQIj4gN8iVZzORZO/oNwxoZwtsIOMtQhfjdir/mP_gj8zRM.js\";import AppleProDisplayXDRMockup from\"https://framerusercontent.com/modules/iCUYIZ5yTnQTSMcXGYQj/7Rop9XxmcfGoBW2sfwH0/cMRx4NMLk.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js\";import IPhone16PlusMockup from\"https://framerusercontent.com/modules/ZxEjbjJU3wq8WX76XWw9/d66TaMyH5XHPx159HA25/mvvPGF7R3.js\";import UICategoryTag from\"#framer/local/canvasComponent/dOwxhpPUd/dOwxhpPUd.js\";import ProjetcsProjectItem from\"#framer/local/canvasComponent/KYMveFRib/KYMveFRib.js\";import ProjetcsMoreProjectsButton from\"#framer/local/canvasComponent/LR_EVOsEt/LR_EVOsEt.js\";import Contact from\"#framer/local/canvasComponent/McSGfJuih/McSGfJuih.js\";import HeaderHeader from\"#framer/local/canvasComponent/O1fMzCErz/O1fMzCErz.js\";import UIArrowButton from\"#framer/local/canvasComponent/ozPjcS5mp/ozPjcS5mp.js\";import FooterFooter from\"#framer/local/canvasComponent/pCkRDSIIx/pCkRDSIIx.js\";import Project from\"#framer/local/collection/RwM1qgENQ/RwM1qgENQ.js\";import Category from\"#framer/local/collection/rXPb48_DN/rXPb48_DN.js\";import*as sharedStyle3 from\"#framer/local/css/hOrfMQMhw/hOrfMQMhw.js\";import*as sharedStyle1 from\"#framer/local/css/q35quwzCc/q35quwzCc.js\";import*as sharedStyle2 from\"#framer/local/css/sw01V2bJD/sw01V2bJD.js\";import*as sharedStyle4 from\"#framer/local/css/xNIXLfFSf/xNIXLfFSf.js\";import*as sharedStyle5 from\"#framer/local/css/yzgpMcORk/yzgpMcORk.js\";import*as sharedStyle from\"#framer/local/css/zPBE4sevH/zPBE4sevH.js\";import*as sharedStyle6 from\"#framer/local/css/zSSdVVb1R/zSSdVVb1R.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/v75Tpw1Yr/v75Tpw1Yr.js\";import metadataProvider from\"#framer/local/webPageMetadata/v75Tpw1Yr/v75Tpw1Yr.js\";const HeaderHeaderFonts=getFonts(HeaderHeader);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const UICategoryTagFonts=getFonts(UICategoryTag);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const VideoFonts=getFonts(Video);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const UIArrowButtonFonts=getFonts(UIArrowButton);const MotionSectionWithFX=withFX(motion.section);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const IPhone15FloatingMockupFonts=getFonts(IPhone15FloatingMockup);const ContainerWithFX=withFX(Container);const IPhone16PlusMockupFonts=getFonts(IPhone16PlusMockup);const AppleProDisplayXDRMockupFonts=getFonts(AppleProDisplayXDRMockup);const MacBookPro16MockupFonts=getFonts(MacBookPro16Mockup);const RichTextWithFX=withFX(RichText);const ProjetcsMoreProjectsButtonFonts=getFonts(ProjetcsMoreProjectsButton);const ProjetcsProjectItemFonts=getFonts(ProjetcsProjectItem);const ContactFonts=getFonts(Contact);const FooterFooterFonts=getFonts(FooterFooter);const SmoothScrollFonts=getFonts(SmoothScroll);const breakpoints={DaPOBwsYe:\"(min-width: 810px) and (max-width: 1199px)\",dyXyT7X6A:\"(max-width: 809px)\",R9_z_0eUE:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Wyt4n\";const variantClassNames={DaPOBwsYe:\"framer-v-1lx3tw7\",dyXyT7X6A:\"framer-v-b51o30\",R9_z_0eUE:\"framer-v-181vzam\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={delay:.15,duration:1,ease:[.68,0,.16,.97],type:\"tween\"};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:-60};const transition2={damping:27,delay:.1,mass:.3,stiffness:121,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-50};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const transition3={damping:27,delay:.2,mass:.3,stiffness:121,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition4={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,y:-3};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition5={damping:27,delay:.4,mass:.3,stiffness:121,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={damping:27,delay:.3,mass:.3,stiffness:121,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const negate=value=>{return!value;};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation10={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0};const transition7={delay:.25,duration:1,ease:[.68,0,.16,.97],type:\"tween\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const animation12={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1.4,skewX:0,skewY:0,x:0,y:0};const animation13={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition8={damping:27,delay:0,mass:.3,stiffness:121,type:\"spring\"};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition9={delay:.2,duration:1.2,ease:[.22,1,.36,1],type:\"tween\"};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition10={delay:0,duration:1.2,ease:[.22,1,.36,1],type:\"tween\"};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:30};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition11={bounce:.1,delay:0,duration:1.2,type:\"spring\"};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition11,x:0,y:0};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"R9_z_0eUE\",Phone:\"dyXyT7X6A\",Tablet:\"DaPOBwsYe\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"R9_z_0eUE\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"v75Tpw1Yr\",data:Project,type:\"Collection\"},select:[{collection:\"v75Tpw1Yr\",name:\"fcLdTQRWu\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"xUxg0TNNr\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"G5Mz1FFPU\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"jjZ9ReRdu\",type:\"Identifier\"},{alias:\"UoGh11fYe\",arguments:[{from:{alias:\"UoGh11fYe\",data:Category,type:\"Collection\"},orderBy:[{arguments:[{collection:\"v75Tpw1Yr\",name:\"UoGh11fYe\",type:\"Identifier\"},{collection:\"UoGh11fYe\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"UoGh11fYe\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"UoGh11fYe\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"v75Tpw1Yr\",name:\"UoGh11fYe\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"v75Tpw1Yr\",name:\"gqR_vPIpb\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"mDDYXA7ki\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"rLiOufN2n\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"xWqFEuDQf\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"majLZtWnx\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"FauhwFXoA\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"Mq20_y6f9\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"I2MGBGTUT\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"S6Vc7lSek\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"Jj2TqaVte\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"n5oZyEeyz\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"izfeKDIs1\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"KElcZNTLT\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"OeT9DUKsq\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"fKKEVD3MT\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"EvMyI3xJn\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"x47lTu4Ij\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"EckXOrPX8\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"mE5z8KpZc\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"FCk6mPhHT\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"qUmKfopy7\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"Hmvz3dJbu\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"knDYOEm77\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"v75Tpw1Yr\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,UoGh11fYe=getFromCurrentRouteData(\"UoGh11fYe\"),E9FnOb4niBtCZLpwIm,JRY3_qGYVBtCZLpwIm,idBtCZLpwIm,fcLdTQRWu=getFromCurrentRouteData(\"fcLdTQRWu\")??\"\",jjZ9ReRdu=getFromCurrentRouteData(\"jjZ9ReRdu\")??\"\",Hmvz3dJbu=getFromCurrentRouteData(\"Hmvz3dJbu\")??\"\",G5Mz1FFPU=getFromCurrentRouteData(\"G5Mz1FFPU\"),gqR_vPIpb=getFromCurrentRouteData(\"gqR_vPIpb\")??\"\",mDDYXA7ki=getFromCurrentRouteData(\"mDDYXA7ki\")??\"\",rLiOufN2n=getFromCurrentRouteData(\"rLiOufN2n\")??\"\",xWqFEuDQf=getFromCurrentRouteData(\"xWqFEuDQf\")??\"\",majLZtWnx=getFromCurrentRouteData(\"majLZtWnx\")??\"\",xUxg0TNNr=getFromCurrentRouteData(\"xUxg0TNNr\"),S6Vc7lSek=getFromCurrentRouteData(\"S6Vc7lSek\")??\"\",Mq20_y6f9=getFromCurrentRouteData(\"Mq20_y6f9\"),FauhwFXoA=getFromCurrentRouteData(\"FauhwFXoA\")??\"\",I2MGBGTUT=getFromCurrentRouteData(\"I2MGBGTUT\")??\"\",Jj2TqaVte=getFromCurrentRouteData(\"Jj2TqaVte\")??\"\",n5oZyEeyz=getFromCurrentRouteData(\"n5oZyEeyz\"),izfeKDIs1=getFromCurrentRouteData(\"izfeKDIs1\")??\"\",KElcZNTLT=getFromCurrentRouteData(\"KElcZNTLT\")??\"\",OeT9DUKsq=getFromCurrentRouteData(\"OeT9DUKsq\")??\"\",knDYOEm77=getFromCurrentRouteData(\"knDYOEm77\"),fKKEVD3MT=getFromCurrentRouteData(\"fKKEVD3MT\"),EvMyI3xJn=getFromCurrentRouteData(\"EvMyI3xJn\"),x47lTu4Ij=getFromCurrentRouteData(\"x47lTu4Ij\"),EckXOrPX8=getFromCurrentRouteData(\"EckXOrPX8\")??\"\",mE5z8KpZc=getFromCurrentRouteData(\"mE5z8KpZc\")??\"\",FCk6mPhHT=getFromCurrentRouteData(\"FCk6mPhHT\")??\"\",qUmKfopy7=getFromCurrentRouteData(\"qUmKfopy7\"),EvxErjRB0oCs4NlQCM,G5Mz1FFPUoCs4NlQCM,UoGh11fYeoCs4NlQCM,fcLdTQRWuoCs4NlQCM,jjZ9ReRduoCs4NlQCM,idoCs4NlQCM,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=isSet(UoGh11fYe);const router=useRouter();const visible1=isSet(Hmvz3dJbu);const visible2=negate(isSet(Hmvz3dJbu));const visible3=isSet(gqR_vPIpb);usePreloadLocalizedValues(activeLocale);const activeLocaleCode=useLocaleCode();const textContent=toDateString(xUxg0TNNr,{dateStyle:\"long\",locale:\"\"},activeLocaleCode);const visible4=negate(equals(knDYOEm77,\"yvxOdziBE\"));const visible5=equals(knDYOEm77,\"yvxOdziBE\");useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"R9_z_0eUE\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-181vzam\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:370,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{animate:undefined,initial:undefined,optimized:undefined}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-11qcrk-container\",\"data-framer-appear-id\":\"11qcrk\",initial:animation1,nodeId:\"CiMecCv5W\",optimized:true,rendersWithMotion:true,scopeId:\"v75Tpw1Yr\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{variant:\"fdyoADJFu\"}},children:/*#__PURE__*/_jsx(HeaderHeader,{height:\"100%\",id:\"CiMecCv5W\",layoutId:\"CiMecCv5W\",style:{width:\"100%\"},variant:\"omakOTNeW\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1gycri2\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__parallaxTransformEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:110,__perspectiveFX:false,__targetOpacity:1,className:\"framer-b49js2\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{animate:animation2,initial:animation3,optimized:true}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{className:\"framer-1hanbzf\",\"data-framer-appear-id\":\"1hanbzf\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-m7y80k\",\"data-border\":true,\"data-framer-name\":\"Corner\",style:{rotate:-90}}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-58nyqt\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{animate:undefined,initial:undefined,optimized:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1l2vkl1\",\"data-framer-appear-id\":\"1l2vkl1\",\"data-framer-name\":\"Container\",initial:animation4,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-726i10\",\"data-framer-name\":\"Text\",children:[visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{animate:animation5,initial:animation6,optimized:true}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{className:\"framer-bdwtqr\",\"data-framer-appear-id\":\"bdwtqr\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"BtCZLpwIm\",data:Category,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},orderBy:[{arguments:[{type:\"LiteralValue\",value:UoGh11fYe},{collection:\"BtCZLpwIm\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"BtCZLpwIm\",name:\"E9FnOb4ni\",type:\"Identifier\"},{collection:\"BtCZLpwIm\",name:\"JRY3_qGYV\",type:\"Identifier\"},{collection:\"BtCZLpwIm\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"BtCZLpwIm\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{type:\"LiteralValue\",value:UoGh11fYe},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({E9FnOb4ni:E9FnOb4niBtCZLpwIm,id:idBtCZLpwIm,JRY3_qGYV:JRY3_qGYVBtCZLpwIm},index)=>{E9FnOb4niBtCZLpwIm??=\"\";JRY3_qGYVBtCZLpwIm??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`BtCZLpwIm-${idBtCZLpwIm}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{E9FnOb4ni:E9FnOb4niBtCZLpwIm},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{E9FnOb4ni:E9FnOb4niBtCZLpwIm},webPageId:\"gvjcG8Zgq\"},implicitPathVariables:undefined},{href:{pathVariables:{E9FnOb4ni:E9FnOb4niBtCZLpwIm},webPageId:\"gvjcG8Zgq\"},implicitPathVariables:undefined},{href:{pathVariables:{E9FnOb4ni:E9FnOb4niBtCZLpwIm},webPageId:\"gvjcG8Zgq\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{y:(componentViewport?.y||0)+0+0+0+0+76+0+0+396.84+0+0+0+0+0+0+0},dyXyT7X6A:{y:(componentViewport?.y||0)+0+0+0+0+80+0+0+0+220+0+0+0+0+308.36+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+0+0+0+76+0+0+440.84+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{whileHover:undefined}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-tb387f-container\",nodeId:\"qXGjK9gLK\",rendersWithMotion:true,scopeId:\"v75Tpw1Yr\",whileHover:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{WIf5MEY74:resolvedLinks[1]},dyXyT7X6A:{variant:\"FPun_WWd4\",WIf5MEY74:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(UICategoryTag,{CBxle7Hty:JRY3_qGYVBtCZLpwIm,height:\"100%\",id:\"qXGjK9gLK\",layoutId:\"qXGjK9gLK\",variant:\"uszeBvmxb\",width:\"100%\",WIf5MEY74:resolvedLinks[0]})})})})})})})})},idBtCZLpwIm);})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18nsq28\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{animate:animation8,initial:animation6,optimized:true}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-lzby6w\",\"data-styles-preset\":\"zPBE4sevH\",style:{\"--framer-text-alignment\":\"left\"},children:\"Vero app development\"})}),className:\"framer-1yhaelc\",\"data-framer-appear-id\":\"1yhaelc\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:fcLdTQRWu,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{animate:animation9,initial:animation6,optimized:true}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dmjd5e\",\"data-styles-preset\":\"q35quwzCc\",style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:\"Vero aimed to distinguish itself in a competitive social media landscape by offering a user-centric, ad-free platform.\"})}),className:\"framer-rsqti5\",\"data-framer-appear-id\":\"rsqti5\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],text:jjZ9ReRdu,verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1btwo2a-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"eCBdcVDNl\",scopeId:\"v75Tpw1Yr\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"eCBdcVDNl\",isMixedBorderRadius:false,layoutId:\"eCBdcVDNl\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:Hmvz3dJbu,startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible2&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+76+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,...toResponsiveImage(G5Mz1FFPU)}},dyXyT7X6A:{animate:animation11,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+80+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 12px)`,...toResponsiveImage(G5Mz1FFPU)}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+76+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,...toResponsiveImage(G5Mz1FFPU)},className:\"framer-h9dhly\",\"data-framer-appear-id\":\"h9dhly\",\"data-framer-name\":\"BG image\",initial:animation10,optimized:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{animate:animation2,initial:animation3}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1h46962\",\"data-framer-appear-id\":\"1h46962\",\"data-framer-name\":\"Gradient\",initial:animation12,optimized:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{animate:animation14,initial:animation6}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-19hydm8\",\"data-framer-appear-id\":\"19hydm8\",\"data-framer-name\":\"Details\",initial:animation13,optimized:true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ls40ga\",\"data-framer-name\":\"Link\",children:visible3&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:gqR_vPIpb,implicitPathVariables:undefined},{href:gqR_vPIpb,implicitPathVariables:undefined},{href:gqR_vPIpb,implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{y:(componentViewport?.y||0)+0+0+0+0+76+747.2+64+0},dyXyT7X6A:{width:`max((min(${componentViewport?.width||\"100vw\"} - 12px, 1848px) - 16px) / 0, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+80+534.36+34+228.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+0+0+0+76+815.2+70+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l66qrj-container\",nodeId:\"W8EemwHmg\",scopeId:\"v75Tpw1Yr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{DmH_FL2P8:resolvedLinks1[1]},dyXyT7X6A:{DmH_FL2P8:resolvedLinks1[2],style:{width:\"100%\"},variant:\"z6E5vZ_I1\",vvMz6sarU:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",zvTGbXZx3:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\"}},children:/*#__PURE__*/_jsx(UIArrowButton,{DmH_FL2P8:resolvedLinks1[0],height:\"100%\",id:\"W8EemwHmg\",layoutId:\"W8EemwHmg\",NeQkVIvJM:getLocalizedValue(\"v0\",activeLocale)??\"Visit website\",variant:\"Ie74EE_Xj\",vvMz6sarU:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",width:\"100%\",yHWj4nAFV:\"arrow-elbow-down-right\",zvTGbXZx3:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qqqtwt\",\"data-framer-name\":\"Info\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10yab97\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hahlh8\",\"data-styles-preset\":\"sw01V2bJD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"Client\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hahlh8\",\"data-styles-preset\":\"sw01V2bJD\",style:{\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"Client\"})}),className:\"framer-1wf5jpd\",\"data-framer-name\":\"Client\",fonts:[\"Inter\"],text:mDDYXA7ki,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"},children:\"Vero Labs Inc.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-color\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"},children:\"Vero Labs Inc.\"})}),className:\"framer-qfm4ej\",\"data-framer-name\":\"Vero Labs Inc.\",fonts:[\"Inter\"],text:rLiOufN2n,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wt1z18\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-snmq8h\",\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hahlh8\",\"data-styles-preset\":\"sw01V2bJD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"Duration\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hahlh8\",\"data-styles-preset\":\"sw01V2bJD\",style:{\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"Duration\"})}),className:\"framer-1xii077\",\"data-framer-name\":\"Duration\",fonts:[\"Inter\"],text:xWqFEuDQf,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"},children:\"6 months\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-color\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"},children:\"6 months\"})}),className:\"framer-1vdw59\",\"data-framer-name\":\"6 months\",fonts:[\"Inter\"],text:majLZtWnx,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ntj8ua\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g9oy3l\",\"data-framer-name\":\"3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hahlh8\",\"data-styles-preset\":\"sw01V2bJD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"Date\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hahlh8\",\"data-styles-preset\":\"sw01V2bJD\",style:{\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"Date\"})}),className:\"framer-1s0dprb\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"},children:\"November 4, 2024\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-color\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"},children:\"November 4, 2024\"})}),className:\"framer-h40ibq\",\"data-framer-name\":\"Oct 10, 2024\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})]})}),/*#__PURE__*/_jsx(\"article\",{className:\"framer-138xpy3\",\"data-framer-name\":\"Article\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-firfui\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14fjk8y\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ioebf2\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__animate:{transition:transition8},__framer__enter:animation16,__framer__threshold:0}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ey6jb8\",\"data-framer-name\":\"Quote\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"We aimed to bring Vero\u2019s vision of authentic social interaction to life by focusing on seamless design and user privacy.\"})}),className:\"framer-1o8n3g9\",\"data-framer-name\":\"We aimed to bring Vero\u2019s vision of authentic social interaction to life by focusing on seamless design and user privacy.\",fonts:[\"Inter\"],text:S6Vc7lSek,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-udthnw\",\"data-framer-name\":\"Manager\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+120+0+0+0+0+0+0+0+138+88),sizes:\"50px\",...toResponsiveImage(Mq20_y6f9)}},dyXyT7X6A:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+906.76+50+0+0+0+0+0+0+0+0+138+88),sizes:\"50px\",...toResponsiveImage(Mq20_y6f9)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1080+150+0+0+0+0+0+0+0+138+88),sizes:\"50px\",...toResponsiveImage(Mq20_y6f9)},className:\"framer-11dn6el\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f04bs1\",\"data-framer-name\":\"Frame 80\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-color\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"},children:\"John Taylor\"})}),className:\"framer-1om5evb\",\"data-framer-name\":\"John Taylor\",fonts:[\"Inter\"],text:FauhwFXoA,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hahlh8\",\"data-styles-preset\":\"sw01V2bJD\",style:{\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"Member of the team\"})}),className:\"framer-1f1e8ve\",\"data-framer-name\":\"Member of the team\",fonts:[\"Inter\"],text:I2MGBGTUT,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__animate:{transition:transition8},__framer__enter:animation16,__framer__exit:undefined,__framer__threshold:0}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-yyrrt\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2tyqn8\",\"data-styles-preset\":\"yzgpMcORk\",children:\"This project reinforced the importance of building user-centered features that offer value beyond aesthetics, especially in social networking. The app\u2019s launch exceeded initial user growth targets, and the client received positive feedback on the app\u2019s intuitive design and ad-free experience.\"})}),className:\"framer-1quziho\",\"data-framer-name\":\"This project reinforced the importance of building user-centered features that offer value beyond aesthetics, especially in social networking. The app\u2019s launch exceeded initial user growth targets, and the client received positive feedback on the app\u2019s intuitive design and ad-free experience.\",fonts:[\"Inter\"],text:Jj2TqaVte,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+120+0+0+0+0+484),sizes:`min(${componentViewport?.width||\"100vw\"} - 64px, 1848px)`,...toResponsiveImage(n5oZyEeyz)}},dyXyT7X6A:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+906.76+50+0+0+0+0+639),sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,...toResponsiveImage(n5oZyEeyz)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1080+150+0+0+0+0+504),sizes:`min(${componentViewport?.width||\"100vw\"} - 72px, 1848px)`,...toResponsiveImage(n5oZyEeyz)},className:\"framer-7ybb7l\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-l3kqmk\",\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1cybktc\",\"data-framer-name\":\"Quote\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"We aimed to bring Vero\u2019s vision of authentic social interaction to life by focusing on seamless design and user privacy.\"})}),className:\"framer-1vcu2qu\",\"data-framer-name\":\"We aimed to bring Vero\u2019s vision of authentic social interaction to life by focusing on seamless design and user privacy.\",fonts:[\"Inter\"],text:izfeKDIs1,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tkh5xr\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2tyqn8\",\"data-styles-preset\":\"yzgpMcORk\",children:\"Designing an ad-free experience meant creating engaging content flows without traditional ads. We achieved this by focusing on rich, visual content and user-driven discovery options.\"})}),className:\"framer-1xxh6hz\",\"data-framer-name\":\"This project reinforced the importance of building user-centered features that offer value beyond aesthetics, especially in social networking. The app\u2019s launch exceeded initial user growth targets, and the client received positive feedback on the app\u2019s intuitive design and ad-free experience.\",fonts:[\"Inter\"],text:KElcZNTLT,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dmjd5e\",\"data-styles-preset\":\"q35quwzCc\",style:{\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"One challenge was ensuring privacy controls while maintaining an easy-to-use interface. Our team developed an accessible settings menu that lets users control visibility without overwhelming them.\"})}),className:\"framer-1b62zvv\",\"data-framer-name\":\"We aimed to bring Vero\u2019s vision of authentic social interaction to life by focusing on seamless design and user privacy.\",fonts:[\"Inter\"],text:OeT9DUKsq,verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ocycf8\",\"data-framer-name\":\"Images\",children:[visible4&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nxxknu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+120+0+0+0+0+1716+0+-220.75+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 1px)`,...toResponsiveImage(fKKEVD3MT)}},dyXyT7X6A:{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+906.76+50+0+0+0+0+1835+0+-360.75+0+0),sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,...toResponsiveImage(fKKEVD3MT)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1080+150+0+0+0+0+1776+0+-220.75+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) / 2, 1px)`,...toResponsiveImage(fKKEVD3MT)},className:\"framer-1gnelzo\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+120+0+0+0+0+1716+0+-220.75+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 1px)`,...toResponsiveImage(EvMyI3xJn)}},dyXyT7X6A:{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+906.76+50+0+0+0+0+1835+0+-360.75+0+716),sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,...toResponsiveImage(EvMyI3xJn)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1080+150+0+0+0+0+1776+0+-220.75+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) / 2, 1px)`,...toResponsiveImage(EvMyI3xJn)},className:\"framer-1j2moae\"})})]})}),visible5&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tqkr7t\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3h1gjt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{height:279,width:\"279px\",y:(componentViewport?.y||0)+0+0+0+1e3+120+0+0+0+0+1716+0+495.25+0+0+71.25},dyXyT7X6A:{height:248,width:\"248px\",y:(componentViewport?.y||0)+0+0+0+906.76+50+0+0+0+0+1835+0+1071.25+0+0+0+86.75}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:420,width:\"420px\",y:(componentViewport?.y||0)+0+0+0+1080+150+0+0+0+0+1776+0+495.25+0+0+.75,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:140,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:30}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-10}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-2r0e6o-container\",isModuleExternal:true,nodeId:\"TyoVOJq8X\",rendersWithMotion:true,scopeId:\"v75Tpw1Yr\",children:/*#__PURE__*/_jsx(IPhone15FloatingMockup,{da84zRPjO:toResponsiveImage(fKKEVD3MT),dAFTwEW0i:1,gWDvYDCVa:false,height:\"100%\",id:\"TyoVOJq8X\",layoutId:\"TyoVOJq8X\",QR4iC9mu0:1148,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-271p17\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{height:269,width:\"269px\",y:(componentViewport?.y||0)+0+0+0+1e3+120+0+0+0+0+1716+0+495.25+72.75+0+3.5},dyXyT7X6A:{height:254,width:\"254px\",y:(componentViewport?.y||0)+0+0+0+906.76+50+0+0+0+0+1835+0+1071.25+0+441.5+0+3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:423,width:\"423px\",y:(componentViewport?.y||0)+0+0+0+1080+150+0+0+0+0+1776+0+495.25+0+0+-.75,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:140,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:20,rotateX:40,rotateY:10,scale:1,skewX:0,skewY:0,x:0,y:0}},{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-1tmf3se-container\",isModuleExternal:true,nodeId:\"l2cobcw3P\",rendersWithMotion:true,scopeId:\"v75Tpw1Yr\",children:/*#__PURE__*/_jsx(IPhone16PlusMockup,{height:\"100%\",id:\"l2cobcw3P\",layoutId:\"l2cobcw3P\",m94MBR1Wc:toResponsiveImage(EvMyI3xJn),pb96H8iAB:1,style:{height:\"100%\",width:\"100%\"},width:\"100%\",XwRAncnnj:false})})})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4hxu5q\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{height:742,width:`min(${componentViewport?.width||\"100vw\"} - 64px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+1e3+120+0+0+0+0+2532+0},dyXyT7X6A:{height:341,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+906.76+50+0+0+0+0+3287+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1128,width:`min(${componentViewport?.width||\"100vw\"} - 72px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+1080+150+0+0+0+0+2612+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1elcwr7-container\",isModuleExternal:true,nodeId:\"niV44_P0w\",rendersWithMotion:true,scopeId:\"v75Tpw1Yr\",children:/*#__PURE__*/_jsx(AppleProDisplayXDRMockup,{cuSXmJOoX:toResponsiveImage(x47lTu4Ij),flqb2QWTh:false,height:\"100%\",id:\"niV44_P0w\",layoutId:\"niV44_P0w\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",x1DxEuTjj:1})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-1crl1cc\",\"data-framer-name\":\"3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bophys\",\"data-framer-name\":\"Quote\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"We aimed to bring Vero\u2019s vision of authentic social interaction to life by focusing on seamless design and user privacy.\"})}),className:\"framer-zp4nkd\",\"data-framer-name\":\"We aimed to bring Vero\u2019s vision of authentic social interaction to life by focusing on seamless design and user privacy.\",fonts:[\"Inter\"],text:EckXOrPX8,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1uwfi9x\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2tyqn8\",\"data-styles-preset\":\"yzgpMcORk\",children:\"One challenge was ensuring privacy controls while maintaining an easy-to-use interface. Our team developed an accessible settings menu that lets users control visibility without overwhelming them.\"})}),className:\"framer-y1ryjm\",\"data-framer-name\":\"This project reinforced the importance of building user-centered features that offer value beyond aesthetics, especially in social networking. The app\u2019s launch exceeded initial user growth targets, and the client received positive feedback on the app\u2019s intuitive design and ad-free experience.\",fonts:[\"Inter\"],text:mE5z8KpZc,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dmjd5e\",\"data-styles-preset\":\"q35quwzCc\",style:{\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"Designing an ad-free experience meant creating engaging content flows without traditional ads. We achieved this by focusing on rich, visual content and user-driven discovery options. One challenge was ensuring privacy controls while maintaining an easy-to-use interface.\"})}),className:\"framer-121arj2\",\"data-framer-name\":\"We aimed to bring Vero\u2019s vision of authentic social interaction to life by focusing on seamless design and user privacy.\",fonts:[\"Inter\"],text:FCk6mPhHT,verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-145iy2h\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{animate:animation2,initial:animation3}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1rsciij\",\"data-framer-appear-id\":\"1rsciij\",\"data-framer-name\":\"Gradient\",initial:animation12,optimized:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{width:\"500px\",y:(componentViewport?.y||0)+0+0+0+1e3+120+0+0+0+0+3876+0+0},dyXyT7X6A:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+906.76+50+0+0+0+0+4194+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:642,width:\"642px\",y:(componentViewport?.y||0)+0+0+0+1080+150+0+0+0+0+4382+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:300,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:.9,skewX:0,skewY:0,x:0,y:60}},{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-zl4dru-container\",isModuleExternal:true,nodeId:\"RjagI7Pfc\",rendersWithMotion:true,scopeId:\"v75Tpw1Yr\",children:/*#__PURE__*/_jsx(MacBookPro16Mockup,{BZx7yhrCM:false,height:\"100%\",id:\"RjagI7Pfc\",layoutId:\"RjagI7Pfc\",style:{height:\"100%\",width:\"100%\"},ubyNWkN4V:1,VR69n9fXh:toResponsiveImage(qUmKfopy7),width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1j430sy\",\"data-framer-name\":\"Latest\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1usw2w6\",\"data-styles-preset\":\"zSSdVVb1R\",style:{\"--framer-text-alignment\":\"left\"},children:\"Latest projects\"})}),className:\"framer-1d01nxp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e1vi1d\",\"data-framer-name\":\"Next\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{height:1210,width:\"80px\",y:(componentViewport?.y||0)+0+0+0+1e3+120+0+0+4638+0+187.52+0},dyXyT7X6A:{height:70,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+906.76+50+0+0+4886+0+147.52+0+350}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1220,width:\"90px\",y:(componentViewport?.y||0)+0+0+0+1080+150+0+0+5184+0+187.52+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ly5lv-container\",nodeId:\"vIVoVAEoq\",scopeId:\"v75Tpw1Yr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{variant:\"AILpDROUQ\"}},children:/*#__PURE__*/_jsx(ProjetcsMoreProjectsButton,{height:\"100%\",id:\"vIVoVAEoq\",layoutId:\"vIVoVAEoq\",style:{height:\"100%\",width:\"100%\"},variant:\"hl4DUHJiz\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xrrwnd\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"oCs4NlQCM\",data:Project,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"oCs4NlQCM\",name:\"EvxErjRB0\",type:\"Identifier\"},{collection:\"oCs4NlQCM\",name:\"G5Mz1FFPU\",type:\"Identifier\"},{alias:\"UoGh11fYe\",arguments:[{from:{alias:\"UoGh11fYe\",data:Category,type:\"Collection\"},orderBy:[{arguments:[{collection:\"oCs4NlQCM\",name:\"UoGh11fYe\",type:\"Identifier\"},{collection:\"UoGh11fYe\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"UoGh11fYe\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"UoGh11fYe\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"oCs4NlQCM\",name:\"UoGh11fYe\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"oCs4NlQCM\",name:\"fcLdTQRWu\",type:\"Identifier\"},{collection:\"oCs4NlQCM\",name:\"jjZ9ReRdu\",type:\"Identifier\"},{collection:\"oCs4NlQCM\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{arguments:[{collection:\"oCs4NlQCM\",name:\"fcLdTQRWu\",type:\"Identifier\"},{type:\"LiteralValue\",value:fcLdTQRWu}],functionName:\"CONTAINS\",type:\"FunctionCall\"}}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({EvxErjRB0:EvxErjRB0oCs4NlQCM,fcLdTQRWu:fcLdTQRWuoCs4NlQCM,G5Mz1FFPU:G5Mz1FFPUoCs4NlQCM,id:idoCs4NlQCM,jjZ9ReRdu:jjZ9ReRduoCs4NlQCM,UoGh11fYe:UoGh11fYeoCs4NlQCM},index1)=>{EvxErjRB0oCs4NlQCM??=\"\";fcLdTQRWuoCs4NlQCM??=\"\";jjZ9ReRduoCs4NlQCM??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`oCs4NlQCM-${idoCs4NlQCM}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{EvxErjRB0:EvxErjRB0oCs4NlQCM},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{EvxErjRB0:EvxErjRB0oCs4NlQCM},webPageId:\"v75Tpw1Yr\"},motionChild:true,nodeId:\"IlguaHpaq\",scopeId:\"v75Tpw1Yr\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1osnhu4 framer-hh0uzk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{width:`max(max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 90px, 1px) - 10px) / 2, 50px), 1px)`,y:(componentViewport?.y||0)+0+0+0+1e3+120+0+0+4638+0+187.52+0+0+0+0},dyXyT7X6A:{height:330,width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 1px)`,y:(componentViewport?.y||0)+0+0+0+906.76+50+0+0+4886+0+147.52+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:`max(max((max(min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 110px, 1px) - 20px) / 2, 50px), 1px)`,y:(componentViewport?.y||0)+0+0+0+1080+150+0+0+5184+0+187.52+0+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-1ksrka3-container\",nodeId:\"XQys7CBNY\",rendersWithMotion:true,scopeId:\"v75Tpw1Yr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{variant:\"IYoM4m0Ii\"},dyXyT7X6A:{variant:\"oFWgC4z7f\"}},children:/*#__PURE__*/_jsx(ProjetcsProjectItem,{height:\"100%\",id:\"XQys7CBNY\",j8kI8S_33:toResponsiveImage(G5Mz1FFPUoCs4NlQCM),layoutId:\"XQys7CBNY\",m4363AwRQ:fcLdTQRWuoCs4NlQCM,pY5nfFcdb:UoGh11fYeoCs4NlQCM,QAad4Lrvr:jjZ9ReRduoCs4NlQCM,style:{height:\"100%\",width:\"100%\"},variant:\"dRd9b_kWP\",width:\"100%\"})})})})})})})})})},idoCs4NlQCM);})})})})})]})]})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{y:(componentViewport?.y||0)+0+0+0+7275.52},dyXyT7X6A:{y:(componentViewport?.y||0)+0+0+0+6460.28}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1003,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+7981.52,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-170}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-ihfoa5-container\",nodeId:\"macd2jwR1\",rendersWithMotion:true,scopeId:\"v75Tpw1Yr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{variant:\"fEKWViVLS\"},dyXyT7X6A:{variant:\"nqWgwdImM\"}},children:/*#__PURE__*/_jsx(Contact,{height:\"100%\",id:\"macd2jwR1\",layoutId:\"macd2jwR1\",style:{width:\"100%\"},variant:\"Il7efBbw5\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{y:(componentViewport?.y||0)+0+8278.52},dyXyT7X6A:{y:(componentViewport?.y||0)+0+7463.28}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:732,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+8984.52,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-170}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sjjo2o-container\",nodeId:\"GhiOKT3Wg\",rendersWithMotion:true,scopeId:\"v75Tpw1Yr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{variant:\"Zqhe2SOK3\"},dyXyT7X6A:{variant:\"j_Wa_NyZf\"}},children:/*#__PURE__*/_jsx(FooterFooter,{height:\"100%\",id:\"GhiOKT3Wg\",layoutId:\"GhiOKT3Wg\",style:{width:\"100%\"},variant:\"MNs46yKnk\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d9rkku-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"eEgAiBNad\",scopeId:\"v75Tpw1Yr\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"eEgAiBNad\",intensity:8,layoutId:\"eEgAiBNad\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Wyt4n.framer-hh0uzk, .framer-Wyt4n .framer-hh0uzk { display: block; }\",\".framer-Wyt4n.framer-181vzam { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-Wyt4n .framer-11qcrk-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 9; }\",\".framer-Wyt4n .framer-1gycri2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Wyt4n .framer-b49js2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-end; min-height: 1080px; overflow: hidden; padding: 76px 36px 0px 36px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-Wyt4n .framer-1hanbzf { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Wyt4n .framer-m7y80k { --border-bottom-width: 2px; --border-color: var(--token-1662617d-fd18-4319-b3da-aa36e5415705, #f9452d); --border-left-width: 0px; --border-right-width: 2px; --border-style: solid; --border-top-width: 0px; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 9px); position: absolute; right: 30px; top: 30px; width: 9px; z-index: 1; }\",\".framer-Wyt4n .framer-58nyqt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 70px 0px 70px; position: relative; width: 1px; }\",\".framer-Wyt4n .framer-1l2vkl1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-end; max-width: 1848px; overflow: visible; padding: 0px 0px 80px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-Wyt4n .framer-726i10 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; max-width: 100%; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Wyt4n .framer-bdwtqr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-Wyt4n .framer-tb387f-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Wyt4n .framer-18nsq28 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Wyt4n .framer-1yhaelc { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Wyt4n .framer-rsqti5 { flex: none; height: auto; max-width: 590px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Wyt4n .framer-1btwo2a-container { bottom: 0px; flex: none; left: 0px; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-Wyt4n .framer-h9dhly { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-Wyt4n .framer-1h46962 { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%); bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-Wyt4n .framer-19hydm8 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1848px; overflow: hidden; padding: 70px 0px 70px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-Wyt4n .framer-ls40ga { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; min-height: 28px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Wyt4n .framer-1l66qrj-container, .framer-Wyt4n .framer-1d9rkku-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Wyt4n .framer-1qqqtwt { align-content: center; align-items: center; display: flex; flex: 2 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Wyt4n .framer-10yab97, .framer-Wyt4n .framer-snmq8h, .framer-Wyt4n .framer-1g9oy3l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Wyt4n .framer-1wf5jpd, .framer-Wyt4n .framer-qfm4ej, .framer-Wyt4n .framer-1xii077, .framer-Wyt4n .framer-1vdw59, .framer-Wyt4n .framer-1s0dprb, .framer-Wyt4n .framer-h40ibq { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Wyt4n .framer-1wt1z18, .framer-Wyt4n .framer-ntj8ua { align-self: stretch; background-color: #e8e8e8; flex: none; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-Wyt4n .framer-138xpy3 { align-content: center; align-items: center; background-color: var(--token-0fe6d6b7-818b-4083-a138-519768e5d126, #f5f5f5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 150px 36px 160px 36px; position: relative; width: 100%; z-index: 2; }\",\".framer-Wyt4n .framer-firfui { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: flex-start; max-width: 1848px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Wyt4n .framer-14fjk8y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 140px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Wyt4n .framer-1ioebf2, .framer-Wyt4n .framer-l3kqmk, .framer-Wyt4n .framer-1crl1cc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Wyt4n .framer-ey6jb8, .framer-Wyt4n .framer-1cybktc, .framer-Wyt4n .framer-1bophys { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Wyt4n .framer-1o8n3g9, .framer-Wyt4n .framer-1vcu2qu, .framer-Wyt4n .framer-zp4nkd { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 440px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Wyt4n .framer-udthnw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Wyt4n .framer-11dn6el { aspect-ratio: 1 / 1; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: relative; width: 50px; }\",\".framer-Wyt4n .framer-1f04bs1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Wyt4n .framer-1om5evb, .framer-Wyt4n .framer-1f1e8ve, .framer-Wyt4n .framer-1d01nxp { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Wyt4n .framer-yyrrt { align-content: center; align-items: center; display: flex; flex: 2 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Wyt4n .framer-1quziho { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 910px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Wyt4n .framer-7ybb7l { aspect-ratio: 1.7904761904761906 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 112px); overflow: hidden; pointer-events: none; position: relative; width: 100%; }\",\".framer-Wyt4n .framer-1tkh5xr, .framer-Wyt4n .framer-1uwfi9x { align-content: flex-start; align-items: flex-start; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Wyt4n .framer-1xxh6hz, .framer-Wyt4n .framer-1b62zvv, .framer-Wyt4n .framer-y1ryjm, .framer-Wyt4n .framer-121arj2 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 910px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Wyt4n .framer-1ocycf8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Wyt4n .framer-nxxknu, .framer-Wyt4n .framer-tqkr7t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Wyt4n .framer-1gnelzo, .framer-Wyt4n .framer-1j2moae { aspect-ratio: 1.3132183908045978 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 152px); overflow: hidden; position: relative; width: 1px; }\",\".framer-Wyt4n .framer-3h1gjt { align-content: center; align-items: center; aspect-ratio: 1.3143534994068802 / 1; background: linear-gradient(146deg, var(--token-0fe6d6b7-818b-4083-a138-519768e5d126, #f5f5f5) 9.2524634009009%, rgb(212, 212, 212) 45%, rgb(28, 28, 28) 137%); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 152px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Wyt4n .framer-2r0e6o-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 420px); position: relative; width: 420px; }\",\".framer-Wyt4n .framer-271p17 { align-content: center; align-items: center; aspect-ratio: 1.3143534994068802 / 1; background: linear-gradient(221deg, var(--token-0fe6d6b7-818b-4083-a138-519768e5d126, #f5f5f5) 0%, rgb(199, 199, 199) 53%, rgb(28, 28, 28) 166%); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 152px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Wyt4n .framer-1tmf3se-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 423px); position: relative; width: 423px; }\",\".framer-Wyt4n .framer-4hxu5q { align-content: center; align-items: center; background: linear-gradient(208deg, var(--token-0fe6d6b7-818b-4083-a138-519768e5d126, #f5f5f5) 1.1344313063063063%, rgb(205, 205, 205) 48.777097409909906%, rgb(28, 28, 28) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Wyt4n .framer-1elcwr7-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); position: relative; width: 100%; }\",\".framer-Wyt4n .framer-145iy2h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Wyt4n .framer-1rsciij { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%); bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-Wyt4n .framer-zl4dru-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 642px); position: relative; width: 642px; }\",\".framer-Wyt4n .framer-1j430sy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Wyt4n .framer-e1vi1d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Wyt4n .framer-1ly5lv-container { align-self: stretch; flex: none; height: auto; position: relative; width: 90px; }\",\".framer-Wyt4n .framer-1xrrwnd { display: grid; flex: 1 0 0px; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-Wyt4n .framer-1osnhu4 { align-content: center; align-items: center; align-self: start; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 600px; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-Wyt4n .framer-1ksrka3-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-Wyt4n .framer-ihfoa5-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-Wyt4n .framer-1sjjo2o-container { flex: none; height: auto; position: relative; width: 100%; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Wyt4n.framer-181vzam, .framer-Wyt4n .framer-1gycri2, .framer-Wyt4n .framer-b49js2, .framer-Wyt4n .framer-1hanbzf, .framer-Wyt4n .framer-58nyqt, .framer-Wyt4n .framer-1l2vkl1, .framer-Wyt4n .framer-726i10, .framer-Wyt4n .framer-bdwtqr, .framer-Wyt4n .framer-18nsq28, .framer-Wyt4n .framer-19hydm8, .framer-Wyt4n .framer-ls40ga, .framer-Wyt4n .framer-1qqqtwt, .framer-Wyt4n .framer-10yab97, .framer-Wyt4n .framer-snmq8h, .framer-Wyt4n .framer-1g9oy3l, .framer-Wyt4n .framer-138xpy3, .framer-Wyt4n .framer-firfui, .framer-Wyt4n .framer-14fjk8y, .framer-Wyt4n .framer-1ioebf2, .framer-Wyt4n .framer-ey6jb8, .framer-Wyt4n .framer-udthnw, .framer-Wyt4n .framer-1f04bs1, .framer-Wyt4n .framer-yyrrt, .framer-Wyt4n .framer-l3kqmk, .framer-Wyt4n .framer-1cybktc, .framer-Wyt4n .framer-1tkh5xr, .framer-Wyt4n .framer-1ocycf8, .framer-Wyt4n .framer-nxxknu, .framer-Wyt4n .framer-tqkr7t, .framer-Wyt4n .framer-3h1gjt, .framer-Wyt4n .framer-271p17, .framer-Wyt4n .framer-4hxu5q, .framer-Wyt4n .framer-1crl1cc, .framer-Wyt4n .framer-1bophys, .framer-Wyt4n .framer-1uwfi9x, .framer-Wyt4n .framer-145iy2h, .framer-Wyt4n .framer-1j430sy, .framer-Wyt4n .framer-e1vi1d, .framer-Wyt4n .framer-1osnhu4 { gap: 0px; } .framer-Wyt4n.framer-181vzam > *, .framer-Wyt4n .framer-1gycri2 > *, .framer-Wyt4n .framer-b49js2 > *, .framer-Wyt4n .framer-58nyqt > *, .framer-Wyt4n .framer-138xpy3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Wyt4n.framer-181vzam > :first-child, .framer-Wyt4n .framer-1gycri2 > :first-child, .framer-Wyt4n .framer-b49js2 > :first-child, .framer-Wyt4n .framer-58nyqt > :first-child, .framer-Wyt4n .framer-1l2vkl1 > :first-child, .framer-Wyt4n .framer-726i10 > :first-child, .framer-Wyt4n .framer-18nsq28 > :first-child, .framer-Wyt4n .framer-10yab97 > :first-child, .framer-Wyt4n .framer-snmq8h > :first-child, .framer-Wyt4n .framer-1g9oy3l > :first-child, .framer-Wyt4n .framer-138xpy3 > :first-child, .framer-Wyt4n .framer-firfui > :first-child, .framer-Wyt4n .framer-14fjk8y > :first-child, .framer-Wyt4n .framer-ey6jb8 > :first-child, .framer-Wyt4n .framer-1f04bs1 > :first-child, .framer-Wyt4n .framer-1cybktc > :first-child, .framer-Wyt4n .framer-1tkh5xr > :first-child, .framer-Wyt4n .framer-1ocycf8 > :first-child, .framer-Wyt4n .framer-3h1gjt > :first-child, .framer-Wyt4n .framer-271p17 > :first-child, .framer-Wyt4n .framer-1bophys > :first-child, .framer-Wyt4n .framer-1uwfi9x > :first-child, .framer-Wyt4n .framer-145iy2h > :first-child, .framer-Wyt4n .framer-1j430sy > :first-child { margin-top: 0px; } .framer-Wyt4n.framer-181vzam > :last-child, .framer-Wyt4n .framer-1gycri2 > :last-child, .framer-Wyt4n .framer-b49js2 > :last-child, .framer-Wyt4n .framer-58nyqt > :last-child, .framer-Wyt4n .framer-1l2vkl1 > :last-child, .framer-Wyt4n .framer-726i10 > :last-child, .framer-Wyt4n .framer-18nsq28 > :last-child, .framer-Wyt4n .framer-10yab97 > :last-child, .framer-Wyt4n .framer-snmq8h > :last-child, .framer-Wyt4n .framer-1g9oy3l > :last-child, .framer-Wyt4n .framer-138xpy3 > :last-child, .framer-Wyt4n .framer-firfui > :last-child, .framer-Wyt4n .framer-14fjk8y > :last-child, .framer-Wyt4n .framer-ey6jb8 > :last-child, .framer-Wyt4n .framer-1f04bs1 > :last-child, .framer-Wyt4n .framer-1cybktc > :last-child, .framer-Wyt4n .framer-1tkh5xr > :last-child, .framer-Wyt4n .framer-1ocycf8 > :last-child, .framer-Wyt4n .framer-3h1gjt > :last-child, .framer-Wyt4n .framer-271p17 > :last-child, .framer-Wyt4n .framer-1bophys > :last-child, .framer-Wyt4n .framer-1uwfi9x > :last-child, .framer-Wyt4n .framer-145iy2h > :last-child, .framer-Wyt4n .framer-1j430sy > :last-child { margin-bottom: 0px; } .framer-Wyt4n .framer-1hanbzf > *, .framer-Wyt4n .framer-19hydm8 > *, .framer-Wyt4n .framer-ls40ga > *, .framer-Wyt4n .framer-1ioebf2 > *, .framer-Wyt4n .framer-yyrrt > *, .framer-Wyt4n .framer-l3kqmk > *, .framer-Wyt4n .framer-nxxknu > *, .framer-Wyt4n .framer-tqkr7t > *, .framer-Wyt4n .framer-1crl1cc > *, .framer-Wyt4n .framer-e1vi1d > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Wyt4n .framer-1hanbzf > :first-child, .framer-Wyt4n .framer-bdwtqr > :first-child, .framer-Wyt4n .framer-19hydm8 > :first-child, .framer-Wyt4n .framer-ls40ga > :first-child, .framer-Wyt4n .framer-1qqqtwt > :first-child, .framer-Wyt4n .framer-1ioebf2 > :first-child, .framer-Wyt4n .framer-udthnw > :first-child, .framer-Wyt4n .framer-yyrrt > :first-child, .framer-Wyt4n .framer-l3kqmk > :first-child, .framer-Wyt4n .framer-nxxknu > :first-child, .framer-Wyt4n .framer-tqkr7t > :first-child, .framer-Wyt4n .framer-4hxu5q > :first-child, .framer-Wyt4n .framer-1crl1cc > :first-child, .framer-Wyt4n .framer-e1vi1d > :first-child, .framer-Wyt4n .framer-1osnhu4 > :first-child { margin-left: 0px; } .framer-Wyt4n .framer-1hanbzf > :last-child, .framer-Wyt4n .framer-bdwtqr > :last-child, .framer-Wyt4n .framer-19hydm8 > :last-child, .framer-Wyt4n .framer-ls40ga > :last-child, .framer-Wyt4n .framer-1qqqtwt > :last-child, .framer-Wyt4n .framer-1ioebf2 > :last-child, .framer-Wyt4n .framer-udthnw > :last-child, .framer-Wyt4n .framer-yyrrt > :last-child, .framer-Wyt4n .framer-l3kqmk > :last-child, .framer-Wyt4n .framer-nxxknu > :last-child, .framer-Wyt4n .framer-tqkr7t > :last-child, .framer-Wyt4n .framer-4hxu5q > :last-child, .framer-Wyt4n .framer-1crl1cc > :last-child, .framer-Wyt4n .framer-e1vi1d > :last-child, .framer-Wyt4n .framer-1osnhu4 > :last-child { margin-right: 0px; } .framer-Wyt4n .framer-1l2vkl1 > *, .framer-Wyt4n .framer-1ocycf8 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Wyt4n .framer-726i10 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-Wyt4n .framer-bdwtqr > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Wyt4n .framer-18nsq28 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Wyt4n .framer-1qqqtwt > * { margin: 0px; margin-left: calc(70px / 2); margin-right: calc(70px / 2); } .framer-Wyt4n .framer-10yab97 > *, .framer-Wyt4n .framer-snmq8h > *, .framer-Wyt4n .framer-1g9oy3l > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-Wyt4n .framer-firfui > * { margin: 0px; margin-bottom: calc(160px / 2); margin-top: calc(160px / 2); } .framer-Wyt4n .framer-14fjk8y > * { margin: 0px; margin-bottom: calc(140px / 2); margin-top: calc(140px / 2); } .framer-Wyt4n .framer-ey6jb8 > *, .framer-Wyt4n .framer-1cybktc > *, .framer-Wyt4n .framer-1bophys > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-Wyt4n .framer-udthnw > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-Wyt4n .framer-1f04bs1 > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-Wyt4n .framer-1tkh5xr > *, .framer-Wyt4n .framer-1uwfi9x > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Wyt4n .framer-3h1gjt > *, .framer-Wyt4n .framer-271p17 > *, .framer-Wyt4n .framer-145iy2h > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Wyt4n .framer-4hxu5q > *, .framer-Wyt4n .framer-1osnhu4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Wyt4n .framer-1j430sy > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-Wyt4n[data-border=\"true\"]::after, .framer-Wyt4n [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-Wyt4n.framer-181vzam { width: 810px; } .framer-Wyt4n .framer-b49js2 { min-height: 960px; padding: 76px 32px 0px 32px; } .framer-Wyt4n .framer-58nyqt { padding: 0px 60px 0px 60px; } .framer-Wyt4n .framer-1l2vkl1 { padding: 0px 0px 60px 0px; } .framer-Wyt4n .framer-726i10 { gap: 24px; } .framer-Wyt4n .framer-18nsq28 { gap: 36px; } .framer-Wyt4n .framer-19hydm8 { gap: unset; justify-content: space-between; padding: 64px 0px 64px 0px; } .framer-Wyt4n .framer-ls40ga { flex: none; min-width: 363px; width: min-content; } .framer-Wyt4n .framer-1qqqtwt { flex: none; gap: 34px; width: min-content; } .framer-Wyt4n .framer-138xpy3 { padding: 120px 32px 120px 32px; } .framer-Wyt4n .framer-firfui, .framer-Wyt4n .framer-14fjk8y { gap: 120px; } .framer-Wyt4n .framer-2r0e6o-container { height: var(--framer-aspect-ratio-supported, 279px); width: 279px; } .framer-Wyt4n .framer-271p17 { aspect-ratio: 1.315217391304348 / 1; } .framer-Wyt4n .framer-1tmf3se-container { height: var(--framer-aspect-ratio-supported, 269px); width: 269px; } .framer-Wyt4n .framer-zl4dru-container { width: 500px; } .framer-Wyt4n .framer-e1vi1d, .framer-Wyt4n .framer-1xrrwnd { gap: 10px; } .framer-Wyt4n .framer-1ly5lv-container { width: 80px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Wyt4n .framer-726i10, .framer-Wyt4n .framer-18nsq28, .framer-Wyt4n .framer-19hydm8, .framer-Wyt4n .framer-1qqqtwt, .framer-Wyt4n .framer-firfui, .framer-Wyt4n .framer-14fjk8y, .framer-Wyt4n .framer-e1vi1d, .framer-Wyt4n .framer-1xrrwnd { gap: 0px; } .framer-Wyt4n .framer-726i10 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Wyt4n .framer-726i10 > :first-child, .framer-Wyt4n .framer-18nsq28 > :first-child, .framer-Wyt4n .framer-firfui > :first-child, .framer-Wyt4n .framer-14fjk8y > :first-child { margin-top: 0px; } .framer-Wyt4n .framer-726i10 > :last-child, .framer-Wyt4n .framer-18nsq28 > :last-child, .framer-Wyt4n .framer-firfui > :last-child, .framer-Wyt4n .framer-14fjk8y > :last-child { margin-bottom: 0px; } .framer-Wyt4n .framer-18nsq28 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-Wyt4n .framer-19hydm8 > *, .framer-Wyt4n .framer-19hydm8 > :first-child, .framer-Wyt4n .framer-19hydm8 > :last-child, .framer-Wyt4n .framer-1xrrwnd > *, .framer-Wyt4n .framer-1xrrwnd > :first-child, .framer-Wyt4n .framer-1xrrwnd > :last-child { margin: 0px; } .framer-Wyt4n .framer-1qqqtwt > * { margin: 0px; margin-left: calc(34px / 2); margin-right: calc(34px / 2); } .framer-Wyt4n .framer-1qqqtwt > :first-child, .framer-Wyt4n .framer-e1vi1d > :first-child { margin-left: 0px; } .framer-Wyt4n .framer-1qqqtwt > :last-child, .framer-Wyt4n .framer-e1vi1d > :last-child { margin-right: 0px; } .framer-Wyt4n .framer-firfui > *, .framer-Wyt4n .framer-14fjk8y > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-Wyt4n .framer-e1vi1d > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }}\",\"@media (max-width: 809px) { .framer-Wyt4n.framer-181vzam { width: 390px; } .framer-Wyt4n .framer-11qcrk-container, .framer-Wyt4n .framer-tb387f-container { will-change: unset; } .framer-Wyt4n .framer-b49js2 { height: min-content; min-height: unset; padding: 80px 6px 0px 6px; position: relative; top: unset; } .framer-Wyt4n .framer-1hanbzf { background-color: var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, #0c0c0c); flex: none; height: min-content; will-change: var(--framer-will-change-effect-override, transform); } .framer-Wyt4n .framer-m7y80k { right: 24px; top: 24px; } .framer-Wyt4n .framer-58nyqt { padding: 220px 30px 0px 30px; } .framer-Wyt4n .framer-1l2vkl1 { padding: 0px 0px 36px 0px; will-change: unset; } .framer-Wyt4n .framer-726i10 { gap: 30px; } .framer-Wyt4n .framer-bdwtqr { justify-content: flex-start; order: 1; will-change: var(--framer-will-change-effect-override, transform); } .framer-Wyt4n .framer-18nsq28 { gap: 24px; order: 0; } .framer-Wyt4n .framer-1yhaelc, .framer-Wyt4n .framer-rsqti5 { will-change: var(--framer-will-change-effect-override, transform); } .framer-Wyt4n .framer-19hydm8 { flex-direction: column; gap: 30px; justify-content: flex-start; padding: 34px 18px 30px 18px; } .framer-Wyt4n .framer-ls40ga { flex: none; order: 1; width: 100%; } .framer-Wyt4n .framer-1l66qrj-container { flex: 1 0 0px; width: 1px; } .framer-Wyt4n .framer-1qqqtwt { flex: none; flex-direction: column; gap: 14px; order: 0; width: 100%; } .framer-Wyt4n .framer-10yab97, .framer-Wyt4n .framer-snmq8h, .framer-Wyt4n .framer-1g9oy3l { align-content: center; align-items: center; gap: 2px; } .framer-Wyt4n .framer-1wt1z18, .framer-Wyt4n .framer-ntj8ua { align-self: unset; height: 1px; width: 100%; } .framer-Wyt4n .framer-138xpy3 { padding: 50px 24px 50px 24px; } .framer-Wyt4n .framer-firfui { gap: 50px; } .framer-Wyt4n .framer-14fjk8y, .framer-Wyt4n .framer-1j430sy { gap: 40px; } .framer-Wyt4n .framer-1ioebf2 { flex-direction: column; gap: 40px; } .framer-Wyt4n .framer-ey6jb8, .framer-Wyt4n .framer-yyrrt, .framer-Wyt4n .framer-1cybktc, .framer-Wyt4n .framer-1tkh5xr, .framer-Wyt4n .framer-1gnelzo, .framer-Wyt4n .framer-1j2moae, .framer-Wyt4n .framer-3h1gjt, .framer-Wyt4n .framer-1bophys, .framer-Wyt4n .framer-1uwfi9x { flex: none; width: 100%; } .framer-Wyt4n .framer-l3kqmk, .framer-Wyt4n .framer-nxxknu, .framer-Wyt4n .framer-tqkr7t, .framer-Wyt4n .framer-4hxu5q, .framer-Wyt4n .framer-1crl1cc, .framer-Wyt4n .framer-e1vi1d { flex-direction: column; } .framer-Wyt4n .framer-2r0e6o-container { height: var(--framer-aspect-ratio-supported, 248px); width: 248px; } .framer-Wyt4n .framer-271p17 { aspect-ratio: 1.3153846153846154 / 1; flex: none; width: 100%; } .framer-Wyt4n .framer-1tmf3se-container { height: var(--framer-aspect-ratio-supported, 254px); width: 254px; } .framer-Wyt4n .framer-zl4dru-container { height: var(--framer-aspect-ratio-supported, 200px); width: 100%; } .framer-Wyt4n .framer-1d01nxp { max-width: 270px; } .framer-Wyt4n .framer-1ly5lv-container { align-self: unset; height: 70px; order: 1; width: 100%; } .framer-Wyt4n .framer-1xrrwnd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; order: 0; width: 100%; } .framer-Wyt4n .framer-1osnhu4 { align-self: unset; height: 330px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Wyt4n .framer-726i10, .framer-Wyt4n .framer-18nsq28, .framer-Wyt4n .framer-19hydm8, .framer-Wyt4n .framer-1qqqtwt, .framer-Wyt4n .framer-10yab97, .framer-Wyt4n .framer-snmq8h, .framer-Wyt4n .framer-1g9oy3l, .framer-Wyt4n .framer-firfui, .framer-Wyt4n .framer-14fjk8y, .framer-Wyt4n .framer-1ioebf2, .framer-Wyt4n .framer-l3kqmk, .framer-Wyt4n .framer-nxxknu, .framer-Wyt4n .framer-tqkr7t, .framer-Wyt4n .framer-4hxu5q, .framer-Wyt4n .framer-1crl1cc, .framer-Wyt4n .framer-1j430sy, .framer-Wyt4n .framer-e1vi1d, .framer-Wyt4n .framer-1xrrwnd { gap: 0px; } .framer-Wyt4n .framer-726i10 > *, .framer-Wyt4n .framer-19hydm8 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Wyt4n .framer-726i10 > :first-child, .framer-Wyt4n .framer-18nsq28 > :first-child, .framer-Wyt4n .framer-19hydm8 > :first-child, .framer-Wyt4n .framer-1qqqtwt > :first-child, .framer-Wyt4n .framer-10yab97 > :first-child, .framer-Wyt4n .framer-snmq8h > :first-child, .framer-Wyt4n .framer-1g9oy3l > :first-child, .framer-Wyt4n .framer-firfui > :first-child, .framer-Wyt4n .framer-14fjk8y > :first-child, .framer-Wyt4n .framer-1ioebf2 > :first-child, .framer-Wyt4n .framer-l3kqmk > :first-child, .framer-Wyt4n .framer-nxxknu > :first-child, .framer-Wyt4n .framer-tqkr7t > :first-child, .framer-Wyt4n .framer-4hxu5q > :first-child, .framer-Wyt4n .framer-1crl1cc > :first-child, .framer-Wyt4n .framer-1j430sy > :first-child, .framer-Wyt4n .framer-e1vi1d > :first-child, .framer-Wyt4n .framer-1xrrwnd > :first-child { margin-top: 0px; } .framer-Wyt4n .framer-726i10 > :last-child, .framer-Wyt4n .framer-18nsq28 > :last-child, .framer-Wyt4n .framer-19hydm8 > :last-child, .framer-Wyt4n .framer-1qqqtwt > :last-child, .framer-Wyt4n .framer-10yab97 > :last-child, .framer-Wyt4n .framer-snmq8h > :last-child, .framer-Wyt4n .framer-1g9oy3l > :last-child, .framer-Wyt4n .framer-firfui > :last-child, .framer-Wyt4n .framer-14fjk8y > :last-child, .framer-Wyt4n .framer-1ioebf2 > :last-child, .framer-Wyt4n .framer-l3kqmk > :last-child, .framer-Wyt4n .framer-nxxknu > :last-child, .framer-Wyt4n .framer-tqkr7t > :last-child, .framer-Wyt4n .framer-4hxu5q > :last-child, .framer-Wyt4n .framer-1crl1cc > :last-child, .framer-Wyt4n .framer-1j430sy > :last-child, .framer-Wyt4n .framer-e1vi1d > :last-child, .framer-Wyt4n .framer-1xrrwnd > :last-child { margin-bottom: 0px; } .framer-Wyt4n .framer-18nsq28 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Wyt4n .framer-1qqqtwt > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-Wyt4n .framer-10yab97 > *, .framer-Wyt4n .framer-snmq8h > *, .framer-Wyt4n .framer-1g9oy3l > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-Wyt4n .framer-firfui > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-Wyt4n .framer-14fjk8y > *, .framer-Wyt4n .framer-1ioebf2 > *, .framer-Wyt4n .framer-1j430sy > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Wyt4n .framer-l3kqmk > *, .framer-Wyt4n .framer-nxxknu > *, .framer-Wyt4n .framer-tqkr7t > *, .framer-Wyt4n .framer-1crl1cc > *, .framer-Wyt4n .framer-e1vi1d > *, .framer-Wyt4n .framer-1xrrwnd > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Wyt4n .framer-4hxu5q > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8529\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"DaPOBwsYe\":{\"layout\":[\"fixed\",\"auto\"]},\"dyXyT7X6A\":{\"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 Framerv75Tpw1Yr=withCSS(Component,css,\"framer-Wyt4n\");export default Framerv75Tpw1Yr;Framerv75Tpw1Yr.displayName=\"Page\";Framerv75Tpw1Yr.defaultProps={height:8529,width:1200};addFonts(Framerv75Tpw1Yr,[{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\"}]},...HeaderHeaderFonts,...UICategoryTagFonts,...VideoFonts,...UIArrowButtonFonts,...IPhone15FloatingMockupFonts,...IPhone16PlusMockupFonts,...AppleProDisplayXDRMockupFonts,...MacBookPro16MockupFonts,...ProjetcsMoreProjectsButtonFonts,...ProjetcsProjectItemFonts,...ContactFonts,...FooterFooterFonts,...SmoothScrollFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerv75Tpw1Yr\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"8529\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DaPOBwsYe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dyXyT7X6A\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerImmutableVariables\":\"true\"}},\"__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", "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", "VideoFonts", "getFonts", "Video", "VideoControls", "getPropertyControls", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "uploadScreen", "video", "videoFile", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "GZWgCeD3H", "ItVAo0Wec", "tGwDy51AR", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "cx", "serializationHash", "ComponentViewportProvider", "Video", "css", "FramerZGBpxaErX", "withCSS", "ZGBpxaErX_default", "addPropertyControls", "ControlType", "VideoControls", "addFonts", "VideoFonts", "ScreenIPhone15ProMaxFonts", "getFonts", "ZGBpxaErX_default", "ScreenIPhone15ProMaxControls", "getPropertyControls", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "perspective", "shadow", "uploadScreen", "video", "videoFile", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "da84zRPjO", "gWDvYDCVa", "hRoO8Fu8_", "dAFTwEW0i", "QR4iC9mu0", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "ZGBpxaErX_default", "css", "FramerRTX6Vaose", "withCSS", "RTX6Vaose_default", "addPropertyControls", "ControlType", "ScreenIPhone15ProMaxControls", "addFonts", "ScreenIPhone15ProMaxFonts", "VideoFonts", "getFonts", "Video", "VideoControls", "getPropertyControls", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "uploadScreen", "video", "videoFile", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "RuJEHx8Ju", "byr6CFmxe", "BLnqlNgCT", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "cx", "serializationHash", "ComponentViewportProvider", "Video", "css", "Framerf4UNVII3L", "withCSS", "f4UNVII3L_default", "addPropertyControls", "ControlType", "VideoControls", "addFonts", "VideoFonts", "ScreenMacBookPro16Fonts", "getFonts", "f4UNVII3L_default", "ScreenMacBookPro16Controls", "getPropertyControls", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "shadow", "uploadScreen", "video", "videoFile", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "VR69n9fXh", "BZx7yhrCM", "LcoS8xnFv", "ubyNWkN4V", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "f4UNVII3L_default", "css", "FramermP_gj8zRM", "withCSS", "mP_gj8zRM_default", "addPropertyControls", "ControlType", "ScreenMacBookPro16Controls", "addFonts", "ScreenMacBookPro16Fonts", "VideoFonts", "getFonts", "Video", "VideoControls", "getPropertyControls", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "uploadScreen", "video", "videoFile", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "ugbrm2PdD", "tkS_klyRM", "EkaIvTQpE", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "cx", "serializationHash", "ComponentViewportProvider", "Video", "css", "FramerBGOMZ0TlV", "withCSS", "BGOMZ0TlV_default", "addPropertyControls", "ControlType", "VideoControls", "addFonts", "VideoFonts", "ScreenAppleProDisplayXDRFonts", "getFonts", "BGOMZ0TlV_default", "ScreenAppleProDisplayXDRControls", "getPropertyControls", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "shadow", "uploadScreen", "video", "videoFile", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "cuSXmJOoX", "flqb2QWTh", "eIlFg8KR9", "x1DxEuTjj", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "BGOMZ0TlV_default", "css", "FramercMRx4NMLk", "withCSS", "cMRx4NMLk_default", "addPropertyControls", "ControlType", "ScreenAppleProDisplayXDRControls", "addFonts", "ScreenAppleProDisplayXDRFonts", "VideoFonts", "getFonts", "Video", "VideoControls", "getPropertyControls", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "uploadScreen", "video", "videoFile", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "EnjYf2Cq8", "GXBfLkeXN", "ljgn1WOP1", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "cx", "serializationHash", "ComponentViewportProvider", "Video", "css", "Framerw_dpBKhoq", "withCSS", "w_dpBKhoq_default", "addPropertyControls", "ControlType", "VideoControls", "addFonts", "VideoFonts", "ScreenIPhone16PlusFonts", "getFonts", "w_dpBKhoq_default", "ScreenIPhone16PlusControls", "getPropertyControls", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "shadow", "uploadScreen", "video", "videoFile", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "m94MBR1Wc", "XwRAncnnj", "kOt_E0l76", "pb96H8iAB", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "w_dpBKhoq_default", "css", "FramermvvPGF7R3", "withCSS", "mvvPGF7R3_default", "addPropertyControls", "ControlType", "ScreenIPhone16PlusControls", "addFonts", "ScreenIPhone16PlusFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "WIf5MEY74", "CBxle7Hty", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText", "css", "FramerdOwxhpPUd", "withCSS", "dOwxhpPUd_default", "addPropertyControls", "ControlType", "addFonts", "UICategoryTagNoLinkFonts", "getFonts", "SX7TmRT4a_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "toResponsiveImage", "value", "Transition", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "category", "description", "height", "id", "mainImage", "title", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "j8kI8S_33", "pY5nfFcdb", "m4363AwRQ", "QAad4Lrvr", "JRY3_qGYVTmk181TsU", "E9FnOb4niTmk181TsU", "idTmk181TsU", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "transition1", "u", "addPropertyOverrides", "ChildrenCanSuspend", "rXPb48_DN_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ComponentViewportProvider", "SmartComponentScopedContainer", "SX7TmRT4a_default", "RichText", "Image2", "getLoadingLazyAtYPosition", "css", "FramerKYMveFRib", "withCSS", "KYMveFRib_default", "addPropertyControls", "ControlType", "addFonts", "UICategoryTagNoLinkFonts", "getFontsFromSharedStyle", "fonts", "LR_EVOsEt_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v0", "p", "x", "motion", "v1", "__FramerMetadata__", "valuesByLocaleId", "LR_EVOsEt_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText", "getLocalizedValue", "css", "FramerLR_EVOsEt", "withCSS", "LR_EVOsEt_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "HeaderHeaderFonts", "getFonts", "O1fMzCErz_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "UICategoryTagFonts", "dOwxhpPUd_default", "MotionDivWithOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText", "VideoFonts", "Video", "ImageWithOptimizedAppearEffect", "Image2", "UIArrowButtonFonts", "ozPjcS5mp_default", "MotionSectionWithFX", "withFX", "MotionDivWithFX", "ImageWithFX", "IPhone15FloatingMockupFonts", "RTX6Vaose_default", "ContainerWithFX", "IPhone16PlusMockupFonts", "mvvPGF7R3_default", "AppleProDisplayXDRMockupFonts", "cMRx4NMLk_default", "MacBookPro16MockupFonts", "mP_gj8zRM_default", "RichTextWithFX", "ProjetcsMoreProjectsButtonFonts", "LR_EVOsEt_default", "ProjetcsProjectItemFonts", "KYMveFRib_default", "ContactFonts", "McSGfJuih_default", "FooterFooterFonts", "pCkRDSIIx_default", "SmoothScrollFonts", "SmoothScroll_Prod_default", "breakpoints", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "animation4", "isSet", "value", "transition3", "animation5", "animation6", "transition4", "animation7", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transition5", "animation8", "transition6", "animation9", "negate", "toResponsiveImage", "animation10", "transition7", "animation11", "animation12", "animation13", "transition8", "animation14", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "animation15", "transition9", "animation16", "transition10", "animation17", "animation18", "transition11", "animation19", "equals", "a", "b", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "RwM1qgENQ_default", "rXPb48_DN_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "UoGh11fYe", "E9FnOb4niBtCZLpwIm", "JRY3_qGYVBtCZLpwIm", "idBtCZLpwIm", "fcLdTQRWu", "jjZ9ReRdu", "Hmvz3dJbu", "G5Mz1FFPU", "gqR_vPIpb", "mDDYXA7ki", "rLiOufN2n", "xWqFEuDQf", "majLZtWnx", "xUxg0TNNr", "S6Vc7lSek", "Mq20_y6f9", "FauhwFXoA", "I2MGBGTUT", "Jj2TqaVte", "n5oZyEeyz", "izfeKDIs1", "KElcZNTLT", "OeT9DUKsq", "knDYOEm77", "fKKEVD3MT", "EvMyI3xJn", "x47lTu4Ij", "EckXOrPX8", "mE5z8KpZc", "FCk6mPhHT", "qUmKfopy7", "EvxErjRB0oCs4NlQCM", "G5Mz1FFPUoCs4NlQCM", "UoGh11fYeoCs4NlQCM", "fcLdTQRWuoCs4NlQCM", "jjZ9ReRduoCs4NlQCM", "idoCs4NlQCM", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "visible", "router", "useRouter", "visible1", "visible2", "visible3", "usePreloadLocalizedValues", "activeLocaleCode", "useLocaleCode", "textContent", "visible4", "visible5", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "PropertyOverrides2", "ContainerWithOptimizedAppearEffect", "O1fMzCErz_default", "MotionSectionWithFX", "MotionDivWithOptimizedAppearEffect", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "Container", "dOwxhpPUd_default", "RichTextWithOptimizedAppearEffect", "x", "Video", "getLoadingLazyAtYPosition", "ImageWithOptimizedAppearEffect", "resolvedLinks1", "ozPjcS5mp_default", "getLocalizedValue", "RichText", "MotionDivWithFX", "Image2", "ImageWithFX", "ContainerWithFX", "RTX6Vaose_default", "mvvPGF7R3_default", "cMRx4NMLk_default", "mP_gj8zRM_default", "RichTextWithFX", "LR_EVOsEt_default", "collection1", "paginationInfo1", "loadMore1", "index1", "Link", "KYMveFRib_default", "McSGfJuih_default", "pCkRDSIIx_default", "SmoothScroll_Prod_default", "css", "Framerv75Tpw1Yr", "withCSS", "v75Tpw1Yr_default", "addFonts", "HeaderHeaderFonts", "UICategoryTagFonts", "VideoFonts", "UIArrowButtonFonts", "IPhone15FloatingMockupFonts", "IPhone16PlusMockupFonts", "AppleProDisplayXDRMockupFonts", "MacBookPro16MockupFonts", "ProjetcsMoreProjectsButtonFonts", "ProjetcsProjectItemFonts", "ContactFonts", "FooterFooterFonts", "SmoothScrollFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
