{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js", "ssg:https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/0jtlswBvrookcx7EpjBD/Video.js", "ssg:https://framerusercontent.com/modules/9DOPFKZoXHIH65Ij7V5E/sb0UDGkxWCX4g7gZ3n94/bcUIOegNe.js"],
  "sourcesContent": ["import{MotionValue}from\"framer\";// Basic MotionValue check\nexport const isMotionValue=v=>v instanceof MotionValue;\nexport const __FramerMetadata__ = {\"exports\":{\"isMotionValue\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./isMotionValue.map", "import{useCallback,useEffect,useRef}from\"react\";import{motionValue,animate,RenderTarget}from\"framer\";import{isMotionValue}from\"https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js\";import{useConstant}from\"https://framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js\";export function useAutoMotionValue(inputValue,options){// Put options on a local ref\n// Might wanna just memo instead but it works for now\nconst optionsRef=useRef(options);const animation=useRef();const didInitialMount=useRef(false);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;// in-progress - trying to figure out effect hooks\nconst onChangeDeps=(options===null||options===void 0?void 0:options.onChangeDeps)?options.onChangeDeps:[];// Memoize the onChange handler\nconst onChange=useCallback(options===null||options===void 0?void 0:options.onChange,[...onChangeDeps,]);// Optionally scale the value from props\nconst transformer=useCallback(value=>{var ref;return((ref=optionsRef.current)===null||ref===void 0?void 0:ref.transform)?optionsRef.current.transform(value):value;},[]);// Create new MotionValue from inputValue\nconst value1=useConstant(()=>isMotionValue(inputValue)?inputValue:motionValue(transformer(inputValue)));// Setting value from prop change\nuseEffect(()=>{if(!isMotionValue(inputValue)&&didInitialMount.current){var ref,ref1;const newValue=transformer(inputValue);(ref=animation.current)===null||ref===void 0?void 0:ref.stop();// Call change callback\nif(onChange)onChange(newValue,value1);// Trigger animation to new value\nif(((ref1=optionsRef.current)===null||ref1===void 0?void 0:ref1.animate)&&!isOnCanvas){var ref2;// @ts-ignore\nanimation.current=animate(value1,newValue,(ref2=optionsRef.current)===null||ref2===void 0?void 0:ref2.transition);}else{value1.set(newValue);}}didInitialMount.current=true;},[inputValue,...onChangeDeps]);return value1;}\nexport const __FramerMetadata__ = {\"exports\":{\"useAutoMotionValue\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useAutoMotionValue.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useMotionValueEvent}from\"framer-motion\";import{useRef,useEffect,useMemo,useCallback,memo}from\"react\";import{ControlType,addPropertyControls,useIsInCurrentNavigationTarget}from\"framer\";import{useOnEnter,useOnExit,defaultEvents,useIsOnCanvas,useIsBrowserSafari,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useAutoMotionValue}from\"https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0\";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={}));// 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});}/**\n * For the useEffect hook to change progress of the video on state change.\n * It was causing the video to restart on hydration\n */ let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing,canvasPlay,muted,playsinline,controls,progress,objectFit,backgroundColor,radius,topLeft,topRight,bottomRight,bottomLeft,isMixed,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,restartOnEnter,posterEnabled,startTime:startTimeProp,volume,loop}=props;const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const videoRef=useRef();const isSafari=useIsBrowserSafari();const requestingPlay=useRef(false);const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Video elements behave oddly at 100% duration\nconst startTime=useMemo(()=>startTimeProp===100?99.9:startTimeProp,[startTimeProp]);const shouldPlay=!isOnCanvas||canvasPlay;const autoPlay=useMemo(()=>playing,[]);const isMuted=useMemo(()=>isOnCanvas?true:muted,[isOnCanvas,muted]);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 isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.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();},[]);// Pause/play via props\nuseEffect(()=>{if(playing&&shouldPlay)play();else pause();},[playing,canvasPlay]);// Change progress via prop\nuseEffect(()=>{if(isMountedAndReadyForProgressChanges)setProgress(startTime*.01);else isMountedAndReadyForProgressChanges=true;},[startTime,srcFile,srcUrl]);const videoProgress=useAutoMotionValue(progress,{transform:value=>value*.01,onChange:newValue=>{setProgress(newValue);}});// Allow scrubbing with MotionValue\nuseMotionValueEvent(videoProgress,\"change\",latest=>{if(!isOnCanvas)setProgress(latest);});// (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//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===SrcType.Url)return srcUrl+fragment;if(srcType===SrcType.Video)return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoPlay){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=volume/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(videoRef.current&&videoRef.current.currentTime<.3)setProgress(startTime*.01);if(shouldPlay&&videoRef.current&&autoPlay)play();};return /*#__PURE__*/ _jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>{return onSeeked===null||onSeeked===void 0?void 0:onSeeked(e);},onPause:e=>{return onPause===null||onPause===void 0?void 0:onPause(e);},onPlay:e=>{return onPlay===null||onPlay===void 0?void 0:onPlay(e);},onEnded:e=>{return onEnd===null||onEnd===void 0?void 0:onEnd(e);},autoPlay:autoPlay&&shouldPlay,poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isMuted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,autoPlay:true,canvasPlay:false,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;},description:\"Hosted video file URL. For Youtube, use the Youtube component.\"},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,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:[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,]},canvasPlay:{type:ControlType.Boolean,title:\"On Canvas\",enabledTitle:\"Play\",disabledTitle:\"Pause\",hidden(props){return props.autoPlay===false;}},// 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\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},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\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (a2fb474)\nvar _componentPresets_fonts,_componentPresets_fonts1,_componentPresets_fonts2,_componentPresets_fonts3;import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/0jtlswBvrookcx7EpjBD/Video.js\";import ListItemBadge from\"#framer/local/canvasComponent/bkf_3iqYh/bkf_3iqYh.js\";import BlogCard from\"#framer/local/canvasComponent/FIQUCdJNE/FIQUCdJNE.js\";import Footer from\"#framer/local/canvasComponent/M82dauGNX/M82dauGNX.js\";import NavbarDark from\"#framer/local/canvasComponent/NJQgPrjUI/NJQgPrjUI.js\";import Button from\"#framer/local/canvasComponent/Tnz4seCKc/Tnz4seCKc.js\";import Blog from\"#framer/local/collection/nWZy3UnCE/nWZy3UnCE.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle6 from\"#framer/local/css/AAFpP0Jli/AAFpP0Jli.js\";import*as sharedStyle3 from\"#framer/local/css/cGTNsvVOM/cGTNsvVOM.js\";import*as sharedStyle4 from\"#framer/local/css/DSMSDzFtU/DSMSDzFtU.js\";import*as sharedStyle7 from\"#framer/local/css/f_JgQVGd5/f_JgQVGd5.js\";import*as sharedStyle5 from\"#framer/local/css/FTXKWhUag/FTXKWhUag.js\";import*as sharedStyle8 from\"#framer/local/css/l0Ux_GqU4/l0Ux_GqU4.js\";import*as sharedStyle2 from\"#framer/local/css/pbkah0okA/pbkah0okA.js\";import*as sharedStyle9 from\"#framer/local/css/QY7frbD1p/QY7frbD1p.js\";import*as sharedStyle1 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import metadataProvider from\"#framer/local/webPageMetadata/bcUIOegNe/bcUIOegNe.js\";const NavbarDarkFonts=getFonts(NavbarDark);const ListItemBadgeFonts=getFonts(ListItemBadge);const VideoFonts=getFonts(Video);const ButtonFonts=getFonts(Button);const BlogCardFonts=getFonts(BlogCard);const FooterFonts=getFonts(Footer);const breakpoints={mREZlQ_J6:\"(min-width: 1200px)\",rAx44OxNG:\"(min-width: 810px) and (max-width: 1199px)\",yUefG4DCi:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-vxLFv\";const variantClassNames={mREZlQ_J6:\"framer-v-v64xpx\",rAx44OxNG:\"framer-v-1rrkavb\",yUefG4DCi:\"framer-v-5nmr76\"};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};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 QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"mREZlQ_J6\",Phone:\"yUefG4DCi\",Tablet:\"rAx44OxNG\"};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:\"mREZlQ_J6\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"bcUIOegNe\",data:Blog,type:\"Collection\"},select:[{collection:\"bcUIOegNe\",name:\"YSKHrdVc1\",type:\"Identifier\"},{collection:\"bcUIOegNe\",name:\"Tu_Pd0zTZ\",type:\"Identifier\"},{collection:\"bcUIOegNe\",name:\"xrhH2f9Kl\",type:\"Identifier\"},{collection:\"bcUIOegNe\",name:\"PPeTwl1b8\",type:\"Identifier\"},{collection:\"bcUIOegNe\",name:\"ivFLyaMNq\",type:\"Identifier\"},{collection:\"bcUIOegNe\",name:\"kBAWMceDj\",type:\"Identifier\"},{collection:\"bcUIOegNe\",name:\"EZue1CzWP\",type:\"Identifier\"},{collection:\"bcUIOegNe\",name:\"VhvFuciZJ\",type:\"Identifier\"},{collection:\"bcUIOegNe\",name:\"sB5DKKdZ4\",type:\"Identifier\"},{collection:\"bcUIOegNe\",name:\"t7b0AvdZM\",type:\"Identifier\"},{collection:\"bcUIOegNe\",name:\"tqkCHFNwK\",type:\"Identifier\"},{collection:\"bcUIOegNe\",name:\"aHDPH7o6b\",type:\"Identifier\"},{collection:\"bcUIOegNe\",name:\"zSoNrFllg\",type:\"Identifier\"},{collection:\"bcUIOegNe\",name:\"GySxSB176\",type:\"Identifier\"},{collection:\"bcUIOegNe\",name:\"vn_RVIhvy\",type:\"Identifier\"},{collection:\"bcUIOegNe\",name:\"KvnloAJfj\",type:\"Identifier\"},{collection:\"bcUIOegNe\",name:\"KSLyG_SL9\",type:\"Identifier\"},{collection:\"bcUIOegNe\",name:\"NVqLWF4Tp\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"bcUIOegNe\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};var _getFromCurrentRouteData,_getFromCurrentRouteData1,_getFromCurrentRouteData2,_getFromCurrentRouteData3,_getFromCurrentRouteData4,_getFromCurrentRouteData5,_getFromCurrentRouteData6,_getFromCurrentRouteData7,_getFromCurrentRouteData8,_getFromCurrentRouteData9,_getFromCurrentRouteData10,_getFromCurrentRouteData11,_getFromCurrentRouteData12,_getFromCurrentRouteData13,_getFromCurrentRouteData14;const{style,className,layoutId,variant,PPeTwl1b8=(_getFromCurrentRouteData=getFromCurrentRouteData(\"PPeTwl1b8\"))!==null&&_getFromCurrentRouteData!==void 0?_getFromCurrentRouteData:\"\",YSKHrdVc1=(_getFromCurrentRouteData1=getFromCurrentRouteData(\"YSKHrdVc1\"))!==null&&_getFromCurrentRouteData1!==void 0?_getFromCurrentRouteData1:\"\",ivFLyaMNq=(_getFromCurrentRouteData2=getFromCurrentRouteData(\"ivFLyaMNq\"))!==null&&_getFromCurrentRouteData2!==void 0?_getFromCurrentRouteData2:\"\",EZue1CzWP=getFromCurrentRouteData(\"EZue1CzWP\"),kBAWMceDj=getFromCurrentRouteData(\"kBAWMceDj\"),VhvFuciZJ=(_getFromCurrentRouteData3=getFromCurrentRouteData(\"VhvFuciZJ\"))!==null&&_getFromCurrentRouteData3!==void 0?_getFromCurrentRouteData3:true,sB5DKKdZ4=(_getFromCurrentRouteData4=getFromCurrentRouteData(\"sB5DKKdZ4\"))!==null&&_getFromCurrentRouteData4!==void 0?_getFromCurrentRouteData4:\"\",tqkCHFNwK=(_getFromCurrentRouteData5=getFromCurrentRouteData(\"tqkCHFNwK\"))!==null&&_getFromCurrentRouteData5!==void 0?_getFromCurrentRouteData5:\"\",t7b0AvdZM=(_getFromCurrentRouteData6=getFromCurrentRouteData(\"t7b0AvdZM\"))!==null&&_getFromCurrentRouteData6!==void 0?_getFromCurrentRouteData6:\"\",GySxSB176=(_getFromCurrentRouteData7=getFromCurrentRouteData(\"GySxSB176\"))!==null&&_getFromCurrentRouteData7!==void 0?_getFromCurrentRouteData7:\"\",aHDPH7o6b=(_getFromCurrentRouteData8=getFromCurrentRouteData(\"aHDPH7o6b\"))!==null&&_getFromCurrentRouteData8!==void 0?_getFromCurrentRouteData8:\"\",zSoNrFllg=(_getFromCurrentRouteData9=getFromCurrentRouteData(\"zSoNrFllg\"))!==null&&_getFromCurrentRouteData9!==void 0?_getFromCurrentRouteData9:\"\",vn_RVIhvy=(_getFromCurrentRouteData10=getFromCurrentRouteData(\"vn_RVIhvy\"))!==null&&_getFromCurrentRouteData10!==void 0?_getFromCurrentRouteData10:\"\",NVqLWF4Tp=(_getFromCurrentRouteData11=getFromCurrentRouteData(\"NVqLWF4Tp\"))!==null&&_getFromCurrentRouteData11!==void 0?_getFromCurrentRouteData11:\"\",KvnloAJfj=(_getFromCurrentRouteData12=getFromCurrentRouteData(\"KvnloAJfj\"))!==null&&_getFromCurrentRouteData12!==void 0?_getFromCurrentRouteData12:\"\",KSLyG_SL9=(_getFromCurrentRouteData13=getFromCurrentRouteData(\"KSLyG_SL9\"))!==null&&_getFromCurrentRouteData13!==void 0?_getFromCurrentRouteData13:\"\",PPeTwl1b8KTIXfs5E7,kBAWMceDjKTIXfs5E7,YSKHrdVc1KTIXfs5E7,ivFLyaMNqKTIXfs5E7,EZue1CzWPKTIXfs5E7,Tu_Pd0zTZKTIXfs5E7,idKTIXfs5E7,Tu_Pd0zTZ=(_getFromCurrentRouteData14=getFromCurrentRouteData(\"Tu_Pd0zTZ\"))!==null&&_getFromCurrentRouteData14!==void 0?_getFromCurrentRouteData14:\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-vxLFv`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-vxLFv`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const ref1=React.useRef(null);const activeLocaleCode=useLocaleCode();const textContent=toDateString(EZue1CzWP,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const visible=isSet(tqkCHFNwK);const visible1=isSet(GySxSB176);const router=useRouter();const visible2=isSet(NVqLWF4Tp);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"mREZlQ_J6\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-v64xpx\",className),id:\"v64xpx\",onTap:onTap3bnx0g({overlay}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mzgjk6-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rAx44OxNG:{variant:\"b1qyyUdYF\"},yUefG4DCi:{variant:\"b1qyyUdYF\"}},children:/*#__PURE__*/_jsx(NavbarDark,{height:\"100%\",id:\"fhIu4e1KS\",layoutId:\"fhIu4e1KS\",style:{height:\"100%\",width:\"100%\"},variant:\"Wu1rA6ANS\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k8yceo\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yvy0kp-container\",children:/*#__PURE__*/_jsx(ListItemBadge,{BxIfyR1tY:PPeTwl1b8,GQcl1it4F:\"rgba(25, 21, 78, 0.03)\",height:\"100%\",id:\"eQyor2sX7\",JQsM7qtYB:false,layoutId:\"eQyor2sX7\",q2nPHW7TA:\"CheckCircle\",TyxD043yt:\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(42, 75, 240))\",uuoAbae5k:\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(116, 33, 252))\",variant:\"xfy5ZrbV4\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"center\"},children:\"10 ways to Improve Your Launch Campaign\"})}),className:\"framer-8xpzc1\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:YSKHrdVc1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118))\"},children:\"Tijdens de aankomende PREFAB vakbeurs, van 15 tot en met 17 oktober 2024 in de Brabanthallen in Den Bosch, zullen vijf toonaangevende digitale innovators \u2013 Packhunt for Factories, CADblanche, Construsoft, BIM4Production\\xae en Robotize \u2013 voor het eerst gezamenlijk optreden om de toekomst van de prefab-industrie te presenteren. Op het speciaal ingerichte PREFAB Digitaliseringsplein laten zij de industrie zien hoe de bouwsector kan transformeren door middel van digitalisering en automatisering.\"})}),className:\"framer-1ab0oax\",\"data-framer-name\":\"Short Description\",fonts:[\"Inter\"],name:\"Short Description\",text:ivFLyaMNq,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Sep 6, 2022\"})}),className:\"framer-11l06d\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],name:\"Date\",text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rAx44OxNG:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(612),sizes:\"calc(min(100vw, 1200px) - 100px)\",...toResponsiveImage(kBAWMceDj)}},yUefG4DCi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(612),sizes:\"calc(min(100vw, 1200px) - 40px)\",...toResponsiveImage(kBAWMceDj)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(612),sizes:\"700px\",...toResponsiveImage(kBAWMceDj)},className:\"framer-yhn904\",\"data-framer-name\":\"Banner\",name:\"Banner\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3gj0xi\",\"data-framer-name\":\"Content\",name:\"Content\",children:[VhvFuciZJ&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\":componentPresets.props[\"f7HtiLBpQ\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"kXQQzYc71\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:sB5DKKdZ4,className:\"framer-1dh789e\",\"data-framer-name\":\"Intro text optional\",fonts:[\"Inter\"],name:\"Intro text optional\",stylesPresetsClassNames:{a:\"framer-styles-preset-pbndum\",blockquote:\"framer-styles-preset-dh97a6\",h1:\"framer-styles-preset-3nqyhf\",h2:\"framer-styles-preset-1tif1bq\",h3:\"framer-styles-preset-kdrywy\",h4:\"framer-styles-preset-x2whrd\",h5:\"framer-styles-preset-1apt68q\",h6:\"framer-styles-preset-ixa47q\",img:\"framer-styles-preset-k71vto\",p:\"framer-styles-preset-21ogod\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yjesxi-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,canvasPlay:false,controls:true,height:\"100%\",id:\"jPHStq0Bv\",isMixedBorderRadius:false,layoutId:\"jPHStq0Bv\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:tqkCHFNwK,startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\":componentPresets.props[\"f7HtiLBpQ\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"kXQQzYc71\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:t7b0AvdZM,className:\"framer-1h8v5sg\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],name:\"Content\",stylesPresetsClassNames:{a:\"framer-styles-preset-pbndum\",blockquote:\"framer-styles-preset-dh97a6\",h1:\"framer-styles-preset-3nqyhf\",h2:\"framer-styles-preset-1tif1bq\",h3:\"framer-styles-preset-kdrywy\",h4:\"framer-styles-preset-x2whrd\",h5:\"framer-styles-preset-1apt68q\",h6:\"framer-styles-preset-ixa47q\",img:\"framer-styles-preset-k71vto\",p:\"framer-styles-preset-21ogod\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible1&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-vfdt3e\",\"data-framer-name\":\"CTA banner inbetween\",name:\"CTA banner inbetween\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o1pijo\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11095ij\",children:[visible1&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1apt68q\",\"data-styles-preset\":\"FTXKWhUag\",style:{\"--framer-text-alignment\":\"center\"},children:\"Discover Packhunt for Factories \"})}),className:\"framer-18s26sq\",fonts:[\"Inter\"],text:aHDPH7o6b,verticalAlignment:\"top\",withExternalLayout:true}),visible1&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:GySxSB176,implicitPathVariables:undefined},{href:GySxSB176,implicitPathVariables:undefined},{href:GySxSB176,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yUefG4DCi:{y:1596.481818181818}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:1519.6818181818178,children:/*#__PURE__*/_jsx(Container,{className:\"framer-whl5ma-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rAx44OxNG:{gHeOvXgAq:resolvedLinks[1]},yUefG4DCi:{gHeOvXgAq:resolvedLinks[2],variant:\"XUlKhVBv0\"}},children:/*#__PURE__*/_jsx(Button,{gHeOvXgAq:resolvedLinks[0],Goeh0UlpU:\"PlayCircle\",height:\"100%\",hyoIEBZCr:zSoNrFllg,id:\"zind8uvX9\",L6BYhkXEg:false,layoutId:\"zind8uvX9\",Uwhubicpx:false,variant:\"zMIqz4YH_\",width:\"100%\"})})})})})})]})})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\":componentPresets.props[\"f7HtiLBpQ\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"kXQQzYc71\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:vn_RVIhvy,className:\"framer-17w4bmr\",\"data-framer-name\":\"Content 2\",fonts:[\"Inter\"],name:\"Content 2\",stylesPresetsClassNames:{a:\"framer-styles-preset-pbndum\",blockquote:\"framer-styles-preset-dh97a6\",h1:\"framer-styles-preset-3nqyhf\",h2:\"framer-styles-preset-1tif1bq\",h3:\"framer-styles-preset-kdrywy\",h4:\"framer-styles-preset-x2whrd\",h5:\"framer-styles-preset-1apt68q\",h6:\"framer-styles-preset-ixa47q\",img:\"framer-styles-preset-k71vto\",p:\"framer-styles-preset-21ogod\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible2&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bp56vh\",\"data-framer-name\":\"Become supplier\",name:\"Become supplier\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ymxxgf\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-13qwsdx\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"Curious where to start?\"})}),className:\"framer-rjk8b0\",fonts:[\"Inter\"],text:KvnloAJfj,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-souff4\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:NVqLWF4Tp,implicitPathVariables:undefined},{href:NVqLWF4Tp,implicitPathVariables:undefined},{href:NVqLWF4Tp,implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yUefG4DCi:{width:\"calc(min(100vw, 1200px) - 80px)\",y:1710.181818181818}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:1556.581818181818,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vaceyl-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rAx44OxNG:{gHeOvXgAq:resolvedLinks1[1]},yUefG4DCi:{gHeOvXgAq:resolvedLinks1[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{gHeOvXgAq:resolvedLinks1[0],Goeh0UlpU:\"PlayCircle\",height:\"100%\",hyoIEBZCr:KSLyG_SL9,id:\"Kn0W4V8mg\",L6BYhkXEg:false,layoutId:\"Kn0W4V8mg\",Uwhubicpx:false,variant:\"h4g3U5mfW\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bkj2h3\",\"data-framer-name\":\"Bg shape\",name:\"Bg shape\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rAx44OxNG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:431,intrinsicWidth:305,loading:getLoadingLazyAtYPosition(1261.081818181818),pixelHeight:862,pixelWidth:610,src:\"https://framerusercontent.com/images/HEPlCXQZHr6wUIVDjMX1uQ9rc.png\"}},yUefG4DCi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:431,intrinsicWidth:305,loading:getLoadingLazyAtYPosition(1390.181818181818),pixelHeight:862,pixelWidth:610,src:\"https://framerusercontent.com/images/HEPlCXQZHr6wUIVDjMX1uQ9rc.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:431,intrinsicWidth:305,loading:getLoadingLazyAtYPosition(1348.581818181818),pixelHeight:862,pixelWidth:610,src:\"https://framerusercontent.com/images/HEPlCXQZHr6wUIVDjMX1uQ9rc.png\"},className:\"framer-hm2y2b\",\"data-framer-name\":\"monetize_bgshape2_2x\",name:\"monetize_bgshape2_2x\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lcfjsq\",\"data-framer-name\":\"Bg shape\",name:\"Bg shape\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rAx44OxNG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:504,intrinsicWidth:242,loading:getLoadingLazyAtYPosition(1380.581818181818),pixelHeight:1008,pixelWidth:484,src:\"https://framerusercontent.com/images/ea3nG1SBrnBXAXjpdC5d2UaHgU.png\"}},yUefG4DCi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:504,intrinsicWidth:242,loading:getLoadingLazyAtYPosition(1596.181818181818),pixelHeight:1008,pixelWidth:484,src:\"https://framerusercontent.com/images/ea3nG1SBrnBXAXjpdC5d2UaHgU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:504,intrinsicWidth:242,loading:getLoadingLazyAtYPosition(1174.581818181818),pixelHeight:1008,pixelWidth:484,src:\"https://framerusercontent.com/images/ea3nG1SBrnBXAXjpdC5d2UaHgU.png\"},className:\"framer-19drktw\",\"data-framer-name\":\"monetize_bgshape1_2x\",name:\"monetize_bgshape1_2x\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a99gjs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kdrywy\",\"data-styles-preset\":\"cGTNsvVOM\",children:\"Latest articles\"})}),className:\"framer-nn8bpx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kk2cyf\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"KTIXfs5E7\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"KTIXfs5E7\",name:\"PPeTwl1b8\",type:\"Identifier\"},{collection:\"KTIXfs5E7\",name:\"kBAWMceDj\",type:\"Identifier\"},{collection:\"KTIXfs5E7\",name:\"YSKHrdVc1\",type:\"Identifier\"},{collection:\"KTIXfs5E7\",name:\"ivFLyaMNq\",type:\"Identifier\"},{collection:\"KTIXfs5E7\",name:\"EZue1CzWP\",type:\"Identifier\"},{collection:\"KTIXfs5E7\",name:\"Tu_Pd0zTZ\",type:\"Identifier\"},{collection:\"KTIXfs5E7\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"KTIXfs5E7\",name:\"Tu_Pd0zTZ\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:Tu_Pd0zTZ},type:\"BinaryOperation\"}}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({EZue1CzWP:EZue1CzWPKTIXfs5E7,id:idKTIXfs5E7,ivFLyaMNq:ivFLyaMNqKTIXfs5E7,kBAWMceDj:kBAWMceDjKTIXfs5E7,PPeTwl1b8:PPeTwl1b8KTIXfs5E7,Tu_Pd0zTZ:Tu_Pd0zTZKTIXfs5E7,YSKHrdVc1:YSKHrdVc1KTIXfs5E7},i)=>{PPeTwl1b8KTIXfs5E7!==null&&PPeTwl1b8KTIXfs5E7!==void 0?PPeTwl1b8KTIXfs5E7:PPeTwl1b8KTIXfs5E7=\"\";YSKHrdVc1KTIXfs5E7!==null&&YSKHrdVc1KTIXfs5E7!==void 0?YSKHrdVc1KTIXfs5E7:YSKHrdVc1KTIXfs5E7=\"\";ivFLyaMNqKTIXfs5E7!==null&&ivFLyaMNqKTIXfs5E7!==void 0?ivFLyaMNqKTIXfs5E7:ivFLyaMNqKTIXfs5E7=\"\";Tu_Pd0zTZKTIXfs5E7!==null&&Tu_Pd0zTZKTIXfs5E7!==void 0?Tu_Pd0zTZKTIXfs5E7:Tu_Pd0zTZKTIXfs5E7=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`KTIXfs5E7-${idKTIXfs5E7}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Tu_Pd0zTZ:Tu_Pd0zTZKTIXfs5E7},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"bcUIOegNe\"},implicitPathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZKTIXfs5E7}},{href:{webPageId:\"bcUIOegNe\"},implicitPathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZKTIXfs5E7}},{href:{webPageId:\"bcUIOegNe\"},implicitPathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZKTIXfs5E7}}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rAx44OxNG:{height:580,width:\"min(min(100vw, 1200px) - 100px, 1200px)\",y:2432.581818181818},yUefG4DCi:{height:580,width:\"min(min(100vw, 1200px) - 40px, 1200px)\",y:2586.181818181818}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:186,width:\"max((min(min(100vw, 1200px) - 100px, 1200px) - 20px) / 2, 1px)\",y:1832.581818181818,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wchld2-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rAx44OxNG:{iTLspfP7r:resolvedLinks2[1],style:{width:\"100%\"}},yUefG4DCi:{iTLspfP7r:resolvedLinks2[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(BlogCard,{CPMabOrfU:PPeTwl1b8KTIXfs5E7,cWI4CB6po:\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(42, 75, 240))\",fl_dKZrsX:true,HDbfmLJN9:YSKHrdVc1KTIXfs5E7,height:\"100%\",id:\"T4it2zJ00\",iTLspfP7r:resolvedLinks2[0],layoutId:\"T4it2zJ00\",LFXgxuHG4:true,mJ5LrnBOl:toDateString(EZue1CzWPKTIXfs5E7,{dateStyle:\"medium\",locale:\"en\"},activeLocaleCode),mMXkBrQjq:false,style:{height:\"100%\",width:\"100%\"},TS9IF2Dr6:ivFLyaMNqKTIXfs5E7,variant:\"T_YCCfZlJ\",width:\"100%\",Yo7UXCjeZ:toResponsiveImage(kBAWMceDjKTIXfs5E7)})})})})})})})},idKTIXfs5E7);})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rAx44OxNG:{y:2658.581818181818},yUefG4DCi:{y:2812.181818181818}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1264,width:\"100vw\",y:1664.581818181818,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u3k1lg-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rAx44OxNG:{variant:\"Ty2Vq13cv\"},yUefG4DCi:{variant:\"SHemWNayl\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"gZYINbjdW\",layoutId:\"gZYINbjdW\",style:{width:\"100%\"},variant:\"NWDLXXgiF\",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-vxLFv { background: white; }`,\".framer-vxLFv.framer-1plbcl9, .framer-vxLFv .framer-1plbcl9 { display: block; }\",\".framer-vxLFv.framer-v64xpx { align-content: center; align-items: center; background-color: #ffffff; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-vxLFv .framer-mzgjk6-container { flex: none; height: 72px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 10; }\",\".framer-vxLFv .framer-1k8yceo { 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; max-width: 1200px; padding: 60px 50px 50px 50px; position: relative; width: 100%; }\",\".framer-vxLFv .framer-1yvy0kp-container, .framer-vxLFv .framer-whl5ma-container, .framer-vxLFv .framer-1vaceyl-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-vxLFv .framer-8xpzc1 { flex: none; height: auto; max-width: 970px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-vxLFv .framer-1ab0oax { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 75%; word-break: break-word; word-wrap: break-word; }\",\".framer-vxLFv .framer-11l06d { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-vxLFv .framer-yhn904 { aspect-ratio: 2.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 318px); position: relative; width: 700px; }\",\".framer-vxLFv .framer-3gj0xi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-vxLFv .framer-1dh789e { --framer-paragraph-spacing: 32px; flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-vxLFv .framer-yjesxi-container { flex: none; height: 329px; position: relative; width: 626px; }\",\".framer-vxLFv .framer-1h8v5sg { --framer-paragraph-spacing: 32px; flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 700px; word-break: break-word; word-wrap: break-word; }\",\".framer-vxLFv .framer-vfdt3e { align-content: center; align-items: center; background-color: var(--token-9bee1602-b191-465f-8eaf-bc740a2a3fbd, #f1f7fd); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 50px; position: relative; width: 60%; }\",\".framer-vxLFv .framer-1o1pijo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vxLFv .framer-11095ij { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: flex-start; max-width: 440px; min-height: 258px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vxLFv .framer-18s26sq, .framer-vxLFv .framer-rjk8b0 { --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-vxLFv .framer-17w4bmr { --framer-paragraph-spacing: 32px; flex: none; height: auto; max-width: 700.04px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-vxLFv .framer-1bp56vh { align-content: center; align-items: center; background-color: var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, #19181e); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-vxLFv .framer-1ymxxgf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vxLFv .framer-13qwsdx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; max-width: 560px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-vxLFv .framer-souff4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vxLFv .framer-1bkj2h3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 431px; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: -32px; top: 0px; width: 306px; z-index: 1; }\",\".framer-vxLFv .framer-hm2y2b { aspect-ratio: 0.7076566125290024 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 431px); overflow: visible; position: relative; width: 305px; }\",\".framer-vxLFv .framer-1lcfjsq { align-content: center; align-items: center; bottom: -10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: -40px; overflow: hidden; padding: 0px; position: absolute; width: min-content; z-index: 1; }\",\".framer-vxLFv .framer-19drktw { aspect-ratio: 0.4801587301587302 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 558px); overflow: visible; position: relative; width: 268px; }\",\".framer-vxLFv .framer-a99gjs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vxLFv .framer-nn8bpx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 600px; word-break: break-word; word-wrap: break-word; }\",\".framer-vxLFv .framer-kk2cyf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 186px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vxLFv .framer-1wchld2-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-vxLFv .framer-1u3k1lg-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-vxLFv.framer-v64xpx, .framer-vxLFv .framer-1k8yceo, .framer-vxLFv .framer-3gj0xi, .framer-vxLFv .framer-vfdt3e, .framer-vxLFv .framer-1o1pijo, .framer-vxLFv .framer-11095ij, .framer-vxLFv .framer-1bp56vh, .framer-vxLFv .framer-1ymxxgf, .framer-vxLFv .framer-13qwsdx, .framer-vxLFv .framer-souff4, .framer-vxLFv .framer-1bkj2h3, .framer-vxLFv .framer-1lcfjsq, .framer-vxLFv .framer-a99gjs, .framer-vxLFv .framer-kk2cyf { gap: 0px; } .framer-vxLFv.framer-v64xpx > *, .framer-vxLFv .framer-vfdt3e > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-vxLFv.framer-v64xpx > :first-child, .framer-vxLFv .framer-1k8yceo > :first-child, .framer-vxLFv .framer-3gj0xi > :first-child, .framer-vxLFv .framer-vfdt3e > :first-child, .framer-vxLFv .framer-1o1pijo > :first-child, .framer-vxLFv .framer-11095ij > :first-child, .framer-vxLFv .framer-1bp56vh > :first-child, .framer-vxLFv .framer-13qwsdx > :first-child, .framer-vxLFv .framer-1lcfjsq > :first-child, .framer-vxLFv .framer-a99gjs > :first-child { margin-top: 0px; } .framer-vxLFv.framer-v64xpx > :last-child, .framer-vxLFv .framer-1k8yceo > :last-child, .framer-vxLFv .framer-3gj0xi > :last-child, .framer-vxLFv .framer-vfdt3e > :last-child, .framer-vxLFv .framer-1o1pijo > :last-child, .framer-vxLFv .framer-11095ij > :last-child, .framer-vxLFv .framer-1bp56vh > :last-child, .framer-vxLFv .framer-13qwsdx > :last-child, .framer-vxLFv .framer-1lcfjsq > :last-child, .framer-vxLFv .framer-a99gjs > :last-child { margin-bottom: 0px; } .framer-vxLFv .framer-1k8yceo > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-vxLFv .framer-3gj0xi > *, .framer-vxLFv .framer-1o1pijo > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-vxLFv .framer-11095ij > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-vxLFv .framer-1bp56vh > *, .framer-vxLFv .framer-a99gjs > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-vxLFv .framer-1ymxxgf > *, .framer-vxLFv .framer-1bkj2h3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-vxLFv .framer-1ymxxgf > :first-child, .framer-vxLFv .framer-souff4 > :first-child, .framer-vxLFv .framer-1bkj2h3 > :first-child, .framer-vxLFv .framer-kk2cyf > :first-child { margin-left: 0px; } .framer-vxLFv .framer-1ymxxgf > :last-child, .framer-vxLFv .framer-souff4 > :last-child, .framer-vxLFv .framer-1bkj2h3 > :last-child, .framer-vxLFv .framer-kk2cyf > :last-child { margin-right: 0px; } .framer-vxLFv .framer-13qwsdx > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-vxLFv .framer-souff4 > *, .framer-vxLFv .framer-kk2cyf > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-vxLFv .framer-1lcfjsq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-vxLFv { background: white; } .framer-vxLFv.framer-v64xpx { width: 810px; } .framer-vxLFv .framer-1ab0oax, .framer-vxLFv .framer-nn8bpx { width: 100%; } .framer-vxLFv .framer-yhn904 { height: var(--framer-aspect-ratio-supported, 323px); width: 100%; } .framer-vxLFv .framer-vfdt3e { padding: 50px 0px 50px 0px; } .framer-vxLFv .framer-11095ij { max-width: 768px; } .framer-vxLFv .framer-18s26sq { width: 80%; } .framer-vxLFv .framer-1ymxxgf { order: 0; } .framer-vxLFv .framer-rjk8b0 { order: 1; z-index: 1; } .framer-vxLFv .framer-souff4 { order: 1; z-index: 2; } .framer-vxLFv .framer-1bkj2h3 { order: 3; right: -80px; top: -88px; z-index: 0; } .framer-vxLFv .framer-hm2y2b { aspect-ratio: 0.7069767441860465 / 1; height: var(--framer-aspect-ratio-supported, 430px); order: 1; width: 304px; } .framer-vxLFv .framer-1lcfjsq { bottom: unset; left: -96px; min-height: 558px; min-width: 268px; order: 2; top: 157px; } .framer-vxLFv .framer-19drktw { height: var(--framer-aspect-ratio-supported, 521px); left: 0px; order: 0; position: absolute; right: 0px; top: -125px; width: unset; z-index: 1; } .framer-vxLFv .framer-kk2cyf { flex-direction: column; height: min-content; } .framer-vxLFv .framer-1wchld2-container { flex: none; height: auto; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-vxLFv .framer-kk2cyf { gap: 0px; } .framer-vxLFv .framer-kk2cyf > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-vxLFv .framer-kk2cyf > :first-child { margin-top: 0px; } .framer-vxLFv .framer-kk2cyf > :last-child { margin-bottom: 0px; } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-vxLFv { background: white; } .framer-vxLFv.framer-v64xpx { width: 390px; } .framer-vxLFv .framer-1k8yceo { padding: 60px 20px 50px 20px; } .framer-vxLFv .framer-1ab0oax, .framer-vxLFv .framer-1dh789e, .framer-vxLFv .framer-1h8v5sg, .framer-vxLFv .framer-17w4bmr, .framer-vxLFv .framer-1vaceyl-container, .framer-vxLFv .framer-nn8bpx { width: 100%; } .framer-vxLFv .framer-yhn904 { height: var(--framer-aspect-ratio-supported, 159px); width: 100%; } .framer-vxLFv .framer-vfdt3e { padding: 50px 20px 50px 20px; width: 100%; } .framer-vxLFv .framer-1o1pijo { gap: 50px; } .framer-vxLFv .framer-1bp56vh { padding: 120px 20px 120px 20px; } .framer-vxLFv .framer-rjk8b0 { z-index: 1; } .framer-vxLFv .framer-souff4 { flex-direction: column; width: 100%; z-index: 2; } .framer-vxLFv .framer-1bkj2h3 { top: -112px; z-index: 0; } .framer-vxLFv .framer-1lcfjsq { bottom: unset; left: -88px; min-height: 558px; min-width: 268px; top: 261px; } .framer-vxLFv .framer-19drktw { height: var(--framer-aspect-ratio-supported, 417px); left: -46px; order: 0; position: absolute; top: -167px; width: 100%; z-index: 1; } .framer-vxLFv .framer-kk2cyf { flex-direction: column; height: min-content; } .framer-vxLFv .framer-1wchld2-container { flex: none; height: auto; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-vxLFv .framer-1o1pijo, .framer-vxLFv .framer-souff4, .framer-vxLFv .framer-kk2cyf { gap: 0px; } .framer-vxLFv .framer-1o1pijo > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-vxLFv .framer-1o1pijo > :first-child, .framer-vxLFv .framer-souff4 > :first-child, .framer-vxLFv .framer-kk2cyf > :first-child { margin-top: 0px; } .framer-vxLFv .framer-1o1pijo > :last-child, .framer-vxLFv .framer-souff4 > :last-child, .framer-vxLFv .framer-kk2cyf > :last-child { margin-bottom: 0px; } .framer-vxLFv .framer-souff4 > *, .framer-vxLFv .framer-kk2cyf > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5339\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rAx44OxNG\":{\"layout\":[\"fixed\",\"auto\"]},\"yUefG4DCi\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerbcUIOegNe=withCSS(Component,css,\"framer-vxLFv\");export default FramerbcUIOegNe;FramerbcUIOegNe.displayName=\"Blog\";FramerbcUIOegNe.defaultProps={height:5339,width:1200};addFonts(FramerbcUIOegNe,[{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\"}]},...NavbarDarkFonts,...ListItemBadgeFonts,...VideoFonts,...ButtonFonts,...BlogCardFonts,...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),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...((_componentPresets_fonts=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"f7HtiLBpQ\"])?getFontsFromComponentPreset((_componentPresets_fonts1=componentPresets.fonts)===null||_componentPresets_fonts1===void 0?void 0:_componentPresets_fonts1[\"f7HtiLBpQ\"]):[],...((_componentPresets_fonts2=componentPresets.fonts)===null||_componentPresets_fonts2===void 0?void 0:_componentPresets_fonts2[\"kXQQzYc71\"])?getFontsFromComponentPreset((_componentPresets_fonts3=componentPresets.fonts)===null||_componentPresets_fonts3===void 0?void 0:_componentPresets_fonts3[\"kXQQzYc71\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbcUIOegNe\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"5339\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rAx44OxNG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yUefG4DCi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isMotionValue", "v", "MotionValue", "useAutoMotionValue", "inputValue", "options", "optionsRef", "pe", "animation", "didInitialMount", "isOnCanvas", "RenderTarget", "onChangeDeps", "onChange", "te", "transformer", "value", "ref", "value1", "useConstant", "isMotionValue", "motionValue", "ue", "ref1", "newValue", "ref2", "animate2", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "playing", "canvasPlay", "muted", "playsinline", "controls", "progress", "objectFit", "backgroundColor", "radius", "isMixed", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "restartOnEnter", "posterEnabled", "startTimeProp", "volume", "loop", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "videoRef", "pe", "isSafari", "useIsBrowserSafari", "requestingPlay", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "startTime", "se", "shouldPlay", "autoPlay", "isMuted", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "ue", "videoProgress", "useAutoMotionValue", "value", "newValue", "useMotionValueEvent", "latest", "useOnEnter", "useOnExit", "src", "fragment", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "_componentPresets_fonts", "_componentPresets_fonts1", "_componentPresets_fonts2", "_componentPresets_fonts3", "NavbarDarkFonts", "getFonts", "NJQgPrjUI_default", "ListItemBadgeFonts", "bkf_3iqYh_default", "VideoFonts", "Video", "ButtonFonts", "Tnz4seCKc_default", "BlogCardFonts", "FIQUCdJNE_default", "FooterFonts", "M82dauGNX_default", "breakpoints", "serializationHash", "variantClassNames", "toDateString", "value", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "toResponsiveImage", "isSet", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "nWZy3UnCE_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "_getFromCurrentRouteData", "_getFromCurrentRouteData1", "_getFromCurrentRouteData2", "_getFromCurrentRouteData3", "_getFromCurrentRouteData4", "_getFromCurrentRouteData5", "_getFromCurrentRouteData6", "_getFromCurrentRouteData7", "_getFromCurrentRouteData8", "_getFromCurrentRouteData9", "_getFromCurrentRouteData10", "_getFromCurrentRouteData11", "_getFromCurrentRouteData12", "_getFromCurrentRouteData13", "_getFromCurrentRouteData14", "style", "className", "layoutId", "variant", "PPeTwl1b8", "YSKHrdVc1", "ivFLyaMNq", "EZue1CzWP", "kBAWMceDj", "VhvFuciZJ", "sB5DKKdZ4", "tqkCHFNwK", "t7b0AvdZM", "GySxSB176", "aHDPH7o6b", "zSoNrFllg", "vn_RVIhvy", "NVqLWF4Tp", "KvnloAJfj", "KSLyG_SL9", "PPeTwl1b8KTIXfs5E7", "kBAWMceDjKTIXfs5E7", "YSKHrdVc1KTIXfs5E7", "ivFLyaMNqKTIXfs5E7", "EZue1CzWPKTIXfs5E7", "Tu_Pd0zTZKTIXfs5E7", "idKTIXfs5E7", "Tu_Pd0zTZ", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "ref1", "pe", "activeLocaleCode", "useLocaleCode", "textContent", "visible1", "router", "useRouter", "visible2", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "l", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "NJQgPrjUI_default", "bkf_3iqYh_default", "RichText2", "x", "getLoadingLazyAtYPosition", "Image2", "ComponentPresetsProvider", "Video", "ResolveLinks", "resolvedLinks", "Tnz4seCKc_default", "resolvedLinks1", "ChildrenCanSuspend", "collection", "paginationInfo", "i", "PathVariablesContext", "resolvedLinks2", "FIQUCdJNE_default", "M82dauGNX_default", "css", "FramerbcUIOegNe", "withCSS", "bcUIOegNe_default", "addFonts", "NavbarDarkFonts", "ListItemBadgeFonts", "VideoFonts", "ButtonFonts", "BlogCardFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "_componentPresets_fonts", "getFontsFromComponentPreset", "_componentPresets_fonts1", "_componentPresets_fonts2", "_componentPresets_fonts3", "__FramerMetadata__"]
}
