{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/adbWiPpsEoBrmdNPUFnZ/UZGIxsmqFfpPNIASEDHf/pWpdxqxfn.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,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.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://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// 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(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,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\"},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(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__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===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,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 embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High: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 element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn 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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (c607f4d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Vimeo from\"https://framerusercontent.com/modules/0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/TO50RZfUZkMws8Mz1efr/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import ProjectsCard from\"#framer/local/canvasComponent/n6Xcin54k/n6Xcin54k.js\";import Footer from\"#framer/local/canvasComponent/Swq40RzUA/Swq40RzUA.js\";import NavBar from\"#framer/local/canvasComponent/WvxfThqf1/WvxfThqf1.js\";import Projects,{enumToDisplayNameFunctions}from\"#framer/local/collection/H1axCB9AX/H1axCB9AX.js\";import*as sharedStyle7 from\"#framer/local/css/DuMLJ2VUN/DuMLJ2VUN.js\";import*as sharedStyle from\"#framer/local/css/hwFxtQiSW/hwFxtQiSW.js\";import*as sharedStyle5 from\"#framer/local/css/IsgMMPEHU/IsgMMPEHU.js\";import*as sharedStyle1 from\"#framer/local/css/LdRSkkClr/LdRSkkClr.js\";import*as sharedStyle4 from\"#framer/local/css/MjM7LH64L/MjM7LH64L.js\";import*as sharedStyle3 from\"#framer/local/css/rZemCCbaP/rZemCCbaP.js\";import*as sharedStyle2 from\"#framer/local/css/urlDCZwpF/urlDCZwpF.js\";import*as sharedStyle6 from\"#framer/local/css/vFgiLTeGJ/vFgiLTeGJ.js\";import metadataProvider from\"#framer/local/webPageMetadata/pWpdxqxfn/pWpdxqxfn.js\";const NavBarFonts=getFonts(NavBar);const VimeoFonts=getFonts(Vimeo);const YouTubeFonts=getFonts(YouTube);const VideoFonts=getFonts(Video);const ImageWithFX=withFX(Image);const ProjectsCardFonts=getFonts(ProjectsCard);const FooterFonts=getFonts(Footer);const cycleOrder=[\"GF7RaZdBV\",\"AhxD87Cdn\",\"PL8n528A5\",\"F2hKBS40u\"];const breakpoints={AhxD87Cdn:\"(min-width: 810px) and (max-width: 999px)\",F2hKBS40u:\"(min-width: 1000px) and (max-width: 1599px)\",GF7RaZdBV:\"(min-width: 1600px)\",PL8n528A5:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-jsTGR\";const variantClassNames={AhxD87Cdn:\"framer-v-174iwmh\",F2hKBS40u:\"framer-v-96d8og\",GF7RaZdBV:\"framer-v-es5821\",PL8n528A5:\"framer-v-1t7ub58\"};const isSet=value=>{return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`perspective(1200px) ${t}`;const QueryData=({query,children})=>{const data=useQueryData(query);return children(data);};const metadata=metadataProvider();const humanReadableVariantMap={\"Desktop-Small\":\"F2hKBS40u\",\"Desktop-Wide\":\"GF7RaZdBV\",Phone:\"PL8n528A5\",Tablet:\"AhxD87Cdn\"};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:\"GF7RaZdBV\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){var _enumToDisplayNameFunctions_wXItOKXnY;const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{data:Projects,type:\"Collection\"},select:[{name:\"vSb_ti0u4\",type:\"Identifier\"},{name:\"BNf1ppaSX\",type:\"Identifier\"},{name:\"afbNTvX2Q\",type:\"Identifier\"},{name:\"Kz3cdjUeo\",type:\"Identifier\"},{name:\"U4Bh6VEBL\",type:\"Identifier\"},{name:\"eMkH9e4C8\",type:\"Identifier\"},{name:\"QrAvhzDlC\",type:\"Identifier\"},{name:\"wXItOKXnY\",type:\"Identifier\"},{name:\"bgiIfJARx\",type:\"Identifier\"},{name:\"t7sKSchc9\",type:\"Identifier\"},{name:\"ZVKTdXLBk\",type:\"Identifier\"},{name:\"FTZ_NJhsr\",type:\"Identifier\"},{name:\"f5hDUOPSa\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables)});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data in \"Projects\" matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,snwHMirzu,vSb_ti0u4=getFromCurrentRouteData(\"vSb_ti0u4\"),Kz3cdjUeo=getFromCurrentRouteData(\"Kz3cdjUeo\"),U4Bh6VEBL=getFromCurrentRouteData(\"U4Bh6VEBL\"),eMkH9e4C8=getFromCurrentRouteData(\"eMkH9e4C8\"),BNf1ppaSX=getFromCurrentRouteData(\"BNf1ppaSX\"),QrAvhzDlC=getFromCurrentRouteData(\"QrAvhzDlC\"),wXItOKXnY=getFromCurrentRouteData(\"wXItOKXnY\"),bgiIfJARx=getFromCurrentRouteData(\"bgiIfJARx\"),f5hDUOPSa=getFromCurrentRouteData(\"f5hDUOPSa\"),t7sKSchc9=getFromCurrentRouteData(\"t7sKSchc9\"),ZVKTdXLBk=getFromCurrentRouteData(\"ZVKTdXLBk\"),FTZ_NJhsr=getFromCurrentRouteData(\"FTZ_NJhsr\"),bgiIfJARxtxNLUyolW,vSb_ti0u4txNLUyolW,afbNTvX2QtxNLUyolW,wXItOKXnYtxNLUyolW,idtxNLUyolW,afbNTvX2Q=getFromCurrentRouteData(\"afbNTvX2Q\"),...restProps}=getProps(props);React.useLayoutEffect(()=>{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);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-jsTGR`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-jsTGR`);};}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const visible=isSet(Kz3cdjUeo);const visible1=isSet(U4Bh6VEBL);const visible2=isSet(eMkH9e4C8);const textContent=(_enumToDisplayNameFunctions_wXItOKXnY=enumToDisplayNameFunctions[\"wXItOKXnY\"])===null||_enumToDisplayNameFunctions_wXItOKXnY===void 0?void 0:_enumToDisplayNameFunctions_wXItOKXnY.call(enumToDisplayNameFunctions,wXItOKXnY,activeLocale);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];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"GF7RaZdBV\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-es5821\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AhxD87Cdn:{width:\"min(100vw, 697px)\"},PL8n528A5:{width:\"min(90vw, 900px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"min(100vw, 900px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1grt4ra-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AhxD87Cdn:{variant:\"kcR3MtLMz\"},PL8n528A5:{variant:\"kcR3MtLMz\"}},children:/*#__PURE__*/_jsx(NavBar,{height:\"100%\",id:\"ArdNrfF12\",jqb75Nvff:\"qXqTTtV8e\",layoutId:\"ArdNrfF12\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"tuIzq1kD0\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1tj4pft\",\"data-framer-name\":\"Section - Hero\",name:\"Section - Hero\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-m5rh52\",\"data-styles-preset\":\"hwFxtQiSW\",children:\"Title\"})}),className:\"framer-9w5dhj\",fonts:[\"Inter\"],text:vSb_ti0u4,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-q3eh0m\",\"data-framer-name\":\"Section - Video\",name:\"Section - Video\",children:[visible&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-68zwki\",\"data-framer-name\":\"Vimeo Player\",name:\"Vimeo Player\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ylkgsv-container\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:false,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"JnBaF8YPq\",isMixedBorderRadius:false,layoutId:\"JnBaF8YPq\",loop:false,mute:false,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:Kz3cdjUeo,width:\"100%\"})})})}),visible1&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bda809\",\"data-framer-name\":\"Youtube-Player\",name:\"Youtube-Player\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15xhdfc-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"MjGP7TQsC\",isMixedBorderRadius:false,isRed:true,layoutId:\"MjGP7TQsC\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:U4Bh6VEBL,width:\"100%\"})})})}),visible2&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-d22gue\",\"data-framer-name\":\"Youtube-Player\",name:\"Youtube-Player\",children:visible2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17yqk87-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"MxJQyVJ2f\",isMixedBorderRadius:false,layoutId:\"MxJQyVJ2f\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:eMkH9e4C8,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1sejja9\",\"data-framer-name\":\"Section - Overview\",name:\"Section - Overview\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6l3o8z\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kiqw8o\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5hmt8u\",\"data-styles-preset\":\"LdRSkkClr\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Short Description\"})})}),className:\"framer-13rb4xa\",fonts:[\"Inter\",\"Inter-Bold\"],text:BNf1ppaSX,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18840vf\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oo0h5b\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5vsgqx\",\"data-styles-preset\":\"urlDCZwpF\",children:\"[Year]\"})}),className:\"framer-1fkludf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5hmt8u\",\"data-styles-preset\":\"LdRSkkClr\",children:\"Year\"})}),className:\"framer-mizycb\",fonts:[\"Inter\"],text:QrAvhzDlC,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d8nx7m\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5vsgqx\",\"data-styles-preset\":\"urlDCZwpF\",children:\"[Catagory]\"})}),className:\"framer-1afdl87\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5hmt8u\",\"data-styles-preset\":\"LdRSkkClr\",children:\"Content\"})}),className:\"framer-1aye0hz\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-13iehwo\",\"data-framer-name\":\"Section - Main Image\",name:\"Section - Main Image\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-mvd2yh\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kjgr0z\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AhxD87Cdn:{background:{alt:\"\",fit:\"fill\",sizes:\"min(max(100vw, 0px), 1900px)\",...toResponsiveImage(bgiIfJARx)}},PL8n528A5:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,x:0,y:20}}],background:{alt:\"\",fit:\"fill\",sizes:\"min(max(100vw, 0px), 1900px)\",...toResponsiveImage(bgiIfJARx)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.03,skewX:0,skewY:0,x:0,y:-90}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"min(max(100vw, 0px), 1900px)\",...toResponsiveImage(bgiIfJARx)},className:\"framer-1wdd0sl\",transformTemplate:transformTemplate1})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1af1rw8\",\"data-framer-name\":\"Section - Content\",name:\"Section - Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ipwh1o\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1smnwco\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:f5hDUOPSa,className:\"framer-k7yrwo\",fonts:[\"Inter\"],stylesPresetsClassNames:{h1:\"framer-styles-preset-m5rh52\",h2:\"framer-styles-preset-4znnbj\",h3:\"framer-styles-preset-ravud2\",h4:\"framer-styles-preset-usmfc9\",h5:\"framer-styles-preset-xz2g08\",p:\"framer-styles-preset-smtg16\"},verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-x69y98\",\"data-framer-name\":\"Section - Images\",name:\"Section - Images\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Snaps From the Project\"})}),className:\"framer-1sbt4yd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mr2t4j\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d4wo1c\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6aosqm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AhxD87Cdn:{background:{alt:\"\",fit:\"fill\",sizes:\"min(min(100vw, 1900px), 1200px)\",...toResponsiveImage(t7sKSchc9)}},PL8n528A5:{background:{alt:\"\",fit:\"fill\",sizes:\"min(min(100vw - 40px, 1900px), 1200px)\",...toResponsiveImage(t7sKSchc9)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"min(min(100vw, 1900px), 1200px)\",...toResponsiveImage(t7sKSchc9)},className:\"framer-5h8zem\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18msn7s\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AhxD87Cdn:{background:{alt:\"\",fit:\"fill\",sizes:\"min(min(100vw, 1900px), 1200px)\",...toResponsiveImage(ZVKTdXLBk)}},PL8n528A5:{background:{alt:\"\",fit:\"fill\",sizes:\"min(min(100vw - 40px, 1900px), 1200px)\",...toResponsiveImage(ZVKTdXLBk)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"min(min(100vw, 1900px), 1200px)\",...toResponsiveImage(ZVKTdXLBk)},className:\"framer-11tx6fe\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k5nbo7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AhxD87Cdn:{background:{alt:\"\",fit:\"fill\",sizes:\"min(min(100vw, 1900px), 1200px)\",...toResponsiveImage(FTZ_NJhsr)}},PL8n528A5:{background:{alt:\"\",fit:\"fill\",sizes:\"min(min(100vw - 40px, 1900px), 1200px)\",...toResponsiveImage(FTZ_NJhsr)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"min(min(100vw, 1900px), 1200px)\",...toResponsiveImage(FTZ_NJhsr)},className:\"framer-1lqcmad\"})})})]})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-7541w\",\"data-framer-name\":\"Section - Other Projects\",name:\"Section - Other Projects\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-alignment\":\"left\"},children:\"View Similar Projects\"})}),className:\"framer-zajfp3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qw7bfk\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Projects,type:\"Collection\"},select:[{name:\"bgiIfJARx\",type:\"Identifier\"},{name:\"vSb_ti0u4\",type:\"Identifier\"},{name:\"afbNTvX2Q\",type:\"Identifier\"},{name:\"wXItOKXnY\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{left:{left:{name:\"wXItOKXnY\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:wXItOKXnY},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{name:\"afbNTvX2Q\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:afbNTvX2Q},type:\"BinaryOperation\"}},type:\"BinaryOperation\"}},children:collection=>collection.map(({bgiIfJARx:bgiIfJARxtxNLUyolW,vSb_ti0u4:vSb_ti0u4txNLUyolW,afbNTvX2Q:afbNTvX2QtxNLUyolW,wXItOKXnY:wXItOKXnYtxNLUyolW,id:idtxNLUyolW},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`txNLUyolW-${idtxNLUyolW}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{afbNTvX2Q:afbNTvX2QtxNLUyolW},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{afbNTvX2Q:afbNTvX2QtxNLUyolW},webPageId:\"pWpdxqxfn\"},implicitPathVariables:undefined},{href:{pathVariables:{afbNTvX2Q:afbNTvX2QtxNLUyolW},webPageId:\"pWpdxqxfn\"},implicitPathVariables:undefined},{href:{pathVariables:{afbNTvX2Q:afbNTvX2QtxNLUyolW},webPageId:\"pWpdxqxfn\"},implicitPathVariables:undefined},{href:{pathVariables:{afbNTvX2Q:afbNTvX2QtxNLUyolW},webPageId:\"pWpdxqxfn\"},implicitPathVariables:undefined}],children:resolvedLinks=>{var _enumToDisplayNameFunctions_wXItOKXnY;return /*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-i15n7i-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AhxD87Cdn:{sD2al3_si:resolvedLinks[1]},F2hKBS40u:{sD2al3_si:resolvedLinks[3]},PL8n528A5:{sD2al3_si:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ProjectsCard,{height:\"100%\",id:\"Q7HgdMCO_\",K51V2znKa:vSb_ti0u4txNLUyolW,layoutId:\"Q7HgdMCO_\",P5WapFgd4:(_enumToDisplayNameFunctions_wXItOKXnY=enumToDisplayNameFunctions[\"wXItOKXnY\"])===null||_enumToDisplayNameFunctions_wXItOKXnY===void 0?void 0:_enumToDisplayNameFunctions_wXItOKXnY.call(enumToDisplayNameFunctions,wXItOKXnYtxNLUyolW,activeLocale),sD2al3_si:resolvedLinks[0],style:{width:\"100%\"},sUfR2uo61:vSb_ti0u4txNLUyolW,variant:\"r3aKpeK6x\",Vui1krqR4:toResponsiveImage(bgiIfJARxtxNLUyolW),width:\"100%\"})})})});}})})},idtxNLUyolW);})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k7ad6k-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AhxD87Cdn:{variant:\"s9UjOoml4\"},F2hKBS40u:{variant:\"s9UjOoml4\"},PL8n528A5:{variant:\"uxlAHBS0R\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"P76v8EO0T\",layoutId:\"P76v8EO0T\",style:{width:\"100%\"},variant:\"ySSbzNqEC\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-jsTGR { background: var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13)); }`,\".framer-jsTGR.framer-yavkkr, .framer-jsTGR .framer-yavkkr { display: block; }\",\".framer-jsTGR.framer-es5821 { align-content: center; align-items: center; background-color: var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, #0d0d0d); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1600px; }\",\".framer-jsTGR .framer-1grt4ra-container { flex: none; height: auto; left: 50%; max-width: 900px; position: fixed; top: 30px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-jsTGR .framer-1tj4pft { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 160px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-jsTGR .framer-9w5dhj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1200px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-jsTGR .framer-q3eh0m { 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: 50px 50px 50px 50px; position: relative; width: 100%; }\",\".framer-jsTGR .framer-68zwki, .framer-jsTGR .framer-1bda809 { align-content: center; align-items: center; aspect-ratio: 1.7777777777777777 / 1; border-bottom-left-radius: 27px; border-bottom-right-radius: 27px; border-top-left-radius: 27px; border-top-right-radius: 27px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 675px); justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-jsTGR .framer-ylkgsv-container, .framer-jsTGR .framer-15xhdfc-container, .framer-jsTGR .framer-17yqk87-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-jsTGR .framer-d22gue { align-content: center; align-items: center; aspect-ratio: 1.7777777777777777 / 1; border-bottom-left-radius: 27px; border-bottom-right-radius: 27px; border-top-left-radius: 27px; border-top-right-radius: 27px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 113px); justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-jsTGR .framer-1sejja9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 62px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-jsTGR .framer-6l3o8z { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 39px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-jsTGR .framer-kiqw8o, .framer-jsTGR .framer-1smnwco { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-jsTGR .framer-13rb4xa, .framer-jsTGR .framer-1aye0hz, .framer-jsTGR .framer-1sbt4yd, .framer-jsTGR .framer-zajfp3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-jsTGR .framer-18840vf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-jsTGR .framer-1oo0h5b { --border-bottom-width: 0px; --border-color: var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, #ff7a3b); --border-left-width: 1px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; 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 0px 0px 20px; position: relative; width: min-content; }\",\".framer-jsTGR .framer-1fkludf, .framer-jsTGR .framer-mizycb, .framer-jsTGR .framer-1afdl87 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-jsTGR .framer-1d8nx7m { --border-bottom-width: 0px; --border-color: var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, #ff7a3b); --border-left-width: 1px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; 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 0px 0px 20px; position: relative; width: 100%; }\",\".framer-jsTGR .framer-13iehwo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 62px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-jsTGR .framer-mvd2yh { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 39px; height: min-content; justify-content: center; max-width: 1900px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-jsTGR .framer-1kjgr0z { aspect-ratio: 2.857142857142857 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 560px); overflow: hidden; position: relative; width: 100%; }\",\".framer-jsTGR .framer-1wdd0sl { bottom: -4px; flex: none; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: -5px; transform: perspective(1200px); width: 100%; }\",\".framer-jsTGR .framer-1af1rw8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 62px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-jsTGR .framer-1ipwh1o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 39px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-jsTGR .framer-k7yrwo { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-jsTGR .framer-x69y98 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 62px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-jsTGR .framer-1mr2t4j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 39px; height: min-content; justify-content: center; max-width: 1900px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-jsTGR .framer-1d4wo1c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-jsTGR .framer-6aosqm { aspect-ratio: 1.875 / 1; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: var(--framer-aspect-ratio-supported, 640px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-jsTGR .framer-5h8zem { bottom: 94px; flex: none; height: 546px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; }\",\".framer-jsTGR .framer-18msn7s { aspect-ratio: 1.875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 640px); overflow: hidden; position: relative; width: 100%; }\",\".framer-jsTGR .framer-11tx6fe { flex: none; height: 617px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: -61px; width: 100%; }\",\".framer-jsTGR .framer-1k5nbo7 { aspect-ratio: 1.875 / 1; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; flex: none; height: var(--framer-aspect-ratio-supported, 640px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-jsTGR .framer-1lqcmad { bottom: -18px; flex: none; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: -10px; width: 100%; }\",\".framer-jsTGR .framer-7541w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 150px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-jsTGR .framer-1qw7bfk { display: grid; flex: none; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); height: min-content; justify-content: center; max-width: 1900px; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-jsTGR .framer-i15n7i-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-jsTGR .framer-1k7ad6k-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-jsTGR.framer-es5821, .framer-jsTGR .framer-1tj4pft, .framer-jsTGR .framer-q3eh0m, .framer-jsTGR .framer-68zwki, .framer-jsTGR .framer-1bda809, .framer-jsTGR .framer-d22gue, .framer-jsTGR .framer-1sejja9, .framer-jsTGR .framer-6l3o8z, .framer-jsTGR .framer-kiqw8o, .framer-jsTGR .framer-18840vf, .framer-jsTGR .framer-1oo0h5b, .framer-jsTGR .framer-1d8nx7m, .framer-jsTGR .framer-13iehwo, .framer-jsTGR .framer-mvd2yh, .framer-jsTGR .framer-1af1rw8, .framer-jsTGR .framer-1ipwh1o, .framer-jsTGR .framer-1smnwco, .framer-jsTGR .framer-x69y98, .framer-jsTGR .framer-1mr2t4j, .framer-jsTGR .framer-1d4wo1c, .framer-jsTGR .framer-7541w { gap: 0px; } .framer-jsTGR.framer-es5821 > *, .framer-jsTGR .framer-1oo0h5b > *, .framer-jsTGR .framer-1d8nx7m > *, .framer-jsTGR .framer-1d4wo1c > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-jsTGR.framer-es5821 > :first-child, .framer-jsTGR .framer-1tj4pft > :first-child, .framer-jsTGR .framer-q3eh0m > :first-child, .framer-jsTGR .framer-6l3o8z > :first-child, .framer-jsTGR .framer-kiqw8o > :first-child, .framer-jsTGR .framer-18840vf > :first-child, .framer-jsTGR .framer-1oo0h5b > :first-child, .framer-jsTGR .framer-1d8nx7m > :first-child, .framer-jsTGR .framer-mvd2yh > :first-child, .framer-jsTGR .framer-1af1rw8 > :first-child, .framer-jsTGR .framer-1ipwh1o > :first-child, .framer-jsTGR .framer-1smnwco > :first-child, .framer-jsTGR .framer-x69y98 > :first-child, .framer-jsTGR .framer-1mr2t4j > :first-child, .framer-jsTGR .framer-1d4wo1c > :first-child, .framer-jsTGR .framer-7541w > :first-child { margin-top: 0px; } .framer-jsTGR.framer-es5821 > :last-child, .framer-jsTGR .framer-1tj4pft > :last-child, .framer-jsTGR .framer-q3eh0m > :last-child, .framer-jsTGR .framer-6l3o8z > :last-child, .framer-jsTGR .framer-kiqw8o > :last-child, .framer-jsTGR .framer-18840vf > :last-child, .framer-jsTGR .framer-1oo0h5b > :last-child, .framer-jsTGR .framer-1d8nx7m > :last-child, .framer-jsTGR .framer-mvd2yh > :last-child, .framer-jsTGR .framer-1af1rw8 > :last-child, .framer-jsTGR .framer-1ipwh1o > :last-child, .framer-jsTGR .framer-1smnwco > :last-child, .framer-jsTGR .framer-x69y98 > :last-child, .framer-jsTGR .framer-1mr2t4j > :last-child, .framer-jsTGR .framer-1d4wo1c > :last-child, .framer-jsTGR .framer-7541w > :last-child { margin-bottom: 0px; } .framer-jsTGR .framer-1tj4pft > *, .framer-jsTGR .framer-q3eh0m > *, .framer-jsTGR .framer-kiqw8o > *, .framer-jsTGR .framer-1smnwco > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-jsTGR .framer-68zwki > *, .framer-jsTGR .framer-1bda809 > *, .framer-jsTGR .framer-d22gue > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-jsTGR .framer-68zwki > :first-child, .framer-jsTGR .framer-1bda809 > :first-child, .framer-jsTGR .framer-d22gue > :first-child, .framer-jsTGR .framer-1sejja9 > :first-child, .framer-jsTGR .framer-13iehwo > :first-child { margin-left: 0px; } .framer-jsTGR .framer-68zwki > :last-child, .framer-jsTGR .framer-1bda809 > :last-child, .framer-jsTGR .framer-d22gue > :last-child, .framer-jsTGR .framer-1sejja9 > :last-child, .framer-jsTGR .framer-13iehwo > :last-child { margin-right: 0px; } .framer-jsTGR .framer-1sejja9 > *, .framer-jsTGR .framer-13iehwo > * { margin: 0px; margin-left: calc(62px / 2); margin-right: calc(62px / 2); } .framer-jsTGR .framer-6l3o8z > *, .framer-jsTGR .framer-mvd2yh > *, .framer-jsTGR .framer-1ipwh1o > *, .framer-jsTGR .framer-1mr2t4j > * { margin: 0px; margin-bottom: calc(39px / 2); margin-top: calc(39px / 2); } .framer-jsTGR .framer-18840vf > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-jsTGR .framer-1af1rw8 > *, .framer-jsTGR .framer-x69y98 > * { margin: 0px; margin-bottom: calc(62px / 2); margin-top: calc(62px / 2); } .framer-jsTGR .framer-7541w > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\"@media (min-width: 1600px) { .framer-jsTGR .hidden-es5821 { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 999px) { .framer-jsTGR .hidden-174iwmh { display: none !important; } .${metadata.bodyClassName}-framer-jsTGR { background: var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13)); } .framer-jsTGR.framer-es5821 { width: 810px; } .framer-jsTGR .framer-1grt4ra-container { max-width: 697px; } .framer-jsTGR .framer-q3eh0m { height: 504px; } .framer-jsTGR .framer-68zwki, .framer-jsTGR .framer-1bda809 { height: var(--framer-aspect-ratio-supported, 113px); } .framer-jsTGR .framer-1kjgr0z { height: var(--framer-aspect-ratio-supported, 70px); } .framer-jsTGR .framer-1wdd0sl { bottom: -68px; top: -68px; } .framer-jsTGR .framer-6aosqm, .framer-jsTGR .framer-18msn7s, .framer-jsTGR .framer-1k5nbo7 { height: var(--framer-aspect-ratio-supported, 107px); } .framer-jsTGR .framer-5h8zem { height: 338px; } .framer-jsTGR .framer-11tx6fe { bottom: 0px; height: unset; top: 0px; } .framer-jsTGR .framer-1lqcmad { bottom: 0px; top: 0px; } .framer-jsTGR .framer-1qw7bfk { grid-template-columns: repeat(2, minmax(200px, 1fr)); }}`,`@media (max-width: 809px) { .framer-jsTGR .hidden-1t7ub58 { display: none !important; } .${metadata.bodyClassName}-framer-jsTGR { background: var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13)); } .framer-jsTGR.framer-es5821 { width: 390px; } .framer-jsTGR .framer-1grt4ra-container { top: 20px; width: 90%; } .framer-jsTGR .framer-q3eh0m { padding: 0px 20px 0px 20px; } .framer-jsTGR .framer-68zwki, .framer-jsTGR .framer-1bda809 { height: var(--framer-aspect-ratio-supported, 113px); } .framer-jsTGR .framer-1sejja9, .framer-jsTGR .framer-1af1rw8, .framer-jsTGR .framer-x69y98, .framer-jsTGR .framer-7541w { padding: 50px 20px 50px 20px; } .framer-jsTGR .framer-kiqw8o { order: 1; } .framer-jsTGR .framer-18840vf { gap: 20px; order: 0; } .framer-jsTGR .framer-13iehwo { padding: 50px 0px 50px 0px; } .framer-jsTGR .framer-1kjgr0z { height: var(--framer-aspect-ratio-supported, 70px); order: 0; } .framer-jsTGR .framer-1wdd0sl { bottom: -33px; top: -33px; } .framer-jsTGR .framer-1smnwco, .framer-jsTGR .framer-1d4wo1c { order: 0; } .framer-jsTGR .framer-6aosqm, .framer-jsTGR .framer-18msn7s, .framer-jsTGR .framer-1k5nbo7 { height: var(--framer-aspect-ratio-supported, 107px); } .framer-jsTGR .framer-5h8zem { bottom: 0px; height: unset; top: 0px; } .framer-jsTGR .framer-11tx6fe { bottom: -1px; height: unset; top: 0px; } .framer-jsTGR .framer-1lqcmad { bottom: 0px; top: 0px; } .framer-jsTGR .framer-1qw7bfk { grid-template-columns: repeat(1, minmax(200px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-jsTGR .framer-18840vf { gap: 0px; } .framer-jsTGR .framer-18840vf > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-jsTGR .framer-18840vf > :first-child { margin-top: 0px; } .framer-jsTGR .framer-18840vf > :last-child { margin-bottom: 0px; } }}`,`@media (min-width: 1000px) and (max-width: 1599px) { .framer-jsTGR .hidden-96d8og { display: none !important; } .${metadata.bodyClassName}-framer-jsTGR { background: var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13)); } .framer-jsTGR.framer-es5821 { width: 1000px; } .framer-jsTGR .framer-68zwki, .framer-jsTGR .framer-1bda809 { height: var(--framer-aspect-ratio-supported, 507px); } .framer-jsTGR .framer-1kjgr0z { height: var(--framer-aspect-ratio-supported, 350px); } .framer-jsTGR .framer-1wdd0sl { bottom: -85px; top: -84px; } .framer-jsTGR .framer-6aosqm, .framer-jsTGR .framer-1k5nbo7 { height: var(--framer-aspect-ratio-supported, 533px); } .framer-jsTGR .framer-18msn7s { height: var(--framer-aspect-ratio-supported, 534px); } .framer-jsTGR .framer-1qw7bfk { grid-template-columns: repeat(2, minmax(200px, 1fr)); }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-jsTGR[data-border=\"true\"]::after, .framer-jsTGR [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5709.5\n * @framerIntrinsicWidth 1600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"AhxD87Cdn\":{\"layout\":[\"fixed\",\"auto\"]},\"PL8n528A5\":{\"layout\":[\"fixed\",\"auto\"]},\"F2hKBS40u\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerpWpdxqxfn=withCSS(Component,css,\"framer-jsTGR\");export default FramerpWpdxqxfn;FramerpWpdxqxfn.displayName=\"Projects\";FramerpWpdxqxfn.defaultProps={height:5709.5,width:1600};addFonts(FramerpWpdxqxfn,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-ext-XOTVL7ZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-6LOMBC2V.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-ext-WXWSJXLB.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-YRST7ODZ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Bold.latin-ext-BASA5UL3.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Bold.latin-UCM45LQF.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Bold.vietnamese-OEVJMXEP.woff2\",weight:\"700\"}]},...NavBarFonts,...VimeoFonts,...YouTubeFonts,...VideoFonts,...ProjectsCardFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpWpdxqxfn\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1600\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AhxD87Cdn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PL8n528A5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"F2hKBS40u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"5709.5\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "NavBarFonts", "getFonts", "WvxfThqf1_default", "VimeoFonts", "Vimeo_default", "YouTubeFonts", "Youtube", "VideoFonts", "Video", "ImageWithFX", "withFX", "Image2", "ProjectsCardFonts", "n6Xcin54k_default", "FooterFonts", "Swq40RzUA_default", "breakpoints", "serializationHash", "variantClassNames", "isSet", "value", "toResponsiveImage", "transformTemplate1", "_", "t", "QueryData", "query", "children", "data", "useQueryData", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "_enumToDisplayNameFunctions_wXItOKXnY", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "H1axCB9AX_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "snwHMirzu", "vSb_ti0u4", "Kz3cdjUeo", "U4Bh6VEBL", "eMkH9e4C8", "BNf1ppaSX", "QrAvhzDlC", "wXItOKXnY", "bgiIfJARx", "f5hDUOPSa", "t7sKSchc9", "ZVKTdXLBk", "FTZ_NJhsr", "bgiIfJARxtxNLUyolW", "vSb_ti0u4txNLUyolW", "afbNTvX2QtxNLUyolW", "wXItOKXnYtxNLUyolW", "idtxNLUyolW", "afbNTvX2Q", "restProps", "fe", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "visible", "visible1", "visible2", "textContent", "enumToDisplayNameFunctions", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides2", "ComponentViewportProvider", "Container", "WvxfThqf1_default", "RichText2", "x", "Vimeo_default", "Youtube", "Video", "ImageWithFX", "Image2", "collection", "i", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "n6Xcin54k_default", "Swq40RzUA_default", "css", "FramerpWpdxqxfn", "withCSS", "pWpdxqxfn_default", "addFonts", "NavBarFonts", "VimeoFonts", "YouTubeFonts", "VideoFonts", "ProjectsCardFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
