{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/TO50RZfUZkMws8Mz1efr/Video.js", "ssg:https://framerusercontent.com/modules/O1CiEhc8gtfvlRh1V9B1/GGM3no76gMjxsodfqcoQ/VcfybX3Bk.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export function Video(props){const newProps=getProps(props);return /*#__PURE__*/ _jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{}) // It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */ let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===SrcType.Url)return srcUrl+fragment;if(srcType===SrcType.Video)return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/ _jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>{return onSeeked===null||onSeeked===void 0?void 0:onSeeked(e);},onPause:e=>{return onPause===null||onPause===void 0?void 0:onPause(e);},onPlay:e=>{return onPlay===null||onPlay===void 0?void 0:onPlay(e);},onEnded:e=>{return onEnd===null||onEnd===void 0?void 0:onEnd(e);},autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (9f979fb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Image,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/TO50RZfUZkMws8Mz1efr/Video.js\";import Badge from\"#framer/local/canvasComponent/Al_9iqWli/Al_9iqWli.js\";import Button from\"#framer/local/canvasComponent/eSQq9SAQu/eSQq9SAQu.js\";import Nav from\"#framer/local/canvasComponent/inhqe8Dyw/inhqe8Dyw.js\";import OrderedListItem from\"#framer/local/canvasComponent/M4mVJ23zQ/M4mVJ23zQ.js\";import Footer from\"#framer/local/canvasComponent/oiok0Y_KQ/oiok0Y_KQ.js\";import CardProject from\"#framer/local/canvasComponent/t52JiVrjP/t52JiVrjP.js\";import Divider from\"#framer/local/canvasComponent/yj2co60IY/yj2co60IY.js\";import*as sharedStyle from\"#framer/local/css/laGMPAqEb/laGMPAqEb.js\";import*as sharedStyle2 from\"#framer/local/css/O01EQkiMt/O01EQkiMt.js\";import*as sharedStyle1 from\"#framer/local/css/Q1uzJVOd1/Q1uzJVOd1.js\";import metadataProvider from\"#framer/local/webPageMetadata/VcfybX3Bk/VcfybX3Bk.js\";const NavFonts=getFonts(Nav);const ButtonFonts=getFonts(Button);const DividerFonts=getFonts(Divider);const BadgeFonts=getFonts(Badge);const VideoFonts=getFonts(Video);const MotionDivWithFX=withFX(motion.div);const ContainerWithFX=withFX(Container);const OrderedListItemFonts=getFonts(OrderedListItem);const ImageWithFX=withFX(Image);const CardProjectFonts=getFonts(CardProject);const FooterFonts=getFonts(Footer);const cycleOrder=[\"t6nZdcj19\",\"uL96_VzB9\",\"lPgmsXPtH\",\"uca19y2rz\",\"kkzxQcAbG\",\"F71VbumLk\"];const breakpoints={F71VbumLk:\"(max-width: 399px)\",kkzxQcAbG:\"(min-width: 400px) and (max-width: 875px)\",lPgmsXPtH:\"(min-width: 1024px) and (max-width: 1269px)\",t6nZdcj19:\"(min-width: 1440px)\",uca19y2rz:\"(min-width: 876px) and (max-width: 1023px)\",uL96_VzB9:\"(min-width: 1270px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Rh5Nj\";const variantClassNames={F71VbumLk:\"framer-v-8lcwib\",kkzxQcAbG:\"framer-v-1mvv4sl\",lPgmsXPtH:\"framer-v-17n94dp\",t6nZdcj19:\"framer-v-19mf1oa\",uca19y2rz:\"framer-v-1h4ydmc\",uL96_VzB9:\"framer-v-197hjxw\"};const transitions={default:{duration:0}};const transformTemplate1=(_,t)=>`perspective(1200px) ${t}`;const animation={opacity:0,rotate:0,scale:1,x:0,y:24};const transition1={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:.95,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,scale:1,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,transition:transition2,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const metadata=metadataProvider();const humanReadableVariantMap={\"Horizontal Phone\":\"uca19y2rz\",\"Tablet v2\":\"lPgmsXPtH\",\"Vertical Phone\":\"kkzxQcAbG\",Desktop:\"t6nZdcj19\",Phone:\"F71VbumLk\",Tablet:\"uL96_VzB9\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"t6nZdcj19\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useLayoutEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-Rh5Nj`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-Rh5Nj`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const transition=transitions.default;const ref1=React.useRef(null);const isDisplayed=()=>{if([\"kkzxQcAbG\",\"F71VbumLk\"].includes(baseVariant))return!isBrowser();return true;};const isDisplayed1=()=>{if([\"lPgmsXPtH\",\"uca19y2rz\",\"kkzxQcAbG\",\"F71VbumLk\"].includes(baseVariant))return!isBrowser();return true;};const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"t6nZdcj19\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-19mf1oa\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-i61yoh-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F71VbumLk:{style:{width:\"100%\"},variant:\"sTT5D6Q4U\"},kkzxQcAbG:{style:{width:\"100%\"},variant:\"vOGg31L8l\"},lPgmsXPtH:{g9FALTFC_:\"YOHwqDB5f\",style:{height:\"100%\"},variant:\"R9TDY4qs_\"},uca19y2rz:{g9FALTFC_:\"YOHwqDB5f\",style:{height:\"100%\"},variant:\"R9TDY4qs_\"},uL96_VzB9:{g9FALTFC_:\"YOHwqDB5f\",style:{height:\"100%\"},variant:\"R9TDY4qs_\"}},children:/*#__PURE__*/_jsx(Nav,{g9FALTFC_:\"MLpBZP_C5\",height:\"100%\",id:\"NTwxp7szJ\",layoutId:\"NTwxp7szJ\",style:{height:\"100%\",width:\"100%\"},variant:\"Z0umBpot5\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y5pkrn\",\"data-framer-name\":\"Main\",name:\"Main\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p987vz\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"article\",{className:\"framer-zpoizn\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jway4u\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r3p87r\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hgy1n1-container\",children:/*#__PURE__*/_jsx(Button,{AWBenE8HJ:\"chevron_left_small\",height:\"100%\",Hw1s_s_Dx:\"Back to list\",id:\"BVZIgtcj3\",layoutId:\"BVZIgtcj3\",variant:\"orAnFUs8h\",width:\"100%\",yriKJcBHz:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ow08d3-container\",children:/*#__PURE__*/_jsx(Divider,{height:\"100%\",id:\"vSCgmlymk\",layoutId:\"vSCgmlymk\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vlljvo\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hl27vx\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17cbp5u-container\",children:/*#__PURE__*/_jsx(Badge,{height:\"100%\",id:\"uLP8Y1p3L\",iY7ONBkAd:\"#mobile\",layoutId:\"uLP8Y1p3L\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-m788xt-container hidden-1mvv4sl hidden-8lcwib\",children:/*#__PURE__*/_jsx(Badge,{height:\"100%\",id:\"FuguesyLY\",iY7ONBkAd:\"#app\",layoutId:\"FuguesyLY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10cvz4m-container\",children:/*#__PURE__*/_jsx(Badge,{height:\"100%\",id:\"QWmShftye\",iY7ONBkAd:\"#loyalty-program\",layoutId:\"QWmShftye\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t51ll2-container\",children:/*#__PURE__*/_jsx(Badge,{height:\"100%\",id:\"CaUuM4AQf\",iY7ONBkAd:\"2023\",layoutId:\"CaUuM4AQf\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uawf3f\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F71VbumLk:{transformTemplate:undefined},kkzxQcAbG:{transformTemplate:undefined},lPgmsXPtH:{transformTemplate:undefined},uca19y2rz:{transformTemplate:undefined},uL96_VzB9:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ckqexr\",\"data-styles-preset\":\"laGMPAqEb\",style:{\"--framer-text-alignment\":\"left\"},children:\"Be Happy \u2022 Loyalty App\"})}),className:\"framer-1sawp1x\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F71VbumLk:{transformTemplate:undefined},kkzxQcAbG:{transformTemplate:undefined},lPgmsXPtH:{transformTemplate:undefined},uca19y2rz:{transformTemplate:undefined},uL96_VzB9:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cmmrsi\",\"data-styles-preset\":\"Q1uzJVOd1\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f3d734f3-2b24-4f9b-a40c-9508d93a2f84, rgb(102, 102, 102))\"},children:\"Be Happy is a comprehensive mobile and loyalty app platform designed for customers of family-friendly casual dining group with over 40 sites across Europe, offering a wide range of features.\"})}),className:\"framer-1n6hyhb\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-w6rarm\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-k4p7s1-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"gvsTxwbPO\",isMixedBorderRadius:false,layoutId:\"gvsTxwbPO\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/WyLEpSMGVgoO33k9GvV4pSee5c.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jv0zqo\",\"data-framer-name\":\"section\",name:\"section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F71VbumLk:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1dodh3\",\"data-styles-preset\":\"O01EQkiMt\",style:{\"--framer-text-color\":\"var(--token-849e5971-4e20-414b-85bc-9934f715adf8, rgb(17, 17, 17))\"},children:\"Background\"})}),className:\"framer-1nc0z10\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F71VbumLk:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cmmrsi\",\"data-styles-preset\":\"Q1uzJVOd1\",style:{\"--framer-text-color\":\"var(--token-f3d734f3-2b24-4f9b-a40c-9508d93a2f84, rgb(102, 102, 102))\"},children:\"The team at Happy decided to develop their own mobile application, covering the basic needs of users before, during, and after their restaurant visits. They aimed to create an innovative app with a wide range of functionalities. The primary goal was focused on users accumulating points and activating special offers that they could use at the restaurant during their next visit.\"})}),className:\"framer-3bszgn\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-js5nmw-container\",children:/*#__PURE__*/_jsx(Divider,{height:\"100%\",id:\"unEmTm1yc\",layoutId:\"unEmTm1yc\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1296zqs\",\"data-framer-name\":\"section\",name:\"section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F71VbumLk:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1dodh3\",\"data-styles-preset\":\"O01EQkiMt\",style:{\"--framer-text-color\":\"var(--token-849e5971-4e20-414b-85bc-9934f715adf8, rgb(17, 17, 17))\"},children:\"Goals\"})}),className:\"framer-1o40cl5\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v204hd\",\"data-framer-name\":\"collection\",name:\"collection\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nu1dru-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F71VbumLk:{variant:\"iNpoBbgwE\"},kkzxQcAbG:{variant:\"iNpoBbgwE\"}},children:/*#__PURE__*/_jsx(OrderedListItem,{eAa8qMBly:\"\uD83C\uDFAF\",height:\"100%\",id:\"vMzqbHlO6\",layoutId:\"vMzqbHlO6\",PgM3dXgLh:\"Project Goals: Envisioning the App Experience\",style:{width:\"100%\"},variant:\"mhKT0QkFu\",width:\"100%\",x44pLaC6H:\"In a scenario where the team is not entirely familiar with the design process and aims to envision how their app will interact and look, the project goals become pivotal in guiding their efforts. Here's a set of objectives to help them successfully navigate the design exploration:\"})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1us4vgw\",\"data-framer-name\":\"section\",name:\"section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F71VbumLk:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1dodh3\",\"data-styles-preset\":\"O01EQkiMt\",style:{\"--framer-text-color\":\"var(--token-849e5971-4e20-414b-85bc-9934f715adf8, rgb(17, 17, 17))\"},children:\"Solutions\"})}),className:\"framer-1ruufwk\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d0h7wl\",\"data-framer-name\":\"collection\",name:\"collection\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wi9qhi-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F71VbumLk:{variant:\"iNpoBbgwE\"},kkzxQcAbG:{variant:\"iNpoBbgwE\"}},children:/*#__PURE__*/_jsx(OrderedListItem,{eAa8qMBly:\"1\",height:\"100%\",id:\"Ph6zFf71G\",layoutId:\"Ph6zFf71G\",PgM3dXgLh:\"\uD83D\uDE80 Building the Site-Map:\",style:{width:\"100%\"},variant:\"mhKT0QkFu\",width:\"100%\",x44pLaC6H:\"We kicked off by establishing the blueprint of our digital space. The site map acted as our architectural guide, defining where each room (webpage) was placed and how they seamlessly connected. This set the stage for a user-friendly experience.\\n\\nCollaboration was key. The site map served as our visual language, keeping the team on the same page and in sync. By the end, we had a visually striking site map\u2014a guidebook for our user-focused adventure, propelling us into wireframing.\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F71VbumLk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:547,intrinsicWidth:2250,loading:\"lazy\",pixelHeight:1094,pixelWidth:4500,sizes:\"calc(100vw - 64px)\",src:\"https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png?scale-down-to=512 512w, https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png?scale-down-to=4096 4096w, https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png 4500w\"}},kkzxQcAbG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:547,intrinsicWidth:2250,loading:\"lazy\",pixelHeight:1094,pixelWidth:4500,sizes:\"calc(max(100vw - 16px, 0px) - 48px)\",src:\"https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png?scale-down-to=512 512w, https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png?scale-down-to=4096 4096w, https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png 4500w\"}},lPgmsXPtH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:547,intrinsicWidth:2250,loading:\"lazy\",pixelHeight:1094,pixelWidth:4500,sizes:\"720px\",src:\"https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png?scale-down-to=512 512w, https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png?scale-down-to=4096 4096w, https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png 4500w\"}},uca19y2rz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:547,intrinsicWidth:2250,loading:\"lazy\",pixelHeight:1094,pixelWidth:4500,sizes:\"600px\",src:\"https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png?scale-down-to=512 512w, https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png?scale-down-to=4096 4096w, https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png 4500w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:547,intrinsicWidth:2250,loading:\"lazy\",pixelHeight:1094,pixelWidth:4500,sizes:\"904px\",src:\"https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png?scale-down-to=512 512w, https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png?scale-down-to=4096 4096w, https://framerusercontent.com/images/ikuf7UPHBe85eWjjSrxO8b4w2EQ.png 4500w\"},className:\"framer-2xw2sc\",\"data-framer-name\":\"image\",name:\"image\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lty3js\",\"data-framer-name\":\"section\",name:\"section\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1dodh3\",\"data-styles-preset\":\"O01EQkiMt\",style:{\"--framer-text-color\":\"rgba(0, 0, 0, 0)\"},children:\"\u2014\"})}),className:\"framer-pv4dj9 hidden-17n94dp hidden-1h4ydmc hidden-1mvv4sl hidden-8lcwib\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-eeagal\",\"data-framer-name\":\"collection\",name:\"collection\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ucmeiq-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F71VbumLk:{variant:\"iNpoBbgwE\"},kkzxQcAbG:{variant:\"iNpoBbgwE\"}},children:/*#__PURE__*/_jsx(OrderedListItem,{eAa8qMBly:\"2\",height:\"100%\",id:\"yHXzGhjNm\",layoutId:\"yHXzGhjNm\",PgM3dXgLh:\" \uD83C\uDFD7\uFE0F  Embarking on Informational Architecture\",style:{width:\"100%\"},variant:\"mhKT0QkFu\",width:\"100%\",x44pLaC6H:\"After charting our digital landscape with the site map, we delved deeper into the intricacies of informational architecture. This phase was all about meticulously organizing the internal sections of our pages, ensuring that our digital space became more than just visually appealing\u2014it became intuitively structured.\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F71VbumLk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:732,intrinsicWidth:1556,loading:\"lazy\",pixelHeight:1464,pixelWidth:3112,sizes:\"calc(100vw - 64px)\",src:\"https://framerusercontent.com/images/6mzNFyoiqq22ncF6Ne0ZuWy8LE.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/6mzNFyoiqq22ncF6Ne0ZuWy8LE.png?scale-down-to=512 512w, https://framerusercontent.com/images/6mzNFyoiqq22ncF6Ne0ZuWy8LE.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/6mzNFyoiqq22ncF6Ne0ZuWy8LE.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/6mzNFyoiqq22ncF6Ne0ZuWy8LE.png 3112w\"}},kkzxQcAbG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:732,intrinsicWidth:1556,loading:\"lazy\",pixelHeight:1464,pixelWidth:3112,sizes:\"calc(max(100vw - 16px, 0px) - 48px)\",src:\"https://framerusercontent.com/images/6mzNFyoiqq22ncF6Ne0ZuWy8LE.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/6mzNFyoiqq22ncF6Ne0ZuWy8LE.png?scale-down-to=512 512w, https://framerusercontent.com/images/6mzNFyoiqq22ncF6Ne0ZuWy8LE.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/6mzNFyoiqq22ncF6Ne0ZuWy8LE.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/6mzNFyoiqq22ncF6Ne0ZuWy8LE.png 3112w\"}},lPgmsXPtH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:732,intrinsicWidth:1556,loading:\"lazy\",pixelHeight:1464,pixelWidth:3112,sizes:\"720px\",src:\"https://framerusercontent.com/images/6mzNFyoiqq22ncF6Ne0ZuWy8LE.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/6mzNFyoiqq22ncF6Ne0ZuWy8LE.png?scale-down-to=512 512w, https://framerusercontent.com/images/6mzNFyoiqq22ncF6Ne0ZuWy8LE.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/6mzNFyoiqq22ncF6Ne0ZuWy8LE.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/6mzNFyoiqq22ncF6Ne0ZuWy8LE.png 3112w\"}},uca19y2rz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:732,intrinsicWidth:1556,loading:\"lazy\",pixelHeight:1464,pixelWidth:3112,sizes:\"600px\",src:\"https://framerusercontent.com/images/6mzNFyoiqq22ncF6Ne0ZuWy8LE.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/6mzNFyoiqq22ncF6Ne0ZuWy8LE.png?scale-down-to=512 512w, https://framerusercontent.com/images/6mzNFyoiqq22ncF6Ne0ZuWy8LE.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/6mzNFyoiqq22ncF6Ne0ZuWy8LE.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/6mzNFyoiqq22ncF6Ne0ZuWy8LE.png 3112w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:732,intrinsicWidth:1556,loading:\"lazy\",pixelHeight:1464,pixelWidth:3112,sizes:\"903px\",src:\"https://framerusercontent.com/images/6mzNFyoiqq22ncF6Ne0ZuWy8LE.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/6mzNFyoiqq22ncF6Ne0ZuWy8LE.png?scale-down-to=512 512w, https://framerusercontent.com/images/6mzNFyoiqq22ncF6Ne0ZuWy8LE.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/6mzNFyoiqq22ncF6Ne0ZuWy8LE.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/6mzNFyoiqq22ncF6Ne0ZuWy8LE.png 3112w\"},className:\"framer-11ik05v\",\"data-framer-name\":\"image\",name:\"image\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hlmb2n\",\"data-framer-name\":\"section\",name:\"section\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1dodh3\",\"data-styles-preset\":\"O01EQkiMt\",style:{\"--framer-text-color\":\"rgba(0, 0, 0, 0)\"},children:\"\u2014\"})}),className:\"framer-2f3h0p hidden-17n94dp hidden-1h4ydmc hidden-1mvv4sl hidden-8lcwib\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nz114y\",\"data-framer-name\":\"collection\",name:\"collection\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m7z08x-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F71VbumLk:{variant:\"iNpoBbgwE\"},kkzxQcAbG:{variant:\"iNpoBbgwE\"},lPgmsXPtH:{x44pLaC6H:\"With our informational architecture solidified, the next leg of our design journey brought us to the exciting realm of UI and prototyping.\\n\\nAs we progressed, the digital space we envisioned in the site map and meticulously organized in the informational architecture phase began to take tangible shape. UI and prototyping were the bridges that transformed concepts into a digital reality.\\n\\n\\n\"}},children:/*#__PURE__*/_jsx(OrderedListItem,{eAa8qMBly:\"3\",height:\"100%\",id:\"h40pFGFTc\",layoutId:\"h40pFGFTc\",PgM3dXgLh:\"\uD83C\uDFA8Transitioning to UI and Prototyping\",style:{width:\"100%\"},variant:\"mhKT0QkFu\",width:\"100%\",x44pLaC6H:\"With our informational architecture solidified, the next leg of our design journey brought us to the exciting realm of UI and prototyping.\\n\\nAs we progressed, the digital space we envisioned in the site map and meticulously organized in the informational architecture phase began to take tangible shape. UI and prototyping were the bridges that transformed concepts into a digital reality.\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F71VbumLk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:691,intrinsicWidth:1113.5,loading:\"lazy\",pixelHeight:1382,pixelWidth:2227,sizes:\"calc(100vw - 64px)\",src:\"https://framerusercontent.com/images/XJR6PoUuCftc2l7pXu4IWJA9iQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/XJR6PoUuCftc2l7pXu4IWJA9iQ.png?scale-down-to=512 512w, https://framerusercontent.com/images/XJR6PoUuCftc2l7pXu4IWJA9iQ.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/XJR6PoUuCftc2l7pXu4IWJA9iQ.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/XJR6PoUuCftc2l7pXu4IWJA9iQ.png 2227w\"}},kkzxQcAbG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:691,intrinsicWidth:1113.5,loading:\"lazy\",pixelHeight:1382,pixelWidth:2227,sizes:\"calc(max(100vw - 16px, 0px) - 48px)\",src:\"https://framerusercontent.com/images/XJR6PoUuCftc2l7pXu4IWJA9iQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/XJR6PoUuCftc2l7pXu4IWJA9iQ.png?scale-down-to=512 512w, https://framerusercontent.com/images/XJR6PoUuCftc2l7pXu4IWJA9iQ.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/XJR6PoUuCftc2l7pXu4IWJA9iQ.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/XJR6PoUuCftc2l7pXu4IWJA9iQ.png 2227w\"}},lPgmsXPtH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:691,intrinsicWidth:1113.5,loading:\"lazy\",pixelHeight:1382,pixelWidth:2227,sizes:\"720px\",src:\"https://framerusercontent.com/images/XJR6PoUuCftc2l7pXu4IWJA9iQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/XJR6PoUuCftc2l7pXu4IWJA9iQ.png?scale-down-to=512 512w, https://framerusercontent.com/images/XJR6PoUuCftc2l7pXu4IWJA9iQ.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/XJR6PoUuCftc2l7pXu4IWJA9iQ.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/XJR6PoUuCftc2l7pXu4IWJA9iQ.png 2227w\"}},uca19y2rz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:691,intrinsicWidth:1113.5,loading:\"lazy\",pixelHeight:1382,pixelWidth:2227,sizes:\"600px\",src:\"https://framerusercontent.com/images/XJR6PoUuCftc2l7pXu4IWJA9iQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/XJR6PoUuCftc2l7pXu4IWJA9iQ.png?scale-down-to=512 512w, https://framerusercontent.com/images/XJR6PoUuCftc2l7pXu4IWJA9iQ.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/XJR6PoUuCftc2l7pXu4IWJA9iQ.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/XJR6PoUuCftc2l7pXu4IWJA9iQ.png 2227w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:691,intrinsicWidth:1113.5,loading:\"lazy\",pixelHeight:1382,pixelWidth:2227,sizes:\"903px\",src:\"https://framerusercontent.com/images/XJR6PoUuCftc2l7pXu4IWJA9iQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/XJR6PoUuCftc2l7pXu4IWJA9iQ.png?scale-down-to=512 512w, https://framerusercontent.com/images/XJR6PoUuCftc2l7pXu4IWJA9iQ.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/XJR6PoUuCftc2l7pXu4IWJA9iQ.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/XJR6PoUuCftc2l7pXu4IWJA9iQ.png 2227w\"},className:\"framer-j9tudv\",\"data-framer-name\":\"Frame_2608541\",name:\"Frame_2608541\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-kj0jmo-container\",children:/*#__PURE__*/_jsx(Divider,{height:\"100%\",id:\"jVXQ8TBtS\",layoutId:\"jVXQ8TBtS\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jis15y\",\"data-framer-name\":\"section\",name:\"section\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1dodh3\",\"data-styles-preset\":\"O01EQkiMt\",style:{\"--framer-text-color\":\"var(--token-849e5971-4e20-414b-85bc-9934f715adf8, rgb(17, 17, 17))\"},children:\"Conclusion\"})}),className:\"framer-1h6gled\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cmmrsi\",\"data-styles-preset\":\"Q1uzJVOd1\",style:{\"--framer-text-color\":\"var(--token-f3d734f3-2b24-4f9b-a40c-9508d93a2f84, rgb(102, 102, 102))\"},children:\"As we conclude this transformative journey, we reflect on the evolution from the foundational site map to the intricacies of informational architecture, and finally, the vibrant world of UI and prototyping. Our digital creation, conceived with the user at its heart, has evolved into a seamless and captivating experience.\"})}),className:\"framer-4bh77e\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1s9o49f-container\",children:/*#__PURE__*/_jsx(Divider,{height:\"100%\",id:\"Ym8NNanoD\",layoutId:\"Ym8NNanoD\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fah32u\",\"data-framer-name\":\"Collection\",name:\"Collection\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1dodh3\",\"data-styles-preset\":\"O01EQkiMt\",children:\"More projects\"})}),className:\"framer-1ox00o7\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ppmo2m\",\"data-framer-name\":\"Collection\",name:\"Collection\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UAXn6Yk6z\"},implicitPathVariables:undefined},{href:{webPageId:\"UAXn6Yk6z\"},implicitPathVariables:undefined},{href:{webPageId:\"UAXn6Yk6z\"},implicitPathVariables:undefined},{href:{webPageId:\"UAXn6Yk6z\"},implicitPathVariables:undefined},{href:{webPageId:\"UAXn6Yk6z\"},implicitPathVariables:undefined},{href:{webPageId:\"UAXn6Yk6z\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-76wmu8-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F71VbumLk:{W4qTAoypY:resolvedLinks[5]},kkzxQcAbG:{W4qTAoypY:resolvedLinks[4]},lPgmsXPtH:{W4qTAoypY:resolvedLinks[2]},uca19y2rz:{W4qTAoypY:resolvedLinks[3]},uL96_VzB9:{W4qTAoypY:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(CardProject,{gH2E59JJm:\"GrantGrowth \u2022 ERP Solution\",Gwrrwculr:addImageAlt({src:\"https://framerusercontent.com/images/Cz3VaPh0qo2ykuWTIcKqsn0YiE.png\",srcSet:\"https://framerusercontent.com/images/Cz3VaPh0qo2ykuWTIcKqsn0YiE.png?scale-down-to=512 512w, https://framerusercontent.com/images/Cz3VaPh0qo2ykuWTIcKqsn0YiE.png 800w\"},\"\"),height:\"100%\",iBToJInnf:\"Private Equity Donation Platform\",id:\"ftHyMxjdd\",layoutId:\"ftHyMxjdd\",style:{width:\"100%\"},W4qTAoypY:resolvedLinks[0],width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"W6tENncDj\"},implicitPathVariables:undefined},{href:{webPageId:\"W6tENncDj\"},implicitPathVariables:undefined},{href:{webPageId:\"W6tENncDj\"},implicitPathVariables:undefined},{href:{webPageId:\"W6tENncDj\"},implicitPathVariables:undefined},{href:{webPageId:\"W6tENncDj\"},implicitPathVariables:undefined},{href:{webPageId:\"W6tENncDj\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16y4ecb-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F71VbumLk:{style:{width:\"100%\"},W4qTAoypY:resolvedLinks1[5]},kkzxQcAbG:{style:{width:\"100%\"},W4qTAoypY:resolvedLinks1[4]},lPgmsXPtH:{style:{width:\"100%\"},W4qTAoypY:resolvedLinks1[2]},uca19y2rz:{style:{width:\"100%\"},W4qTAoypY:resolvedLinks1[3]},uL96_VzB9:{W4qTAoypY:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(CardProject,{gH2E59JJm:\"AdNoc \u2022 MVP\",Gwrrwculr:addImageAlt({src:\"https://framerusercontent.com/images/UXLcMgW2ugxtFFfWKtsx4yh9s8.png\",srcSet:\"https://framerusercontent.com/images/UXLcMgW2ugxtFFfWKtsx4yh9s8.png?scale-down-to=512 512w, https://framerusercontent.com/images/UXLcMgW2ugxtFFfWKtsx4yh9s8.png 800w\"},\"\"),height:\"100%\",iBToJInnf:\"Digital Card Platform\",id:\"ah6JYZxJc\",layoutId:\"ah6JYZxJc\",W4qTAoypY:resolvedLinks1[0],width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tWGcoJWNW\"},implicitPathVariables:undefined},{href:{webPageId:\"tWGcoJWNW\"},implicitPathVariables:undefined},{href:{webPageId:\"tWGcoJWNW\"},implicitPathVariables:undefined},{href:{webPageId:\"tWGcoJWNW\"},implicitPathVariables:undefined},{href:{webPageId:\"tWGcoJWNW\"},implicitPathVariables:undefined},{href:{webPageId:\"tWGcoJWNW\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gk1jxa-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F71VbumLk:{p48qJ_gKB:resolvedLinks2[5]},kkzxQcAbG:{p48qJ_gKB:resolvedLinks2[4]},lPgmsXPtH:{p48qJ_gKB:resolvedLinks2[2]},uca19y2rz:{p48qJ_gKB:resolvedLinks2[3]},uL96_VzB9:{p48qJ_gKB:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button,{AWBenE8HJ:\"arrow_right\",height:\"100%\",Hw1s_s_Dx:\"All projects\",id:\"IHW4pn8S9\",layoutId:\"IHW4pn8S9\",p48qJ_gKB:resolvedLinks2[0],style:{height:\"100%\",width:\"100%\"},variant:\"uTK7wgZ7Y\",width:\"100%\",yriKJcBHz:false})})})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wr64gg-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F71VbumLk:{variant:\"Gt1iO5lap\"},kkzxQcAbG:{variant:\"Gt1iO5lap\"},uca19y2rz:{variant:\"Gt1iO5lap\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"BjABnCmGE\",layoutId:\"BjABnCmGE\",style:{width:\"100%\"},variant:\"jLcbtyIJV\",width:\"100%\"})})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=['.framer-Rh5Nj[data-border=\"true\"]::after, .framer-Rh5Nj [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-Rh5Nj { background: var(--token-ca8dab25-69cf-4f66-a4ef-ac5032f3bf9c, rgb(0, 0, 0)); }`,\".framer-Rh5Nj.framer-66ds0u, .framer-Rh5Nj .framer-66ds0u { display: block; }\",\".framer-Rh5Nj.framer-19mf1oa { align-content: flex-start; align-items: flex-start; background-color: var(--token-ca8dab25-69cf-4f66-a4ef-ac5032f3bf9c, #000000); display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1440px; }\",\".framer-Rh5Nj .framer-i61yoh-container { flex: none; height: 100vh; left: 0px; position: fixed; top: 0px; width: 280px; z-index: 2; }\",\".framer-Rh5Nj .framer-1y5pkrn { align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: var(--token-ca8dab25-69cf-4f66-a4ef-ac5032f3bf9c, #000000); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: auto; justify-content: flex-start; overflow: hidden; padding: 8px 8px 8px 288px; position: relative; width: 1px; }\",\".framer-Rh5Nj .framer-p987vz { align-content: center; align-items: center; background-color: var(--token-9eaa7311-e839-4a54-9aec-76fdc6273ca1, #ffffff); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 40px 120px 120px 120px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Rh5Nj .framer-zpoizn { 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: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 904px; }\",\".framer-Rh5Nj .framer-jway4u { 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: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Rh5Nj .framer-r3p87r { 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: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Rh5Nj .framer-1hgy1n1-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-Rh5Nj .framer-1ow08d3-container, .framer-Rh5Nj .framer-js5nmw-container, .framer-Rh5Nj .framer-kj0jmo-container, .framer-Rh5Nj .framer-1s9o49f-container { flex: none; height: 2px; position: relative; width: 100%; }\",\".framer-Rh5Nj .framer-vlljvo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Rh5Nj .framer-1hl27vx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Rh5Nj .framer-17cbp5u-container, .framer-Rh5Nj .framer-m788xt-container, .framer-Rh5Nj .framer-10cvz4m-container, .framer-Rh5Nj .framer-1t51ll2-container, .framer-Rh5Nj .framer-16y4ecb-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Rh5Nj .framer-1uawf3f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Rh5Nj .framer-1sawp1x, .framer-Rh5Nj .framer-1n6hyhb { flex: none; height: auto; position: relative; transform: perspective(1200px); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Rh5Nj .framer-w6rarm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 572px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 903px; }\",\".framer-Rh5Nj .framer-k4p7s1-container { flex: none; height: 540px; opacity: 0.95; position: relative; width: 853px; }\",\".framer-Rh5Nj .framer-jv0zqo, .framer-Rh5Nj .framer-1296zqs, .framer-Rh5Nj .framer-1us4vgw, .framer-Rh5Nj .framer-lty3js, .framer-Rh5Nj .framer-hlmb2n, .framer-Rh5Nj .framer-jis15y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Rh5Nj .framer-1nc0z10, .framer-Rh5Nj .framer-1o40cl5, .framer-Rh5Nj .framer-1ruufwk, .framer-Rh5Nj .framer-pv4dj9, .framer-Rh5Nj .framer-2f3h0p, .framer-Rh5Nj .framer-1h6gled { flex: none; height: auto; position: relative; transform: perspective(1200px); white-space: pre-wrap; width: 240px; word-break: break-word; word-wrap: break-word; }\",\".framer-Rh5Nj .framer-3bszgn, .framer-Rh5Nj .framer-4bh77e { flex: 1 0 0px; height: auto; position: relative; transform: perspective(1200px); white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Rh5Nj .framer-1v204hd, .framer-Rh5Nj .framer-d0h7wl, .framer-Rh5Nj .framer-eeagal, .framer-Rh5Nj .framer-1nz114y { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-Rh5Nj .framer-1nu1dru-container, .framer-Rh5Nj .framer-wi9qhi-container, .framer-Rh5Nj .framer-ucmeiq-container, .framer-Rh5Nj .framer-1m7z08x-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Rh5Nj .framer-2xw2sc { aspect-ratio: 4.113345521023766 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 220px); overflow: visible; position: relative; transform: perspective(1200px); width: 904px; }\",\".framer-Rh5Nj .framer-11ik05v { aspect-ratio: 2.1256830601092895 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 425px); overflow: visible; position: relative; transform: perspective(1200px); width: 903px; }\",\".framer-Rh5Nj .framer-j9tudv { aspect-ratio: 1.6114327062228655 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 561px); overflow: visible; position: relative; transform: perspective(1200px); width: 903px; }\",\".framer-Rh5Nj .framer-fah32u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Rh5Nj .framer-1ox00o7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Rh5Nj .framer-1ppmo2m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Rh5Nj .framer-76wmu8-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-Rh5Nj .framer-1gk1jxa-container { flex: none; height: 44px; position: relative; width: 100%; }\",\".framer-Rh5Nj .framer-wr64gg-container { flex: none; height: auto; position: relative; width: 904px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Rh5Nj.framer-19mf1oa, .framer-Rh5Nj .framer-1y5pkrn, .framer-Rh5Nj .framer-p987vz, .framer-Rh5Nj .framer-zpoizn, .framer-Rh5Nj .framer-jway4u, .framer-Rh5Nj .framer-r3p87r, .framer-Rh5Nj .framer-vlljvo, .framer-Rh5Nj .framer-1hl27vx, .framer-Rh5Nj .framer-1uawf3f, .framer-Rh5Nj .framer-w6rarm, .framer-Rh5Nj .framer-jv0zqo, .framer-Rh5Nj .framer-1296zqs, .framer-Rh5Nj .framer-1v204hd, .framer-Rh5Nj .framer-1us4vgw, .framer-Rh5Nj .framer-d0h7wl, .framer-Rh5Nj .framer-lty3js, .framer-Rh5Nj .framer-eeagal, .framer-Rh5Nj .framer-hlmb2n, .framer-Rh5Nj .framer-1nz114y, .framer-Rh5Nj .framer-jis15y, .framer-Rh5Nj .framer-fah32u, .framer-Rh5Nj .framer-1ppmo2m { gap: 0px; } .framer-Rh5Nj.framer-19mf1oa > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Rh5Nj.framer-19mf1oa > :first-child, .framer-Rh5Nj .framer-1y5pkrn > :first-child, .framer-Rh5Nj .framer-1hl27vx > :first-child, .framer-Rh5Nj .framer-w6rarm > :first-child, .framer-Rh5Nj .framer-jv0zqo > :first-child, .framer-Rh5Nj .framer-1296zqs > :first-child, .framer-Rh5Nj .framer-1us4vgw > :first-child, .framer-Rh5Nj .framer-lty3js > :first-child, .framer-Rh5Nj .framer-hlmb2n > :first-child, .framer-Rh5Nj .framer-jis15y > :first-child, .framer-Rh5Nj .framer-1ppmo2m > :first-child { margin-left: 0px; } .framer-Rh5Nj.framer-19mf1oa > :last-child, .framer-Rh5Nj .framer-1y5pkrn > :last-child, .framer-Rh5Nj .framer-1hl27vx > :last-child, .framer-Rh5Nj .framer-w6rarm > :last-child, .framer-Rh5Nj .framer-jv0zqo > :last-child, .framer-Rh5Nj .framer-1296zqs > :last-child, .framer-Rh5Nj .framer-1us4vgw > :last-child, .framer-Rh5Nj .framer-lty3js > :last-child, .framer-Rh5Nj .framer-hlmb2n > :last-child, .framer-Rh5Nj .framer-jis15y > :last-child, .framer-Rh5Nj .framer-1ppmo2m > :last-child { margin-right: 0px; } .framer-Rh5Nj .framer-1y5pkrn > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Rh5Nj .framer-p987vz > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-Rh5Nj .framer-p987vz > :first-child, .framer-Rh5Nj .framer-zpoizn > :first-child, .framer-Rh5Nj .framer-jway4u > :first-child, .framer-Rh5Nj .framer-r3p87r > :first-child, .framer-Rh5Nj .framer-vlljvo > :first-child, .framer-Rh5Nj .framer-1uawf3f > :first-child, .framer-Rh5Nj .framer-1v204hd > :first-child, .framer-Rh5Nj .framer-d0h7wl > :first-child, .framer-Rh5Nj .framer-eeagal > :first-child, .framer-Rh5Nj .framer-1nz114y > :first-child, .framer-Rh5Nj .framer-fah32u > :first-child { margin-top: 0px; } .framer-Rh5Nj .framer-p987vz > :last-child, .framer-Rh5Nj .framer-zpoizn > :last-child, .framer-Rh5Nj .framer-jway4u > :last-child, .framer-Rh5Nj .framer-r3p87r > :last-child, .framer-Rh5Nj .framer-vlljvo > :last-child, .framer-Rh5Nj .framer-1uawf3f > :last-child, .framer-Rh5Nj .framer-1v204hd > :last-child, .framer-Rh5Nj .framer-d0h7wl > :last-child, .framer-Rh5Nj .framer-eeagal > :last-child, .framer-Rh5Nj .framer-1nz114y > :last-child, .framer-Rh5Nj .framer-fah32u > :last-child { margin-bottom: 0px; } .framer-Rh5Nj .framer-zpoizn > *, .framer-Rh5Nj .framer-jway4u > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-Rh5Nj .framer-r3p87r > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Rh5Nj .framer-vlljvo > *, .framer-Rh5Nj .framer-fah32u > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Rh5Nj .framer-1hl27vx > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-Rh5Nj .framer-1uawf3f > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Rh5Nj .framer-w6rarm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Rh5Nj .framer-jv0zqo > *, .framer-Rh5Nj .framer-1296zqs > *, .framer-Rh5Nj .framer-1us4vgw > *, .framer-Rh5Nj .framer-lty3js > *, .framer-Rh5Nj .framer-hlmb2n > *, .framer-Rh5Nj .framer-jis15y > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Rh5Nj .framer-1v204hd > *, .framer-Rh5Nj .framer-d0h7wl > *, .framer-Rh5Nj .framer-eeagal > *, .framer-Rh5Nj .framer-1nz114y > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Rh5Nj .framer-1ppmo2m > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } }\",\"@media (min-width: 1440px) { .framer-Rh5Nj .hidden-19mf1oa { display: none !important; } }\",`@media (min-width: 1270px) and (max-width: 1439px) { .framer-Rh5Nj .hidden-197hjxw { display: none !important; } .${metadata.bodyClassName}-framer-Rh5Nj { background: var(--token-ca8dab25-69cf-4f66-a4ef-ac5032f3bf9c, rgb(0, 0, 0)); } .framer-Rh5Nj.framer-19mf1oa { width: 1270px; } .framer-Rh5Nj .framer-i61yoh-container { width: auto; } .framer-Rh5Nj .framer-1y5pkrn { padding: 8px 8px 8px 88px; } .framer-Rh5Nj .framer-jway4u { order: 0; } .framer-Rh5Nj .framer-1sawp1x, .framer-Rh5Nj .framer-1n6hyhb { transform: unset; } .framer-Rh5Nj .framer-w6rarm { order: 1; } .framer-Rh5Nj .framer-jv0zqo { order: 2; } .framer-Rh5Nj .framer-js5nmw-container { order: 3; } .framer-Rh5Nj .framer-1296zqs { order: 4; } .framer-Rh5Nj .framer-1us4vgw { order: 5; } .framer-Rh5Nj .framer-2xw2sc { order: 6; } .framer-Rh5Nj .framer-lty3js { order: 7; } .framer-Rh5Nj .framer-11ik05v { order: 8; } .framer-Rh5Nj .framer-hlmb2n { order: 9; } .framer-Rh5Nj .framer-j9tudv { order: 10; } .framer-Rh5Nj .framer-kj0jmo-container { order: 11; } .framer-Rh5Nj .framer-jis15y { order: 12; } .framer-Rh5Nj .framer-1s9o49f-container { order: 13; } .framer-Rh5Nj .framer-fah32u { order: 14; }}`,`@media (min-width: 1024px) and (max-width: 1269px) { .framer-Rh5Nj .hidden-17n94dp { display: none !important; } .${metadata.bodyClassName}-framer-Rh5Nj { background: var(--token-ca8dab25-69cf-4f66-a4ef-ac5032f3bf9c, rgb(0, 0, 0)); } .framer-Rh5Nj.framer-19mf1oa { width: 1024px; } .framer-Rh5Nj .framer-i61yoh-container { width: auto; } .framer-Rh5Nj .framer-1y5pkrn { padding: 8px 8px 8px 88px; } .framer-Rh5Nj .framer-zpoizn { width: 720px; } .framer-Rh5Nj .framer-1sawp1x, .framer-Rh5Nj .framer-1n6hyhb { transform: unset; } .framer-Rh5Nj .framer-w6rarm, .framer-Rh5Nj .framer-1nc0z10, .framer-Rh5Nj .framer-1o40cl5, .framer-Rh5Nj .framer-1h6gled, .framer-Rh5Nj .framer-wr64gg-container { width: 100%; } .framer-Rh5Nj .framer-k4p7s1-container { flex: 1 0 0px; height: 476px; width: 1px; } .framer-Rh5Nj .framer-jv0zqo { flex-direction: column; gap: 24px; } .framer-Rh5Nj .framer-3bszgn, .framer-Rh5Nj .framer-1v204hd, .framer-Rh5Nj .framer-d0h7wl, .framer-Rh5Nj .framer-eeagal, .framer-Rh5Nj .framer-1nz114y, .framer-Rh5Nj .framer-4bh77e { flex: none; width: 100%; } .framer-Rh5Nj .framer-1296zqs, .framer-Rh5Nj .framer-1us4vgw, .framer-Rh5Nj .framer-lty3js, .framer-Rh5Nj .framer-hlmb2n, .framer-Rh5Nj .framer-jis15y { flex-direction: column; } .framer-Rh5Nj .framer-2xw2sc { height: var(--framer-aspect-ratio-supported, 175px); width: 100%; } .framer-Rh5Nj .framer-11ik05v { height: var(--framer-aspect-ratio-supported, 339px); width: 100%; } .framer-Rh5Nj .framer-j9tudv { height: var(--framer-aspect-ratio-supported, 447px); width: 100%; } .framer-Rh5Nj .framer-16y4ecb-container { flex: 1 0 0px; width: 1px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Rh5Nj .framer-jv0zqo, .framer-Rh5Nj .framer-1296zqs, .framer-Rh5Nj .framer-1us4vgw, .framer-Rh5Nj .framer-lty3js, .framer-Rh5Nj .framer-hlmb2n, .framer-Rh5Nj .framer-jis15y { gap: 0px; } .framer-Rh5Nj .framer-jv0zqo > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Rh5Nj .framer-jv0zqo > :first-child, .framer-Rh5Nj .framer-1296zqs > :first-child, .framer-Rh5Nj .framer-1us4vgw > :first-child, .framer-Rh5Nj .framer-lty3js > :first-child, .framer-Rh5Nj .framer-hlmb2n > :first-child, .framer-Rh5Nj .framer-jis15y > :first-child { margin-top: 0px; } .framer-Rh5Nj .framer-jv0zqo > :last-child, .framer-Rh5Nj .framer-1296zqs > :last-child, .framer-Rh5Nj .framer-1us4vgw > :last-child, .framer-Rh5Nj .framer-lty3js > :last-child, .framer-Rh5Nj .framer-hlmb2n > :last-child, .framer-Rh5Nj .framer-jis15y > :last-child { margin-bottom: 0px; } .framer-Rh5Nj .framer-1296zqs > *, .framer-Rh5Nj .framer-1us4vgw > *, .framer-Rh5Nj .framer-lty3js > *, .framer-Rh5Nj .framer-hlmb2n > *, .framer-Rh5Nj .framer-jis15y > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}`,`@media (min-width: 876px) and (max-width: 1023px) { .framer-Rh5Nj .hidden-1h4ydmc { display: none !important; } .${metadata.bodyClassName}-framer-Rh5Nj { background: var(--token-ca8dab25-69cf-4f66-a4ef-ac5032f3bf9c, rgb(0, 0, 0)); } .framer-Rh5Nj.framer-19mf1oa { width: 876px; } .framer-Rh5Nj .framer-i61yoh-container { width: auto; } .framer-Rh5Nj .framer-1y5pkrn { padding: 8px 8px 8px 88px; } .framer-Rh5Nj .framer-zpoizn { width: 600px; } .framer-Rh5Nj .framer-1sawp1x, .framer-Rh5Nj .framer-1n6hyhb { transform: unset; } .framer-Rh5Nj .framer-w6rarm { height: min-content; width: 100%; } .framer-Rh5Nj .framer-k4p7s1-container { height: 374px; width: 591px; } .framer-Rh5Nj .framer-jv0zqo, .framer-Rh5Nj .framer-1296zqs, .framer-Rh5Nj .framer-1us4vgw, .framer-Rh5Nj .framer-lty3js, .framer-Rh5Nj .framer-hlmb2n, .framer-Rh5Nj .framer-jis15y { flex-direction: column; } .framer-Rh5Nj .framer-1nc0z10, .framer-Rh5Nj .framer-1o40cl5, .framer-Rh5Nj .framer-1ruufwk, .framer-Rh5Nj .framer-1h6gled, .framer-Rh5Nj .framer-16y4ecb-container, .framer-Rh5Nj .framer-wr64gg-container { width: 100%; } .framer-Rh5Nj .framer-3bszgn, .framer-Rh5Nj .framer-1v204hd, .framer-Rh5Nj .framer-d0h7wl, .framer-Rh5Nj .framer-eeagal, .framer-Rh5Nj .framer-1nz114y, .framer-Rh5Nj .framer-4bh77e, .framer-Rh5Nj .framer-76wmu8-container { flex: none; width: 100%; } .framer-Rh5Nj .framer-2xw2sc { height: var(--framer-aspect-ratio-supported, 146px); width: 100%; } .framer-Rh5Nj .framer-11ik05v { height: var(--framer-aspect-ratio-supported, 282px); width: 100%; } .framer-Rh5Nj .framer-j9tudv { height: var(--framer-aspect-ratio-supported, 373px); width: 100%; } .framer-Rh5Nj .framer-1ppmo2m { flex-direction: column; gap: 48px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Rh5Nj .framer-jv0zqo, .framer-Rh5Nj .framer-1296zqs, .framer-Rh5Nj .framer-1us4vgw, .framer-Rh5Nj .framer-lty3js, .framer-Rh5Nj .framer-hlmb2n, .framer-Rh5Nj .framer-jis15y, .framer-Rh5Nj .framer-1ppmo2m { gap: 0px; } .framer-Rh5Nj .framer-jv0zqo > *, .framer-Rh5Nj .framer-1296zqs > *, .framer-Rh5Nj .framer-1us4vgw > *, .framer-Rh5Nj .framer-lty3js > *, .framer-Rh5Nj .framer-hlmb2n > *, .framer-Rh5Nj .framer-jis15y > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Rh5Nj .framer-jv0zqo > :first-child, .framer-Rh5Nj .framer-1296zqs > :first-child, .framer-Rh5Nj .framer-1us4vgw > :first-child, .framer-Rh5Nj .framer-lty3js > :first-child, .framer-Rh5Nj .framer-hlmb2n > :first-child, .framer-Rh5Nj .framer-jis15y > :first-child, .framer-Rh5Nj .framer-1ppmo2m > :first-child { margin-top: 0px; } .framer-Rh5Nj .framer-jv0zqo > :last-child, .framer-Rh5Nj .framer-1296zqs > :last-child, .framer-Rh5Nj .framer-1us4vgw > :last-child, .framer-Rh5Nj .framer-lty3js > :last-child, .framer-Rh5Nj .framer-hlmb2n > :last-child, .framer-Rh5Nj .framer-jis15y > :last-child, .framer-Rh5Nj .framer-1ppmo2m > :last-child { margin-bottom: 0px; } .framer-Rh5Nj .framer-1ppmo2m > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }}`,`@media (min-width: 400px) and (max-width: 875px) { .framer-Rh5Nj .hidden-1mvv4sl { display: none !important; } .${metadata.bodyClassName}-framer-Rh5Nj { background: var(--token-ca8dab25-69cf-4f66-a4ef-ac5032f3bf9c, rgb(0, 0, 0)); } .framer-Rh5Nj.framer-19mf1oa { flex-direction: column; width: 400px; } .framer-Rh5Nj .framer-i61yoh-container { height: auto; left: unset; position: sticky; width: 100%; will-change: transform; } .framer-Rh5Nj .framer-1y5pkrn { align-self: unset; flex: none; height: min-content; padding: 8px 8px 8px 8px; width: 100%; } .framer-Rh5Nj .framer-p987vz { gap: 80px; height: min-content; padding: 24px 24px 64px 24px; } .framer-Rh5Nj .framer-zpoizn, .framer-Rh5Nj .framer-1nc0z10, .framer-Rh5Nj .framer-1ruufwk, .framer-Rh5Nj .framer-1h6gled, .framer-Rh5Nj .framer-16y4ecb-container, .framer-Rh5Nj .framer-wr64gg-container { width: 100%; } .framer-Rh5Nj .framer-17cbp5u-container { order: 0; } .framer-Rh5Nj .framer-10cvz4m-container { order: 1; } .framer-Rh5Nj .framer-1t51ll2-container { order: 3; } .framer-Rh5Nj .framer-1sawp1x, .framer-Rh5Nj .framer-1n6hyhb { transform: unset; } .framer-Rh5Nj .framer-w6rarm { height: min-content; overflow: visible; width: 100%; } .framer-Rh5Nj .framer-k4p7s1-container { height: 750px; width: 1185px; } .framer-Rh5Nj .framer-jv0zqo, .framer-Rh5Nj .framer-1296zqs, .framer-Rh5Nj .framer-1us4vgw, .framer-Rh5Nj .framer-lty3js, .framer-Rh5Nj .framer-hlmb2n, .framer-Rh5Nj .framer-jis15y { flex-direction: column; gap: 24px; } .framer-Rh5Nj .framer-3bszgn, .framer-Rh5Nj .framer-1v204hd, .framer-Rh5Nj .framer-d0h7wl, .framer-Rh5Nj .framer-eeagal, .framer-Rh5Nj .framer-1nz114y, .framer-Rh5Nj .framer-4bh77e, .framer-Rh5Nj .framer-76wmu8-container { flex: none; width: 100%; } .framer-Rh5Nj .framer-2xw2sc { height: var(--framer-aspect-ratio-supported, 82px); width: 100%; } .framer-Rh5Nj .framer-11ik05v { height: var(--framer-aspect-ratio-supported, 158px); width: 100%; } .framer-Rh5Nj .framer-j9tudv { height: var(--framer-aspect-ratio-supported, 209px); width: 100%; } .framer-Rh5Nj .framer-1ppmo2m { flex-direction: column; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Rh5Nj.framer-19mf1oa, .framer-Rh5Nj .framer-p987vz, .framer-Rh5Nj .framer-jv0zqo, .framer-Rh5Nj .framer-1296zqs, .framer-Rh5Nj .framer-1us4vgw, .framer-Rh5Nj .framer-lty3js, .framer-Rh5Nj .framer-hlmb2n, .framer-Rh5Nj .framer-jis15y, .framer-Rh5Nj .framer-1ppmo2m { gap: 0px; } .framer-Rh5Nj.framer-19mf1oa > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Rh5Nj.framer-19mf1oa > :first-child, .framer-Rh5Nj .framer-p987vz > :first-child, .framer-Rh5Nj .framer-jv0zqo > :first-child, .framer-Rh5Nj .framer-1296zqs > :first-child, .framer-Rh5Nj .framer-1us4vgw > :first-child, .framer-Rh5Nj .framer-lty3js > :first-child, .framer-Rh5Nj .framer-hlmb2n > :first-child, .framer-Rh5Nj .framer-jis15y > :first-child, .framer-Rh5Nj .framer-1ppmo2m > :first-child { margin-top: 0px; } .framer-Rh5Nj.framer-19mf1oa > :last-child, .framer-Rh5Nj .framer-p987vz > :last-child, .framer-Rh5Nj .framer-jv0zqo > :last-child, .framer-Rh5Nj .framer-1296zqs > :last-child, .framer-Rh5Nj .framer-1us4vgw > :last-child, .framer-Rh5Nj .framer-lty3js > :last-child, .framer-Rh5Nj .framer-hlmb2n > :last-child, .framer-Rh5Nj .framer-jis15y > :last-child, .framer-Rh5Nj .framer-1ppmo2m > :last-child { margin-bottom: 0px; } .framer-Rh5Nj .framer-p987vz > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-Rh5Nj .framer-jv0zqo > *, .framer-Rh5Nj .framer-1296zqs > *, .framer-Rh5Nj .framer-1us4vgw > *, .framer-Rh5Nj .framer-lty3js > *, .framer-Rh5Nj .framer-hlmb2n > *, .framer-Rh5Nj .framer-jis15y > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Rh5Nj .framer-1ppmo2m > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}`,`@media (max-width: 399px) { .framer-Rh5Nj .hidden-8lcwib { display: none !important; } .${metadata.bodyClassName}-framer-Rh5Nj { background: var(--token-ca8dab25-69cf-4f66-a4ef-ac5032f3bf9c, rgb(0, 0, 0)); } .framer-Rh5Nj.framer-19mf1oa { flex-direction: column; width: 390px; } .framer-Rh5Nj .framer-i61yoh-container { height: auto; left: unset; position: sticky; width: 100%; will-change: transform; } .framer-Rh5Nj .framer-1y5pkrn { align-self: unset; flex: none; flex-direction: column; height: min-content; padding: 8px 8px 8px 8px; width: 100%; } .framer-Rh5Nj .framer-p987vz { flex: none; gap: 80px; height: min-content; padding: 24px 24px 64px 24px; width: 100%; } .framer-Rh5Nj .framer-zpoizn, .framer-Rh5Nj .framer-1h6gled, .framer-Rh5Nj .framer-16y4ecb-container, .framer-Rh5Nj .framer-wr64gg-container { width: 100%; } .framer-Rh5Nj .framer-jway4u { order: 0; } .framer-Rh5Nj .framer-1sawp1x, .framer-Rh5Nj .framer-1n6hyhb, .framer-Rh5Nj .framer-1o40cl5 { transform: unset; } .framer-Rh5Nj .framer-w6rarm { height: min-content; order: 1; overflow: visible; width: 100%; } .framer-Rh5Nj .framer-k4p7s1-container { height: 745px; width: 1176px; } .framer-Rh5Nj .framer-jv0zqo { flex-direction: column; gap: 24px; order: 2; } .framer-Rh5Nj .framer-1nc0z10, .framer-Rh5Nj .framer-1ruufwk { transform: unset; width: 100%; } .framer-Rh5Nj .framer-3bszgn { flex: none; transform: unset; width: 100%; } .framer-Rh5Nj .framer-js5nmw-container { order: 3; } .framer-Rh5Nj .framer-1296zqs { flex-direction: column; gap: 24px; order: 4; } .framer-Rh5Nj .framer-1v204hd, .framer-Rh5Nj .framer-d0h7wl, .framer-Rh5Nj .framer-eeagal, .framer-Rh5Nj .framer-1nz114y, .framer-Rh5Nj .framer-4bh77e, .framer-Rh5Nj .framer-76wmu8-container { flex: none; width: 100%; } .framer-Rh5Nj .framer-1us4vgw { flex-direction: column; gap: 24px; order: 5; } .framer-Rh5Nj .framer-2xw2sc { height: var(--framer-aspect-ratio-supported, 79px); order: 6; width: 100%; } .framer-Rh5Nj .framer-lty3js { flex-direction: column; gap: 24px; order: 7; } .framer-Rh5Nj .framer-11ik05v { height: var(--framer-aspect-ratio-supported, 154px); order: 8; width: 100%; } .framer-Rh5Nj .framer-hlmb2n { flex-direction: column; gap: 24px; order: 9; } .framer-Rh5Nj .framer-j9tudv { height: var(--framer-aspect-ratio-supported, 203px); order: 10; width: 100%; } .framer-Rh5Nj .framer-kj0jmo-container { order: 11; } .framer-Rh5Nj .framer-jis15y { flex-direction: column; gap: 24px; order: 12; } .framer-Rh5Nj .framer-1s9o49f-container { order: 13; } .framer-Rh5Nj .framer-fah32u { order: 14; } .framer-Rh5Nj .framer-1ppmo2m { flex-direction: column; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Rh5Nj.framer-19mf1oa, .framer-Rh5Nj .framer-1y5pkrn, .framer-Rh5Nj .framer-p987vz, .framer-Rh5Nj .framer-jv0zqo, .framer-Rh5Nj .framer-1296zqs, .framer-Rh5Nj .framer-1us4vgw, .framer-Rh5Nj .framer-lty3js, .framer-Rh5Nj .framer-hlmb2n, .framer-Rh5Nj .framer-jis15y, .framer-Rh5Nj .framer-1ppmo2m { gap: 0px; } .framer-Rh5Nj.framer-19mf1oa > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Rh5Nj.framer-19mf1oa > :first-child, .framer-Rh5Nj .framer-1y5pkrn > :first-child, .framer-Rh5Nj .framer-p987vz > :first-child, .framer-Rh5Nj .framer-jv0zqo > :first-child, .framer-Rh5Nj .framer-1296zqs > :first-child, .framer-Rh5Nj .framer-1us4vgw > :first-child, .framer-Rh5Nj .framer-lty3js > :first-child, .framer-Rh5Nj .framer-hlmb2n > :first-child, .framer-Rh5Nj .framer-jis15y > :first-child, .framer-Rh5Nj .framer-1ppmo2m > :first-child { margin-top: 0px; } .framer-Rh5Nj.framer-19mf1oa > :last-child, .framer-Rh5Nj .framer-1y5pkrn > :last-child, .framer-Rh5Nj .framer-p987vz > :last-child, .framer-Rh5Nj .framer-jv0zqo > :last-child, .framer-Rh5Nj .framer-1296zqs > :last-child, .framer-Rh5Nj .framer-1us4vgw > :last-child, .framer-Rh5Nj .framer-lty3js > :last-child, .framer-Rh5Nj .framer-hlmb2n > :last-child, .framer-Rh5Nj .framer-jis15y > :last-child, .framer-Rh5Nj .framer-1ppmo2m > :last-child { margin-bottom: 0px; } .framer-Rh5Nj .framer-1y5pkrn > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Rh5Nj .framer-p987vz > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-Rh5Nj .framer-jv0zqo > *, .framer-Rh5Nj .framer-1296zqs > *, .framer-Rh5Nj .framer-1us4vgw > *, .framer-Rh5Nj .framer-lty3js > *, .framer-Rh5Nj .framer-hlmb2n > *, .framer-Rh5Nj .framer-jis15y > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Rh5Nj .framer-1ppmo2m > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5382.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"uL96_VzB9\":{\"layout\":[\"fixed\",\"auto\"]},\"lPgmsXPtH\":{\"layout\":[\"fixed\",\"auto\"]},\"uca19y2rz\":{\"layout\":[\"fixed\",\"auto\"]},\"kkzxQcAbG\":{\"layout\":[\"fixed\",\"auto\"]},\"F71VbumLk\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerVcfybX3Bk=withCSS(Component,css,\"framer-Rh5Nj\");export default FramerVcfybX3Bk;FramerVcfybX3Bk.displayName=\"Projects / Tetrisly 2\";FramerVcfybX3Bk.defaultProps={height:5382.5,width:1440};addFonts(FramerVcfybX3Bk,[...NavFonts,...ButtonFonts,...DividerFonts,...BadgeFonts,...VideoFonts,...OrderedListItemFonts,...CardProjectFonts,...FooterFonts,...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVcfybX3Bk\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uL96_VzB9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lPgmsXPtH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uca19y2rz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kkzxQcAbG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"F71VbumLk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"5382.5\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "NavFonts", "getFonts", "inhqe8Dyw_default", "ButtonFonts", "eSQq9SAQu_default", "DividerFonts", "yj2co60IY_default", "BadgeFonts", "Al_9iqWli_default", "VideoFonts", "Video", "MotionDivWithFX", "withFX", "motion", "ContainerWithFX", "Container", "OrderedListItemFonts", "M4mVJ23zQ_default", "ImageWithFX", "Image2", "CardProjectFonts", "t52JiVrjP_default", "FooterFonts", "oiok0Y_KQ_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transitions", "transformTemplate1", "_", "t", "animation", "transition1", "transition2", "animation1", "animation2", "addImageAlt", "image", "alt", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "fe", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "ref1", "pe", "isDisplayed", "isDisplayed1", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "inhqe8Dyw_default", "eSQq9SAQu_default", "yj2co60IY_default", "Al_9iqWli_default", "RichText2", "x", "MotionDivWithFX", "Video", "ContainerWithFX", "M4mVJ23zQ_default", "ImageWithFX", "ResolveLinks", "resolvedLinks", "t52JiVrjP_default", "resolvedLinks1", "resolvedLinks2", "oiok0Y_KQ_default", "css", "FramerVcfybX3Bk", "withCSS", "VcfybX3Bk_default", "addFonts", "NavFonts", "ButtonFonts", "DividerFonts", "BadgeFonts", "VideoFonts", "OrderedListItemFonts", "CardProjectFonts", "FooterFonts", "fonts", "__FramerMetadata__"]
}
