{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/KhWb3zYGHtl3eIgK1y46/HDLwHw7OqQKqJDFhGu4K/ysB6xCmvd.js", "ssg:https://framerusercontent.com/modules/vrz5EsxlxktGWgeGtIEi/nkG8ITnXTXAkNvZpcahv/qMYXGsBRY.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (1f5f6d9)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Fragment Mono-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}];export const css=['.framer-WrTqa .framer-styles-preset-tkmqj2:not(.rich-text-wrapper), .framer-WrTqa .framer-styles-preset-tkmqj2.rich-text-wrapper code { --framer-code-font-family: \"Fragment Mono\", monospace; --framer-code-font-style: normal; --framer-code-font-weight: 400; --framer-code-text-color: #333; --framer-font-size-scale: 1; background-color: rgba(0, 0, 0, 0.1); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; padding-bottom: 0.1em; padding-left: 0.2em; padding-right: 0.2em; padding-top: 0.1em; }'];export const className=\"framer-WrTqa\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ee31e22)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/QT1T2E8wheNIIXpHephB/Smooth_Scroll.js\";import PostBanner from\"#framer/local/canvasComponent/eMxgO7neZ/eMxgO7neZ.js\";import AccordianProjectCard from\"#framer/local/canvasComponent/F87V75EAv/F87V75EAv.js\";import AspectRatioImage from\"#framer/local/codeFile/dVyGkrg/AspectRatioImage.js\";import Posts from\"#framer/local/collection/I1Nx9_dp1/I1Nx9_dp1.js\";import Projects from\"#framer/local/collection/X0NesCnbM/X0NesCnbM.js\";import*as sharedStyle5 from\"#framer/local/css/HWHMzqrSW/HWHMzqrSW.js\";import*as sharedStyle2 from\"#framer/local/css/JBZ5uKEV_/JBZ5uKEV_.js\";import*as sharedStyle6 from\"#framer/local/css/lcyF0Up4C/lcyF0Up4C.js\";import*as sharedStyle1 from\"#framer/local/css/VxZDHPgPw/VxZDHPgPw.js\";import*as sharedStyle4 from\"#framer/local/css/wolhoPGfr/wolhoPGfr.js\";import*as sharedStyle7 from\"#framer/local/css/ysB6xCmvd/ysB6xCmvd.js\";import*as sharedStyle from\"#framer/local/css/YxuWjKD7R/YxuWjKD7R.js\";import*as sharedStyle3 from\"#framer/local/css/ZqFTfLtxd/ZqFTfLtxd.js\";import metadataProvider from\"#framer/local/webPageMetadata/qMYXGsBRY/qMYXGsBRY.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const AspectRatioImageFonts=getFonts(AspectRatioImage);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ContainerWithFX=withFX(Container);const VideoFonts=getFonts(Video);const AccordianProjectCardFonts=getFonts(AccordianProjectCard);const PostBannerFonts=getFonts(PostBanner);const breakpoints={hOI8SE0Bk:\"(max-width: 809px)\",Rt6ZtN2io:\"(min-width: 810px) and (max-width: 1439px)\",V81Z3K3_7:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Wxuut\";const variantClassNames={hOI8SE0Bk:\"framer-v-1rztgnz\",Rt6ZtN2io:\"framer-v-3lcawd\",V81Z3K3_7:\"framer-v-nvge2f\"};const transition1={bounce:.2,delay:.5,duration:1,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={bounce:.2,delay:0,duration:1,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const toImageSrc=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value.src;}return typeof value===\"string\"?value:undefined;};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"V81Z3K3_7\",Phone:\"hOI8SE0Bk\",Tablet:\"Rt6ZtN2io\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"V81Z3K3_7\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{constraint:{left:{collection:\"qMYXGsBRY\",name:\"nextItemId\",type:\"Identifier\"},operator:\"==\",right:{collection:\"nextItemId\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"qMYXGsBRY\",name:\"previousItemId\",type:\"Identifier\"},operator:\"==\",right:{collection:\"previousItemId\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"qMYXGsBRY\",name:\"PzE9IFZdN\",type:\"Identifier\"},operator:\"==\",right:{collection:\"PzE9IFZdN\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"qMYXGsBRY\",data:Posts,type:\"Collection\"},right:{alias:\"PzE9IFZdN\",data:Projects,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"previousItemId\",data:Posts,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"nextItemId\",data:Posts,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"qMYXGsBRY\",name:\"YOWhuiLzK\",type:\"Identifier\"},{collection:\"qMYXGsBRY\",name:\"AIHQNWaRp\",type:\"Identifier\"},{collection:\"qMYXGsBRY\",name:\"ToARdQUiG\",type:\"Identifier\"},{collection:\"qMYXGsBRY\",name:\"gZ4u5Kl8C\",type:\"Identifier\"},{collection:\"qMYXGsBRY\",name:\"N9QNCjWxe\",type:\"Identifier\"},{collection:\"qMYXGsBRY\",name:\"Qs0YVGzfe\",type:\"Identifier\"},{collection:\"qMYXGsBRY\",name:\"y2HjucymA\",type:\"Identifier\"},{collection:\"qMYXGsBRY\",name:\"VP7HwposK\",type:\"Identifier\"},{collection:\"qMYXGsBRY\",name:\"Xmbnp8NO_\",type:\"Identifier\"},{collection:\"qMYXGsBRY\",name:\"Z8hvBZcED\",type:\"Identifier\"},{collection:\"qMYXGsBRY\",name:\"xgSQYo9t6\",type:\"Identifier\"},{collection:\"qMYXGsBRY\",name:\"aqJZxOcAm\",type:\"Identifier\"},{alias:\"PzE9IFZdN.X1XsF5Wcx\",collection:\"PzE9IFZdN\",name:\"X1XsF5Wcx\",type:\"Identifier\"},{alias:\"PzE9IFZdN.vWGXWSrjI\",collection:\"PzE9IFZdN\",name:\"vWGXWSrjI\",type:\"Identifier\"},{alias:\"previousItemId.AIHQNWaRp\",collection:\"previousItemId\",name:\"AIHQNWaRp\",type:\"Identifier\"},{alias:\"previousItemId.jTyuVJQdR\",collection:\"previousItemId\",name:\"jTyuVJQdR\",type:\"Identifier\"},{alias:\"previousItemId.Qs0YVGzfe\",collection:\"previousItemId\",name:\"Qs0YVGzfe\",type:\"Identifier\"},{alias:\"previousItemId.y2HjucymA\",collection:\"previousItemId\",name:\"y2HjucymA\",type:\"Identifier\"},{alias:\"previousItemId.VP7HwposK\",collection:\"previousItemId\",name:\"VP7HwposK\",type:\"Identifier\"},{alias:\"previousItemId\",collection:\"previousItemId\",name:\"id\",type:\"Identifier\"},{alias:\"nextItemId.AIHQNWaRp\",collection:\"nextItemId\",name:\"AIHQNWaRp\",type:\"Identifier\"},{alias:\"nextItemId.jTyuVJQdR\",collection:\"nextItemId\",name:\"jTyuVJQdR\",type:\"Identifier\"},{alias:\"nextItemId.Qs0YVGzfe\",collection:\"nextItemId\",name:\"Qs0YVGzfe\",type:\"Identifier\"},{alias:\"nextItemId.y2HjucymA\",collection:\"nextItemId\",name:\"y2HjucymA\",type:\"Identifier\"},{alias:\"nextItemId.VP7HwposK\",collection:\"nextItemId\",name:\"VP7HwposK\",type:\"Identifier\"},{alias:\"nextItemId\",collection:\"nextItemId\",name:\"id\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"qMYXGsBRY\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,AIHQNWaRp=getFromCurrentRouteData(\"AIHQNWaRp\")??\"\",PzE9IFZdN_X1XsF5Wcx=getFromCurrentRouteData(\"PzE9IFZdN.X1XsF5Wcx\")??\"\",PzE9IFZdN_vWGXWSrjI=getFromCurrentRouteData(\"PzE9IFZdN.vWGXWSrjI\")??\"\",Qs0YVGzfe=getFromCurrentRouteData(\"Qs0YVGzfe\")??\"\",ToARdQUiG=getFromCurrentRouteData(\"ToARdQUiG\")??\"\",VP7HwposK=getFromCurrentRouteData(\"VP7HwposK\"),gZ4u5Kl8C=getFromCurrentRouteData(\"gZ4u5Kl8C\")??\"\",Z8hvBZcED=getFromCurrentRouteData(\"Z8hvBZcED\")??[],phetD_OCEn5uLgdCyf,phetD_OCEuVj0nged_,xgSQYo9t6=getFromCurrentRouteData(\"xgSQYo9t6\")??[],N9QNCjWxe=getFromCurrentRouteData(\"N9QNCjWxe\")??\"\",Xmbnp8NO_=getFromCurrentRouteData(\"Xmbnp8NO_\"),aqJZxOcAm=getFromCurrentRouteData(\"aqJZxOcAm\")??[],Yb6bjVZbbPeILnZjsk,YOWhuiLzK=getFromCurrentRouteData(\"YOWhuiLzK\")??\"\",X1XsF5WcxEUZtgFAIL,XgmPfzjZUEUZtgFAIL,TN1ddb0uYEUZtgFAIL,vWGXWSrjIEUZtgFAIL,KJjS3yZHDEUZtgFAIL,idEUZtgFAIL,previousItemId=getFromCurrentRouteData(\"previousItemId\"),previousItemId_VP7HwposK=getFromCurrentRouteData(\"previousItemId.VP7HwposK\"),previousItemId_jTyuVJQdR=getFromCurrentRouteData(\"previousItemId.jTyuVJQdR\")??\"\",previousItemId_AIHQNWaRp=getFromCurrentRouteData(\"previousItemId.AIHQNWaRp\")??\"\",previousItemId_Qs0YVGzfe=getFromCurrentRouteData(\"previousItemId.Qs0YVGzfe\")??\"\",previousItemId_y2HjucymA=getFromCurrentRouteData(\"previousItemId.y2HjucymA\")??\"\",nextItemId=getFromCurrentRouteData(\"nextItemId\"),nextItemId_VP7HwposK=getFromCurrentRouteData(\"nextItemId.VP7HwposK\"),nextItemId_jTyuVJQdR=getFromCurrentRouteData(\"nextItemId.jTyuVJQdR\")??\"\",nextItemId_AIHQNWaRp=getFromCurrentRouteData(\"nextItemId.AIHQNWaRp\")??\"\",nextItemId_Qs0YVGzfe=getFromCurrentRouteData(\"nextItemId.Qs0YVGzfe\")??\"\",nextItemId_y2HjucymA=getFromCurrentRouteData(\"nextItemId.y2HjucymA\")??\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=isSet(Z8hvBZcED);const visible1=isSet(N9QNCjWxe);const visible2=isSet(Xmbnp8NO_);const visible3=isSet(aqJZxOcAm);const textContent=prefix(YOWhuiLzK,\"More \");const visible4=isSet(previousItemId);const router=useRouter();const visible5=isSet(nextItemId);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"V81Z3K3_7\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 0, 0); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-nvge2f\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-w06ipi-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wSZFe6sBL\",scopeId:\"qMYXGsBRY\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"wSZFe6sBL\",intensity:10,layoutId:\"wSZFe6sBL\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-106ks72\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v5h0qo\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-9uw37l\",\"data-styles-preset\":\"YxuWjKD7R\",style:{\"--framer-text-alignment\":\"left\"},children:\"Establishing a contemporary men's hairstyling brand\"})}),className:\"framer-20s7s\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:AIHQNWaRp,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-tmulpo\",\"data-styles-preset\":\"VxZDHPgPw\",style:{\"--framer-text-alignment\":\"left\"},children:\"CAEDO is a men's hairstyling product brand born out of the growing precision-based cutting technique in the barbering industry.\"})}),className:\"framer-27dugr\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:PzE9IFZdN_X1XsF5Wcx,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-185zz8f\",\"data-framer-name\":\"Info\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gzazii\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1vjtblh\",\"data-styles-preset\":\"JBZ5uKEV_\",children:\"Status\"})}),className:\"framer-1vzr6qv\",\"data-framer-name\":\"Project\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-tmulpo\",\"data-styles-preset\":\"VxZDHPgPw\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-3bfef0ae-6fea-49fa-9e8e-5550b38b299b, rgb(0, 0, 0))\"},children:\"Active\"})}),className:\"framer-u7rqav\",\"data-framer-name\":\"Project\",fonts:[\"Inter\"],text:PzE9IFZdN_vWGXWSrjI,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jeuwch\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1vjtblh\",\"data-styles-preset\":\"JBZ5uKEV_\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-3bfef0ae-6fea-49fa-9e8e-5550b38b299b, rgb(0, 0, 0))\"},children:\"CLIENT\"})}),className:\"framer-5yifpg\",\"data-framer-name\":\"Client\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-tmulpo\",\"data-styles-preset\":\"VxZDHPgPw\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-3bfef0ae-6fea-49fa-9e8e-5550b38b299b, rgb(0, 0, 0))\"},children:\"CAEDO\"})}),className:\"framer-1x5zggd\",\"data-framer-name\":\"Client\",fonts:[\"Inter\"],text:Qs0YVGzfe,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vskm3b\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1vjtblh\",\"data-styles-preset\":\"JBZ5uKEV_\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-3bfef0ae-6fea-49fa-9e8e-5550b38b299b, rgb(0, 0, 0))\"},children:\"Services\"})}),className:\"framer-132o5sj\",\"data-framer-name\":\"Services\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-tmulpo\",\"data-styles-preset\":\"VxZDHPgPw\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-3bfef0ae-6fea-49fa-9e8e-5550b38b299b, rgb(0, 0, 0))\"},children:\"Brand Identity, Website, Art & Design Direction\"})}),className:\"framer-vq5rzp\",\"data-framer-name\":\"Services\",fonts:[\"Inter\"],text:ToARdQUiG,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1if5qg9\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-28nnnk\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-zlibhu\",\"data-framer-appear-id\":\"zlibhu\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kbxgq-container\",isAuthoredByUser:true,nodeId:\"bw2lITlSw\",scopeId:\"qMYXGsBRY\",children:/*#__PURE__*/_jsx(AspectRatioImage,{bottomLeft:0,bottomRight:0,height:\"100%\",id:\"bw2lITlSw\",image:toResponsiveImage(VP7HwposK),layoutId:\"bw2lITlSw\",radius:0,radiusIsMixed:false,shadows:\"\",style:{width:\"100%\"},topLeft:0,topRight:0,width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j8ddo9\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:gZ4u5Kl8C,className:\"framer-18luv9x\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1rue6xx\",code:\"framer-styles-preset-tkmqj2\",h1:\"framer-styles-preset-17h1m34\",h2:\"framer-styles-preset-9uw37l\",h3:\"framer-styles-preset-1cryatb\",h4:\"framer-styles-preset-1pr6qpa\",h5:\"framer-styles-preset-1vjtblh\",p:\"framer-styles-preset-tmulpo\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1knvh7g\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tasa24\",children:Z8hvBZcED?.map(({id,phetD_OCE:phetD_OCEn5uLgdCyf},index)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`n5uLgdCyf-${id??index}`,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1othff3-container\",isAuthoredByUser:true,nodeId:\"wx4Y8rCAh\",rendersWithMotion:true,scopeId:\"qMYXGsBRY\",children:/*#__PURE__*/_jsx(AspectRatioImage,{bottomLeft:0,bottomRight:0,height:\"100%\",id:\"wx4Y8rCAh\",image:toResponsiveImage(phetD_OCEn5uLgdCyf),layoutId:\"wx4Y8rCAh\",radius:0,radiusIsMixed:false,shadows:\"\",style:{width:\"100%\"},topLeft:0,topRight:0,width:\"100%\"})})})},id??index);})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jubj77\",children:xgSQYo9t6?.map(({id:id1,phetD_OCE:phetD_OCEuVj0nged_},index1)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`uVj0nged_-${id1??index1}`,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fzwgus-container\",isAuthoredByUser:true,nodeId:\"FxbG7H9cP\",rendersWithMotion:true,scopeId:\"qMYXGsBRY\",children:/*#__PURE__*/_jsx(AspectRatioImage,{bottomLeft:0,bottomRight:0,height:\"100%\",id:\"FxbG7H9cP\",image:toResponsiveImage(phetD_OCEuVj0nged_),layoutId:\"FxbG7H9cP\",radius:0,radiusIsMixed:false,shadows:\"\",style:{width:\"100%\"},topLeft:0,topRight:0,width:\"100%\"})})})},id1??index1);})})]}),visible1&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-7z2ce7\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:N9QNCjWxe,className:\"framer-1x0esqk\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1rue6xx\",code:\"framer-styles-preset-tkmqj2\",h1:\"framer-styles-preset-17h1m34\",h2:\"framer-styles-preset-9uw37l\",h3:\"framer-styles-preset-1cryatb\",h4:\"framer-styles-preset-1pr6qpa\",h5:\"framer-styles-preset-1vjtblh\",p:\"framer-styles-preset-tmulpo\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lscnnn-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Rte1xY5zl\",scopeId:\"qMYXGsBRY\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Rte1xY5zl\",isMixedBorderRadius:false,layoutId:\"Rte1xY5zl\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:toImageSrc(VP7HwposK),posterEnabled:true,srcFile:Xmbnp8NO_,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible3&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sd05iy\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n8t7zp\",children:aqJZxOcAm?.map(({id:id2,Yb6bjVZbb:Yb6bjVZbbPeILnZjsk},index2)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`PeILnZjsk-${id2??index2}`,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1onjtxb-container\",isAuthoredByUser:true,nodeId:\"eVe4M93h9\",rendersWithMotion:true,scopeId:\"qMYXGsBRY\",children:/*#__PURE__*/_jsx(AspectRatioImage,{bottomLeft:0,bottomRight:0,height:\"100%\",id:\"eVe4M93h9\",image:toResponsiveImage(Yb6bjVZbbPeILnZjsk),layoutId:\"eVe4M93h9\",radius:0,radiusIsMixed:false,shadows:\"\",style:{width:\"100%\"},topLeft:0,topRight:0,width:\"100%\"})})})},id2??index2);})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mj81kf\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"EUZtgFAIL\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"EUZtgFAIL\",name:\"X1XsF5Wcx\",type:\"Identifier\"},{collection:\"EUZtgFAIL\",name:\"XgmPfzjZU\",type:\"Identifier\"},{collection:\"EUZtgFAIL\",name:\"TN1ddb0uY\",type:\"Identifier\"},{collection:\"EUZtgFAIL\",name:\"vWGXWSrjI\",type:\"Identifier\"},{collection:\"EUZtgFAIL\",name:\"KJjS3yZHD\",type:\"Identifier\"},{collection:\"EUZtgFAIL\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"EUZtgFAIL\",name:\"KJjS3yZHD\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:YOWhuiLzK},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1vjtblh\",\"data-styles-preset\":\"JBZ5uKEV_\",children:\"More jiudi\"})}),className:\"framer-6xs17v\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),collection?.map(({id:idEUZtgFAIL,KJjS3yZHD:KJjS3yZHDEUZtgFAIL,TN1ddb0uY:TN1ddb0uYEUZtgFAIL,vWGXWSrjI:vWGXWSrjIEUZtgFAIL,X1XsF5Wcx:X1XsF5WcxEUZtgFAIL,XgmPfzjZU:XgmPfzjZUEUZtgFAIL},index3)=>{X1XsF5WcxEUZtgFAIL??=\"\";XgmPfzjZUEUZtgFAIL??=\"\";vWGXWSrjIEUZtgFAIL??=\"\";KJjS3yZHDEUZtgFAIL??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`EUZtgFAIL-${idEUZtgFAIL}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{KJjS3yZHD:KJjS3yZHDEUZtgFAIL},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ukp9ln\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hOI8SE0Bk:{y:(componentViewport?.y||0)+140+848.6+20+1224+0+32.4+0},Rt6ZtN2io:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:`max(${componentViewport?.width||\"100vw\"} - 80px, 1px)`,y:(componentViewport?.y||0)+140+828.6+20+1224+0+32.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pi1u74-container\",nodeId:\"iyVH6aNhY\",scopeId:\"qMYXGsBRY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hOI8SE0Bk:{variant:\"DPrNqpS3p\"}},children:/*#__PURE__*/_jsx(AccordianProjectCard,{ALA2i0nTD:vWGXWSrjIEUZtgFAIL,belbEkdrE:toResponsiveImage(TN1ddb0uYEUZtgFAIL),bHtugLMfW:XgmPfzjZUEUZtgFAIL,CkwugQmMt:KJjS3yZHDEUZtgFAIL,height:\"100%\",id:\"iyVH6aNhY\",layoutId:\"iyVH6aNhY\",style:{width:\"100%\"},Ty82T0JvZ:X1XsF5WcxEUZtgFAIL,variant:\"D4aYRLNLy\",width:\"100%\"})})})})})})})},idEUZtgFAIL);})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h1sjox\",children:[visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eigqdd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1vjtblh\",\"data-styles-preset\":\"JBZ5uKEV_\",children:\"PREVIOUS POST\"})}),className:\"framer-1rrs4n9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{jTyuVJQdR:previousItemId_jTyuVJQdR},webPageId:\"qMYXGsBRY\"},implicitPathVariables:undefined},{href:{pathVariables:{jTyuVJQdR:previousItemId_jTyuVJQdR},webPageId:\"qMYXGsBRY\"},implicitPathVariables:undefined},{href:{pathVariables:{jTyuVJQdR:previousItemId_jTyuVJQdR},webPageId:\"qMYXGsBRY\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hOI8SE0Bk:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+140+848.6+20+1406.4+0+0+0+32.4},Rt6ZtN2io:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:682,width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 0, 1px)`,y:(componentViewport?.y||0)+140+828.6+20+1406.4+0+0+32.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13br5h3-container\",nodeId:\"EUXUqHGZJ\",scopeId:\"qMYXGsBRY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hOI8SE0Bk:{WoCWcUgJp:resolvedLinks[2]},Rt6ZtN2io:{WoCWcUgJp:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(PostBanner,{FQJXqjrLM:previousItemId_AIHQNWaRp,height:\"100%\",id:\"EUXUqHGZJ\",layoutId:\"EUXUqHGZJ\",lVCYNsyoE:previousItemId_Qs0YVGzfe,PJJ986emY:previousItemId_y2HjucymA,pSNWEEpB3:toResponsiveImage(previousItemId_VP7HwposK),style:{width:\"100%\"},variant:\"miICX9cFr\",width:\"100%\",WoCWcUgJp:resolvedLinks[0]})})})})})})]}),visible5&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jf0mcg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1vjtblh\",\"data-styles-preset\":\"JBZ5uKEV_\",children:\"NEXT POST\"})}),className:\"framer-1mmhu6d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{jTyuVJQdR:nextItemId_jTyuVJQdR},webPageId:\"qMYXGsBRY\"},implicitPathVariables:undefined},{href:{pathVariables:{jTyuVJQdR:nextItemId_jTyuVJQdR},webPageId:\"qMYXGsBRY\"},implicitPathVariables:undefined},{href:{pathVariables:{jTyuVJQdR:nextItemId_jTyuVJQdR},webPageId:\"qMYXGsBRY\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hOI8SE0Bk:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+140+848.6+20+1406.4+0+0+0+32.4},Rt6ZtN2io:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:682,width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 0, 1px)`,y:(componentViewport?.y||0)+140+828.6+20+1406.4+0+0+32.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-187cbbn-container\",nodeId:\"f47Mhn2F_\",scopeId:\"qMYXGsBRY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hOI8SE0Bk:{WoCWcUgJp:resolvedLinks1[2]},Rt6ZtN2io:{WoCWcUgJp:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(PostBanner,{FQJXqjrLM:nextItemId_AIHQNWaRp,height:\"100%\",id:\"f47Mhn2F_\",layoutId:\"f47Mhn2F_\",lVCYNsyoE:nextItemId_Qs0YVGzfe,PJJ986emY:nextItemId_y2HjucymA,pSNWEEpB3:toResponsiveImage(nextItemId_VP7HwposK),style:{width:\"100%\"},variant:\"miICX9cFr\",width:\"100%\",WoCWcUgJp:resolvedLinks1[0]})})})})})})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Wxuut.framer-4x0uge, .framer-Wxuut .framer-4x0uge { display: block; }\",\".framer-Wxuut.framer-nvge2f { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 140px 20px 140px 20px; position: relative; width: 1440px; }\",\".framer-Wxuut .framer-w06ipi-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Wxuut .framer-106ks72 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; padding: 20px; position: relative; width: 100%; }\",\".framer-Wxuut .framer-1v5h0qo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 40%; }\",\".framer-Wxuut .framer-20s7s, .framer-Wxuut .framer-vq5rzp { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Wxuut .framer-27dugr { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: auto; }\",\".framer-Wxuut .framer-185zz8f { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Wxuut .framer-gzazii, .framer-Wxuut .framer-1jeuwch { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Wxuut .framer-1vzr6qv, .framer-Wxuut .framer-u7rqav, .framer-Wxuut .framer-5yifpg, .framer-Wxuut .framer-1x5zggd, .framer-Wxuut .framer-132o5sj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Wxuut .framer-vskm3b { align-content: flex-start; align-items: flex-start; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Wxuut .framer-1if5qg9 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; min-height: 30px; min-width: 337px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Wxuut .framer-28nnnk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-Wxuut .framer-zlibhu { align-content: center; align-items: center; 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%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Wxuut .framer-1kbxgq-container, .framer-Wxuut .framer-13br5h3-container, .framer-Wxuut .framer-187cbbn-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Wxuut .framer-1j8ddo9, .framer-Wxuut .framer-7z2ce7 { 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: visible; padding: 10px; position: relative; width: 60%; z-index: 1; }\",\".framer-Wxuut .framer-18luv9x, .framer-Wxuut .framer-1x0esqk { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-Wxuut .framer-1knvh7g { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 77%; }\",\".framer-Wxuut .framer-1tasa24, .framer-Wxuut .framer-jubj77 { 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; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-Wxuut .framer-1othff3-container, .framer-Wxuut .framer-1fzwgus-container, .framer-Wxuut .framer-1onjtxb-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-Wxuut .framer-1lscnnn-container { flex: none; height: auto; position: relative; width: 80%; }\",\".framer-Wxuut .framer-1sd05iy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Wxuut .framer-1n8t7zp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; padding: 0px 0px 100px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Wxuut .framer-mj81kf { 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; padding: 0px; position: relative; width: 100%; }\",\".framer-Wxuut .framer-6xs17v, .framer-Wxuut .framer-1rrs4n9, .framer-Wxuut .framer-1mmhu6d { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Wxuut .framer-ukp9ln { 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; padding: 0px; position: relative; width: 100%; }\",\".framer-Wxuut .framer-1pi1u74-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-Wxuut .framer-h1sjox { 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: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-Wxuut .framer-1eigqdd { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Wxuut .framer-jf0mcg { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Wxuut.framer-nvge2f, .framer-Wxuut .framer-1v5h0qo, .framer-Wxuut .framer-185zz8f, .framer-Wxuut .framer-gzazii, .framer-Wxuut .framer-1jeuwch, .framer-Wxuut .framer-vskm3b, .framer-Wxuut .framer-1if5qg9, .framer-Wxuut .framer-28nnnk, .framer-Wxuut .framer-zlibhu, .framer-Wxuut .framer-1j8ddo9, .framer-Wxuut .framer-1knvh7g, .framer-Wxuut .framer-1tasa24, .framer-Wxuut .framer-jubj77, .framer-Wxuut .framer-7z2ce7, .framer-Wxuut .framer-1sd05iy, .framer-Wxuut .framer-1n8t7zp, .framer-Wxuut .framer-mj81kf, .framer-Wxuut .framer-ukp9ln, .framer-Wxuut .framer-h1sjox, .framer-Wxuut .framer-1eigqdd, .framer-Wxuut .framer-jf0mcg { gap: 0px; } .framer-Wxuut.framer-nvge2f > * { margin: 0px; margin-bottom: calc(160px / 2); margin-top: calc(160px / 2); } .framer-Wxuut.framer-nvge2f > :first-child, .framer-Wxuut .framer-1v5h0qo > :first-child, .framer-Wxuut .framer-gzazii > :first-child, .framer-Wxuut .framer-1jeuwch > :first-child, .framer-Wxuut .framer-vskm3b > :first-child, .framer-Wxuut .framer-1if5qg9 > :first-child, .framer-Wxuut .framer-28nnnk > :first-child, .framer-Wxuut .framer-zlibhu > :first-child, .framer-Wxuut .framer-1j8ddo9 > :first-child, .framer-Wxuut .framer-1tasa24 > :first-child, .framer-Wxuut .framer-jubj77 > :first-child, .framer-Wxuut .framer-7z2ce7 > :first-child, .framer-Wxuut .framer-1sd05iy > :first-child, .framer-Wxuut .framer-1n8t7zp > :first-child, .framer-Wxuut .framer-mj81kf > :first-child, .framer-Wxuut .framer-1eigqdd > :first-child, .framer-Wxuut .framer-jf0mcg > :first-child { margin-top: 0px; } .framer-Wxuut.framer-nvge2f > :last-child, .framer-Wxuut .framer-1v5h0qo > :last-child, .framer-Wxuut .framer-gzazii > :last-child, .framer-Wxuut .framer-1jeuwch > :last-child, .framer-Wxuut .framer-vskm3b > :last-child, .framer-Wxuut .framer-1if5qg9 > :last-child, .framer-Wxuut .framer-28nnnk > :last-child, .framer-Wxuut .framer-zlibhu > :last-child, .framer-Wxuut .framer-1j8ddo9 > :last-child, .framer-Wxuut .framer-1tasa24 > :last-child, .framer-Wxuut .framer-jubj77 > :last-child, .framer-Wxuut .framer-7z2ce7 > :last-child, .framer-Wxuut .framer-1sd05iy > :last-child, .framer-Wxuut .framer-1n8t7zp > :last-child, .framer-Wxuut .framer-mj81kf > :last-child, .framer-Wxuut .framer-1eigqdd > :last-child, .framer-Wxuut .framer-jf0mcg > :last-child { margin-bottom: 0px; } .framer-Wxuut .framer-1v5h0qo > *, .framer-Wxuut .framer-1if5qg9 > *, .framer-Wxuut .framer-1tasa24 > *, .framer-Wxuut .framer-jubj77 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Wxuut .framer-185zz8f > *, .framer-Wxuut .framer-1knvh7g > *, .framer-Wxuut .framer-h1sjox > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Wxuut .framer-185zz8f > :first-child, .framer-Wxuut .framer-1knvh7g > :first-child, .framer-Wxuut .framer-ukp9ln > :first-child, .framer-Wxuut .framer-h1sjox > :first-child { margin-left: 0px; } .framer-Wxuut .framer-185zz8f > :last-child, .framer-Wxuut .framer-1knvh7g > :last-child, .framer-Wxuut .framer-ukp9ln > :last-child, .framer-Wxuut .framer-h1sjox > :last-child { margin-right: 0px; } .framer-Wxuut .framer-gzazii > *, .framer-Wxuut .framer-1jeuwch > *, .framer-Wxuut .framer-vskm3b > *, .framer-Wxuut .framer-zlibhu > *, .framer-Wxuut .framer-1j8ddo9 > *, .framer-Wxuut .framer-7z2ce7 > *, .framer-Wxuut .framer-1sd05iy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Wxuut .framer-28nnnk > *, .framer-Wxuut .framer-1n8t7zp > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Wxuut .framer-mj81kf > *, .framer-Wxuut .framer-1eigqdd > *, .framer-Wxuut .framer-jf0mcg > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Wxuut .framer-ukp9ln > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,\"@media (min-width: 810px) and (max-width: 1439px) { .framer-Wxuut.framer-nvge2f { width: 810px; } .framer-Wxuut .framer-106ks72 { flex-direction: column; gap: 20px; justify-content: flex-start; } .framer-Wxuut .framer-1v5h0qo { width: 50%; } .framer-Wxuut .framer-1if5qg9 { min-width: unset; width: 100%; } .framer-Wxuut .framer-1j8ddo9, .framer-Wxuut .framer-7z2ce7 { width: 80%; } .framer-Wxuut .framer-1knvh7g, .framer-Wxuut .framer-1lscnnn-container { width: 100%; } .framer-Wxuut .framer-h1sjox { flex-wrap: wrap; justify-content: center; } .framer-Wxuut .framer-1eigqdd { flex-wrap: wrap; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Wxuut .framer-106ks72 { gap: 0px; } .framer-Wxuut .framer-106ks72 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Wxuut .framer-106ks72 > :first-child { margin-top: 0px; } .framer-Wxuut .framer-106ks72 > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-Wxuut.framer-nvge2f { width: 390px; } .framer-Wxuut .framer-106ks72 { flex-direction: column; gap: 20px; justify-content: flex-start; } .framer-Wxuut .framer-1v5h0qo, .framer-Wxuut .framer-1knvh7g, .framer-Wxuut .framer-1lscnnn-container { width: 100%; } .framer-Wxuut .framer-20s7s { width: 60%; } .framer-Wxuut .framer-1if5qg9 { align-content: flex-start; align-items: flex-start; flex-wrap: wrap; min-width: unset; width: 100%; } .framer-Wxuut .framer-1j8ddo9, .framer-Wxuut .framer-7z2ce7 { width: 80%; } .framer-Wxuut .framer-h1sjox { flex-direction: column; flex-wrap: wrap; justify-content: center; } .framer-Wxuut .framer-1eigqdd, .framer-Wxuut .framer-jf0mcg { align-content: center; align-items: center; flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Wxuut .framer-106ks72, .framer-Wxuut .framer-h1sjox { gap: 0px; } .framer-Wxuut .framer-106ks72 > *, .framer-Wxuut .framer-h1sjox > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Wxuut .framer-106ks72 > :first-child, .framer-Wxuut .framer-h1sjox > :first-child { margin-top: 0px; } .framer-Wxuut .framer-106ks72 > :last-child, .framer-Wxuut .framer-h1sjox > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2630.2\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Rt6ZtN2io\":{\"layout\":[\"fixed\",\"auto\"]},\"hOI8SE0Bk\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerqMYXGsBRY=withCSS(Component,css,\"framer-Wxuut\");export default FramerqMYXGsBRY;FramerqMYXGsBRY.displayName=\"Posts\";FramerqMYXGsBRY.defaultProps={height:2630.2,width:1440};addFonts(FramerqMYXGsBRY,[{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\"}]},...SmoothScrollFonts,...AspectRatioImageFonts,...VideoFonts,...AccordianProjectCardFonts,...PostBannerFonts,...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\":\"FramerqMYXGsBRY\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"2630.2\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Rt6ZtN2io\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hOI8SE0Bk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1440\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "fontStore", "fonts", "css", "className", "SmoothScrollFonts", "getFonts", "SmoothScroll", "AspectRatioImageFonts", "AspectRatioImage", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "ContainerWithFX", "withFX", "Container", "VideoFonts", "Video", "AccordianProjectCardFonts", "F87V75EAv_default", "PostBannerFonts", "eMxgO7neZ_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "toResponsiveImage", "value", "isSet", "animation2", "transition2", "animation3", "animation4", "toImageSrc", "prefix", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "I1Nx9_dp1_default", "X0NesCnbM_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "AIHQNWaRp", "PzE9IFZdN_X1XsF5Wcx", "PzE9IFZdN_vWGXWSrjI", "Qs0YVGzfe", "ToARdQUiG", "VP7HwposK", "gZ4u5Kl8C", "Z8hvBZcED", "phetD_OCEn5uLgdCyf", "phetD_OCEuVj0nged_", "xgSQYo9t6", "N9QNCjWxe", "Xmbnp8NO_", "aqJZxOcAm", "Yb6bjVZbbPeILnZjsk", "YOWhuiLzK", "X1XsF5WcxEUZtgFAIL", "XgmPfzjZUEUZtgFAIL", "TN1ddb0uYEUZtgFAIL", "vWGXWSrjIEUZtgFAIL", "KJjS3yZHDEUZtgFAIL", "idEUZtgFAIL", "previousItemId", "previousItemId_VP7HwposK", "previousItemId_jTyuVJQdR", "previousItemId_AIHQNWaRp", "previousItemId_Qs0YVGzfe", "previousItemId_y2HjucymA", "nextItemId", "nextItemId_VP7HwposK", "nextItemId_jTyuVJQdR", "nextItemId_AIHQNWaRp", "nextItemId_Qs0YVGzfe", "nextItemId_y2HjucymA", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "visible", "visible1", "visible2", "visible3", "textContent", "visible4", "router", "useRouter", "visible5", "useCustomCursors", "GeneratedComponentContext", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "SmoothScroll", "RichText2", "x", "MotionDivWithOptimizedAppearEffect", "AspectRatioImage", "index", "ContainerWithFX", "id1", "index1", "Video", "id2", "index2", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index3", "PathVariablesContext", "PropertyOverrides2", "F87V75EAv_default", "ResolveLinks", "resolvedLinks", "eMxgO7neZ_default", "resolvedLinks1", "css", "FramerqMYXGsBRY", "withCSS", "qMYXGsBRY_default", "addFonts", "SmoothScrollFonts", "AspectRatioImageFonts", "VideoFonts", "AccordianProjectCardFonts", "PostBannerFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
