{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/vbbaerXLyqUXLZUWrJQ6/hs0NlA8sO7tWROx84QQx/Cp1tWBHJ6.js", "ssg:https://framerusercontent.com/modules/nAhPSOFooJL52P4kGDoB/YRJ2m112V6oo8nT5zVDc/kp2RiqYIg.js", "ssg:https://framerusercontent.com/modules/59aLOREGoiOoBAKmm305/4CQElISGo7FPAC3gKg86/m09s1O2Le.js", "ssg:https://framerusercontent.com/modules/QPHgLisplo4LmWddLClY/MD1SvC8uw50l85der3FB/componentPresets.js", "ssg:https://framerusercontent.com/modules/do65Fp4XxSTAh4trxx3r/aAP2tGJQo8vIk0M8QyOp/zVoRr5luo.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (033a048)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ubiQum5wHRXfI2vla2VX/NNxaPxw53RT8K36C0QKM/MzCgcxP7y.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/1ZUsM1qFi9sFWFgWLA4t/OJIGjopnbThqOwEvMji2/p66ucvXZ2.js\";const cycleOrder=[\"oXXarZF3i\",\"BItbKnGPb\",\"k_3r9fHPX\"];const serializationHash=\"framer-frc1f\";const variantClassNames={BItbKnGPb:\"framer-v-1cbaeag\",k_3r9fHPX:\"framer-v-1ielqie\",oXXarZF3i:\"framer-v-1i761ja\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"oXXarZF3i\",Hover:\"BItbKnGPb\",Mobile:\"k_3r9fHPX\"};const getProps=({featuredImage,height,id,link,title,width,...props})=>{return{...props,CYP_4_Igm:link??props.CYP_4_Igm,khwz4aXjQ:featuredImage??props.khwz4aXjQ,pmf3WyjGf:title??props.pmf3WyjGf??\"Title\",variant:humanReadableVariantMap[props.variant]??props.variant??\"oXXarZF3i\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,CYP_4_Igm,pmf3WyjGf,khwz4aXjQ,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oXXarZF3i\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1nlw4w5=activeVariantCallback(async(...args)=>{setVariant(\"BItbKnGPb\");});const onMouseLeaveceb28n=activeVariantCallback(async(...args)=>{setVariant(\"oXXarZF3i\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:CYP_4_Igm,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1i761ja\",className,classNames)} framer-14f5nbr`,\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"oXXarZF3i\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onMouseEnter:onMouseEnter1nlw4w5,onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref??ref1,style:{...style},...addPropertyOverrides({BItbKnGPb:{\"data-framer-name\":\"Hover\",onMouseLeave:onMouseLeaveceb28n},k_3r9fHPX:{\"data-framer-name\":\"Mobile\",\"data-highlight\":undefined,onMouseEnter:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eqtj6k\",layoutDependency:layoutDependency,layoutId:\"b80kR9yUm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tf3ym6\",\"data-styles-preset\":\"p66ucvXZ2\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-021f0aa4-0d20-4364-8ca8-a28f6e4e7505, rgb(255, 255, 255)))\"},children:\"Next case\"})}),className:\"framer-10pt0su\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eowDe4xpp\",style:{\"--extracted-r6o4lv\":\"var(--token-021f0aa4-0d20-4364-8ca8-a28f6e4e7505, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-o9tme2\",\"data-styles-preset\":\"MzCgcxP7y\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-021f0aa4-0d20-4364-8ca8-a28f6e4e7505, rgb(255, 255, 255)))\"},children:\"Title\"})}),className:\"framer-mxkxd5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SsUVGm9mR\",style:{\"--extracted-1of0zx5\":\"var(--token-021f0aa4-0d20-4364-8ca8-a28f6e4e7505, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:pmf3WyjGf,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.3)`,...toResponsiveImage(khwz4aXjQ)},className:\"framer-axkg58\",\"data-framer-name\":\"Project Image\",layoutDependency:layoutDependency,layoutId:\"K7z8VEaAo\",transformTemplate:transformTemplate1,...addPropertyOverrides({k_3r9fHPX:{background:{alt:\"\",fit:\"fill\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.75)`,...toResponsiveImage(khwz4aXjQ)}}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-frc1f.framer-14f5nbr, .framer-frc1f .framer-14f5nbr { display: block; }\",\".framer-frc1f.framer-1i761ja { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; min-height: calc(var(--framer-viewport-height, 100vh) * 1); padding: 0px; position: relative; text-decoration: none; width: 1080px; }\",\".framer-frc1f .framer-1eqtj6k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-frc1f .framer-10pt0su, .framer-frc1f .framer-mxkxd5 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-frc1f .framer-axkg58 { aspect-ratio: 1.5 / 1; bottom: -399px; flex: none; height: var(--framer-aspect-ratio-supported, 216px); left: 50%; overflow: hidden; position: absolute; width: 30%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-frc1f.framer-1i761ja, .framer-frc1f .framer-1eqtj6k { gap: 0px; } .framer-frc1f.framer-1i761ja > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-frc1f.framer-1i761ja > :first-child, .framer-frc1f .framer-1eqtj6k > :first-child { margin-top: 0px; } .framer-frc1f.framer-1i761ja > :last-child, .framer-frc1f .framer-1eqtj6k > :last-child { margin-bottom: 0px; } .framer-frc1f .framer-1eqtj6k > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-frc1f.framer-v-1cbaeag .framer-axkg58 { bottom: -59px; }\",\".framer-frc1f.framer-v-1ielqie .framer-axkg58 { bottom: -27px; height: var(--framer-aspect-ratio-supported, 540px); width: 75%; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 1080\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"BItbKnGPb\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"k_3r9fHPX\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]}}}\n * @framerVariables {\"CYP_4_Igm\":\"link\",\"pmf3WyjGf\":\"title\",\"khwz4aXjQ\":\"featuredImage\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCp1tWBHJ6=withCSS(Component,css,\"framer-frc1f\");export default FramerCp1tWBHJ6;FramerCp1tWBHJ6.displayName=\"Next Project Item\";FramerCp1tWBHJ6.defaultProps={height:200,width:1080};addPropertyControls(FramerCp1tWBHJ6,{variant:{options:[\"oXXarZF3i\",\"BItbKnGPb\",\"k_3r9fHPX\"],optionTitles:[\"Desktop\",\"Hover\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},CYP_4_Igm:{title:\"Link\",type:ControlType.Link},pmf3WyjGf:{defaultValue:\"Title\",title:\"Title\",type:ControlType.String},khwz4aXjQ:{title:\"Featured Image\",type:ControlType.ResponsiveImage}});addFonts(FramerCp1tWBHJ6,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCp1tWBHJ6\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"CYP_4_Igm\\\":\\\"link\\\",\\\"pmf3WyjGf\\\":\\\"title\\\",\\\"khwz4aXjQ\\\":\\\"featuredImage\\\"}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"BItbKnGPb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"k_3r9fHPX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]}}}\",\"framerIntrinsicWidth\":\"1080\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-Klzgs .framer-styles-preset-t8obrb:not(.rich-text-wrapper), .framer-Klzgs .framer-styles-preset-t8obrb.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #0088ff; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #0099ff; --framer-link-text-decoration: none; }\"];export const className=\"framer-Klzgs\";\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 (033a048)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/nAhPSOFooJL52P4kGDoB/YRJ2m112V6oo8nT5zVDc/kp2RiqYIg.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ubiQum5wHRXfI2vla2VX/NNxaPxw53RT8K36C0QKM/MzCgcxP7y.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/1ZUsM1qFi9sFWFgWLA4t/OJIGjopnbThqOwEvMji2/p66ucvXZ2.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/cj1gkO0XDucfH5iy2TAM/pug52g76CCMIr9lJS2NI/qodemAsk4.js\";import Divider from\"https://framerusercontent.com/modules/icvxgNLfTZLlGl3C0uR8/jglVOEg6jcgUlQFycmoN/kJYAUq3Dc.js\";const DividerFonts=getFonts(Divider);const cycleOrder=[\"tOxdq2ax7\",\"w06SCNb7L\"];const serializationHash=\"framer-i4czi\";const variantClassNames={tOxdq2ax7:\"framer-v-k8ll6f\",w06SCNb7L:\"framer-v-4u39lu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"tOxdq2ax7\",\"Variant 2\":\"w06SCNb7L\"};const getProps=({bottomText,content,height,id,topText,width,...props})=>{return{...props,fmfyFfnAj:content??props.fmfyFfnAj??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"text\"})}),ssri0BYiC:topText??props.ssri0BYiC??\"Role / services\",variant:humanReadableVariantMap[props.variant]??props.variant??\"tOxdq2ax7\",YIzoIYA_s:bottomText??props.YIzoIYA_s??\"Design & Development\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ssri0BYiC,YIzoIYA_s,fmfyFfnAj,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"tOxdq2ax7\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-k8ll6f\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"tOxdq2ax7\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref??ref1,style:{...style},...addPropertyOverrides({w06SCNb7L:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tf3ym6\",\"data-styles-preset\":\"p66ucvXZ2\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-60a0abed-7fdb-4c64-96c8-aef4e864ed8a, rgb(166, 166, 166)))\"},children:\"Role / services\"})}),className:\"framer-zayx68\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"J8C6Bkd_Q\",style:{\"--extracted-r6o4lv\":\"var(--token-60a0abed-7fdb-4c64-96c8-aef4e864ed8a, rgb(166, 166, 166))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ssri0BYiC,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pqmlww-container\",layoutDependency:layoutDependency,layoutId:\"wARE_wBA_-container\",children:/*#__PURE__*/_jsx(Divider,{height:\"100%\",id:\"wARE_wBA_\",layoutId:\"wARE_wBA_\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tf3ym6\",\"data-styles-preset\":\"p66ucvXZ2\",children:\"Design & Development\"})}),className:\"framer-1mm8j9u\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x8yvs9LK4\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:YIzoIYA_s,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({w06SCNb7L:{children:fmfyFfnAj,stylesPresetsClassNames:{a:\"framer-styles-preset-t8obrb\",h1:\"framer-styles-preset-o9tme2\",h2:\"framer-styles-preset-15hyfjk\",p:\"framer-styles-preset-1tf3ym6\"},text:undefined}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-i4czi.framer-f6cnok, .framer-i4czi .framer-f6cnok { display: block; }\",\".framer-i4czi.framer-k8ll6f { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 293px; }\",\".framer-i4czi .framer-zayx68, .framer-i4czi .framer-1mm8j9u { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-i4czi .framer-1pqmlww-container { flex: none; height: 1px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-i4czi.framer-k8ll6f { gap: 0px; } .framer-i4czi.framer-k8ll6f > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-i4czi.framer-k8ll6f > :first-child { margin-top: 0px; } .framer-i4czi.framer-k8ll6f > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 91\n * @framerIntrinsicWidth 293\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"w06SCNb7L\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ssri0BYiC\":\"topText\",\"YIzoIYA_s\":\"bottomText\",\"fmfyFfnAj\":\"content\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerm09s1O2Le=withCSS(Component,css,\"framer-i4czi\");export default Framerm09s1O2Le;Framerm09s1O2Le.displayName=\"Project Detail\";Framerm09s1O2Le.defaultProps={height:91,width:293};addPropertyControls(Framerm09s1O2Le,{variant:{options:[\"tOxdq2ax7\",\"w06SCNb7L\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},ssri0BYiC:{defaultValue:\"Role / services\",displayTextArea:false,title:\"Top Text\",type:ControlType.String},YIzoIYA_s:{defaultValue:\"Design & Development\",displayTextArea:false,title:\"Bottom Text\",type:ControlType.String},fmfyFfnAj:{defaultValue:\"<p>text</p>\",title:\"Content\",type:ControlType.RichText}});addFonts(Framerm09s1O2Le,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...DividerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerm09s1O2Le\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w06SCNb7L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"91\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"293\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"ssri0BYiC\\\":\\\"topText\\\",\\\"YIzoIYA_s\\\":\\\"bottomText\\\",\\\"fmfyFfnAj\\\":\\\"content\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (dbba614)\nexport const props={Q1Q32pXt9:{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,isMixedBorderRadius:false,isRed:false,topLeftRadius:0,topRightRadius:0},xWMAwID6y:{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={xWMAwID6y:[{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\":{\"props\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (dbba614)\nvar _componentPresets_fonts,_componentPresets_fonts1,_componentPresets_fonts2,_componentPresets_fonts3;import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CzcVr5U1VFk6uNcyYvJq/SmoothScroll_Prod.js\";import NextProjectItem from\"#framer/local/canvasComponent/Cp1tWBHJ6/Cp1tWBHJ6.js\";import MenuTrigger from\"#framer/local/canvasComponent/dHwcKHHso/dHwcKHHso.js\";import Logo from\"#framer/local/canvasComponent/IINSHdzLF/IINSHdzLF.js\";import ProjectDetail from\"#framer/local/canvasComponent/m09s1O2Le/m09s1O2Le.js\";import MenuContainer from\"#framer/local/canvasComponent/qbkcH40IK/qbkcH40IK.js\";import TextLink from\"#framer/local/canvasComponent/TMbURzCsz/TMbURzCsz.js\";import ProjectItemCursor from\"#framer/local/canvasComponent/ZS4I2oHX8/ZS4I2oHX8.js\";import Work from\"#framer/local/collection/ywx541h2d/ywx541h2d.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle4 from\"#framer/local/css/kp2RiqYIg/kp2RiqYIg.js\";import*as sharedStyle from\"#framer/local/css/MzCgcxP7y/MzCgcxP7y.js\";import*as sharedStyle3 from\"#framer/local/css/Ol0IRhcEE/Ol0IRhcEE.js\";import*as sharedStyle1 from\"#framer/local/css/p66ucvXZ2/p66ucvXZ2.js\";import*as sharedStyle2 from\"#framer/local/css/qodemAsk4/qodemAsk4.js\";import metadataProvider from\"#framer/local/webPageMetadata/zVoRr5luo/zVoRr5luo.js\";const LogoFonts=getFonts(Logo);const MenuTriggerFonts=getFonts(MenuTrigger);const MenuContainerFonts=getFonts(MenuContainer);const ProjectDetailFonts=getFonts(ProjectDetail);const MotionSectionWithFX=withFX(motion.section);const TextLinkFonts=getFonts(TextLink);const YouTubeFonts=getFonts(YouTube);const NextProjectItemFonts=getFonts(NextProjectItem);const SmoothScrollFonts=getFonts(SmoothScroll);const ProjectItemCursorFonts=getFonts(ProjectItemCursor);const breakpoints={gZOEGklw_:\"(max-width: 809px)\",nyfm2y274:\"(min-width: 810px) and (max-width: 1199px)\",OvIfs_B32:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-sZzUd\";const variantClassNames={gZOEGklw_:\"framer-v-1563gjf\",nyfm2y274:\"framer-v-180dxe3\",OvIfs_B32:\"framer-v-5aonfh\"};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 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 transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"OvIfs_B32\",Phone:\"gZOEGklw_\",Tablet:\"nyfm2y274\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"OvIfs_B32\"};};const cursor={alignment:\"center\",component:ProjectItemCursor,offset:{x:20,y:-20},placement:\"top\",transition:transition1,variant:\"S0U77SN4Q\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"zVoRr5luo\",data:Work,type:\"Collection\"},select:[{collection:\"zVoRr5luo\",name:\"Jww2Un3Z2\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"YiZ6kOzbH\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"gu_5Hctsb\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"vI7Y3SKaW\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"bngrwGHbj\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"WcG0wtYvp\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"v3IadHZ7q\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"Spv6cj1QB\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"wzvy7Kvwr\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"OCLiQtKaA\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"E2JUMZuU3\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"v9f_AwsiZ\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"zZOVgIVeP\",type:\"Identifier\"},{collection:\"zVoRr5luo\",name:\"PttYUgeS2\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"zVoRr5luo\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};var _getFromCurrentRouteData,_getFromCurrentRouteData1,_getFromCurrentRouteData2,_getFromCurrentRouteData3,_getFromCurrentRouteData4;const{style,className,layoutId,variant,Jww2Un3Z2=(_getFromCurrentRouteData=getFromCurrentRouteData(\"Jww2Un3Z2\"))!==null&&_getFromCurrentRouteData!==void 0?_getFromCurrentRouteData:\"\",gu_5Hctsb=(_getFromCurrentRouteData1=getFromCurrentRouteData(\"gu_5Hctsb\"))!==null&&_getFromCurrentRouteData1!==void 0?_getFromCurrentRouteData1:\"\",bngrwGHbj=getFromCurrentRouteData(\"bngrwGHbj\"),vI7Y3SKaW=(_getFromCurrentRouteData2=getFromCurrentRouteData(\"vI7Y3SKaW\"))!==null&&_getFromCurrentRouteData2!==void 0?_getFromCurrentRouteData2:\"\",Os0KDO4WO,PttYUgeS2=(_getFromCurrentRouteData3=getFromCurrentRouteData(\"PttYUgeS2\"))!==null&&_getFromCurrentRouteData3!==void 0?_getFromCurrentRouteData3:\"\",WcG0wtYvp=getFromCurrentRouteData(\"WcG0wtYvp\"),v3IadHZ7q=getFromCurrentRouteData(\"v3IadHZ7q\"),Spv6cj1QB=getFromCurrentRouteData(\"Spv6cj1QB\"),wzvy7Kvwr=getFromCurrentRouteData(\"wzvy7Kvwr\"),OCLiQtKaA=getFromCurrentRouteData(\"OCLiQtKaA\"),E2JUMZuU3=getFromCurrentRouteData(\"E2JUMZuU3\"),v9f_AwsiZ=getFromCurrentRouteData(\"v9f_AwsiZ\"),zZOVgIVeP=getFromCurrentRouteData(\"zZOVgIVeP\"),fsRrg1kQbWXpDLYGOt,Jww2Un3Z2WXpDLYGOt,bngrwGHbjWXpDLYGOt,idWXpDLYGOt,YiZ6kOzbH=(_getFromCurrentRouteData4=getFromCurrentRouteData(\"YiZ6kOzbH\"))!==null&&_getFromCurrentRouteData4!==void 0?_getFromCurrentRouteData4:0,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-sZzUd`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-sZzUd`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const VFQz_3t2Pwelu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const JBIWSH7361wvko5h=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.hide();});const ref1=React.useRef(null);const visible=isSet(gu_5Hctsb);const visible1=isSet(bngrwGHbj);const elementId=useRouteElementId(\"l_cfGMd8_\");const ref2=React.useRef(null);const visible2=isSet(vI7Y3SKaW);const visible3=isSet(Os0KDO4WO);const router=useRouter();const visible4=isSet(PttYUgeS2);const visible5=isSet(WcG0wtYvp);const visible6=isSet(v3IadHZ7q);const visible7=isSet(Spv6cj1QB);const visible8=isSet(wzvy7Kvwr);const visible9=isSet(OCLiQtKaA);const visible10=isSet(E2JUMZuU3);const visible11=isSet(v9f_AwsiZ);const visible12=isSet(zZOVgIVeP);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];useCustomCursors({\"1vkzw6o\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"OvIfs_B32\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-5aonfh\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,width:\"90vw\",y:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nv6u8t-container\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"nfXHUWLaS\",layoutId:\"nfXHUWLaS\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,y:20,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-xqb4wz-container\",id:\"xqb4wz\",layoutScroll:true,children:[/*#__PURE__*/_jsx(MenuTrigger,{height:\"100%\",id:\"VASyD0RPe\",layoutId:\"VASyD0RPe\",variant:overlay.visible?\"KpaQfRe6z\":\"KuhQDxJED\",VFQz_3t2P:VFQz_3t2Pwelu7j({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},className:\"framer-1pg3yyt\",\"data-framer-portal-id\":\"xqb4wz\",exit:{opacity:0},initial:{opacity:0},onTap:()=>overlay.hide(),transition:{delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"}},\"QcwTZn_W5\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1osc9t2-container\",\"data-framer-portal-id\":\"xqb4wz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZOEGklw_:{variant:\"Qx777WDSr\"},nyfm2y274:{variant:\"z_Pygr7dV\"}},children:/*#__PURE__*/_jsx(MenuContainer,{height:\"100%\",id:\"RNgQ7nswR\",JBIWSH736:JBIWSH7361wvko5h({overlay}),layoutId:\"RNgQ7nswR\",style:{height:\"100%\",width:\"100%\"},variant:\"shBkrlcGh\",width:\"100%\"})})})})]}),document.querySelector(\"#overlay\"))})})]})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-176z2t4\",\"data-framer-name\":\"Main\",name:\"Main\",children:[/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:110,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qszsl0\",\"data-framer-name\":\"Section Hero\",name:\"Section Hero\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lfalze\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-o9tme2\",\"data-styles-preset\":\"MzCgcxP7y\",children:\"Zadig & Voltaire\"})}),className:\"framer-jy2ctz\",fonts:[\"Inter\"],text:Jww2Un3Z2,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9nrmo\",children:visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZOEGklw_:{width:\"90vw\",y:565},nyfm2y274:{width:\"min(max((90vw + 40px) / 0, 1px), 90vw)\",y:455}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:91,width:\"min(max((80vw + 40px) / 0, 1px), 80vw)\",y:540,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o3fkgf-container\",\"data-framer-name\":\"Services\",name:\"Services\",children:/*#__PURE__*/_jsx(ProjectDetail,{fmfyFfnAj:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"text\"})}),height:\"100%\",id:\"yxfIltgVT\",layoutId:\"yxfIltgVT\",name:\"Services\",ssri0BYiC:\"Role / Services\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"tOxdq2ax7\",width:\"100%\",YIzoIYA_s:gu_5Hctsb})})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-15vdjf6\",\"data-framer-name\":\"Section Gallery\",name:\"Section Gallery\",children:[visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZOEGklw_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(-2790.75),sizes:\"90vw\",...toResponsiveImage(bngrwGHbj),...{positionX:\"center\",positionY:\"top\"}}},nyfm2y274:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(-3066.75),sizes:\"90vw\",...toResponsiveImage(bngrwGHbj),...{positionX:\"center\",positionY:\"top\"}}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(-3133.75),sizes:\"90vw\",...toResponsiveImage(bngrwGHbj),...{positionX:\"center\",positionY:\"top\"}},className:\"framer-10q6z49\",\"data-framer-name\":\"Featured Image\",id:elementId,name:\"Featured Image\",ref:ref2})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-105aqit\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-stwqff\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tf3ym6\",\"data-styles-preset\":\"p66ucvXZ2\",style:{\"--framer-text-color\":\"var(--token-60a0abed-7fdb-4c64-96c8-aef4e864ed8a, rgb(166, 166, 166))\"},children:\"Details\"})}),className:\"framer-juzxfg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13q0skb\",children:[visible2&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"Q1Q32pXt9\"],\"module:pVk4QsoHxASnVtUBp6jr/F3DAaPbkrr19izpZS3jO/CodeBlock.js:default\":componentPresets.props[\"xWMAwID6y\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:vI7Y3SKaW,className:\"framer-1rrsmx2\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-t8obrb\",h1:\"framer-styles-preset-o9tme2\",h2:\"framer-styles-preset-15hyfjk\",p:\"framer-styles-preset-nzuel8\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible3&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:Os0KDO4WO,implicitPathVariables:undefined},{href:Os0KDO4WO,implicitPathVariables:undefined},{href:Os0KDO4WO,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZOEGklw_:{y:-1719.55},nyfm2y274:{y:-2118.65}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:-2185.65,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8z8p60-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZOEGklw_:{OsJAhFUEL:resolvedLinks[2]},nyfm2y274:{OsJAhFUEL:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(TextLink,{aoEpAdqyT:\"var(--token-ccfe87cb-c517-43ae-907a-63f745b81ffb, rgb(0, 0, 0))\",HcNjQiLlI:true,height:\"100%\",id:\"Qe83dvHQr\",layoutId:\"Qe83dvHQr\",oAPD13KW4:\"Visit live website\",OsJAhFUEL:resolvedLinks[0],variant:\"iit1mSJqB\",width:\"100%\"})})})})})})]})]})}),visible4&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-arems6-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"Z1iVfx3ej\",isMixedBorderRadius:false,isRed:false,layoutId:\"Z1iVfx3ej\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:PttYUgeS2,width:\"100%\"})})}),visible5&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZOEGklw_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(-1128.0500000000002),sizes:\"90vw\",...toResponsiveImage(WcG0wtYvp)}},nyfm2y274:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(-1444.0500000000002),sizes:\"90vw\",...toResponsiveImage(WcG0wtYvp)}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(-1511.0500000000002),sizes:\"90vw\",...toResponsiveImage(WcG0wtYvp)},className:\"framer-4y7oai\",\"data-framer-name\":\"Image 1\",name:\"Image 1\"})}),visible6&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZOEGklw_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(-378.0500000000002),sizes:\"90vw\",...toResponsiveImage(v3IadHZ7q)}},nyfm2y274:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(-694.0500000000002),sizes:\"90vw\",...toResponsiveImage(v3IadHZ7q)}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(-761.0500000000002),sizes:\"90vw\",...toResponsiveImage(v3IadHZ7q)},className:\"framer-1167qk\",\"data-framer-name\":\"Image 2\",name:\"Image 2\"})}),visible7&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZOEGklw_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(451.9499999999998),sizes:\"90vw\",...toResponsiveImage(Spv6cj1QB)}},nyfm2y274:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(135.94999999999982),sizes:\"90vw\",...toResponsiveImage(Spv6cj1QB)}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(68.94999999999982),sizes:\"90vw\",...toResponsiveImage(Spv6cj1QB)},className:\"framer-y1ince\",\"data-framer-name\":\"Image 3\",name:\"Image 3\"})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZOEGklw_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1281.9499999999998),sizes:\"90vw\",...toResponsiveImage(wzvy7Kvwr)}},nyfm2y274:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(965.9499999999998),sizes:\"90vw\",...toResponsiveImage(wzvy7Kvwr)}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(898.9499999999998),sizes:\"90vw\",...toResponsiveImage(wzvy7Kvwr)},className:\"framer-12cz6wo\",\"data-framer-name\":\"Image 4\",name:\"Image 4\"})}),visible9&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZOEGklw_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2111.95),sizes:\"90vw\",...toResponsiveImage(OCLiQtKaA)}},nyfm2y274:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1795.9499999999998),sizes:\"90vw\",...toResponsiveImage(OCLiQtKaA)}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1728.9499999999998),sizes:\"90vw\",...toResponsiveImage(OCLiQtKaA)},className:\"framer-mr9i40\",\"data-framer-name\":\"Image 5\",name:\"Image 5\"})}),visible10&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZOEGklw_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2941.95),sizes:\"90vw\",...toResponsiveImage(E2JUMZuU3)}},nyfm2y274:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2625.95),sizes:\"90vw\",...toResponsiveImage(E2JUMZuU3)}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2558.95),sizes:\"90vw\",...toResponsiveImage(E2JUMZuU3)},className:\"framer-oex75a\",\"data-framer-name\":\"Image 6\",name:\"Image 6\"})}),visible11&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZOEGklw_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3771.95),sizes:\"90vw\",...toResponsiveImage(v9f_AwsiZ)}},nyfm2y274:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3455.95),sizes:\"90vw\",...toResponsiveImage(v9f_AwsiZ)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3388.95),sizes:\"90vw\",...toResponsiveImage(v9f_AwsiZ)},className:\"framer-1218hcz\",\"data-framer-name\":\"Image 7\",name:\"Image 7\"})}),visible12&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZOEGklw_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4035.95),sizes:\"90vw\",...toResponsiveImage(zZOVgIVeP)}},nyfm2y274:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3971.95),sizes:\"90vw\",...toResponsiveImage(zZOVgIVeP)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4138.95),sizes:\"90vw\",...toResponsiveImage(zZOVgIVeP)},className:\"framer-1u0mhws\",\"data-framer-name\":\"Image 8\",name:\"Image 8\"})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16gig62\",\"data-framer-name\":\"Next Project Helper\",name:\"Next Project Helper\"}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-8ogqsw\",\"data-framer-name\":\"Section Next Project\",name:\"Section Next Project\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hodb5x\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"WXpDLYGOt\",data:Work,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"WXpDLYGOt\",name:\"fsRrg1kQb\",type:\"Identifier\"},{collection:\"WXpDLYGOt\",name:\"Jww2Un3Z2\",type:\"Identifier\"},{collection:\"WXpDLYGOt\",name:\"bngrwGHbj\",type:\"Identifier\"},{collection:\"WXpDLYGOt\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"WXpDLYGOt\",name:\"BPX7VUXSn\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:YiZ6kOzbH},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({bngrwGHbj:bngrwGHbjWXpDLYGOt,fsRrg1kQb:fsRrg1kQbWXpDLYGOt,id:idWXpDLYGOt,Jww2Un3Z2:Jww2Un3Z2WXpDLYGOt},i)=>{fsRrg1kQbWXpDLYGOt!==null&&fsRrg1kQbWXpDLYGOt!==void 0?fsRrg1kQbWXpDLYGOt:fsRrg1kQbWXpDLYGOt=\"\";Jww2Un3Z2WXpDLYGOt!==null&&Jww2Un3Z2WXpDLYGOt!==void 0?Jww2Un3Z2WXpDLYGOt:Jww2Un3Z2WXpDLYGOt=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`WXpDLYGOt-${idWXpDLYGOt}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{fsRrg1kQb:fsRrg1kQbWXpDLYGOt},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{fsRrg1kQb:fsRrg1kQbWXpDLYGOt},webPageId:\"zVoRr5luo\"},implicitPathVariables:undefined},{href:{pathVariables:{fsRrg1kQb:fsRrg1kQbWXpDLYGOt},webPageId:\"zVoRr5luo\"},implicitPathVariables:undefined},{href:{pathVariables:{fsRrg1kQb:fsRrg1kQbWXpDLYGOt},webPageId:\"zVoRr5luo\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"max(100vw, 1px)\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZOEGklw_:{\"data-framer-cursor\":undefined},nyfm2y274:{\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-u6bjez-container\",\"data-framer-cursor\":\"1vkzw6o\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZOEGklw_:{CYP_4_Igm:resolvedLinks1[2],variant:\"k_3r9fHPX\"},nyfm2y274:{CYP_4_Igm:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(NextProjectItem,{CYP_4_Igm:resolvedLinks1[0],height:\"100%\",id:\"WH87BS5G0\",khwz4aXjQ:toResponsiveImage(bngrwGHbjWXpDLYGOt),layoutId:\"WH87BS5G0\",pmf3WyjGf:Jww2Un3Z2WXpDLYGOt,style:{width:\"100%\"},variant:\"oXXarZF3i\",width:\"100%\"})})})})})})})},idWXpDLYGOt);})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qiz84m-container\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"G1jeD8VuW\",intensity:5,layoutId:\"G1jeD8VuW\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1unsrwg\",\"data-framer-name\":\"Get Template Button\",name:\"Get Template Button\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-u254az\",\"data-framer-name\":\"Button Wrapper\",name:\"Button Wrapper\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-sZzUd { background: rgb(255, 255, 255); }`,\".framer-sZzUd.framer-1o3c4qn, .framer-sZzUd .framer-1o3c4qn { display: block; }\",\".framer-sZzUd.framer-5aonfh { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-sZzUd .framer-nv6u8t-container { flex: none; height: auto; left: 50%; max-width: 90%; position: absolute; top: 45px; transform: translateX(-50%); width: 90%; z-index: 8; }\",\".framer-sZzUd .framer-xqb4wz-container { flex: none; height: auto; position: fixed; right: 20px; top: 20px; width: auto; z-index: 10; }\",\".framer-sZzUd .framer-1pg3yyt { background-color: rgba(0, 0, 0, 0); inset: 0px; position: fixed; user-select: none; z-index: 9; }\",\".framer-sZzUd .framer-1osc9t2-container { flex: none; height: 100%; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 9; }\",\".framer-sZzUd .framer-176z2t4 { align-content: center; align-items: center; background-color: #ffffff; box-shadow: 0px 120px 250px 0px rgba(0, 0, 0, 0.75); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 7; }\",\".framer-sZzUd .framer-qszsl0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: 70vh; justify-content: center; max-width: 80%; min-height: 80vh; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sZzUd .framer-1lfalze { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-sZzUd .framer-jy2ctz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-sZzUd .framer-9nrmo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; min-height: 77px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sZzUd .framer-1o3fkgf-container { flex: 1 0 0px; height: auto; max-width: 100%; position: relative; width: 1px; }\",\".framer-sZzUd .framer-15vdjf6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 90%; overflow: hidden; padding: 0px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-sZzUd .framer-10q6z49 { align-content: center; align-items: center; aspect-ratio: 1.5 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 133px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sZzUd .framer-105aqit { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 90%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sZzUd .framer-stwqff { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: flex-start; max-width: 720px; overflow: visible; padding: 50px 0px 50px 0px; position: relative; width: 1px; }\",\".framer-sZzUd .framer-juzxfg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-sZzUd .framer-13q0skb { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-sZzUd .framer-1rrsmx2 { --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-sZzUd .framer-8z8p60-container, .framer-sZzUd .framer-qiz84m-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-sZzUd .framer-arems6-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); position: relative; width: 100%; }\",\".framer-sZzUd .framer-4y7oai, .framer-sZzUd .framer-1167qk, .framer-sZzUd .framer-y1ince, .framer-sZzUd .framer-12cz6wo, .framer-sZzUd .framer-mr9i40, .framer-sZzUd .framer-oex75a { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 133px); overflow: hidden; position: relative; width: 100%; }\",\".framer-sZzUd .framer-1218hcz, .framer-sZzUd .framer-1u0mhws { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 133px); position: relative; width: 100%; }\",\".framer-sZzUd .framer-16gig62 { flex: none; height: 800px; min-height: 100vh; overflow: hidden; position: relative; width: 100%; }\",\".framer-sZzUd .framer-8ogqsw { align-content: center; align-items: center; background-color: #000000; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: fixed; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-sZzUd .framer-1hodb5x { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-sZzUd .framer-u6bjez-container { flex: none; height: auto; min-height: 100vh; position: relative; width: 100%; }\",\".framer-sZzUd .framer-1unsrwg { align-content: flex-end; align-items: flex-end; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 0px; justify-content: flex-end; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: fixed; width: 100%; z-index: 10; }\",\".framer-sZzUd .framer-u254az { align-content: center; align-items: center; bottom: 66px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 36px; min-width: 142px; overflow: visible; padding: 0px; position: absolute; right: 20px; width: min-content; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sZzUd.framer-5aonfh, .framer-sZzUd .framer-176z2t4, .framer-sZzUd .framer-qszsl0, .framer-sZzUd .framer-1lfalze, .framer-sZzUd .framer-9nrmo, .framer-sZzUd .framer-15vdjf6, .framer-sZzUd .framer-10q6z49, .framer-sZzUd .framer-105aqit, .framer-sZzUd .framer-stwqff, .framer-sZzUd .framer-13q0skb, .framer-sZzUd .framer-8ogqsw, .framer-sZzUd .framer-1hodb5x, .framer-sZzUd .framer-1unsrwg, .framer-sZzUd .framer-u254az { gap: 0px; } .framer-sZzUd.framer-5aonfh > *, .framer-sZzUd .framer-176z2t4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sZzUd.framer-5aonfh > :first-child, .framer-sZzUd .framer-176z2t4 > :first-child, .framer-sZzUd .framer-qszsl0 > :first-child, .framer-sZzUd .framer-15vdjf6 > :first-child, .framer-sZzUd .framer-13q0skb > :first-child, .framer-sZzUd .framer-1hodb5x > :first-child { margin-top: 0px; } .framer-sZzUd.framer-5aonfh > :last-child, .framer-sZzUd .framer-176z2t4 > :last-child, .framer-sZzUd .framer-qszsl0 > :last-child, .framer-sZzUd .framer-15vdjf6 > :last-child, .framer-sZzUd .framer-13q0skb > :last-child, .framer-sZzUd .framer-1hodb5x > :last-child { margin-bottom: 0px; } .framer-sZzUd .framer-qszsl0 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-sZzUd .framer-1lfalze > *, .framer-sZzUd .framer-105aqit > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-sZzUd .framer-1lfalze > :first-child, .framer-sZzUd .framer-9nrmo > :first-child, .framer-sZzUd .framer-10q6z49 > :first-child, .framer-sZzUd .framer-105aqit > :first-child, .framer-sZzUd .framer-stwqff > :first-child, .framer-sZzUd .framer-8ogqsw > :first-child, .framer-sZzUd .framer-1unsrwg > :first-child, .framer-sZzUd .framer-u254az > :first-child { margin-left: 0px; } .framer-sZzUd .framer-1lfalze > :last-child, .framer-sZzUd .framer-9nrmo > :last-child, .framer-sZzUd .framer-10q6z49 > :last-child, .framer-sZzUd .framer-105aqit > :last-child, .framer-sZzUd .framer-stwqff > :last-child, .framer-sZzUd .framer-8ogqsw > :last-child, .framer-sZzUd .framer-1unsrwg > :last-child, .framer-sZzUd .framer-u254az > :last-child { margin-right: 0px; } .framer-sZzUd .framer-9nrmo > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-sZzUd .framer-15vdjf6 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-sZzUd .framer-10q6z49 > *, .framer-sZzUd .framer-8ogqsw > *, .framer-sZzUd .framer-1unsrwg > *, .framer-sZzUd .framer-u254az > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-sZzUd .framer-stwqff > * { margin: 0px; margin-left: calc(160px / 2); margin-right: calc(160px / 2); } .framer-sZzUd .framer-13q0skb > *, .framer-sZzUd .framer-1hodb5x > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-sZzUd { background: rgb(255, 255, 255); } .framer-sZzUd.framer-5aonfh { width: 810px; } .framer-sZzUd .framer-qszsl0 { max-width: 90%; min-height: 75vh; } .framer-sZzUd .framer-1lfalze { padding: 0px; } .framer-sZzUd .framer-105aqit, .framer-sZzUd .framer-stwqff { max-width: 100%; }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-sZzUd { background: rgb(255, 255, 255); } .framer-sZzUd.framer-5aonfh { width: 390px; } .framer-sZzUd .framer-nv6u8t-container { order: 0; } .framer-sZzUd .framer-xqb4wz-container { order: 1; } .framer-sZzUd .framer-176z2t4 { order: 2; } .framer-sZzUd .framer-qszsl0 { gap: 70px; max-width: 90%; min-height: 90vh; padding: 0px 0px 40px 0px; } .framer-sZzUd .framer-9nrmo { flex-direction: column; } .framer-sZzUd .framer-1o3fkgf-container { flex: none; width: 100%; } .framer-sZzUd .framer-105aqit { max-width: 100%; } .framer-sZzUd .framer-stwqff { flex-direction: column; gap: 40px; max-width: 100%; } .framer-sZzUd .framer-13q0skb { align-self: unset; flex: none; gap: 30px; height: min-content; justify-content: flex-start; min-height: 778px; width: 100%; } .framer-sZzUd .framer-1218hcz { aspect-ratio: unset; height: 234px; } .framer-sZzUd .framer-16gig62 { order: 3; } .framer-sZzUd .framer-8ogqsw { order: 4; } .framer-sZzUd .framer-qiz84m-container { order: 5; } .framer-sZzUd .framer-1unsrwg { flex-direction: column; order: 6; } .framer-sZzUd .framer-u254az { bottom: 62px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sZzUd .framer-qszsl0, .framer-sZzUd .framer-9nrmo, .framer-sZzUd .framer-stwqff, .framer-sZzUd .framer-13q0skb, .framer-sZzUd .framer-1unsrwg { gap: 0px; } .framer-sZzUd .framer-qszsl0 > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-sZzUd .framer-qszsl0 > :first-child, .framer-sZzUd .framer-9nrmo > :first-child, .framer-sZzUd .framer-stwqff > :first-child, .framer-sZzUd .framer-13q0skb > :first-child, .framer-sZzUd .framer-1unsrwg > :first-child { margin-top: 0px; } .framer-sZzUd .framer-qszsl0 > :last-child, .framer-sZzUd .framer-9nrmo > :last-child, .framer-sZzUd .framer-stwqff > :last-child, .framer-sZzUd .framer-13q0skb > :last-child, .framer-sZzUd .framer-1unsrwg > :last-child { margin-bottom: 0px; } .framer-sZzUd .framer-9nrmo > *, .framer-sZzUd .framer-stwqff > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-sZzUd .framer-13q0skb > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-sZzUd .framer-1unsrwg > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8397\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nyfm2y274\":{\"layout\":[\"fixed\",\"auto\"]},\"gZOEGklw_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerzVoRr5luo=withCSS(Component,css,\"framer-sZzUd\");export default FramerzVoRr5luo;FramerzVoRr5luo.displayName=\"Page\";FramerzVoRr5luo.defaultProps={height:8397,width:1200};addFonts(FramerzVoRr5luo,[{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\"}]},...LogoFonts,...MenuTriggerFonts,...MenuContainerFonts,...ProjectDetailFonts,...TextLinkFonts,...YouTubeFonts,...NextProjectItemFonts,...SmoothScrollFonts,...ProjectItemCursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...((_componentPresets_fonts=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"Q1Q32pXt9\"])?getFontsFromComponentPreset((_componentPresets_fonts1=componentPresets.fonts)===null||_componentPresets_fonts1===void 0?void 0:_componentPresets_fonts1[\"Q1Q32pXt9\"]):[],...((_componentPresets_fonts2=componentPresets.fonts)===null||_componentPresets_fonts2===void 0?void 0:_componentPresets_fonts2[\"xWMAwID6y\"])?getFontsFromComponentPreset((_componentPresets_fonts3=componentPresets.fonts)===null||_componentPresets_fonts3===void 0?void 0:_componentPresets_fonts3[\"xWMAwID6y\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzVoRr5luo\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"8397\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nyfm2y274\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gZOEGklw_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "featuredImage", "height", "id", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "CYP_4_Igm", "pmf3WyjGf", "khwz4aXjQ", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1nlw4w5", "args", "onMouseLeaveceb28n", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "Image2", "css", "FramerCp1tWBHJ6", "withCSS", "Cp1tWBHJ6_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "DividerFonts", "getFonts", "kJYAUq3Dc_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "bottomText", "content", "height", "id", "topText", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ssri0BYiC", "YIzoIYA_s", "fmfyFfnAj", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "Framerm09s1O2Le", "withCSS", "m09s1O2Le_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "props", "fonts", "_componentPresets_fonts", "_componentPresets_fonts1", "_componentPresets_fonts2", "_componentPresets_fonts3", "LogoFonts", "getFonts", "IINSHdzLF_default", "MenuTriggerFonts", "dHwcKHHso_default", "MenuContainerFonts", "qbkcH40IK_default", "ProjectDetailFonts", "m09s1O2Le_default", "MotionSectionWithFX", "withFX", "motion", "TextLinkFonts", "TMbURzCsz_default", "YouTubeFonts", "Youtube", "NextProjectItemFonts", "Cp1tWBHJ6_default", "SmoothScrollFonts", "SmoothScroll", "ProjectItemCursorFonts", "ZS4I2oHX8_default", "breakpoints", "serializationHash", "variantClassNames", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "isSet", "value", "toResponsiveImage", "transition1", "QueryData", "query", "pageSize", "data", "useQueryData", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "cursor", "ZS4I2oHX8_default", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "ywx541h2d_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "_getFromCurrentRouteData", "_getFromCurrentRouteData1", "_getFromCurrentRouteData2", "_getFromCurrentRouteData3", "_getFromCurrentRouteData4", "style", "className", "layoutId", "variant", "Jww2Un3Z2", "gu_5Hctsb", "bngrwGHbj", "vI7Y3SKaW", "Os0KDO4WO", "PttYUgeS2", "WcG0wtYvp", "v3IadHZ7q", "Spv6cj1QB", "wzvy7Kvwr", "OCLiQtKaA", "E2JUMZuU3", "v9f_AwsiZ", "zZOVgIVeP", "fsRrg1kQbWXpDLYGOt", "Jww2Un3Z2WXpDLYGOt", "bngrwGHbjWXpDLYGOt", "idWXpDLYGOt", "YiZ6kOzbH", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "VFQz_3t2Pwelu7j", "overlay", "paginationInfo", "args", "JBIWSH7361wvko5h", "ref1", "pe", "visible1", "elementId", "useRouteElementId", "ref2", "visible2", "visible3", "router", "useRouter", "visible4", "visible5", "visible6", "visible7", "visible8", "visible9", "visible10", "visible11", "visible12", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "IINSHdzLF_default", "l", "dHwcKHHso_default", "AnimatePresence", "Ga", "x", "PropertyOverrides2", "qbkcH40IK_default", "MotionSectionWithFX", "RichText2", "m09s1O2Le_default", "getLoadingLazyAtYPosition", "Image2", "ComponentPresetsProvider", "ResolveLinks", "resolvedLinks", "TMbURzCsz_default", "Youtube", "ChildrenCanSuspend", "collection", "loadMore", "i", "PathVariablesContext", "resolvedLinks1", "Cp1tWBHJ6_default", "SmoothScroll", "css", "FramerzVoRr5luo", "withCSS", "zVoRr5luo_default", "addFonts", "LogoFonts", "MenuTriggerFonts", "MenuContainerFonts", "ProjectDetailFonts", "TextLinkFonts", "YouTubeFonts", "NextProjectItemFonts", "SmoothScrollFonts", "ProjectItemCursorFonts", "getFontsFromSharedStyle", "fonts", "_componentPresets_fonts", "getFontsFromComponentPreset", "_componentPresets_fonts1", "_componentPresets_fonts2", "_componentPresets_fonts3", "__FramerMetadata__"]
}
