{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/mCvGoMGuoN8XP4YmH6wt/UWKafsYbUdJuy7d9twEo/IL3Yzfvr0.js", "ssg:https://framerusercontent.com/modules/fiUlPHkviQLegdIXhSpm/rqScPmlj5XZtIFjkBBVG/UlQco8cYi.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 (ff86393)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleCode,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";import ViewProject from\"https://framerusercontent.com/modules/m8ZpCGkmB1QZZSaZuteN/NTqsfXKm90jLxq3NFO5L/iux_1P4dx.js\";const ViewProjectFonts=getFonts(ViewProject);const VideoFonts=getFonts(Video);const cycleOrder=[\"S6jG7XgLg\",\"JmzrlcQOt\"];const serializationHash=\"framer-OC9W9\";const variantClassNames={JmzrlcQOt:\"framer-v-77rj0l\",S6jG7XgLg:\"framer-v-1as2qwi\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const numberToString=(value,options={},activeLocale)=>{const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const{useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits}=options;const formatOptions={useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits};const number=Number(value);try{return number.toLocaleString(locale,formatOptions);}catch{try{return number.toLocaleString(fallbackLocale,formatOptions);}catch{return number.toLocaleString();}}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Other Project Card - Hover\":\"JmzrlcQOt\",\"Other Project Card\":\"S6jG7XgLg\"};const getProps=({height,id,link,sortingNumber,thumbnail,thumbnailVideo,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,COnO_r_TO:(_ref=title!==null&&title!==void 0?title:props.COnO_r_TO)!==null&&_ref!==void 0?_ref:\"Title\",cpM8YFfZW:thumbnail!==null&&thumbnail!==void 0?thumbnail:props.cpM8YFfZW,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"S6jG7XgLg\",WCZDKcwoD:link!==null&&link!==void 0?link:props.WCZDKcwoD,X00XHRb0O:sortingNumber!==null&&sortingNumber!==void 0?sortingNumber:props.X00XHRb0O,x9gMjNAjR:(_ref2=thumbnailVideo!==null&&thumbnailVideo!==void 0?thumbnailVideo:props.x9gMjNAjR)!==null&&_ref2!==void 0?_ref2:\"Thumbnail Video\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,WCZDKcwoD,X00XHRb0O,COnO_r_TO,x9gMjNAjR,cpM8YFfZW,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"S6jG7XgLg\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEntere5n9rb=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"JmzrlcQOt\");});const onMouseLeave111t5h9=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"S6jG7XgLg\");});const ref1=React.useRef(null);const activeLocaleCode=useLocaleCode();const textContent=numberToString(X00XHRb0O,{locale:\"\",notation:\"standard\",style:\"decimal\"},activeLocaleCode);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:WCZDKcwoD,nodeId:\"S6jG7XgLg\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1as2qwi\",className,classNames)} framer-8h1gwp`,\"data-framer-name\":\"Other Project Card\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"S6jG7XgLg\",onMouseEnter:onMouseEntere5n9rb,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({JmzrlcQOt:{\"data-framer-name\":\"Other Project Card - Hover\",onMouseLeave:onMouseLeave111t5h9}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lhyjza\",\"data-framer-name\":\"Title Wrapper\",layoutDependency:layoutDependency,layoutId:\"o5wSGITJG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(1, 1, 3))\",\"--framer-text-transform\":\"uppercase\"},children:\"NaN\"})}),className:\"framer-m2pyz7\",fonts:[\"GF;Azeret Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"TZHvaBwmA\",style:{\"--extracted-r6o4lv\":\"rgb(1, 1, 3)\"},text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(1, 1, 3))\",\"--framer-text-transform\":\"uppercase\"},children:\"/\"})}),className:\"framer-jjun5h\",fonts:[\"GF;Azeret Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"hHC_TIGWK\",style:{\"--extracted-r6o4lv\":\"rgb(1, 1, 3)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ie7ri1-container\",layoutDependency:layoutDependency,layoutId:\"kppBLgcWN-container\",children:/*#__PURE__*/_jsx(ViewProject,{height:\"100%\",id:\"kppBLgcWN\",layoutId:\"kppBLgcWN\",style:{width:\"100%\"},variant:\"PpJgzYKY9\",VmojfvIIh:COnO_r_TO,width:\"100%\",...addPropertyOverrides({JmzrlcQOt:{variant:\"TKVyLtuTt\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-172tn6d\",\"data-framer-name\":\"Image Wrapper\",layoutDependency:layoutDependency,layoutId:\"yMGBwEFfB\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+29+(0+(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||250)-0-29)/1)*1-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||250)-0-29)/1)*1-0)*1)/2)),sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(cpM8YFfZW)},className:\"framer-1yb5sm0\",layoutDependency:layoutDependency,layoutId:\"ZYYITft0q\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12ki6qr-container\",layoutDependency:layoutDependency,layoutId:\"uDT_EOJl_-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"uDT_EOJl_\",isMixedBorderRadius:false,layoutId:\"uDT_EOJl_\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcType:\"URL\",srcUrl:x9gMjNAjR,startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OC9W9.framer-8h1gwp, .framer-OC9W9 .framer-8h1gwp { display: block; }\",\".framer-OC9W9.framer-1as2qwi { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: wrap; gap: 16px; height: 250px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 374px; }\",\".framer-OC9W9 .framer-1lhyjza { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-OC9W9 .framer-m2pyz7, .framer-OC9W9 .framer-jjun5h { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-OC9W9 .framer-1ie7ri1-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-OC9W9 .framer-172tn6d { align-content: center; align-items: center; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-OC9W9 .framer-1yb5sm0 { flex: none; height: 100%; overflow: visible; position: relative; width: 100%; }\",\".framer-OC9W9 .framer-12ki6qr-container { flex: none; height: 100%; left: calc(50.13623978201637% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OC9W9.framer-1as2qwi, .framer-OC9W9 .framer-1lhyjza, .framer-OC9W9 .framer-172tn6d { gap: 0px; } .framer-OC9W9.framer-1as2qwi > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-OC9W9.framer-1as2qwi > :first-child { margin-top: 0px; } .framer-OC9W9.framer-1as2qwi > :last-child { margin-bottom: 0px; } .framer-OC9W9 .framer-1lhyjza > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-OC9W9 .framer-1lhyjza > :first-child, .framer-OC9W9 .framer-172tn6d > :first-child { margin-left: 0px; } .framer-OC9W9 .framer-1lhyjza > :last-child, .framer-OC9W9 .framer-172tn6d > :last-child { margin-right: 0px; } .framer-OC9W9 .framer-172tn6d > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-OC9W9.framer-v-77rj0l.framer-1as2qwi { aspect-ratio: 1.494 / 1; height: var(--framer-aspect-ratio-supported, 250px); }\",\".framer-OC9W9.framer-v-77rj0l .framer-12ki6qr-container { cursor: pointer; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 250\n * @framerIntrinsicWidth 373.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"JmzrlcQOt\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"WCZDKcwoD\":\"link\",\"X00XHRb0O\":\"sortingNumber\",\"COnO_r_TO\":\"title\",\"x9gMjNAjR\":\"thumbnailVideo\",\"cpM8YFfZW\":\"thumbnail\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIL3Yzfvr0=withCSS(Component,css,\"framer-OC9W9\");export default FramerIL3Yzfvr0;FramerIL3Yzfvr0.displayName=\"Other Project Card\";FramerIL3Yzfvr0.defaultProps={height:250,width:373.5};addPropertyControls(FramerIL3Yzfvr0,{variant:{options:[\"S6jG7XgLg\",\"JmzrlcQOt\"],optionTitles:[\"Other Project Card\",\"Other Project Card - Hover\"],title:\"Variant\",type:ControlType.Enum},WCZDKcwoD:{title:\"Link\",type:ControlType.Link},X00XHRb0O:{defaultValue:0,title:\"Sorting Number\",type:ControlType.Number},COnO_r_TO:{defaultValue:\"Title\",title:\"Title\",type:ControlType.String},x9gMjNAjR:{defaultValue:\"Thumbnail Video\",title:\"Thumbnail Video\",type:ControlType.String},cpM8YFfZW:{title:\"Thumbnail\",type:ControlType.ResponsiveImage}});addFonts(FramerIL3Yzfvr0,[{explicitInter:true,fonts:[{family:\"Azeret Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPVh17aa-5s3AA.woff2\",weight:\"400\"}]},...ViewProjectFonts,...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIL3Yzfvr0\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"373.5\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JmzrlcQOt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"WCZDKcwoD\\\":\\\"link\\\",\\\"X00XHRb0O\\\":\\\"sortingNumber\\\",\\\"COnO_r_TO\\\":\\\"title\\\",\\\"x9gMjNAjR\\\":\\\"thumbnailVideo\\\",\\\"cpM8YFfZW\\\":\\\"thumbnail\\\"}\",\"framerIntrinsicHeight\":\"250\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4240133)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useQueryData,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Vimeo from\"https://framerusercontent.com/modules/0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/qXyG1UgqGGx5DS4G9abM/Smooth_Scroll.js\";import Footer from\"#framer/local/canvasComponent/fZS40FT55/fZS40FT55.js\";import NavigationPrimary from\"#framer/local/canvasComponent/IkqPwt9QK/IkqPwt9QK.js\";import OtherProjectCard from\"#framer/local/canvasComponent/IL3Yzfvr0/IL3Yzfvr0.js\";import MenuOpenOverlay from\"#framer/local/canvasComponent/SmkNoZhed/SmkNoZhed.js\";import FooterAssets from\"#framer/local/canvasComponent/xxIb0BkhJ/xxIb0BkhJ.js\";import CaseStudies,{enumToDisplayNameFunctions}from\"#framer/local/collection/yTHrQWMIY/yTHrQWMIY.js\";import*as sharedStyle9 from\"#framer/local/css/cxLS4itsr/cxLS4itsr.js\";import*as sharedStyle8 from\"#framer/local/css/CyZvEVnxW/CyZvEVnxW.js\";import*as sharedStyle1 from\"#framer/local/css/fPxpbyP1C/fPxpbyP1C.js\";import*as sharedStyle10 from\"#framer/local/css/hPcvsg2du/hPcvsg2du.js\";import*as sharedStyle5 from\"#framer/local/css/ii5Gjp6kn/ii5Gjp6kn.js\";import*as sharedStyle2 from\"#framer/local/css/kY8pK_YAy/kY8pK_YAy.js\";import*as sharedStyle3 from\"#framer/local/css/ngPzaVWSI/ngPzaVWSI.js\";import*as sharedStyle4 from\"#framer/local/css/VEITImmeG/VEITImmeG.js\";import*as sharedStyle6 from\"#framer/local/css/YD_TA0xKR/YD_TA0xKR.js\";import*as sharedStyle7 from\"#framer/local/css/ZB3A5PLtS/ZB3A5PLtS.js\";import*as sharedStyle from\"#framer/local/css/Zc4rlgUye/Zc4rlgUye.js\";import metadataProvider from\"#framer/local/webPageMetadata/UlQco8cYi/UlQco8cYi.js\";const NavigationPrimaryFonts=getFonts(NavigationPrimary);const MenuOpenOverlayFonts=getFonts(MenuOpenOverlay);const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const VimeoFonts=getFonts(Vimeo);const YouTubeFonts=getFonts(YouTube);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const VideoFonts=getFonts(Video);const OtherProjectCardFonts=getFonts(OtherProjectCard);const FooterFonts=getFonts(Footer);const FooterAssetsFonts=getFonts(FooterAssets);const SmoothScrollFonts=getFonts(SmoothScroll);const breakpoints={DP5OeLM1w:\"(min-width: 810px) and (max-width: 1199px)\",OMfRsaltb:\"(max-width: 809px)\",zn7ljgmof:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-VIhRM\";const variantClassNames={DP5OeLM1w:\"framer-v-dbiqm7\",OMfRsaltb:\"framer-v-5nm5tn\",zn7ljgmof:\"framer-v-1rn7xrn\"};const transition1={delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};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 transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation3={backgroundColor:\"rgb(222, 222, 213)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};const transition3={bounce:.2,delay:.5,duration:.4,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,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 transition4={delay:.7,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"XVccleYY2\":return false;default:return true;}};const toBoolean=value=>{return Boolean(value);};const transition5={delay:.1,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:120};const isSet=value=>{if(Array.isArray(value)){return value.length>0;}return value!==undefined&&value!==null&&value!==\"\";};const negate=value=>{return!value;};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition6={delay:.3,duration:2,ease:[.23,.98,.56,1],type:\"tween\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const animation11={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const transition7={delay:.1,duration:2,ease:[.23,.98,.56,1],type:\"tween\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const transition8={delay:0,duration:2,ease:[.23,.98,.56,1],type:\"tween\"};const transition9={delay:.2,duration:2,ease:[.23,.98,.56,1],type:\"tween\"};const toImageSrc=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value.src;}return typeof value===\"string\"?value:undefined;};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition10={delay:.3,duration:1.5,ease:[.16,1,.3,1],type:\"tween\"};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"zn7ljgmof\",Phone:\"OMfRsaltb\",Tablet:\"DP5OeLM1w\"};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:\"zn7ljgmof\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){var _enumToDisplayNameFunctions_BESQkXLs0,_enumToDisplayNameFunctions_aFr_xKbXy;const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"UlQco8cYi\",data:CaseStudies,type:\"Collection\"},select:[{collection:\"UlQco8cYi\",name:\"oeXZcmPna\",type:\"Identifier\"},{collection:\"UlQco8cYi\",name:\"BESQkXLs0\",type:\"Identifier\"},{collection:\"UlQco8cYi\",name:\"aFr_xKbXy\",type:\"Identifier\"},{collection:\"UlQco8cYi\",name:\"VeDm9FjW4\",type:\"Identifier\"},{collection:\"UlQco8cYi\",name:\"lprMTjrtO\",type:\"Identifier\"},{collection:\"UlQco8cYi\",name:\"G68jnZQGy\",type:\"Identifier\"},{collection:\"UlQco8cYi\",name:\"Jy7hBJady\",type:\"Identifier\"},{collection:\"UlQco8cYi\",name:\"zUiu0Skgu\",type:\"Identifier\"},{collection:\"UlQco8cYi\",name:\"QF3AEVk8r\",type:\"Identifier\"},{collection:\"UlQco8cYi\",name:\"fsFlSPDTa\",type:\"Identifier\"},{collection:\"UlQco8cYi\",name:\"rm5GqyLak\",type:\"Identifier\"},{collection:\"UlQco8cYi\",name:\"rB64YNSUs\",type:\"Identifier\"},{collection:\"UlQco8cYi\",name:\"lUT9kBBwP\",type:\"Identifier\"},{collection:\"UlQco8cYi\",name:\"UagkMeXHL\",type:\"Identifier\"},{collection:\"UlQco8cYi\",name:\"X4mkKflln\",type:\"Identifier\"},{collection:\"UlQco8cYi\",name:\"z_tutvcUx\",type:\"Identifier\"},{collection:\"UlQco8cYi\",name:\"OoXOWcQvg\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"UlQco8cYi\")});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,_getFromCurrentRouteData5,_getFromCurrentRouteData6,_getFromCurrentRouteData7;const{style,className,layoutId,variant,BESQkXLs0=getFromCurrentRouteData(\"BESQkXLs0\"),aFr_xKbXy=getFromCurrentRouteData(\"aFr_xKbXy\"),oeXZcmPna=(_getFromCurrentRouteData=getFromCurrentRouteData(\"oeXZcmPna\"))!==null&&_getFromCurrentRouteData!==void 0?_getFromCurrentRouteData:\"\",zUiu0Skgu=(_getFromCurrentRouteData1=getFromCurrentRouteData(\"zUiu0Skgu\"))!==null&&_getFromCurrentRouteData1!==void 0?_getFromCurrentRouteData1:\"\",Jy7hBJady=getFromCurrentRouteData(\"Jy7hBJady\"),WG62tRjG8,VeDm9FjW4=(_getFromCurrentRouteData2=getFromCurrentRouteData(\"VeDm9FjW4\"))!==null&&_getFromCurrentRouteData2!==void 0?_getFromCurrentRouteData2:\"\",lprMTjrtO=(_getFromCurrentRouteData3=getFromCurrentRouteData(\"lprMTjrtO\"))!==null&&_getFromCurrentRouteData3!==void 0?_getFromCurrentRouteData3:\"\",G68jnZQGy=(_getFromCurrentRouteData4=getFromCurrentRouteData(\"G68jnZQGy\"))!==null&&_getFromCurrentRouteData4!==void 0?_getFromCurrentRouteData4:\"\",HY1X73dpT,U0gx1yKeB,QF3AEVk8r=getFromCurrentRouteData(\"QF3AEVk8r\"),erJHC_ckW,fsFlSPDTa=getFromCurrentRouteData(\"fsFlSPDTa\"),rm5GqyLak=getFromCurrentRouteData(\"rm5GqyLak\"),OksyNeyec,cBT57oH8T,rB64YNSUs=getFromCurrentRouteData(\"rB64YNSUs\"),lUT9kBBwP=getFromCurrentRouteData(\"lUT9kBBwP\"),UagkMeXHL=getFromCurrentRouteData(\"UagkMeXHL\"),YDSGjqno7,pdXVG_fBOjdGHnOaNj,DLBifmgp1jdGHnOaNj,oeXZcmPnajdGHnOaNj,WG62tRjG8jdGHnOaNj,Jy7hBJadyjdGHnOaNj,idjdGHnOaNj,X4mkKflln=(_getFromCurrentRouteData5=getFromCurrentRouteData(\"X4mkKflln\"))!==null&&_getFromCurrentRouteData5!==void 0?_getFromCurrentRouteData5:0,pdXVG_fBOahzuYOuYM,DLBifmgp1ahzuYOuYM,oeXZcmPnaahzuYOuYM,WG62tRjG8ahzuYOuYM,Jy7hBJadyahzuYOuYM,idahzuYOuYM,z_tutvcUx=(_getFromCurrentRouteData6=getFromCurrentRouteData(\"z_tutvcUx\"))!==null&&_getFromCurrentRouteData6!==void 0?_getFromCurrentRouteData6:0,pdXVG_fBOBbhROnvtz,DLBifmgp1BbhROnvtz,oeXZcmPnaBbhROnvtz,WG62tRjG8BbhROnvtz,Jy7hBJadyBbhROnvtz,idBbhROnvtz,OoXOWcQvg=(_getFromCurrentRouteData7=getFromCurrentRouteData(\"OoXOWcQvg\"))!==null&&_getFromCurrentRouteData7!==void 0?_getFromCurrentRouteData7: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-VIhRM`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-VIhRM`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const dr1vZ4EhSwelu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const ZnO4gEEiP1wvko5h=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.hide();});const ref1=React.useRef(null);const textContent=(_enumToDisplayNameFunctions_BESQkXLs0=enumToDisplayNameFunctions[\"BESQkXLs0\"])===null||_enumToDisplayNameFunctions_BESQkXLs0===void 0?void 0:_enumToDisplayNameFunctions_BESQkXLs0.call(enumToDisplayNameFunctions,BESQkXLs0,activeLocale);const visible=toBoolean(convertFromEnum(aFr_xKbXy,activeLocale));const textContent1=(_enumToDisplayNameFunctions_aFr_xKbXy=enumToDisplayNameFunctions[\"aFr_xKbXy\"])===null||_enumToDisplayNameFunctions_aFr_xKbXy===void 0?void 0:_enumToDisplayNameFunctions_aFr_xKbXy.call(enumToDisplayNameFunctions,aFr_xKbXy,activeLocale);const visible1=negate(isSet(zUiu0Skgu));const visible2=isSet(zUiu0Skgu);const visible3=isSet(WG62tRjG8);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"OMfRsaltb\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"DP5OeLM1w\")return false;return true;};const visible4=isSet(HY1X73dpT);const visible5=isSet(U0gx1yKeB);const visible6=isSet(QF3AEVk8r);const visible7=isSet(erJHC_ckW);const visible8=isSet(fsFlSPDTa);const visible9=isSet(rm5GqyLak);const visible10=isSet(OksyNeyec);const visible11=isSet(rB64YNSUs);const visible12=isSet(lUT9kBBwP);const visible13=isSet(UagkMeXHL);const visible14=isSet(YDSGjqno7);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"zn7ljgmof\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1rn7xrn\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:94,width:\"100vw\",y:0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1htverq-container\",id:\"1htverq\",layoutScroll:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DP5OeLM1w:{variant:\"VB1BjxPAl\"},OMfRsaltb:{variant:\"jGxsJ3ukB\"}},children:/*#__PURE__*/_jsx(NavigationPrimary,{dr1vZ4EhS:dr1vZ4EhSwelu7j({overlay}),height:\"100%\",id:\"mMxhctD0y\",layoutId:\"mMxhctD0y\",style:{width:\"100%\"},variant:\"l2ngWDy4B\",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:0,ease:[0,0,1,1],type:\"tween\"}},className:\"framer-1hwnv1f\",\"data-framer-portal-id\":\"1htverq\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"Fv3oXFfhF\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{animate:animation1,className:\"framer-ta1xqi-container\",\"data-framer-portal-id\":\"1htverq\",exit:animation,initial:animation2,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(MenuOpenOverlay,{height:\"100%\",id:\"k6lUslRyW\",layoutId:\"k6lUslRyW\",style:{height:\"100%\",width:\"100%\"},variant:\"I2DiMKo8W\",width:\"100%\",ZnO4gEEiP:ZnO4gEEiP1wvko5h({overlay})})})})]}),document.querySelector(\"#overlay\"))})})]})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-wfohw9\",\"data-framer-name\":\"Main\",name:\"Main\",children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-3188ig\",\"data-framer-name\":\"Section Header\",name:\"Section Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yxde6\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Rnw1WO1jS\"},nodeId:\"fQKkDMrIG\",openInNewTab:false,children:/*#__PURE__*/_jsx(MotionAWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1pfsjyo framer-ocwrf3\",\"data-framer-appear-id\":\"1pfsjyo\",\"data-framer-name\":\"all projects\",initial:animation5,name:\"all projects\",optimized:true,whileHover:animation3,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uc0dg7\",\"data-styles-preset\":\"Zc4rlgUye\",children:\"\u2190 All Projects\"})}),className:\"framer-1ru6qlc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dqrt03\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2nzy28\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation6,className:\"framer-klbi3g\",\"data-framer-appear-id\":\"klbi3g\",\"data-framer-name\":\"Categories\",initial:animation7,name:\"Categories\",optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xzyzo4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uc0dg7\",\"data-styles-preset\":\"Zc4rlgUye\",style:{\"--framer-text-color\":\"var(--token-faf217ee-812d-4474-8131-b934f8e4dc1f, rgb(249, 249, 242))\"},children:\"Content\"})}),className:\"framer-qwmxcw\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})}),visible&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yb04t1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uc0dg7\",\"data-styles-preset\":\"Zc4rlgUye\",style:{\"--framer-text-color\":\"var(--token-faf217ee-812d-4474-8131-b934f8e4dc1f, rgb(249, 249, 242))\"},children:\"Brand Homes & Retail Experiences\"})}),className:\"framer-1mrnqpm\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OMfRsaltb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO01hcnIgU2FucyBDb25kIEJvbGQ=\",\"--framer-font-family\":'\"Marr Sans Cond Bold\", \"Marr Sans Cond Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(20, 49, 40))\"},children:\"Hennessy XO x Kim Jones\"})}),fonts:[\"CUSTOM;Marr Sans Cond Bold\"]}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation8,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hh1wpb\",\"data-styles-preset\":\"fPxpbyP1C\",style:{\"--framer-text-color\":\"var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(20, 49, 40))\"},children:\"Hennessy XO x Kim Jones\"})}),className:\"framer-1h6adtm\",\"data-framer-appear-id\":\"1h6adtm\",fonts:[\"Inter\"],initial:animation9,optimized:true,style:{transformPerspective:1200},text:oeXZcmPna,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DP5OeLM1w:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:572,intrinsicWidth:433,loading:getLoadingLazyAtYPosition(262),pixelHeight:4153,pixelWidth:1610,positionX:\"right\",positionY:\"center\",sizes:\"79px\",src:\"https://framerusercontent.com/images/1SCJF2mZXizC619WIwyZf3JJ8fM.svg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/1SCJF2mZXizC619WIwyZf3JJ8fM.svg?scale-down-to=2048 793w,https://framerusercontent.com/images/1SCJF2mZXizC619WIwyZf3JJ8fM.svg?scale-down-to=4096 1587w,https://framerusercontent.com/images/1SCJF2mZXizC619WIwyZf3JJ8fM.svg 1610w\"}},OMfRsaltb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:572,intrinsicWidth:433,loading:getLoadingLazyAtYPosition(339),pixelHeight:4153,pixelWidth:1610,positionX:\"right\",positionY:\"center\",sizes:\"49px\",src:\"https://framerusercontent.com/images/1SCJF2mZXizC619WIwyZf3JJ8fM.svg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/1SCJF2mZXizC619WIwyZf3JJ8fM.svg?scale-down-to=2048 793w,https://framerusercontent.com/images/1SCJF2mZXizC619WIwyZf3JJ8fM.svg?scale-down-to=4096 1587w,https://framerusercontent.com/images/1SCJF2mZXizC619WIwyZf3JJ8fM.svg 1610w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation4,background:{alt:\"\",fit:\"fit\",intrinsicHeight:572,intrinsicWidth:433,loading:getLoadingLazyAtYPosition(262),pixelHeight:4153,pixelWidth:1610,positionX:\"right\",positionY:\"center\",sizes:\"150px\",src:\"https://framerusercontent.com/images/1SCJF2mZXizC619WIwyZf3JJ8fM.svg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/1SCJF2mZXizC619WIwyZf3JJ8fM.svg?scale-down-to=2048 793w,https://framerusercontent.com/images/1SCJF2mZXizC619WIwyZf3JJ8fM.svg?scale-down-to=4096 1587w,https://framerusercontent.com/images/1SCJF2mZXizC619WIwyZf3JJ8fM.svg 1610w\"},className:\"framer-1q1kgbs\",\"data-framer-appear-id\":\"1q1kgbs\",\"data-framer-name\":\"Platter black\",initial:animation5,name:\"Platter black\",optimized:true})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1ix31z3\",\"data-framer-name\":\"Section Info\",name:\"Section Info\",children:[visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DP5OeLM1w:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(500),sizes:\"100vw\",...toResponsiveImage(Jy7hBJady)}},OMfRsaltb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(500),sizes:\"100vw\",...toResponsiveImage(Jy7hBJady)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(-159),sizes:\"100vw\",...toResponsiveImage(Jy7hBJady)},className:\"framer-tap8ne\"})}),visible2&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation10,className:\"framer-kwn441\",\"data-framer-appear-id\":\"kwn441\",\"data-framer-name\":\"Vimeo Video\",initial:animation11,name:\"Vimeo Video\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12haznc-container\",style:{scale:1.1},children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(0, 0, 0))\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"PiD3rbWgb\",isMixedBorderRadius:false,layoutId:\"PiD3rbWgb\",loop:true,mute:true,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:zUiu0Skgu,width:\"100%\"})})})}),visible3&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation10,className:\"framer-96mott\",\"data-framer-appear-id\":\"96mott\",\"data-framer-name\":\"Youtube Video\",initial:animation11,name:\"Youtube Video\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xvdypq\",\"data-framer-name\":\"Video Wrapper\",name:\"Video Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6c9m0e-container\",style:{scale:1.1},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"DdN5FE2ME\",isMixedBorderRadius:false,isRed:false,layoutId:\"DdN5FE2ME\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=mbUVRDJqals\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-31zfq4\",\"data-framer-name\":\"Credits & Info\",name:\"Credits & Info\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zis0ow\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11m8gbq\",\"data-framer-name\":\"Left Column\",name:\"Left Column\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-bi47qn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(1, 1, 3)\",\"--framer-text-transform\":\"uppercase\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-64228209-8956-4a21-9f2d-26621794c772, rgb(233, 46, 13))\"},children:\"//\"}),\" BRIEF\"]})}),className:\"framer-1o3fkf8\",\"data-framer-name\":\"/ About the project\",fonts:[\"GF;Azeret Mono-regular\"],name:\"/ About the project\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:VeDm9FjW4,className:\"framer-1sv1d3a\",\"data-framer-name\":\"The client's goal was to create a brand identity that would resonate with environmentally conscious consumers and help position their business as a leader in sustainable practices. Objectives included increasing brand awareness and driving customer engagement. Our approach was to create a brand identity that communicated Green Wave's values of sustainability, innovation, and authenticity. We developed a brand strategy that focused on creating a unique and memorable visual identity that would differentiate the brand from its competitors.\",fonts:[\"Inter\"],name:\"The client's goal was to create a brand identity that would resonate with environmentally conscious consumers and help position their business as a leader in sustainable practices. Objectives included increasing brand awareness and driving customer engagement. Our approach was to create a brand identity that communicated Green Wave's values of sustainability, innovation, and authenticity. We developed a brand strategy that focused on creating a unique and memorable visual identity that would differentiate the brand from its competitors.\",stylesPresetsClassNames:{a:\"framer-styles-preset-eeskf2\",h1:\"framer-styles-preset-o3e5h0\",h2:\"framer-styles-preset-8qbwek\",h3:\"framer-styles-preset-rhmsro\",h4:\"framer-styles-preset-m7uahk\",h5:\"framer-styles-preset-3zjm9r\",h6:\"framer-styles-preset-11jtmki\",p:\"framer-styles-preset-1dmv8xw\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-121wm1w\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(1, 1, 3)\",\"--framer-text-transform\":\"uppercase\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-64228209-8956-4a21-9f2d-26621794c772, rgb(233, 46, 13))\"},children:\"//\"}),\" RESPONSE\"]})}),className:\"framer-oo8h2e\",\"data-framer-name\":\"/ About the project\",fonts:[\"GF;Azeret Mono-regular\"],name:\"/ About the project\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-m7uahk\",\"data-styles-preset\":\"VEITImmeG\",children:\"Pleasure has no limits.\"})}),className:\"framer-1iiq31a\",\"data-framer-name\":\"The client's goal was to create a brand identity that would resonate with environmentally conscious consumers and help position their business as a leader in sustainable practices. Objectives included increasing brand awareness and driving customer engagement. Our approach was to create a brand identity that communicated Green Wave's values of sustainability, innovation, and authenticity. We developed a brand strategy that focused on creating a unique and memorable visual identity that would differentiate the brand from its competitors.\",fonts:[\"Inter\"],name:\"The client's goal was to create a brand identity that would resonate with environmentally conscious consumers and help position their business as a leader in sustainable practices. Objectives included increasing brand awareness and driving customer engagement. Our approach was to create a brand identity that communicated Green Wave's values of sustainability, innovation, and authenticity. We developed a brand strategy that focused on creating a unique and memorable visual identity that would differentiate the brand from its competitors.\",style:{transformPerspective:1200},text:lprMTjrtO,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:G68jnZQGy,className:\"framer-pofwwy\",\"data-framer-name\":\"The client's goal was to create a brand identity that would resonate with environmentally conscious consumers and help position their business as a leader in sustainable practices. Objectives included increasing brand awareness and driving customer engagement. Our approach was to create a brand identity that communicated Green Wave's values of sustainability, innovation, and authenticity. We developed a brand strategy that focused on creating a unique and memorable visual identity that would differentiate the brand from its competitors.\",fonts:[\"Inter\"],name:\"The client's goal was to create a brand identity that would resonate with environmentally conscious consumers and help position their business as a leader in sustainable practices. Objectives included increasing brand awareness and driving customer engagement. Our approach was to create a brand identity that communicated Green Wave's values of sustainability, innovation, and authenticity. We developed a brand strategy that focused on creating a unique and memorable visual identity that would differentiate the brand from its competitors.\",style:{transformPerspective:1200},stylesPresetsClassNames:{a:\"framer-styles-preset-eeskf2\",h1:\"framer-styles-preset-zw7hg5\",h2:\"framer-styles-preset-8qbwek\",h3:\"framer-styles-preset-rhmsro\",h4:\"framer-styles-preset-m7uahk\",h5:\"framer-styles-preset-3zjm9r\",h6:\"framer-styles-preset-11jtmki\",img:\"framer-styles-preset-r21gyk\",p:\"framer-styles-preset-1dmv8xw\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4ibu5p hidden-5nm5tn\",\"data-framer-name\":\"Right Column\",name:\"Right Column\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jdtfl9 hidden-dbiqm7\",\"data-framer-name\":\"Credits Wrapper\",name:\"Credits Wrapper\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-boecvl\",\"data-framer-name\":\"Container\",name:\"Container\",style:{transformPerspective:1200},children:[visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b31hki\",\"data-framer-name\":\"Credits\",name:\"Credits\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dmv8xw\",\"data-styles-preset\":\"ZB3A5PLtS\",children:\"Designers: \"})}),className:\"framer-1ugy7w9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dmv8xw\",\"data-styles-preset\":\"ZB3A5PLtS\",children:\"Victoria Park, Frank Shares\"})}),className:\"framer-1si9hs4\",fonts:[\"Inter\"],text:HY1X73dpT,verticalAlignment:\"top\",withExternalLayout:true})]}),visible5&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dm8cfv\",\"data-framer-name\":\"Credits\",name:\"Credits\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dmv8xw\",\"data-styles-preset\":\"ZB3A5PLtS\",children:\"Makeup: \"})}),className:\"framer-sv4g37\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dmv8xw\",\"data-styles-preset\":\"ZB3A5PLtS\",children:\"Malte Anders, Emil Taylor\"})}),className:\"framer-o97w7w\",fonts:[\"Inter\"],text:U0gx1yKeB,verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-e5kg88\",\"data-framer-name\":\"Year Wrapper\",name:\"Year Wrapper\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1w6bpls\",\"data-framer-name\":\"Year Wrapper\",name:\"Year Wrapper\",style:{transformPerspective:1200}})})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c31vi1\",children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-1q2gp0k\",\"data-framer-name\":\"Section Images\",name:\"Section Images\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-flpgyy\",\"data-framer-name\":\"Image Row\",name:\"Image Row\",children:[visible6&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6gsfr2\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",style:{transformPerspective:1200},children:visible6&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OMfRsaltb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1288),sizes:\"calc(max(100vw, 1px) - 30px)\",...toResponsiveImage(QF3AEVk8r)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1760),sizes:\"max((max(100vw, 1px) - 20px) * Infinity, 1px)\",...toResponsiveImage(QF3AEVk8r)},className:\"framer-m1mfrm\",\"data-framer-name\":\"Image\",name:\"Image\",children:visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-125fj36\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1yZWd1bGFy\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-faf217ee-812d-4474-8131-b934f8e4dc1f, rgb(249, 249, 242))\",\"--framer-text-transform\":\"inherit\"},children:\"Another hennesey caption\"})}),className:\"framer-1k4gqz1\",fonts:[\"FS;Switzer-regular\"],text:erJHC_ckW,verticalAlignment:\"top\",withExternalLayout:true})})})})}),visible8&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vjlo81\",\"data-framer-name\":\"Video Wrapper\",name:\"Video Wrapper\",style:{transformPerspective:1200},children:visible8&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dhwssh-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"BOeBwV7DP\",isMixedBorderRadius:false,layoutId:\"BOeBwV7DP\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:toImageSrc(fsFlSPDTa),posterEnabled:true,srcType:\"URL\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]}),visible9&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ac2s2t\",\"data-framer-name\":\"Image Row\",name:\"Image Row\",style:{transformPerspective:1200},children:visible9&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OMfRsaltb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2668),sizes:\"calc(max(100vw, 1px) - 30px)\",...toResponsiveImage(rm5GqyLak)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2450),sizes:\"calc(max(100vw, 1px) - 40px)\",...toResponsiveImage(rm5GqyLak)},className:\"framer-rxlqf\",\"data-framer-name\":\"Image\",name:\"Image\",children:visible10&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vxav5i\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1yZWd1bGFy\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(20, 49, 40))\",\"--framer-text-transform\":\"inherit\"},children:\"Sample hennesey caption\"})}),className:\"framer-y498y9\",fonts:[\"FS;Switzer-regular\"],text:cBT57oH8T,verticalAlignment:\"top\",withExternalLayout:true})})})})}),visible11&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cd418o\",\"data-framer-name\":\"Image Row\",name:\"Image Row\",children:[visible11&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1iy7i7h\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",style:{transformPerspective:1200},children:visible11&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OMfRsaltb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2918),sizes:\"calc(max(100vw, 1px) - 30px)\",...toResponsiveImage(rB64YNSUs)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2775),sizes:\"max((max(100vw, 1px) - 20px) * Infinity, 1px)\",...toResponsiveImage(rB64YNSUs)},className:\"framer-1kpbfur\",\"data-framer-name\":\"Image\",name:\"Image\",children:visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-8lw7jk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1yZWd1bGFy\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-faf217ee-812d-4474-8131-b934f8e4dc1f, rgb(249, 249, 242))\",\"--framer-text-transform\":\"inherit\"},children:\"Another hennesey caption\"})}),className:\"framer-1m7tlcl\",fonts:[\"FS;Switzer-regular\"],text:erJHC_ckW,verticalAlignment:\"top\",withExternalLayout:true})})})})}),visible12&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xdpu54\",\"data-framer-name\":\"Video Wrapper\",name:\"Video Wrapper\",style:{transformPerspective:1200},children:visible12&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d0r59o-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"nUQ_3SK3x\",isMixedBorderRadius:false,layoutId:\"nUQ_3SK3x\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:toImageSrc(lUT9kBBwP),posterEnabled:true,srcType:\"URL\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]}),visible13&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tpyxa7\",\"data-framer-name\":\"Image Row\",name:\"Image Row\",style:{transformPerspective:1200},children:visible13&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OMfRsaltb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2938),sizes:\"calc(max(100vw, 1px) - 30px)\",...toResponsiveImage(UagkMeXHL)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3130),sizes:\"calc(max(100vw, 1px) - 40px)\",...toResponsiveImage(UagkMeXHL)},className:\"framer-1sdjlcz\",\"data-framer-name\":\"Image\",name:\"Image\",children:visible14&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ne1fml\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1yZWd1bGFy\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(20, 49, 40))\",\"--framer-text-transform\":\"inherit\"},children:\"Sample hennesey caption\"})}),className:\"framer-19qejd8\",fonts:[\"FS;Switzer-regular\"],text:cBT57oH8T,verticalAlignment:\"top\",withExternalLayout:true})})})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-9qpn8p\",\"data-framer-name\":\"Section Next Project\",name:\"Section Next Project\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gvyfni\",\"data-framer-name\":\"Heading Wrapper\",name:\"Heading Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-11yx1tw\",\"data-framer-name\":\"Heading\",name:\"Heading\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hh1wpb\",\"data-styles-preset\":\"fPxpbyP1C\",style:{\"--framer-text-color\":\"var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(20, 49, 40))\"},children:\"Other Projects\"})}),className:\"framer-2pcc8n\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v6og8h\",\"data-framer-name\":\"Next Project Wrapper\",name:\"Next Project Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-k8vxif\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"jdGHnOaNj\",data:CaseStudies,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"jdGHnOaNj\",name:\"pdXVG_fBO\",type:\"Identifier\"},{collection:\"jdGHnOaNj\",name:\"DLBifmgp1\",type:\"Identifier\"},{collection:\"jdGHnOaNj\",name:\"oeXZcmPna\",type:\"Identifier\"},{collection:\"jdGHnOaNj\",name:\"WG62tRjG8\",type:\"Identifier\"},{collection:\"jdGHnOaNj\",name:\"Jy7hBJady\",type:\"Identifier\"},{collection:\"jdGHnOaNj\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"jdGHnOaNj\",name:\"DLBifmgp1\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:X4mkKflln},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"pdXVG_fBO\":pdXVG_fBOjdGHnOaNj,\"DLBifmgp1\":DLBifmgp1jdGHnOaNj,\"oeXZcmPna\":oeXZcmPnajdGHnOaNj,\"WG62tRjG8\":WG62tRjG8jdGHnOaNj,\"Jy7hBJady\":Jy7hBJadyjdGHnOaNj,\"id\":idjdGHnOaNj},i)=>{pdXVG_fBOjdGHnOaNj!==null&&pdXVG_fBOjdGHnOaNj!==void 0?pdXVG_fBOjdGHnOaNj:pdXVG_fBOjdGHnOaNj=\"\";DLBifmgp1jdGHnOaNj!==null&&DLBifmgp1jdGHnOaNj!==void 0?DLBifmgp1jdGHnOaNj:DLBifmgp1jdGHnOaNj=0;oeXZcmPnajdGHnOaNj!==null&&oeXZcmPnajdGHnOaNj!==void 0?oeXZcmPnajdGHnOaNj:oeXZcmPnajdGHnOaNj=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`jdGHnOaNj-${idjdGHnOaNj}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{pdXVG_fBO:pdXVG_fBOjdGHnOaNj},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{pdXVG_fBO:pdXVG_fBOjdGHnOaNj},webPageId:\"UlQco8cYi\"},implicitPathVariables:undefined},{href:{pathVariables:{pdXVG_fBO:pdXVG_fBOjdGHnOaNj},webPageId:\"UlQco8cYi\"},implicitPathVariables:undefined},{href:{pathVariables:{pdXVG_fBO:pdXVG_fBOjdGHnOaNj},webPageId:\"UlQco8cYi\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OMfRsaltb:{width:\"calc(100vw - 30px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:250,width:\"max((100vw - 80px) / 3, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-24jjgp-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DP5OeLM1w:{WCZDKcwoD:resolvedLinks[1]},OMfRsaltb:{WCZDKcwoD:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(OtherProjectCard,{COnO_r_TO:oeXZcmPnajdGHnOaNj,cpM8YFfZW:toResponsiveImage(Jy7hBJadyjdGHnOaNj),height:\"100%\",id:\"Ll4fvpjRr\",layoutId:\"Ll4fvpjRr\",style:{height:\"100%\",width:\"100%\"},variant:\"S6jG7XgLg\",WCZDKcwoD:resolvedLinks[0],width:\"100%\",X00XHRb0O:DLBifmgp1jdGHnOaNj,x9gMjNAjR:WG62tRjG8jdGHnOaNj})})})})})})})},idjdGHnOaNj);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hs35l9\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ahzuYOuYM\",data:CaseStudies,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"ahzuYOuYM\",name:\"pdXVG_fBO\",type:\"Identifier\"},{collection:\"ahzuYOuYM\",name:\"DLBifmgp1\",type:\"Identifier\"},{collection:\"ahzuYOuYM\",name:\"oeXZcmPna\",type:\"Identifier\"},{collection:\"ahzuYOuYM\",name:\"WG62tRjG8\",type:\"Identifier\"},{collection:\"ahzuYOuYM\",name:\"Jy7hBJady\",type:\"Identifier\"},{collection:\"ahzuYOuYM\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"ahzuYOuYM\",name:\"DLBifmgp1\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:z_tutvcUx},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"pdXVG_fBO\":pdXVG_fBOahzuYOuYM,\"DLBifmgp1\":DLBifmgp1ahzuYOuYM,\"oeXZcmPna\":oeXZcmPnaahzuYOuYM,\"WG62tRjG8\":WG62tRjG8ahzuYOuYM,\"Jy7hBJady\":Jy7hBJadyahzuYOuYM,\"id\":idahzuYOuYM},i)=>{pdXVG_fBOahzuYOuYM!==null&&pdXVG_fBOahzuYOuYM!==void 0?pdXVG_fBOahzuYOuYM:pdXVG_fBOahzuYOuYM=\"\";DLBifmgp1ahzuYOuYM!==null&&DLBifmgp1ahzuYOuYM!==void 0?DLBifmgp1ahzuYOuYM:DLBifmgp1ahzuYOuYM=0;oeXZcmPnaahzuYOuYM!==null&&oeXZcmPnaahzuYOuYM!==void 0?oeXZcmPnaahzuYOuYM:oeXZcmPnaahzuYOuYM=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ahzuYOuYM-${idahzuYOuYM}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{pdXVG_fBO:pdXVG_fBOahzuYOuYM},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{pdXVG_fBO:pdXVG_fBOahzuYOuYM},webPageId:\"UlQco8cYi\"},implicitPathVariables:undefined},{href:{pathVariables:{pdXVG_fBO:pdXVG_fBOahzuYOuYM},webPageId:\"UlQco8cYi\"},implicitPathVariables:undefined},{href:{pathVariables:{pdXVG_fBO:pdXVG_fBOahzuYOuYM},webPageId:\"UlQco8cYi\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OMfRsaltb:{width:\"calc(100vw - 30px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:250,width:\"max((100vw - 80px) / 3, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-gmet2u-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DP5OeLM1w:{WCZDKcwoD:resolvedLinks1[1]},OMfRsaltb:{WCZDKcwoD:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(OtherProjectCard,{COnO_r_TO:oeXZcmPnaahzuYOuYM,cpM8YFfZW:toResponsiveImage(Jy7hBJadyahzuYOuYM),height:\"100%\",id:\"rS0S3Yll1\",layoutId:\"rS0S3Yll1\",style:{height:\"100%\",width:\"100%\"},variant:\"S6jG7XgLg\",WCZDKcwoD:resolvedLinks1[0],width:\"100%\",X00XHRb0O:DLBifmgp1ahzuYOuYM,x9gMjNAjR:WG62tRjG8ahzuYOuYM})})})})})})})},idahzuYOuYM);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-72dsuj\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"BbhROnvtz\",data:CaseStudies,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"BbhROnvtz\",name:\"pdXVG_fBO\",type:\"Identifier\"},{collection:\"BbhROnvtz\",name:\"DLBifmgp1\",type:\"Identifier\"},{collection:\"BbhROnvtz\",name:\"oeXZcmPna\",type:\"Identifier\"},{collection:\"BbhROnvtz\",name:\"WG62tRjG8\",type:\"Identifier\"},{collection:\"BbhROnvtz\",name:\"Jy7hBJady\",type:\"Identifier\"},{collection:\"BbhROnvtz\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"BbhROnvtz\",name:\"DLBifmgp1\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:OoXOWcQvg},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2.map(({\"pdXVG_fBO\":pdXVG_fBOBbhROnvtz,\"DLBifmgp1\":DLBifmgp1BbhROnvtz,\"oeXZcmPna\":oeXZcmPnaBbhROnvtz,\"WG62tRjG8\":WG62tRjG8BbhROnvtz,\"Jy7hBJady\":Jy7hBJadyBbhROnvtz,\"id\":idBbhROnvtz},i)=>{pdXVG_fBOBbhROnvtz!==null&&pdXVG_fBOBbhROnvtz!==void 0?pdXVG_fBOBbhROnvtz:pdXVG_fBOBbhROnvtz=\"\";DLBifmgp1BbhROnvtz!==null&&DLBifmgp1BbhROnvtz!==void 0?DLBifmgp1BbhROnvtz:DLBifmgp1BbhROnvtz=0;oeXZcmPnaBbhROnvtz!==null&&oeXZcmPnaBbhROnvtz!==void 0?oeXZcmPnaBbhROnvtz:oeXZcmPnaBbhROnvtz=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`BbhROnvtz-${idBbhROnvtz}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{pdXVG_fBO:pdXVG_fBOBbhROnvtz},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{pdXVG_fBO:pdXVG_fBOBbhROnvtz},webPageId:\"UlQco8cYi\"},implicitPathVariables:undefined},{href:{pathVariables:{pdXVG_fBO:pdXVG_fBOBbhROnvtz},webPageId:\"UlQco8cYi\"},implicitPathVariables:undefined},{href:{pathVariables:{pdXVG_fBO:pdXVG_fBOBbhROnvtz},webPageId:\"UlQco8cYi\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OMfRsaltb:{width:\"calc(100vw - 30px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:250,width:\"max((100vw - 80px) / 3, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-gm8vnu-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DP5OeLM1w:{WCZDKcwoD:resolvedLinks2[1]},OMfRsaltb:{WCZDKcwoD:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(OtherProjectCard,{COnO_r_TO:oeXZcmPnaBbhROnvtz,cpM8YFfZW:toResponsiveImage(Jy7hBJadyBbhROnvtz),height:\"100%\",id:\"y5Q09a7Cx\",layoutId:\"y5Q09a7Cx\",style:{height:\"100%\",width:\"100%\"},variant:\"S6jG7XgLg\",WCZDKcwoD:resolvedLinks2[0],width:\"100%\",X00XHRb0O:DLBifmgp1BbhROnvtz,x9gMjNAjR:WG62tRjG8BbhROnvtz})})})})})})})},idBbhROnvtz);})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OMfRsaltb:{y:3002}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:890,width:\"100vw\",y:2824,children:/*#__PURE__*/_jsx(Container,{className:\"framer-acqnf7-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OMfRsaltb:{variant:\"rz5eF_lhF\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"C7MC9M1mP\",layoutId:\"C7MC9M1mP\",style:{width:\"100%\"},variant:\"PzjiRIRtf\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"footer\",{className:\"framer-50fqt5\",\"data-framer-name\":\"Footer\",name:\"Footer\",children:isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:304,width:\"100vw\",y:3590,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a6sisy-container hidden-5nm5tn\",children:/*#__PURE__*/_jsx(FooterAssets,{height:\"100%\",id:\"BhntAiPTs\",layoutId:\"BhntAiPTs\",style:{width:\"100%\"},variant:\"hwslIwW6k\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10lxemk-container\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"bmbjfMbLC\",intensity:15,layoutId:\"bmbjfMbLC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(0),pixelHeight:9988,pixelWidth:17638,positionX:\"center\",positionY:\"center\",sizes:\"calc(100vw - 40px)\",src:\"https://framerusercontent.com/images/8hfRra9c1Uc1b07YgjRfe4zmM.svg\",srcSet:\"https://framerusercontent.com/images/8hfRra9c1Uc1b07YgjRfe4zmM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/8hfRra9c1Uc1b07YgjRfe4zmM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8hfRra9c1Uc1b07YgjRfe4zmM.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/8hfRra9c1Uc1b07YgjRfe4zmM.svg?scale-down-to=4096 4096w,https://framerusercontent.com/images/8hfRra9c1Uc1b07YgjRfe4zmM.svg 17638w\"},className:\"framer-1yggc3l\",\"data-framer-name\":\"Grid Lines\",name:\"Grid Lines\"})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-VIhRM { background: var(--token-faf217ee-812d-4474-8131-b934f8e4dc1f, rgb(246, 243, 236)); }`,\".framer-VIhRM.framer-ocwrf3, .framer-VIhRM .framer-ocwrf3 { display: block; }\",\".framer-VIhRM.framer-1rn7xrn { align-content: center; align-items: center; background-color: var(--token-faf217ee-812d-4474-8131-b934f8e4dc1f, #f6f3ec); 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-VIhRM .framer-1htverq-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 8; }\",\".framer-VIhRM .framer-1hwnv1f { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 6; }\",\".framer-VIhRM .framer-ta1xqi-container { flex: none; height: 100%; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 9; }\",\".framer-VIhRM .framer-wfohw9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VIhRM .framer-3188ig { align-content: flex-end; align-items: flex-end; background-color: var(--token-faf217ee-812d-4474-8131-b934f8e4dc1f, #f0ece3); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50vh; justify-content: flex-start; overflow: hidden; padding: 40px 20px 40px 20px; position: relative; width: 100%; }\",\".framer-VIhRM .framer-yxde6 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-VIhRM .framer-1pfsjyo { align-content: center; align-items: center; background-color: var(--token-58e531a2-96b2-48a2-a5e5-7ea2e068f65b, #f2f2eb); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 20px; justify-content: center; overflow: hidden; padding: 10px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-VIhRM .framer-1ru6qlc, .framer-VIhRM .framer-qwmxcw, .framer-VIhRM .framer-1mrnqpm, .framer-VIhRM .framer-1ugy7w9, .framer-VIhRM .framer-1si9hs4, .framer-VIhRM .framer-sv4g37, .framer-VIhRM .framer-o97w7w, .framer-VIhRM .framer-1k4gqz1, .framer-VIhRM .framer-y498y9, .framer-VIhRM .framer-1m7tlcl, .framer-VIhRM .framer-19qejd8, .framer-VIhRM .framer-2pcc8n { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-VIhRM .framer-1dqrt03 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 9px 0px 9px 0px; position: relative; width: 100%; }\",\".framer-VIhRM .framer-2nzy28 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VIhRM .framer-klbi3g { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-VIhRM .framer-xzyzo4, .framer-VIhRM .framer-1yb04t1 { align-content: center; align-items: center; background-color: var(--token-64228209-8956-4a21-9f2d-26621794c772, #e92e0d); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 13px; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-VIhRM .framer-1h6adtm { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 905px; word-break: break-word; word-wrap: break-word; }\",\".framer-VIhRM .framer-1q1kgbs { aspect-ratio: 0.756993006993007 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 198px); overflow: visible; position: relative; width: 150px; }\",\".framer-VIhRM .framer-1ix31z3 { align-content: center; align-items: center; 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: 1; }\",\".framer-VIhRM .framer-tap8ne { aspect-ratio: 1.7699115044247788 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 678px); position: relative; width: 100%; }\",\".framer-VIhRM .framer-kwn441, .framer-VIhRM .framer-96mott { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-VIhRM .framer-12haznc-container { aspect-ratio: 1.875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 640px); position: relative; width: 100%; z-index: 1; }\",\".framer-VIhRM .framer-1xvdypq { align-content: center; align-items: center; aspect-ratio: 1.875 / 1; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 107px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-VIhRM .framer-6c9m0e-container { aspect-ratio: 1.875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 107px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 100%; z-index: 1; }\",\".framer-VIhRM .framer-31zfq4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 20px 100px 20px; position: relative; width: 100%; }\",\".framer-VIhRM .framer-zis0ow { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 1500px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-VIhRM .framer-11m8gbq, .framer-VIhRM .framer-4ibu5p { 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; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-VIhRM .framer-bi47qn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VIhRM .framer-1o3fkf8, .framer-VIhRM .framer-1sv1d3a, .framer-VIhRM .framer-pofwwy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-VIhRM .framer-121wm1w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VIhRM .framer-oo8h2e { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 570px; word-break: break-word; word-wrap: break-word; }\",\".framer-VIhRM .framer-1iiq31a { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-VIhRM .framer-1jdtfl9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 50%; }\",\".framer-VIhRM .framer-boecvl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; min-height: 72px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VIhRM .framer-1b31hki { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VIhRM .framer-dm8cfv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VIhRM .framer-e5kg88 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VIhRM .framer-1w6bpls { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 24px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VIhRM .framer-1c31vi1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-VIhRM .framer-1q2gp0k { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 160px 20px; position: relative; width: 1px; }\",\".framer-VIhRM .framer-flpgyy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VIhRM .framer-6gsfr2, .framer-VIhRM .framer-vjlo81, .framer-VIhRM .framer-1xdpu54 { align-content: center; align-items: center; aspect-ratio: 0.8507462686567164 / 1; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: 0.5 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 670px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-VIhRM .framer-m1mfrm, .framer-VIhRM .framer-dhwssh-container, .framer-VIhRM .framer-1kpbfur, .framer-VIhRM .framer-1d0r59o-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-VIhRM .framer-125fj36, .framer-VIhRM .framer-1vxav5i, .framer-VIhRM .framer-8lw7jk, .framer-VIhRM .framer-ne1fml { align-content: center; align-items: center; background-color: var(--token-6e047eb4-6e53-49b7-a145-ed2f6fd53694, #dff451); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 13px; justify-content: center; left: 17px; overflow: hidden; padding: 10px; position: absolute; top: 19px; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-VIhRM .framer-ac2s2t, .framer-VIhRM .framer-tpyxa7 { align-content: center; align-items: center; aspect-ratio: 1.8125 / 1; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 640px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-VIhRM .framer-rxlqf, .framer-VIhRM .framer-1sdjlcz { flex: none; height: 100%; overflow: hidden; position: relative; width: 100%; }\",\".framer-VIhRM .framer-cd418o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; min-height: 670px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VIhRM .framer-1iy7i7h { align-content: center; align-items: center; aspect-ratio: 0.8507462686567164 / 1; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: 0.5 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 682px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-VIhRM .framer-9qpn8p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-VIhRM .framer-gvyfni { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 20px 40px 20px; position: relative; width: 100%; }\",\".framer-VIhRM .framer-11yx1tw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VIhRM .framer-v6og8h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-VIhRM .framer-k8vxif, .framer-VIhRM .framer-1hs35l9, .framer-VIhRM .framer-72dsuj { 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-VIhRM .framer-24jjgp-container, .framer-VIhRM .framer-gm8vnu-container { aspect-ratio: 1.494 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 250px); position: relative; width: 100%; }\",\".framer-VIhRM .framer-gmet2u-container { aspect-ratio: 1.492 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 250px); position: relative; width: 100%; }\",\".framer-VIhRM .framer-acqnf7-container { flex: none; height: auto; position: relative; width: 100%; z-index: 5; }\",\".framer-VIhRM .framer-50fqt5 { align-content: center; align-items: center; bottom: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; z-index: 9; }\",\".framer-VIhRM .framer-1a6sisy-container { flex: none; height: auto; position: relative; width: 100%; z-index: 10; }\",\".framer-VIhRM .framer-10lxemk-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-VIhRM .framer-1yggc3l { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 20px; padding: 0px 20px 0px 20px; position: absolute; right: 20px; top: 0px; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-VIhRM.framer-1rn7xrn, .framer-VIhRM .framer-wfohw9, .framer-VIhRM .framer-3188ig, .framer-VIhRM .framer-yxde6, .framer-VIhRM .framer-1pfsjyo, .framer-VIhRM .framer-1dqrt03, .framer-VIhRM .framer-2nzy28, .framer-VIhRM .framer-klbi3g, .framer-VIhRM .framer-xzyzo4, .framer-VIhRM .framer-1yb04t1, .framer-VIhRM .framer-1ix31z3, .framer-VIhRM .framer-kwn441, .framer-VIhRM .framer-96mott, .framer-VIhRM .framer-1xvdypq, .framer-VIhRM .framer-31zfq4, .framer-VIhRM .framer-zis0ow, .framer-VIhRM .framer-11m8gbq, .framer-VIhRM .framer-bi47qn, .framer-VIhRM .framer-121wm1w, .framer-VIhRM .framer-4ibu5p, .framer-VIhRM .framer-1jdtfl9, .framer-VIhRM .framer-boecvl, .framer-VIhRM .framer-1b31hki, .framer-VIhRM .framer-dm8cfv, .framer-VIhRM .framer-e5kg88, .framer-VIhRM .framer-1w6bpls, .framer-VIhRM .framer-1c31vi1, .framer-VIhRM .framer-1q2gp0k, .framer-VIhRM .framer-flpgyy, .framer-VIhRM .framer-6gsfr2, .framer-VIhRM .framer-125fj36, .framer-VIhRM .framer-vjlo81, .framer-VIhRM .framer-ac2s2t, .framer-VIhRM .framer-1vxav5i, .framer-VIhRM .framer-cd418o, .framer-VIhRM .framer-1iy7i7h, .framer-VIhRM .framer-8lw7jk, .framer-VIhRM .framer-1xdpu54, .framer-VIhRM .framer-tpyxa7, .framer-VIhRM .framer-ne1fml, .framer-VIhRM .framer-9qpn8p, .framer-VIhRM .framer-gvyfni, .framer-VIhRM .framer-11yx1tw, .framer-VIhRM .framer-v6og8h, .framer-VIhRM .framer-k8vxif, .framer-VIhRM .framer-1hs35l9, .framer-VIhRM .framer-72dsuj, .framer-VIhRM .framer-50fqt5, .framer-VIhRM .framer-1yggc3l { gap: 0px; } .framer-VIhRM.framer-1rn7xrn > *, .framer-VIhRM .framer-wfohw9 > *, .framer-VIhRM .framer-1ix31z3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-VIhRM.framer-1rn7xrn > :first-child, .framer-VIhRM .framer-wfohw9 > :first-child, .framer-VIhRM .framer-yxde6 > :first-child, .framer-VIhRM .framer-1dqrt03 > :first-child, .framer-VIhRM .framer-1ix31z3 > :first-child, .framer-VIhRM .framer-11m8gbq > :first-child, .framer-VIhRM .framer-bi47qn > :first-child, .framer-VIhRM .framer-121wm1w > :first-child, .framer-VIhRM .framer-4ibu5p > :first-child, .framer-VIhRM .framer-1jdtfl9 > :first-child, .framer-VIhRM .framer-boecvl > :first-child, .framer-VIhRM .framer-e5kg88 > :first-child, .framer-VIhRM .framer-1q2gp0k > :first-child, .framer-VIhRM .framer-ac2s2t > :first-child, .framer-VIhRM .framer-tpyxa7 > :first-child, .framer-VIhRM .framer-9qpn8p > :first-child, .framer-VIhRM .framer-gvyfni > :first-child, .framer-VIhRM .framer-k8vxif > :first-child, .framer-VIhRM .framer-1hs35l9 > :first-child, .framer-VIhRM .framer-72dsuj > :first-child, .framer-VIhRM .framer-50fqt5 > :first-child, .framer-VIhRM .framer-1yggc3l > :first-child { margin-top: 0px; } .framer-VIhRM.framer-1rn7xrn > :last-child, .framer-VIhRM .framer-wfohw9 > :last-child, .framer-VIhRM .framer-yxde6 > :last-child, .framer-VIhRM .framer-1dqrt03 > :last-child, .framer-VIhRM .framer-1ix31z3 > :last-child, .framer-VIhRM .framer-11m8gbq > :last-child, .framer-VIhRM .framer-bi47qn > :last-child, .framer-VIhRM .framer-121wm1w > :last-child, .framer-VIhRM .framer-4ibu5p > :last-child, .framer-VIhRM .framer-1jdtfl9 > :last-child, .framer-VIhRM .framer-boecvl > :last-child, .framer-VIhRM .framer-e5kg88 > :last-child, .framer-VIhRM .framer-1q2gp0k > :last-child, .framer-VIhRM .framer-ac2s2t > :last-child, .framer-VIhRM .framer-tpyxa7 > :last-child, .framer-VIhRM .framer-9qpn8p > :last-child, .framer-VIhRM .framer-gvyfni > :last-child, .framer-VIhRM .framer-k8vxif > :last-child, .framer-VIhRM .framer-1hs35l9 > :last-child, .framer-VIhRM .framer-72dsuj > :last-child, .framer-VIhRM .framer-50fqt5 > :last-child, .framer-VIhRM .framer-1yggc3l > :last-child { margin-bottom: 0px; } .framer-VIhRM .framer-3188ig > *, .framer-VIhRM .framer-1pfsjyo > *, .framer-VIhRM .framer-2nzy28 > *, .framer-VIhRM .framer-klbi3g > *, .framer-VIhRM .framer-xzyzo4 > *, .framer-VIhRM .framer-1yb04t1 > *, .framer-VIhRM .framer-1xvdypq > *, .framer-VIhRM .framer-31zfq4 > *, .framer-VIhRM .framer-1w6bpls > *, .framer-VIhRM .framer-1c31vi1 > *, .framer-VIhRM .framer-6gsfr2 > *, .framer-VIhRM .framer-125fj36 > *, .framer-VIhRM .framer-vjlo81 > *, .framer-VIhRM .framer-1vxav5i > *, .framer-VIhRM .framer-1iy7i7h > *, .framer-VIhRM .framer-8lw7jk > *, .framer-VIhRM .framer-1xdpu54 > *, .framer-VIhRM .framer-ne1fml > *, .framer-VIhRM .framer-11yx1tw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-VIhRM .framer-3188ig > :first-child, .framer-VIhRM .framer-1pfsjyo > :first-child, .framer-VIhRM .framer-2nzy28 > :first-child, .framer-VIhRM .framer-klbi3g > :first-child, .framer-VIhRM .framer-xzyzo4 > :first-child, .framer-VIhRM .framer-1yb04t1 > :first-child, .framer-VIhRM .framer-kwn441 > :first-child, .framer-VIhRM .framer-96mott > :first-child, .framer-VIhRM .framer-1xvdypq > :first-child, .framer-VIhRM .framer-31zfq4 > :first-child, .framer-VIhRM .framer-zis0ow > :first-child, .framer-VIhRM .framer-1b31hki > :first-child, .framer-VIhRM .framer-dm8cfv > :first-child, .framer-VIhRM .framer-1w6bpls > :first-child, .framer-VIhRM .framer-1c31vi1 > :first-child, .framer-VIhRM .framer-flpgyy > :first-child, .framer-VIhRM .framer-6gsfr2 > :first-child, .framer-VIhRM .framer-125fj36 > :first-child, .framer-VIhRM .framer-vjlo81 > :first-child, .framer-VIhRM .framer-1vxav5i > :first-child, .framer-VIhRM .framer-cd418o > :first-child, .framer-VIhRM .framer-1iy7i7h > :first-child, .framer-VIhRM .framer-8lw7jk > :first-child, .framer-VIhRM .framer-1xdpu54 > :first-child, .framer-VIhRM .framer-ne1fml > :first-child, .framer-VIhRM .framer-11yx1tw > :first-child, .framer-VIhRM .framer-v6og8h > :first-child { margin-left: 0px; } .framer-VIhRM .framer-3188ig > :last-child, .framer-VIhRM .framer-1pfsjyo > :last-child, .framer-VIhRM .framer-2nzy28 > :last-child, .framer-VIhRM .framer-klbi3g > :last-child, .framer-VIhRM .framer-xzyzo4 > :last-child, .framer-VIhRM .framer-1yb04t1 > :last-child, .framer-VIhRM .framer-kwn441 > :last-child, .framer-VIhRM .framer-96mott > :last-child, .framer-VIhRM .framer-1xvdypq > :last-child, .framer-VIhRM .framer-31zfq4 > :last-child, .framer-VIhRM .framer-zis0ow > :last-child, .framer-VIhRM .framer-1b31hki > :last-child, .framer-VIhRM .framer-dm8cfv > :last-child, .framer-VIhRM .framer-1w6bpls > :last-child, .framer-VIhRM .framer-1c31vi1 > :last-child, .framer-VIhRM .framer-flpgyy > :last-child, .framer-VIhRM .framer-6gsfr2 > :last-child, .framer-VIhRM .framer-125fj36 > :last-child, .framer-VIhRM .framer-vjlo81 > :last-child, .framer-VIhRM .framer-1vxav5i > :last-child, .framer-VIhRM .framer-cd418o > :last-child, .framer-VIhRM .framer-1iy7i7h > :last-child, .framer-VIhRM .framer-8lw7jk > :last-child, .framer-VIhRM .framer-1xdpu54 > :last-child, .framer-VIhRM .framer-ne1fml > :last-child, .framer-VIhRM .framer-11yx1tw > :last-child, .framer-VIhRM .framer-v6og8h > :last-child { margin-right: 0px; } .framer-VIhRM .framer-yxde6 > * { margin: 0px; margin-bottom: calc(1px / 2); margin-top: calc(1px / 2); } .framer-VIhRM .framer-1dqrt03 > *, .framer-VIhRM .framer-bi47qn > *, .framer-VIhRM .framer-121wm1w > *, .framer-VIhRM .framer-ac2s2t > *, .framer-VIhRM .framer-tpyxa7 > *, .framer-VIhRM .framer-9qpn8p > *, .framer-VIhRM .framer-gvyfni > *, .framer-VIhRM .framer-50fqt5 > *, .framer-VIhRM .framer-1yggc3l > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-VIhRM .framer-kwn441 > *, .framer-VIhRM .framer-96mott > *, .framer-VIhRM .framer-flpgyy > *, .framer-VIhRM .framer-cd418o > *, .framer-VIhRM .framer-v6og8h > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-VIhRM .framer-zis0ow > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-VIhRM .framer-11m8gbq > *, .framer-VIhRM .framer-4ibu5p > *, .framer-VIhRM .framer-k8vxif > *, .framer-VIhRM .framer-1hs35l9 > *, .framer-VIhRM .framer-72dsuj > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-VIhRM .framer-1jdtfl9 > *, .framer-VIhRM .framer-e5kg88 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-VIhRM .framer-boecvl > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-VIhRM .framer-1b31hki > *, .framer-VIhRM .framer-dm8cfv > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-VIhRM .framer-1q2gp0k > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-VIhRM { background: var(--token-faf217ee-812d-4474-8131-b934f8e4dc1f, rgb(246, 243, 236)); } .framer-VIhRM.framer-1rn7xrn { width: 810px; } .framer-VIhRM .framer-1h6adtm { width: 636px; } .framer-VIhRM .framer-1q1kgbs { aspect-ratio: unset; height: 198px; width: 79px; } .framer-VIhRM .framer-1ix31z3 { justify-content: flex-start; } .framer-VIhRM .framer-tap8ne { height: var(--framer-aspect-ratio-supported, 458px); } .framer-VIhRM .framer-12haznc-container { height: var(--framer-aspect-ratio-supported, 432px); } .framer-VIhRM .framer-6gsfr2, .framer-VIhRM .framer-vjlo81, .framer-VIhRM .framer-1xdpu54 { height: var(--framer-aspect-ratio-supported, 441px); } .framer-VIhRM .framer-ac2s2t, .framer-VIhRM .framer-tpyxa7 { height: var(--framer-aspect-ratio-supported, 425px); } .framer-VIhRM .framer-1iy7i7h { height: var(--framer-aspect-ratio-supported, 453px); } .framer-VIhRM .framer-24jjgp-container, .framer-VIhRM .framer-gm8vnu-container { height: var(--framer-aspect-ratio-supported, 163px); } .framer-VIhRM .framer-gmet2u-container { height: var(--framer-aspect-ratio-supported, 164px); }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-VIhRM { background: var(--token-faf217ee-812d-4474-8131-b934f8e4dc1f, rgb(246, 243, 236)); } .framer-VIhRM.framer-1rn7xrn { width: 390px; } .framer-VIhRM .framer-3188ig { padding: 40px 15px 40px 15px; } .framer-VIhRM .framer-klbi3g, .framer-VIhRM .framer-zis0ow, .framer-VIhRM .framer-flpgyy { flex-direction: column; } .framer-VIhRM .framer-1h6adtm { width: 200px; } .framer-VIhRM .framer-1q1kgbs { aspect-ratio: unset; height: 121px; width: 49px; } .framer-VIhRM .framer-1ix31z3 { justify-content: flex-start; } .framer-VIhRM .framer-tap8ne { height: var(--framer-aspect-ratio-supported, 221px); } .framer-VIhRM .framer-12haznc-container { aspect-ratio: 1.7889908256880733 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 218px); width: 1px; } .framer-VIhRM .framer-1xvdypq { aspect-ratio: 1.4942528735632183 / 1; height: var(--framer-aspect-ratio-supported, 134px); } .framer-VIhRM .framer-31zfq4 { padding: 50px 15px 100px 15px; } .framer-VIhRM .framer-11m8gbq, .framer-VIhRM .framer-k8vxif, .framer-VIhRM .framer-1hs35l9, .framer-VIhRM .framer-72dsuj { flex: none; width: 100%; } .framer-VIhRM .framer-oo8h2e { width: 100%; } .framer-VIhRM .framer-1q2gp0k { padding: 0px 15px 100px 15px; } .framer-VIhRM .framer-6gsfr2, .framer-VIhRM .framer-vjlo81, .framer-VIhRM .framer-1xdpu54 { flex: none; height: var(--framer-aspect-ratio-supported, 423px); width: 100%; } .framer-VIhRM .framer-ac2s2t, .framer-VIhRM .framer-tpyxa7 { aspect-ratio: 1.565217391304348 / 1; height: var(--framer-aspect-ratio-supported, 230px); } .framer-VIhRM .framer-cd418o { flex-direction: column; gap: 10px; } .framer-VIhRM .framer-1iy7i7h { flex: none; height: var(--framer-aspect-ratio-supported, 424px); width: 100%; } .framer-VIhRM .framer-9qpn8p { padding: 0px 0px 100px 0px; } .framer-VIhRM .framer-gvyfni { padding: 0px 15px 40px 15px; } .framer-VIhRM .framer-11yx1tw { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; } .framer-VIhRM .framer-v6og8h { flex-direction: column; padding: 0px 15px 0px 15px; } .framer-VIhRM .framer-24jjgp-container, .framer-VIhRM .framer-gmet2u-container, .framer-VIhRM .framer-gm8vnu-container { height: var(--framer-aspect-ratio-supported, 241px); } .framer-VIhRM .framer-50fqt5 { bottom: 15px; min-height: 34px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-VIhRM .framer-klbi3g, .framer-VIhRM .framer-zis0ow, .framer-VIhRM .framer-flpgyy, .framer-VIhRM .framer-cd418o, .framer-VIhRM .framer-11yx1tw, .framer-VIhRM .framer-v6og8h { gap: 0px; } .framer-VIhRM .framer-klbi3g > *, .framer-VIhRM .framer-cd418o > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-VIhRM .framer-klbi3g > :first-child, .framer-VIhRM .framer-zis0ow > :first-child, .framer-VIhRM .framer-flpgyy > :first-child, .framer-VIhRM .framer-cd418o > :first-child, .framer-VIhRM .framer-11yx1tw > :first-child, .framer-VIhRM .framer-v6og8h > :first-child { margin-top: 0px; } .framer-VIhRM .framer-klbi3g > :last-child, .framer-VIhRM .framer-zis0ow > :last-child, .framer-VIhRM .framer-flpgyy > :last-child, .framer-VIhRM .framer-cd418o > :last-child, .framer-VIhRM .framer-11yx1tw > :last-child, .framer-VIhRM .framer-v6og8h > :last-child { margin-bottom: 0px; } .framer-VIhRM .framer-zis0ow > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-VIhRM .framer-flpgyy > *, .framer-VIhRM .framer-v6og8h > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-VIhRM .framer-11yx1tw > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3880\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"DP5OeLM1w\":{\"layout\":[\"fixed\",\"auto\"]},\"OMfRsaltb\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerUlQco8cYi=withCSS(Component,css,\"framer-VIhRM\");export default FramerUlQco8cYi;FramerUlQco8cYi.displayName=\"Page\";FramerUlQco8cYi.defaultProps={height:3880,width:1200};addFonts(FramerUlQco8cYi,[{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:\"Marr Sans Cond Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/yvODshW6c9PWSASSMBWZw11TkHE.woff2\"},{family:\"Azeret Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPVh17aa-5s3AA.woff2\",weight:\"400\"},{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BLNB4FAQFNK56DWWNF7PMGTCOTZHOEII/ST3WKSSDMBK2MIQQO3MAVYWLF4FTOLFV/6IN5WOLRCYP4G4MOCOHOMXNON6Q7MDAR.woff2\",weight:\"400\"}]},...NavigationPrimaryFonts,...MenuOpenOverlayFonts,...VimeoFonts,...YouTubeFonts,...VideoFonts,...OtherProjectCardFonts,...FooterFonts,...FooterAssetsFonts,...SmoothScrollFonts,...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),...getFontsFromSharedStyle(sharedStyle10.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUlQco8cYi\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DP5OeLM1w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OMfRsaltb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"3880\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\"}},\"__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", "ViewProjectFonts", "getFonts", "iux_1P4dx_default", "VideoFonts", "Video", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "numberToString", "value", "options", "activeLocale", "fallbackLocale", "locale", "useGrouping", "notation", "compactDisplay", "style", "currency", "currencyDisplay", "unit", "unitDisplay", "minimumFractionDigits", "maximumFractionDigits", "minimumIntegerDigits", "formatOptions", "number", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "sortingNumber", "thumbnail", "thumbnailVideo", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "className", "layoutId", "WCZDKcwoD", "X00XHRb0O", "COnO_r_TO", "x9gMjNAjR", "cpM8YFfZW", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEntere5n9rb", "args", "onMouseLeave111t5h9", "ref1", "pe", "activeLocaleCode", "useLocaleCode", "textContent", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "css", "FramerIL3Yzfvr0", "withCSS", "IL3Yzfvr0_default", "addPropertyControls", "ControlType", "addFonts", "NavigationPrimaryFonts", "getFonts", "IkqPwt9QK_default", "MenuOpenOverlayFonts", "SmkNoZhed_default", "MotionAWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "MotionDivWithOptimizedAppearEffect", "RichTextWithOptimizedAppearEffect", "RichText2", "ImageWithOptimizedAppearEffect", "Image2", "VimeoFonts", "Vimeo_default", "YouTubeFonts", "Youtube", "MotionDivWithFX", "withFX", "RichTextWithFX", "VideoFonts", "Video", "OtherProjectCardFonts", "IL3Yzfvr0_default", "FooterFonts", "fZS40FT55_default", "FooterAssetsFonts", "xxIb0BkhJ_default", "SmoothScrollFonts", "SmoothScroll", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition2", "animation3", "transition3", "animation4", "animation5", "transition4", "animation6", "animation7", "convertFromEnum", "value", "activeLocale", "toBoolean", "transition5", "animation8", "animation9", "isSet", "negate", "toResponsiveImage", "transition6", "animation10", "animation11", "transformTemplate1", "_", "animation12", "transition7", "animation13", "transition8", "transition9", "toImageSrc", "animation14", "transition10", "QueryData", "query", "pageSize", "data", "useQueryData", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "_enumToDisplayNameFunctions_BESQkXLs0", "_enumToDisplayNameFunctions_aFr_xKbXy", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "yTHrQWMIY_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "_getFromCurrentRouteData", "_getFromCurrentRouteData1", "_getFromCurrentRouteData2", "_getFromCurrentRouteData3", "_getFromCurrentRouteData4", "_getFromCurrentRouteData5", "_getFromCurrentRouteData6", "_getFromCurrentRouteData7", "style", "className", "layoutId", "variant", "BESQkXLs0", "aFr_xKbXy", "oeXZcmPna", "zUiu0Skgu", "Jy7hBJady", "WG62tRjG8", "VeDm9FjW4", "lprMTjrtO", "G68jnZQGy", "HY1X73dpT", "U0gx1yKeB", "QF3AEVk8r", "erJHC_ckW", "fsFlSPDTa", "rm5GqyLak", "OksyNeyec", "cBT57oH8T", "rB64YNSUs", "lUT9kBBwP", "UagkMeXHL", "YDSGjqno7", "pdXVG_fBOjdGHnOaNj", "DLBifmgp1jdGHnOaNj", "oeXZcmPnajdGHnOaNj", "WG62tRjG8jdGHnOaNj", "Jy7hBJadyjdGHnOaNj", "idjdGHnOaNj", "X4mkKflln", "pdXVG_fBOahzuYOuYM", "DLBifmgp1ahzuYOuYM", "oeXZcmPnaahzuYOuYM", "WG62tRjG8ahzuYOuYM", "Jy7hBJadyahzuYOuYM", "idahzuYOuYM", "z_tutvcUx", "pdXVG_fBOBbhROnvtz", "DLBifmgp1BbhROnvtz", "oeXZcmPnaBbhROnvtz", "WG62tRjG8BbhROnvtz", "Jy7hBJadyBbhROnvtz", "idBbhROnvtz", "OoXOWcQvg", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "dr1vZ4EhSwelu7j", "overlay", "paginationInfo", "args", "ZnO4gEEiP1wvko5h", "ref1", "pe", "textContent", "enumToDisplayNameFunctions", "textContent1", "visible1", "visible2", "visible3", "isDisplayed", "isDisplayed1", "visible4", "visible5", "visible6", "visible7", "visible8", "visible9", "visible10", "visible11", "visible12", "visible13", "visible14", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "l", "ComponentViewportProvider", "Container", "PropertyOverrides2", "AnimatePresence", "Ga", "x", "Link", "getLoadingLazyAtYPosition", "ChildrenCanSuspend", "collection", "loadMore", "i", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "collection1", "paginationInfo1", "loadMore1", "resolvedLinks1", "collection2", "paginationInfo2", "loadMore2", "resolvedLinks2", "css", "FramerUlQco8cYi", "withCSS", "UlQco8cYi_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
