{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/6XyJUdv2JSj1lruAko9A/U84ph8m1uQ30HO50y4eT/componentPresets.js", "ssg:https://framerusercontent.com/modules/GDRwAE1yc4qtVTAYa2Hh/kyRqqmQLpYpXPN4UGHfz/AjrgBX3v2.js", "ssg:https://framerusercontent.com/modules/hzh19QjM4Dh4oudQAbxH/dACBSoc2tu80dj23W3Uv/lnE4jLrtm.js", "ssg:https://framerusercontent.com/modules/FmAL2WMbDY10w7AhbaBU/EAxg9K0yVmBKnKb2hqgC/okCSYTwLx.js", "ssg:https://framerusercontent.com/modules/JV916wkdClL5WbrMa4bI/le62NEzQUYiMg66xpKeG/qP6Q04S2C.js", "ssg:https://framerusercontent.com/modules/bpdobFp0xEJA6sRech9o/9zHK0WykIZ3ftk6Mh0XC/Srke3SaxI.js", "ssg:https://framerusercontent.com/modules/7LnztXBG6CqCWFc0lEt9/HMgoZ8aYG4aRIyC4ukNK/W1DQLyMro.js", "ssg:https://framerusercontent.com/modules/lQSL6MQxlA2hP5tiKTou/7vJiEIrixZ6wBk5LYfkV/DSfeYYrh3.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (ee31e22)\nexport const props={VoxP3FW1X:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,darkTheme:\"framerDark\",font:{fontFamily:'\"Fragment Mono\", monospace',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},isMixedBorderRadius:false,lightTheme:\"framerLight\",padding:30,paddingBottom:30,paddingLeft:30,paddingPerSide:false,paddingRight:30,paddingTop:30,theme:\"framerDark\",themeMode:\"Static\",topLeftRadius:15,topRightRadius:15}};export const fonts={VoxP3FW1X:[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}]};\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"props\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c07a8c1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Instrument Sans-600\",\"GF;Instrument Sans-700\",\"GF;Instrument Sans-700italic\",\"GF;Instrument Sans-600italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Instrument Sans\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQb_gfwmS0v3_7Y.woff2\",weight:\"600\"},{family:\"Instrument Sans\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQi_gfwmS0v3_7Y.woff2\",weight:\"700\"},{family:\"Instrument Sans\",openType:true,source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENugixkywN2u7YUwU.woff2\",weight:\"700\"},{family:\"Instrument Sans\",openType:true,source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENujGxkywN2u7YUwU.woff2\",weight:\"600\"}]}];export const css=['.framer-nuyCL .framer-styles-preset-cvwd49:not(.rich-text-wrapper), .framer-nuyCL .framer-styles-preset-cvwd49.rich-text-wrapper p { --framer-font-family: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 810px) { .framer-nuyCL .framer-styles-preset-cvwd49:not(.rich-text-wrapper), .framer-nuyCL .framer-styles-preset-cvwd49.rich-text-wrapper p { --framer-font-family: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 577px) { .framer-nuyCL .framer-styles-preset-cvwd49:not(.rich-text-wrapper), .framer-nuyCL .framer-styles-preset-cvwd49.rich-text-wrapper p { --framer-font-family: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 576px) and (min-width: 0px) { .framer-nuyCL .framer-styles-preset-cvwd49:not(.rich-text-wrapper), .framer-nuyCL .framer-styles-preset-cvwd49.rich-text-wrapper p { --framer-font-family: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-nuyCL\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c07a8c1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"BI;Hershey-Noailles-Times/Noailles-Times-Duplex-Italic-Bold/v0\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Hershey-Noailles-Times\",source:\"builtIn\",style:\"italic\",url:\"https://framerusercontent.com/assets/MKWOFV2zxgl2FasPqC4wgSYMlY.woff\"}]}];export const css=[\".framer-hAYfP .framer-styles-preset-q0dv5z:not(.rich-text-wrapper), .framer-hAYfP .framer-styles-preset-q0dv5z.rich-text-wrapper h1 { --framer-font-family: \\\"Hershey-Noailles-Times\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 26px; --framer-font-style: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\",\"@media (max-width: 1439px) and (min-width: 810px) { .framer-hAYfP .framer-styles-preset-q0dv5z:not(.rich-text-wrapper), .framer-hAYfP .framer-styles-preset-q0dv5z.rich-text-wrapper h1 { --framer-font-family: \\\"Hershey-Noailles-Times\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 45px; --framer-font-style: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\",\"@media (max-width: 809px) and (min-width: 577px) { .framer-hAYfP .framer-styles-preset-q0dv5z:not(.rich-text-wrapper), .framer-hAYfP .framer-styles-preset-q0dv5z.rich-text-wrapper h1 { --framer-font-family: \\\"Hershey-Noailles-Times\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 36px; --framer-font-style: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\",\"@media (max-width: 576px) and (min-width: 0px) { .framer-hAYfP .framer-styles-preset-q0dv5z:not(.rich-text-wrapper), .framer-hAYfP .framer-styles-preset-q0dv5z.rich-text-wrapper h1 { --framer-font-family: \\\"Hershey-Noailles-Times\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 29px; --framer-font-style: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\"];export const className=\"framer-hAYfP\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3d3d426)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Instrument Sans-700\",\"GF;Instrument Sans-700italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Instrument Sans\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQi_gfwmS0v3_7Y.woff2\",weight:\"700\"},{family:\"Instrument Sans\",openType:true,source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENugixkywN2u7YUwU.woff2\",weight:\"700\"}]}];export const css=[\".framer-wrOfn .framer-styles-preset-wp1tnf:not(.rich-text-wrapper), .framer-wrOfn .framer-styles-preset-wp1tnf.rich-text-wrapper h3 { --framer-font-family: \\\"Instrument Sans\\\", \\\"Instrument Sans Placeholder\\\", sans-serif; --framer-font-family-italic: \\\"Instrument Sans\\\", \\\"Instrument Sans Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 30px; --framer-font-style: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.02em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\",\"@media (max-width: 1439px) and (min-width: 810px) { .framer-wrOfn .framer-styles-preset-wp1tnf:not(.rich-text-wrapper), .framer-wrOfn .framer-styles-preset-wp1tnf.rich-text-wrapper h3 { --framer-font-family: \\\"Instrument Sans\\\", \\\"Instrument Sans Placeholder\\\", sans-serif; --framer-font-family-italic: \\\"Instrument Sans\\\", \\\"Instrument Sans Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.02em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\",\"@media (max-width: 809px) and (min-width: 577px) { .framer-wrOfn .framer-styles-preset-wp1tnf:not(.rich-text-wrapper), .framer-wrOfn .framer-styles-preset-wp1tnf.rich-text-wrapper h3 { --framer-font-family: \\\"Instrument Sans\\\", \\\"Instrument Sans Placeholder\\\", sans-serif; --framer-font-family-italic: \\\"Instrument Sans\\\", \\\"Instrument Sans Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 19px; --framer-font-style: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.02em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\",\"@media (max-width: 576px) and (min-width: 0px) { .framer-wrOfn .framer-styles-preset-wp1tnf:not(.rich-text-wrapper), .framer-wrOfn .framer-styles-preset-wp1tnf.rich-text-wrapper h3 { --framer-font-family: \\\"Instrument Sans\\\", \\\"Instrument Sans Placeholder\\\", sans-serif; --framer-font-family-italic: \\\"Instrument Sans\\\", \\\"Instrument Sans Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 15px; --framer-font-style: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.02em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\"];export const className=\"framer-wrOfn\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c07a8c1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-j7mv3 .framer-styles-preset-131rzxy:not(.rich-text-wrapper), .framer-j7mv3 .framer-styles-preset-131rzxy.rich-text-wrapper a { --framer-link-current-text-color: #ffffff; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #d1d1d1; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #ffffff; --framer-link-text-decoration: none; }\"];export const className=\"framer-j7mv3\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c07a8c1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Instrument Sans-700\",\"GF;Instrument Sans-700italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Instrument Sans\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQi_gfwmS0v3_7Y.woff2\",weight:\"700\"},{family:\"Instrument Sans\",openType:true,source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENugixkywN2u7YUwU.woff2\",weight:\"700\"}]}];export const css=[\".framer-3LKg5 .framer-styles-preset-1ytpmwe:not(.rich-text-wrapper), .framer-3LKg5 .framer-styles-preset-1ytpmwe.rich-text-wrapper h5 { --framer-font-family: \\\"Instrument Sans\\\", \\\"Instrument Sans Placeholder\\\", sans-serif; --framer-font-family-italic: \\\"Instrument Sans\\\", \\\"Instrument Sans Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.01em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\",\"@media (max-width: 1439px) and (min-width: 810px) { .framer-3LKg5 .framer-styles-preset-1ytpmwe:not(.rich-text-wrapper), .framer-3LKg5 .framer-styles-preset-1ytpmwe.rich-text-wrapper h5 { --framer-font-family: \\\"Instrument Sans\\\", \\\"Instrument Sans Placeholder\\\", sans-serif; --framer-font-family-italic: \\\"Instrument Sans\\\", \\\"Instrument Sans Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.01em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\",\"@media (max-width: 809px) and (min-width: 577px) { .framer-3LKg5 .framer-styles-preset-1ytpmwe:not(.rich-text-wrapper), .framer-3LKg5 .framer-styles-preset-1ytpmwe.rich-text-wrapper h5 { --framer-font-family: \\\"Instrument Sans\\\", \\\"Instrument Sans Placeholder\\\", sans-serif; --framer-font-family-italic: \\\"Instrument Sans\\\", \\\"Instrument Sans Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.01em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\",\"@media (max-width: 576px) and (min-width: 0px) { .framer-3LKg5 .framer-styles-preset-1ytpmwe:not(.rich-text-wrapper), .framer-3LKg5 .framer-styles-preset-1ytpmwe.rich-text-wrapper h5 { --framer-font-family: \\\"Instrument Sans\\\", \\\"Instrument Sans Placeholder\\\", sans-serif; --framer-font-family-italic: \\\"Instrument Sans\\\", \\\"Instrument Sans Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.01em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\"];export const className=\"framer-3LKg5\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ee31e22)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Fragment Mono-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}];export const css=['.framer-KpxHp .framer-styles-preset-1pcjavt:not(.rich-text-wrapper), .framer-KpxHp .framer-styles-preset-1pcjavt.rich-text-wrapper code { --framer-code-font-family: \"Fragment Mono\", monospace; --framer-code-font-style: normal; --framer-code-font-weight: 400; --framer-code-text-color: #333; --framer-font-size-scale: 1; background-color: rgba(0, 0, 0, 0.1); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; padding-bottom: 0.1em; padding-left: 0.2em; padding-right: 0.2em; padding-top: 0.1em; }'];export const className=\"framer-KpxHp\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (20dc3ed)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PropertyOverrides,RichText,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Time as TimeDate}from\"https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/QiycTxX7vdblEOi3o00G/Time.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import Button from\"#framer/local/canvasComponent/GzjGcdBEj/GzjGcdBEj.js\";import AboutMenuOverlay from\"#framer/local/canvasComponent/lnXug2lPq/lnXug2lPq.js\";import CursorTest from\"#framer/local/canvasComponent/RSBQ0XCkS/RSBQ0XCkS.js\";import ContactButton from\"#framer/local/canvasComponent/U0jivrEf8/U0jivrEf8.js\";import Project from\"#framer/local/collection/DsAa7PgM6/DsAa7PgM6.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle2 from\"#framer/local/css/AjrgBX3v2/AjrgBX3v2.js\";import*as sharedStyle5 from\"#framer/local/css/ePGu4vuNB/ePGu4vuNB.js\";import*as sharedStyle3 from\"#framer/local/css/lnE4jLrtm/lnE4jLrtm.js\";import*as sharedStyle4 from\"#framer/local/css/okCSYTwLx/okCSYTwLx.js\";import*as sharedStyle7 from\"#framer/local/css/qP6Q04S2C/qP6Q04S2C.js\";import*as sharedStyle from\"#framer/local/css/quyeKL2bh/quyeKL2bh.js\";import*as sharedStyle6 from\"#framer/local/css/Srke3SaxI/Srke3SaxI.js\";import*as sharedStyle8 from\"#framer/local/css/W1DQLyMro/W1DQLyMro.js\";import*as sharedStyle1 from\"#framer/local/css/XDy2ziI7e/XDy2ziI7e.js\";import*as sharedStyle9 from\"#framer/local/css/Xhap55Gl7/Xhap55Gl7.js\";import metadataProvider from\"#framer/local/webPageMetadata/DSfeYYrh3/DSfeYYrh3.js\";const RichTextWithFX=withFX(RichText);const ImageWithFX=withFX(Image);const VideoFonts=getFonts(Video);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionDivWithFX=withFX(motion.div);const ButtonFonts=getFonts(Button);const AboutMenuOverlayFonts=getFonts(AboutMenuOverlay);const ContactButtonFonts=getFonts(ContactButton);const TimeDateFonts=getFonts(TimeDate);const CursorTestFonts=getFonts(CursorTest);const breakpoints={BbKw6e02S:\"(max-width: 809px)\",iHuwBbK7S:\"(min-width: 810px) and (max-width: 1439px)\",ISulr30Gt:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-BdlFw\";const variantClassNames={BbKw6e02S:\"framer-v-13mrr3n\",iHuwBbK7S:\"framer-v-xpshwb\",ISulr30Gt:\"framer-v-1sugix4\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition1={delay:.2,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const transition2={delay:.4,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition3={delay:.6,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={delay:.2,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const convertFromBoolean=(value,activeLocale,{nextItemId_xdF_TCShW})=>{if(value){return{pathVariables:{xdF_TCShW:nextItemId_xdF_TCShW},webPageId:\"DSfeYYrh3\"};}else{return{pathVariables:{xdF_TCShW:\"olaplex\"},unresolvedPathSlugs:{xdF_TCShW:{collectionId:\"DsAa7PgM6\",collectionItemId:\"aQfWLyU74\"}},webPageId:\"DSfeYYrh3\"};}};const negate=value=>{return!value;};const transition5={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-62};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transformTemplate3=(_,t)=>`translateY(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"ISulr30Gt\",Phone:\"BbKw6e02S\",Tablet:\"iHuwBbK7S\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ISulr30Gt\"};};const cursor={component:CursorTest,variant:\"DZ4wNlpDH\"};const cursor1={component:CursorTest,variant:\"i9fHeQXLC\"};const transition6={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const cursor2={component:CursorTest,transition:transition6,variant:\"i9fHeQXLC\"};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:{constraint:{left:{collection:\"DSfeYYrh3\",name:\"nextItemId\",type:\"Identifier\"},operator:\"==\",right:{collection:\"nextItemId\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"DSfeYYrh3\",data:Project,type:\"Collection\"},right:{alias:\"nextItemId\",data:Project,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"DSfeYYrh3\",name:\"FgnJ8e9yf\",type:\"Identifier\"},{collection:\"DSfeYYrh3\",name:\"ZNhMwW08B\",type:\"Identifier\"},{collection:\"DSfeYYrh3\",name:\"BFLCBrixc\",type:\"Identifier\"},{collection:\"DSfeYYrh3\",name:\"Hkj_NFgX8\",type:\"Identifier\"},{collection:\"DSfeYYrh3\",name:\"hJ623ZhTn\",type:\"Identifier\"},{collection:\"DSfeYYrh3\",name:\"t3g4lSjMe\",type:\"Identifier\"},{collection:\"DSfeYYrh3\",name:\"QjHOacoBA\",type:\"Identifier\"},{collection:\"DSfeYYrh3\",name:\"New1Lptl7\",type:\"Identifier\"},{collection:\"DSfeYYrh3\",name:\"PfDf5YFpe\",type:\"Identifier\"},{collection:\"DSfeYYrh3\",name:\"nydGFy9_n\",type:\"Identifier\"},{collection:\"DSfeYYrh3\",name:\"JDPYZ15QI\",type:\"Identifier\"},{collection:\"DSfeYYrh3\",name:\"s6TrcyhL1\",type:\"Identifier\"},{collection:\"DSfeYYrh3\",name:\"R5EAOUfYr\",type:\"Identifier\"},{collection:\"DSfeYYrh3\",name:\"tvpDkvS2q\",type:\"Identifier\"},{collection:\"DSfeYYrh3\",name:\"RIIGyb3hM\",type:\"Identifier\"},{collection:\"DSfeYYrh3\",name:\"v9qy9yKPU\",type:\"Identifier\"},{collection:\"DSfeYYrh3\",name:\"E2dF8isIV\",type:\"Identifier\"},{collection:\"DSfeYYrh3\",name:\"E1awu7ue3\",type:\"Identifier\"},{collection:\"DSfeYYrh3\",name:\"ZIRp7cZ9Q\",type:\"Identifier\"},{collection:\"DSfeYYrh3\",name:\"Rqlod5LU7\",type:\"Identifier\"},{collection:\"DSfeYYrh3\",name:\"C85pNTfDQ\",type:\"Identifier\"},{alias:\"nextItemId.FgnJ8e9yf\",collection:\"nextItemId\",name:\"FgnJ8e9yf\",type:\"Identifier\"},{alias:\"nextItemId.xdF_TCShW\",collection:\"nextItemId\",name:\"xdF_TCShW\",type:\"Identifier\"},{alias:\"nextItemId.ZNhMwW08B\",collection:\"nextItemId\",name:\"ZNhMwW08B\",type:\"Identifier\"},{alias:\"nextItemId\",collection:\"nextItemId\",name:\"id\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"DSfeYYrh3\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,FgnJ8e9yf=getFromCurrentRouteData(\"FgnJ8e9yf\")??\"\",Hkj_NFgX8=getFromCurrentRouteData(\"Hkj_NFgX8\")??\"\",ZNhMwW08B=getFromCurrentRouteData(\"ZNhMwW08B\"),BFLCBrixc=getFromCurrentRouteData(\"BFLCBrixc\"),t3g4lSjMe=getFromCurrentRouteData(\"t3g4lSjMe\")??\"\",hJ623ZhTn=getFromCurrentRouteData(\"hJ623ZhTn\")??\"\",QjHOacoBA=getFromCurrentRouteData(\"QjHOacoBA\")??\"\",New1Lptl7=getFromCurrentRouteData(\"New1Lptl7\")??\"\",PfDf5YFpe=getFromCurrentRouteData(\"PfDf5YFpe\"),nydGFy9_n=getFromCurrentRouteData(\"nydGFy9_n\"),s6TrcyhL1=getFromCurrentRouteData(\"s6TrcyhL1\"),JDPYZ15QI=getFromCurrentRouteData(\"JDPYZ15QI\")??[],Rbkm8stuwPTtpvBX9P,R5EAOUfYr=getFromCurrentRouteData(\"R5EAOUfYr\"),tvpDkvS2q=getFromCurrentRouteData(\"tvpDkvS2q\"),RIIGyb3hM=getFromCurrentRouteData(\"RIIGyb3hM\")??[],Rbkm8stuwP4BRgHRw_,v9qy9yKPU=getFromCurrentRouteData(\"v9qy9yKPU\"),E1awu7ue3=getFromCurrentRouteData(\"E1awu7ue3\"),E2dF8isIV=getFromCurrentRouteData(\"E2dF8isIV\"),ZIRp7cZ9Q=getFromCurrentRouteData(\"ZIRp7cZ9Q\"),Rqlod5LU7=getFromCurrentRouteData(\"Rqlod5LU7\"),C85pNTfDQ=getFromCurrentRouteData(\"C85pNTfDQ\"),nextItemId_FgnJ8e9yf=getFromCurrentRouteData(\"nextItemId.FgnJ8e9yf\")??\"\",nextItemId_ZNhMwW08B=getFromCurrentRouteData(\"nextItemId.ZNhMwW08B\"),nextItemId=getFromCurrentRouteData(\"nextItemId\"),nextItemId_xdF_TCShW=getFromCurrentRouteData(\"nextItemId.xdF_TCShW\")??\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const VTWvCsFGR3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=isSet(ZNhMwW08B);const visible1=isSet(BFLCBrixc);const isDisplayed=()=>{if(!isBrowser())return true;if([\"BbKw6e02S\",\"iHuwBbK7S\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"BbKw6e02S\",\"iHuwBbK7S\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"iHuwBbK7S\")return false;return true;};const visible2=isSet(PfDf5YFpe);const visible3=isSet(nydGFy9_n);const visible4=isSet(s6TrcyhL1);const visible5=isSet(JDPYZ15QI);const visible6=isSet(R5EAOUfYr);const visible7=isSet(tvpDkvS2q);const visible8=isSet(RIIGyb3hM);const visible9=isSet(v9qy9yKPU);const visible10=isSet(E1awu7ue3);const visible11=isSet(E2dF8isIV);const visible12=isSet(ZIRp7cZ9Q);const visible13=isSet(Rqlod5LU7);const visible14=isSet(C85pNTfDQ);const visible15=isSet(nextItemId_FgnJ8e9yf);const visible16=negate(isSet(nextItemId));useCustomCursors({\"1fl75lm\":cursor1,\"1m9055j\":cursor,vcsq4w:cursor2});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ISulr30Gt\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 0, 0); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1sugix4\",className),\"data-framer-cursor\":\"1m9055j\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cpj0zl\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-szjis5\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1iefw2a\",\"data-styles-preset\":\"quyeKL2bh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Eight Branches\"})}),className:\"framer-13u70u6\",fonts:[\"Inter\"],text:FgnJ8e9yf,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1iefw2a\",\"data-styles-preset\":\"quyeKL2bh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b8fcb3e5-4646-48d4-a9e4-c7bd18caa839, rgb(117, 117, 117))\"},children:\"Identity Design\"})}),className:\"framer-1q2mce2\",fonts:[\"Inter\"],text:Hkj_NFgX8,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r2rbao\",children:[visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbKw6e02S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+216+0+-1546),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(ZNhMwW08B)}},iHuwBbK7S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+256+0+-1546),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(ZNhMwW08B)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+316+0+-3093),sizes:`calc(${componentViewport?.width||\"100vw\"} - 112px)`,...toResponsiveImage(ZNhMwW08B)},className:\"framer-1983xhr\",\"data-framer-name\":\"Cover Image\"})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9ooaez-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"A1LMmaGKw\",scopeId:\"DSfeYYrh3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbKw6e02S:{objectFit:\"fill\"},iHuwBbK7S:{objectFit:\"fill\"}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgb(0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"A1LMmaGKw\",isMixedBorderRadius:false,layoutId:\"A1LMmaGKw\",loop:true,muted:true,objectFit:\"scale-down\",playing:true,posterEnabled:true,srcFile:BFLCBrixc,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1r6kra5 hidden-13mrr3n hidden-xpshwb\",\"data-framer-appear-id\":\"1r6kra5\",initial:animation5,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nt05he\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-al5dl9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1stu7sv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-173wff6\",\"data-styles-preset\":\"XDy2ziI7e\",style:{\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"ROLE\"})}),className:\"framer-1qziynx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cvwd49\",\"data-styles-preset\":\"AjrgBX3v2\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Lead Designer\"})}),className:\"framer-qb7r0k\",fonts:[\"Inter\"],text:t3g4lSjMe,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t51kac\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-173wff6\",\"data-styles-preset\":\"XDy2ziI7e\",style:{\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"PROJECT TYPE\"})}),className:\"framer-1aenljq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cvwd49\",\"data-styles-preset\":\"AjrgBX3v2\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Brand Identity, Web Design, Graphic Design\"})}),className:\"framer-j0xlde\",fonts:[\"Inter\"],text:hJ623ZhTn,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-otm73k\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-173wff6\",\"data-styles-preset\":\"XDy2ziI7e\",style:{\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"YEAR\"})}),className:\"framer-1fb5sbl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cvwd49\",\"data-styles-preset\":\"AjrgBX3v2\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Lead Designer\"})}),className:\"framer-fs6g08\",fonts:[\"Inter\"],text:QjHOacoBA,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-df50kj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-173wff6\",\"data-styles-preset\":\"XDy2ziI7e\",style:{\"--framer-text-color\":\"rgb(125, 125, 125)\"},children:\"ABOUT\"})}),className:\"framer-72qcyy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"VoxP3FW1X\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:New1Lptl7,className:\"framer-se7uxr\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-131rzxy\",code:\"framer-styles-preset-1pcjavt\",h1:\"framer-styles-preset-q0dv5z\",h2:\"framer-styles-preset-1iefw2a\",h3:\"framer-styles-preset-wp1tnf\",h4:\"framer-styles-preset-1nkr04l\",h5:\"framer-styles-preset-1ytpmwe\",h6:\"framer-styles-preset-173wff6\",p:\"framer-styles-preset-cvwd49\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k6bsof hidden-1sugix4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ukde7x\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-173wff6\",\"data-styles-preset\":\"XDy2ziI7e\",style:{\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"ABOUT\"})}),className:\"framer-2gg21y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"VoxP3FW1X\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:New1Lptl7,className:\"framer-1cjdohz\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-oyusvz\",code:\"framer-styles-preset-1pcjavt\",h1:\"framer-styles-preset-q0dv5z\",h2:\"framer-styles-preset-1iefw2a\",h3:\"framer-styles-preset-wp1tnf\",h4:\"framer-styles-preset-1nkr04l\",h5:\"framer-styles-preset-1ytpmwe\",h6:\"framer-styles-preset-173wff6\",p:\"framer-styles-preset-cvwd49\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ppiw33\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-j3so6x hidden-xpshwb\",\"data-border\":true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ex1pj2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-173wff6\",\"data-styles-preset\":\"XDy2ziI7e\",style:{\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"PROJECT TYPE\"})}),className:\"framer-1al3oah\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cvwd49\",\"data-styles-preset\":\"AjrgBX3v2\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Web Design\"})}),className:\"framer-1w0l5ea\",fonts:[\"Inter\"],text:hJ623ZhTn,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k6x9mt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-173wff6\",\"data-styles-preset\":\"XDy2ziI7e\",style:{\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"ROLE\"})}),className:\"framer-x6u8ki\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cvwd49\",\"data-styles-preset\":\"AjrgBX3v2\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Designer\"})}),className:\"framer-1d59co\",fonts:[\"Inter\"],text:t3g4lSjMe,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),visible2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pi5rrf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JW9z0qQ3N\",scopeId:\"DSfeYYrh3\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"JW9z0qQ3N\",isMixedBorderRadius:false,layoutId:\"JW9z0qQ3N\",loop:true,muted:true,objectFit:\"scale-down\",playing:true,posterEnabled:true,srcFile:PfDf5YFpe,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible3&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbKw6e02S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+216+0+-114),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(nydGFy9_n)}},iHuwBbK7S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+256+0+-218),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(nydGFy9_n)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+316+0+-1617),sizes:`calc(${componentViewport?.width||\"100vw\"} - 112px)`,...toResponsiveImage(nydGFy9_n)},className:\"framer-1ucyhkw\",\"data-framer-name\":\"Image\"})}),visible4&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbKw6e02S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+216+0+544),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(s6TrcyhL1)}},iHuwBbK7S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+256+0+440),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(s6TrcyhL1)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+316+0+-959),sizes:`calc(${componentViewport?.width||\"100vw\"} - 112px)`,...toResponsiveImage(s6TrcyhL1)},className:\"framer-1qtve1j\",\"data-framer-name\":\"Image - Taller - 1\"})}),visible5&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-e63jf7\",children:JDPYZ15QI?.map(({id,Rbkm8stuw:Rbkm8stuwPTtpvBX9P},index)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`PTtpvBX9P-${id??index}`,children:visible5&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbKw6e02S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+216+0+802+0),sizes:`calc((${componentViewport?.width||\"100vw\"} - 48px) / 2)`,...toResponsiveImage(Rbkm8stuwPTtpvBX9P),...{positionX:\"center\",positionY:\"center\"}}},iHuwBbK7S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+256+0+698+0),sizes:`calc((${componentViewport?.width||\"100vw\"} - 48px) / 2)`,...toResponsiveImage(Rbkm8stuwPTtpvBX9P),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+316+0+-41+0),sizes:`calc((${componentViewport?.width||\"100vw\"} - 120px) / 2)`,...toResponsiveImage(Rbkm8stuwPTtpvBX9P),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1nh91u0\",\"data-framer-name\":\"Image\"})})},id??index);})}),visible6&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-e60cfv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"tkNaUn4ib\",scopeId:\"DSfeYYrh3\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"tkNaUn4ib\",isMixedBorderRadius:false,layoutId:\"tkNaUn4ib\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:R5EAOUfYr,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible7&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbKw6e02S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+216+0+906),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(tvpDkvS2q)}},iHuwBbK7S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+256+0+802),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(tvpDkvS2q)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+316+0+71),sizes:`calc(${componentViewport?.width||\"100vw\"} - 112px)`,...toResponsiveImage(tvpDkvS2q)},className:\"framer-16vslhd\",\"data-framer-name\":\"Image 2\"})}),visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-vx0g96\",children:RIIGyb3hM?.map(({id:id1,Rbkm8stuw:Rbkm8stuwP4BRgHRw_},index1)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`P4BRgHRw_-${id1??index1}`,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbKw6e02S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+216+0+794+0),sizes:`calc((${componentViewport?.width||\"100vw\"} - 48px) / 2)`,...toResponsiveImage(Rbkm8stuwP4BRgHRw_)}},iHuwBbK7S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+256+0+690+0),sizes:`calc((${componentViewport?.width||\"100vw\"} - 48px) / 2)`,...toResponsiveImage(Rbkm8stuwP4BRgHRw_)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+316+0+729+0),sizes:`calc((${componentViewport?.width||\"100vw\"} - 120px) / 2)`,...toResponsiveImage(Rbkm8stuwP4BRgHRw_)},className:\"framer-dh1ncr\",\"data-framer-name\":\"Image\"})})},id1??index1);})}),visible9&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbKw6e02S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+216+0+1564),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(v9qy9yKPU)}},iHuwBbK7S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+256+0+1460),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(v9qy9yKPU)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+316+0+1507),sizes:`calc(${componentViewport?.width||\"100vw\"} - 112px)`,...toResponsiveImage(v9qy9yKPU)},className:\"framer-1jmkg16\",\"data-framer-name\":\"Image 3\"})}),visible10&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbKw6e02S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+216+0+2222),pixelHeight:4734,pixelWidth:3e3,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/Y86zHWvFkjRkJ8BvjGdJOAM7cAg.png\",srcSet:\"https://framerusercontent.com/images/Y86zHWvFkjRkJ8BvjGdJOAM7cAg.png?scale-down-to=1024 648w,https://framerusercontent.com/images/Y86zHWvFkjRkJ8BvjGdJOAM7cAg.png?scale-down-to=2048 1297w,https://framerusercontent.com/images/Y86zHWvFkjRkJ8BvjGdJOAM7cAg.png?scale-down-to=4096 2595w,https://framerusercontent.com/images/Y86zHWvFkjRkJ8BvjGdJOAM7cAg.png 3000w\"}},iHuwBbK7S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+256+0+2118),pixelHeight:4734,pixelWidth:3e3,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/Y86zHWvFkjRkJ8BvjGdJOAM7cAg.png\",srcSet:\"https://framerusercontent.com/images/Y86zHWvFkjRkJ8BvjGdJOAM7cAg.png?scale-down-to=1024 648w,https://framerusercontent.com/images/Y86zHWvFkjRkJ8BvjGdJOAM7cAg.png?scale-down-to=2048 1297w,https://framerusercontent.com/images/Y86zHWvFkjRkJ8BvjGdJOAM7cAg.png?scale-down-to=4096 2595w,https://framerusercontent.com/images/Y86zHWvFkjRkJ8BvjGdJOAM7cAg.png 3000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+316+0+2165),pixelHeight:4734,pixelWidth:3e3,sizes:`calc(${componentViewport?.width||\"100vw\"} - 112px)`,src:\"https://framerusercontent.com/images/Y86zHWvFkjRkJ8BvjGdJOAM7cAg.png\",srcSet:\"https://framerusercontent.com/images/Y86zHWvFkjRkJ8BvjGdJOAM7cAg.png?scale-down-to=1024 648w,https://framerusercontent.com/images/Y86zHWvFkjRkJ8BvjGdJOAM7cAg.png?scale-down-to=2048 1297w,https://framerusercontent.com/images/Y86zHWvFkjRkJ8BvjGdJOAM7cAg.png?scale-down-to=4096 2595w,https://framerusercontent.com/images/Y86zHWvFkjRkJ8BvjGdJOAM7cAg.png 3000w\"},className:\"framer-1kwec4i\",\"data-framer-name\":\"Image - Taller - 2\"})}),visible11&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbKw6e02S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+216+0+2850),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(E2dF8isIV)}},iHuwBbK7S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+256+0+2746),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(E2dF8isIV)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+316+0+4441),sizes:`calc(${componentViewport?.width||\"100vw\"} - 112px)`,...toResponsiveImage(E2dF8isIV)},className:\"framer-1q88h68\",\"data-framer-name\":\"Image 4\"})}),visible12&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbKw6e02S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+216+0+3629),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(ZIRp7cZ9Q)}},iHuwBbK7S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+256+0+3525),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(ZIRp7cZ9Q)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+316+0+5220),sizes:`calc(${componentViewport?.width||\"100vw\"} - 112px)`,...toResponsiveImage(ZIRp7cZ9Q)},className:\"framer-tm5hi6\",\"data-framer-name\":\"Image 5\"})}),visible13&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbKw6e02S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+216+0+4287),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(Rqlod5LU7)}},iHuwBbK7S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+256+0+4183),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(Rqlod5LU7)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+316+0+5878),sizes:`calc(${componentViewport?.width||\"100vw\"} - 112px)`,...toResponsiveImage(Rqlod5LU7)},className:\"framer-br75pg\",\"data-framer-name\":\"Image 6\"})}),visible14&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbKw6e02S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+216+0+4945),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(C85pNTfDQ)}},iHuwBbK7S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+256+0+4841),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(C85pNTfDQ)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+316+0+6536),sizes:`calc(${componentViewport?.width||\"100vw\"} - 112px)`,...toResponsiveImage(C85pNTfDQ)},className:\"framer-6yp5pl\",\"data-framer-name\":\"Image 6\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-shu5jg\",\"data-framer-name\":\"Variant 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yhd9xu\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qilmjd\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1baefou\",\"data-framer-name\":\"Next Project\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sdth27\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1iefw2a\",\"data-styles-preset\":\"quyeKL2bh\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Next Project\"})}),className:\"framer-1edimq1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),visible15&&/*#__PURE__*/_jsx(Link,{href:convertFromBoolean(isSet(nextItemId),activeLocale,{nextItemId_xdF_TCShW}),motionChild:true,nodeId:\"b_hoNMjvj\",openInNewTab:false,scopeId:\"DSfeYYrh3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbKw6e02S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4285+0+0+30+2+120+0+0+-45),sizes:\"358px\",...toResponsiveImage(nextItemId_ZNhMwW08B)}},iHuwBbK7S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4221+0+0+30+2+120+0+0+-116),sizes:\"600px\",...toResponsiveImage(nextItemId_ZNhMwW08B)}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4409+0+0+30+2+120+0+0+-116),sizes:\"600px\",...toResponsiveImage(nextItemId_ZNhMwW08B)},className:\"framer-13hessz framer-1g7srjm\",\"data-framer-cursor\":\"1fl75lm\",\"data-framer-name\":\"Image\"})})}),visible16&&/*#__PURE__*/_jsx(Link,{href:convertFromBoolean(isSet(nextItemId),activeLocale,{nextItemId_xdF_TCShW}),motionChild:true,nodeId:\"Wwn0UFMyB\",scopeId:\"DSfeYYrh3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbKw6e02S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4285+0+0+30+2+120+0+0+189),pixelHeight:1620,pixelWidth:3e3,sizes:\"358px\",src:\"https://framerusercontent.com/images/V8E1eZEy2EUWLyHJyjOk0eBex8.png\",srcSet:\"https://framerusercontent.com/images/V8E1eZEy2EUWLyHJyjOk0eBex8.png?scale-down-to=512 512w,https://framerusercontent.com/images/V8E1eZEy2EUWLyHJyjOk0eBex8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/V8E1eZEy2EUWLyHJyjOk0eBex8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/V8E1eZEy2EUWLyHJyjOk0eBex8.png 3000w\"}},iHuwBbK7S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4221+0+0+30+2+120+0+0+260),pixelHeight:1620,pixelWidth:3e3,sizes:\"600px\",src:\"https://framerusercontent.com/images/V8E1eZEy2EUWLyHJyjOk0eBex8.png\",srcSet:\"https://framerusercontent.com/images/V8E1eZEy2EUWLyHJyjOk0eBex8.png?scale-down-to=512 512w,https://framerusercontent.com/images/V8E1eZEy2EUWLyHJyjOk0eBex8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/V8E1eZEy2EUWLyHJyjOk0eBex8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/V8E1eZEy2EUWLyHJyjOk0eBex8.png 3000w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4409+0+0+30+2+120+0+0+260),pixelHeight:1620,pixelWidth:3e3,sizes:\"600px\",src:\"https://framerusercontent.com/images/V8E1eZEy2EUWLyHJyjOk0eBex8.png\",srcSet:\"https://framerusercontent.com/images/V8E1eZEy2EUWLyHJyjOk0eBex8.png?scale-down-to=512 512w,https://framerusercontent.com/images/V8E1eZEy2EUWLyHJyjOk0eBex8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/V8E1eZEy2EUWLyHJyjOk0eBex8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/V8E1eZEy2EUWLyHJyjOk0eBex8.png 3000w\"},className:\"framer-1i8dmcp framer-1g7srjm\",\"data-framer-cursor\":\"vcsq4w\",\"data-framer-name\":\"Image\"})})})]})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation6},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1g419u7\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f5diwl\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lf08q8\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WiqFf1Ei5\"},motionChild:true,nodeId:\"P5xDxKAAa\",scopeId:\"DSfeYYrh3\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1cx5nqf framer-1g7srjm\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:16,children:/*#__PURE__*/_jsx(Container,{className:\"framer-z5v7ep-container\",nodeId:\"jgCtEAJPi\",scopeId:\"DSfeYYrh3\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"jgCtEAJPi\",layoutId:\"jgCtEAJPi\",variant:\"S3BqfHdqJ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"z20LGnflK\"},motionChild:true,nodeId:\"ny3QDDGEN\",scopeId:\"DSfeYYrh3\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-534bxi framer-1g7srjm\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:16,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yygsa-container\",nodeId:\"AXXMSa5ME\",scopeId:\"DSfeYYrh3\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"AXXMSa5ME\",layoutId:\"AXXMSa5ME\",variant:\"F8qYDlgSn\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pqox44\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aihoqe\",\"data-framer-cursor\":\"1m9055j\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p8sbo0\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:16,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-byh4cr-container\",id:\"byh4cr\",nodeId:\"T1O3mp4BH\",scopeId:\"DSfeYYrh3\",children:[/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"T1O3mp4BH\",layoutId:\"T1O3mp4BH\",variant:\"hY5SuY1hK\",VTWvCsFGR:VTWvCsFGR3bnx0g({overlay}),width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"}},className:cx(scopingClassNames,\"framer-k69bts\"),\"data-framer-portal-id\":\"byh4cr\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"dyVFeyPkG\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-483mtb-container\"),\"data-framer-portal-id\":\"byh4cr\",inComponentSlot:true,nodeId:\"hoY4wd08h\",rendersWithMotion:true,scopeId:\"DSfeYYrh3\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbKw6e02S:{variant:\"fwWHJI8gl\"},iHuwBbK7S:{variant:\"fwWHJI8gl\"}},children:/*#__PURE__*/_jsx(AboutMenuOverlay,{height:\"100%\",id:\"hoY4wd08h\",layoutId:\"hoY4wd08h\",variant:\"MjHMd8wZK\",width:\"100%\"})})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c7gjo4\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:16,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8ofqkj-container\",nodeId:\"RZSc8MUbt\",scopeId:\"DSfeYYrh3\",children:/*#__PURE__*/_jsx(ContactButton,{height:\"100%\",id:\"RZSc8MUbt\",layoutId:\"RZSc8MUbt\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eyerx6\",\"data-framer-name\":\"Menu List\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-u0oxlr\",\"data-border\":true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lquxkn\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbKw6e02S:{transformTemplate:undefined},iHuwBbK7S:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-173wff6\",\"data-styles-preset\":\"XDy2ziI7e\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"2025\"})}),className:\"framer-r4wa66\",fonts:[\"Inter\"],transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bi2hz9-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"zRao6YQdJ\",scopeId:\"DSfeYYrh3\",children:/*#__PURE__*/_jsx(TimeDate,{color:\"rgb(255, 255, 255)\",font:{fontFamily:'\"IBM Plex Mono\", monospace',fontSize:\"10px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"zRao6YQdJ\",layoutId:\"zRao6YQdJ\",monthFormat:\"long\",outputType:\"time\",showMinutes:true,showMonth:true,showSeconds:true,showWeekday:true,showYear:true,tabularFont:true,timeFormat:\"24h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-173wff6\",\"data-styles-preset\":\"XDy2ziI7e\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get in touch \uD83D\uDC8C sarahawong9@gmail.com\"})}),className:\"framer-j7c27p\",fonts:[\"Inter\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BdlFw.framer-1g7srjm, .framer-BdlFw .framer-1g7srjm { display: block; }\",\".framer-BdlFw.framer-1sugix4 { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-BdlFw .framer-1cpj0zl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: visible; padding: 160px 80px 60px 60px; position: relative; width: 100%; z-index: 1; }\",\".framer-BdlFw .framer-szjis5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BdlFw .framer-13u70u6, .framer-BdlFw .framer-1q2mce2, .framer-BdlFw .framer-j0xlde, .framer-BdlFw .framer-1d59co { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BdlFw .framer-1r2rbao { 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: visible; padding: 0px 56px 0px 56px; position: relative; width: 100%; }\",\".framer-BdlFw .framer-1983xhr { aspect-ratio: 1.8461538461538463 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 720px); position: relative; width: 100%; }\",\".framer-BdlFw .framer-9ooaez-container, .framer-BdlFw .framer-pi5rrf-container, .framer-BdlFw .framer-e60cfv-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-BdlFw .framer-1r6kra5 { 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: 100px 0px 100px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-BdlFw .framer-nt05he { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 700px; }\",\".framer-BdlFw .framer-al5dl9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 0px 0px; position: relative; width: 200px; }\",\".framer-BdlFw .framer-1stu7sv, .framer-BdlFw .framer-otm73k { 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: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BdlFw .framer-1qziynx, .framer-BdlFw .framer-qb7r0k, .framer-BdlFw .framer-1aenljq, .framer-BdlFw .framer-1fb5sbl, .framer-BdlFw .framer-fs6g08, .framer-BdlFw .framer-72qcyy, .framer-BdlFw .framer-2gg21y, .framer-BdlFw .framer-1al3oah, .framer-BdlFw .framer-1w0l5ea, .framer-BdlFw .framer-x6u8ki { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BdlFw .framer-t51kac, .framer-BdlFw .framer-ex1pj2, .framer-BdlFw .framer-k6x9mt { 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: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BdlFw .framer-df50kj { 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: center; overflow: hidden; padding: 0px; position: relative; width: 450px; }\",\".framer-BdlFw .framer-se7uxr, .framer-BdlFw .framer-1cjdohz { --framer-paragraph-spacing: 34px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BdlFw .framer-k6bsof { 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: visible; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-BdlFw .framer-1ukde7x { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BdlFw .framer-ppiw33 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BdlFw .framer-j3so6x { --border-bottom-width: 0.5px; --border-color: #bababa; --border-left-width: 0px; --border-right-width: 0px; --border-style: dashed; --border-top-width: 0px; flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-BdlFw .framer-1ucyhkw, .framer-BdlFw .framer-16vslhd, .framer-BdlFw .framer-1q88h68, .framer-BdlFw .framer-br75pg, .framer-BdlFw .framer-6yp5pl { aspect-ratio: 1.8672727272727272 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 711px); position: relative; width: 100%; }\",\".framer-BdlFw .framer-1qtve1j { flex: none; height: 910px; position: relative; width: 100%; }\",\".framer-BdlFw .framer-e63jf7 { display: grid; flex: none; gap: 16px 8px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(0px, 1fr)); height: min-content; justify-content: start; padding: 0px; position: relative; width: 100%; }\",\".framer-BdlFw .framer-1nh91u0 { align-self: start; flex: none; height: 780px; justify-self: start; position: relative; width: 100%; }\",\".framer-BdlFw .framer-vx0g96 { display: grid; flex: none; gap: 16px 8px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(0px, 1fr)); height: 770px; justify-content: start; padding: 0px; position: relative; width: 100%; }\",\".framer-BdlFw .framer-dh1ncr { align-self: start; flex: none; height: 770px; justify-self: start; position: relative; width: 100%; }\",\".framer-BdlFw .framer-1jmkg16, .framer-BdlFw .framer-tm5hi6 { aspect-ratio: 1.8672727272727272 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 712px); position: relative; width: 100%; }\",\".framer-BdlFw .framer-1kwec4i { flex: none; height: 2268px; position: relative; width: 100%; }\",\".framer-BdlFw .framer-shu5jg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-BdlFw .framer-1yhd9xu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 30px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-BdlFw .framer-1qilmjd, .framer-BdlFw .framer-u0oxlr { --border-bottom-width: 0.5px; --border-color: var(--token-04155bd2-3f57-4cec-9ecd-a254bb8e7cc7, #f2f2f2); --border-left-width: 0px; --border-right-width: 0px; --border-style: dashed; --border-top-width: 0px; flex: none; height: 2px; overflow: visible; position: relative; width: 100%; }\",\".framer-BdlFw .framer-1baefou { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-BdlFw .framer-1sdth27 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-BdlFw .framer-1edimq1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BdlFw .framer-13hessz, .framer-BdlFw .framer-1i8dmcp { flex: none; height: 352px; position: relative; text-decoration: none; width: 600px; }\",\".framer-BdlFw .framer-1g419u7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 50%; overflow: visible; padding: 16px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-BdlFw .framer-1f5diwl { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-BdlFw .framer-1lf08q8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BdlFw .framer-1cx5nqf { flex: none; height: 30px; overflow: visible; position: relative; text-decoration: none; width: 90px; }\",\".framer-BdlFw .framer-z5v7ep-container { flex: none; height: auto; left: 0px; position: absolute; top: 50%; transform: translateY(-50%); width: auto; }\",\".framer-BdlFw .framer-534bxi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-BdlFw .framer-1yygsa-container, .framer-BdlFw .framer-byh4cr-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-BdlFw .framer-pqox44 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; min-height: 30px; min-width: 100px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BdlFw .framer-1aihoqe { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BdlFw .framer-1p8sbo0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BdlFw.framer-k69bts { background-color: rgba(0, 0, 0, 0.4); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-BdlFw.framer-483mtb-container { flex: none; height: auto; left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: auto; z-index: 10; }\",\".framer-BdlFw .framer-1c7gjo4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BdlFw .framer-8ofqkj-container { flex: none; height: auto; position: relative; width: auto; z-index: 10; }\",\".framer-BdlFw .framer-eyerx6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px 16px 30px 16px; position: relative; width: 100%; }\",\".framer-BdlFw .framer-lquxkn { flex: none; gap: 10px; height: 11px; overflow: visible; position: relative; width: 100%; }\",\".framer-BdlFw .framer-r4wa66 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 0px; position: absolute; top: 45%; transform: translateY(-50%); white-space: pre; width: auto; }\",\".framer-BdlFw .framer-bi2hz9-container { flex: none; height: auto; position: absolute; right: 0px; top: 45%; transform: translateY(-50%); width: auto; }\",\".framer-BdlFw .framer-j7c27p { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; position: absolute; top: 55%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,'.framer-BdlFw[data-border=\"true\"]::after, .framer-BdlFw [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 (max-width: 809px) { .framer-BdlFw.framer-1sugix4 { width: 390px; } .framer-BdlFw .framer-1cpj0zl { flex-direction: column; gap: 40px; order: 0; padding: 100px 16px 20px 16px; } .framer-BdlFw .framer-szjis5, .framer-BdlFw .framer-1f5diwl { flex: none; width: 100%; } .framer-BdlFw .framer-1r2rbao { order: 1; padding: 0px 20px 20px 20px; } .framer-BdlFw .framer-1983xhr { height: var(--framer-aspect-ratio-supported, 190px); order: 0; } .framer-BdlFw .framer-9ooaez-container, .framer-BdlFw .framer-shu5jg { order: 2; } .framer-BdlFw .framer-k6bsof { order: 1; } .framer-BdlFw .framer-pi5rrf-container, .framer-BdlFw .framer-eyerx6 { order: 4; } .framer-BdlFw .framer-1ucyhkw { height: var(--framer-aspect-ratio-supported, 188px); order: 5; } .framer-BdlFw .framer-1qtve1j { height: 250px; order: 6; } .framer-BdlFw .framer-e63jf7 { order: 7; } .framer-BdlFw .framer-1nh91u0 { height: 186px; } .framer-BdlFw .framer-e60cfv-container { order: 9; } .framer-BdlFw .framer-16vslhd { height: var(--framer-aspect-ratio-supported, 188px); order: 10; } .framer-BdlFw .framer-vx0g96 { height: min-content; order: 8; } .framer-BdlFw .framer-dh1ncr { height: 210px; } .framer-BdlFw .framer-1jmkg16 { height: var(--framer-aspect-ratio-supported, 187px); order: 11; } .framer-BdlFw .framer-1kwec4i { height: 620px; order: 12; } .framer-BdlFw .framer-1q88h68 { height: var(--framer-aspect-ratio-supported, 188px); order: 13; } .framer-BdlFw .framer-tm5hi6 { height: var(--framer-aspect-ratio-supported, 188px); order: 14; } .framer-BdlFw .framer-br75pg { height: var(--framer-aspect-ratio-supported, 187px); order: 15; } .framer-BdlFw .framer-6yp5pl { height: var(--framer-aspect-ratio-supported, 188px); order: 16; } .framer-BdlFw .framer-1sdth27 { width: 100%; } .framer-BdlFw .framer-13hessz, .framer-BdlFw .framer-1i8dmcp { height: 210px; width: 358px; } .framer-BdlFw .framer-1g419u7 { flex-direction: column; order: 3; } .framer-BdlFw .framer-pqox44 { flex: 1 0 0px; gap: unset; justify-content: space-between; min-width: unset; width: 1px; } .framer-BdlFw .framer-r4wa66, .framer-BdlFw .framer-bi2hz9-container { bottom: 0px; top: unset; transform: unset; }}\",\"@media (min-width: 810px) and (max-width: 1439px) { .framer-BdlFw.framer-1sugix4 { width: 810px; } .framer-BdlFw .framer-1cpj0zl { flex-direction: column; gap: 40px; order: 0; padding: 120px 16px 40px 16px; } .framer-BdlFw .framer-szjis5, .framer-BdlFw .framer-1f5diwl { flex: none; width: 100%; } .framer-BdlFw .framer-1r2rbao { order: 1; padding: 0px 20px 20px 20px; } .framer-BdlFw .framer-1983xhr { height: var(--framer-aspect-ratio-supported, 418px); order: 0; } .framer-BdlFw .framer-9ooaez-container, .framer-BdlFw .framer-shu5jg { order: 2; } .framer-BdlFw .framer-k6bsof { flex-direction: row; order: 1; padding: 60px; } .framer-BdlFw .framer-1ukde7x { flex: 1 0 0px; order: 1; width: 1px; } .framer-BdlFw .framer-ppiw33 { order: 0; width: 300px; } .framer-BdlFw .framer-pi5rrf-container, .framer-BdlFw .framer-eyerx6 { order: 4; } .framer-BdlFw .framer-1ucyhkw { height: var(--framer-aspect-ratio-supported, 412px); order: 5; } .framer-BdlFw .framer-1qtve1j { height: 250px; order: 6; } .framer-BdlFw .framer-e63jf7 { order: 7; } .framer-BdlFw .framer-1nh91u0 { height: 186px; } .framer-BdlFw .framer-e60cfv-container { order: 9; } .framer-BdlFw .framer-16vslhd { height: var(--framer-aspect-ratio-supported, 413px); order: 10; } .framer-BdlFw .framer-vx0g96 { height: min-content; order: 8; } .framer-BdlFw .framer-dh1ncr { height: 210px; } .framer-BdlFw .framer-1jmkg16 { height: var(--framer-aspect-ratio-supported, 413px); order: 11; } .framer-BdlFw .framer-1kwec4i { height: 620px; order: 12; } .framer-BdlFw .framer-1q88h68 { height: var(--framer-aspect-ratio-supported, 412px); order: 13; } .framer-BdlFw .framer-tm5hi6 { height: var(--framer-aspect-ratio-supported, 413px); order: 14; } .framer-BdlFw .framer-br75pg { height: var(--framer-aspect-ratio-supported, 413px); order: 15; } .framer-BdlFw .framer-6yp5pl { height: var(--framer-aspect-ratio-supported, 413px); order: 16; } .framer-BdlFw .framer-1g419u7 { flex-direction: column; order: 3; } .framer-BdlFw .framer-pqox44 { flex: 1 0 0px; gap: unset; justify-content: space-between; min-width: unset; width: 1px; } .framer-BdlFw .framer-r4wa66, .framer-BdlFw .framer-bi2hz9-container { bottom: 0px; top: unset; transform: unset; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7279.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"BbKw6e02S\":{\"layout\":[\"fixed\",\"auto\"]},\"iHuwBbK7S\":{\"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 FramerDSfeYYrh3=withCSS(Component,css,\"framer-BdlFw\");export default FramerDSfeYYrh3;FramerDSfeYYrh3.displayName=\"Articles Detail\";FramerDSfeYYrh3.defaultProps={height:7279.5,width:1440};addFonts(FramerDSfeYYrh3,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"IBM Plex Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexmono/v19/-F63fjptAgt5VM-kVkqdyU8n5i0g1l9kn-s.woff2\",weight:\"400\"}]},...VideoFonts,...ButtonFonts,...AboutMenuOverlayFonts,...ContactButtonFonts,...TimeDateFonts,...CursorTestFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...componentPresets.fonts?.[\"VoxP3FW1X\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"VoxP3FW1X\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDSfeYYrh3\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BbKw6e02S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iHuwBbK7S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"7279.5\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "props", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "RichTextWithFX", "withFX", "RichText", "ImageWithFX", "Image2", "VideoFonts", "getFonts", "Video", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "MotionDivWithFX", "ButtonFonts", "GzjGcdBEj_default", "AboutMenuOverlayFonts", "lnXug2lPq_default", "ContactButtonFonts", "U0jivrEf8_default", "TimeDateFonts", "Time", "CursorTestFonts", "RSBQ0XCkS_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "isSet", "value", "toResponsiveImage", "transition3", "animation3", "transition4", "animation4", "animation5", "convertFromBoolean", "activeLocale", "nextItemId_xdF_TCShW", "negate", "transition5", "animation6", "transformTemplate1", "_", "t", "transformTemplate2", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transformTemplate3", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "cursor1", "transition6", "cursor2", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "DsAa7PgM6_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "FgnJ8e9yf", "Hkj_NFgX8", "ZNhMwW08B", "BFLCBrixc", "t3g4lSjMe", "hJ623ZhTn", "QjHOacoBA", "New1Lptl7", "PfDf5YFpe", "nydGFy9_n", "s6TrcyhL1", "JDPYZ15QI", "Rbkm8stuwPTtpvBX9P", "R5EAOUfYr", "tvpDkvS2q", "RIIGyb3hM", "Rbkm8stuwP4BRgHRw_", "v9qy9yKPU", "E1awu7ue3", "E2dF8isIV", "ZIRp7cZ9Q", "Rqlod5LU7", "C85pNTfDQ", "nextItemId_FgnJ8e9yf", "nextItemId_ZNhMwW08B", "nextItemId", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "VTWvCsFGR3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "visible1", "isDisplayed", "isDisplayed1", "isDisplayed2", "visible2", "visible3", "visible4", "visible5", "visible6", "visible7", "visible8", "visible9", "visible10", "visible11", "visible12", "visible13", "visible14", "visible15", "visible16", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "x", "PropertyOverrides2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "Container", "ComponentPresetsProvider", "index", "id1", "index1", "Link", "l", "AnimatePresence", "Ga", "css", "FramerDSfeYYrh3", "withCSS", "DSfeYYrh3_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
