{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/iuT0sRPfUQPLj5ez5qP3/UsCy57hMPPpREnqmHgXm/lXprePENS.js", "ssg:https://framerusercontent.com/modules/mchCOa8ZP9L7Cg1cu80R/uuumKpocZczdF5uqcLSq/vaSeUEBOL.js", "ssg:https://framerusercontent.com/modules/nBWRyLaTq2rhiq83Hs7a/aCBWGXJwaaii2kBV3yHY/m0dk3gyGs.js", "ssg:https://framerusercontent.com/modules/9s1Rb9e42QPA2h7mKDqx/rDu2vnYdaFGUY7DjdghR/aCjji0E7G.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 (0c5492c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";const VideoFonts=getFonts(Video);const serializationHash=\"framer-Ya7Pv\";const variantClassNames={JjjaMqdhF:\"framer-v-nts66e\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"JjjaMqdhF\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-nts66e\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"JjjaMqdhF\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wpde1g-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"h6sXJcpEF-container\",nodeId:\"h6sXJcpEF\",rendersWithMotion:true,scopeId:\"lXprePENS\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:45,bottomLeftRadius:45,bottomRightRadius:45,controls:false,height:\"100%\",id:\"h6sXJcpEF\",isMixedBorderRadius:false,layoutId:\"h6sXJcpEF\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/HBwlb6dnD9HzxiNS7dNcsLb8o.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:45,topRightRadius:45,volume:25,width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ya7Pv.framer-62drtc, .framer-Ya7Pv .framer-62drtc { display: block; }\",\".framer-Ya7Pv.framer-nts66e { height: 440px; overflow: hidden; position: relative; width: 762px; }\",\".framer-Ya7Pv .framer-wpde1g-container { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 440\n * @framerIntrinsicWidth 762\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerlXprePENS=withCSS(Component,css,\"framer-Ya7Pv\");export default FramerlXprePENS;FramerlXprePENS.displayName=\"New Crsr\";FramerlXprePENS.defaultProps={height:440,width:762};addFonts(FramerlXprePENS,[{explicitInter:true,fonts:[]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlXprePENS\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"762\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"440\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./lXprePENS.map", "// Generated by Framer (2e9e6ed)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"rgnFqSP1a\",\"rJclMeAdW\",\"Uy0rT0FFu\",\"W9LawaTq9\",\"U2HgW_FvI\"];const serializationHash=\"framer-xmtk6\";const variantClassNames={rgnFqSP1a:\"framer-v-3ksxbx\",rJclMeAdW:\"framer-v-yjybuy\",U2HgW_FvI:\"framer-v-1jhy3q5\",Uy0rT0FFu:\"framer-v-1xewady\",W9LawaTq9:\"framer-v-8y5m33\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Image 2\":\"rJclMeAdW\",\"Image 3\":\"Uy0rT0FFu\",\"Image 4\":\"W9LawaTq9\",\"Image 5\":\"U2HgW_FvI\",\"Image Carousel\":\"rgnFqSP1a\"};const getProps=({height,id,image1,image2,image3,image4,image5,width,...props})=>{return{...props,G0MdvnpWj:image1??props.G0MdvnpWj??{src:\"https://framerusercontent.com/images/neYX4hGNZEFYFjg065oFkF1jk.jpg\"},KvMw_weZM:image2??props.KvMw_weZM??{src:\"https://framerusercontent.com/images/lyihbSXuK96j35tWF2TaV7XTT4.jpg\"},NxN1F7nUY:image3??props.NxN1F7nUY??{src:\"https://framerusercontent.com/images/OnQai6c5EgNkuJOCGPxOmT4wc9I.jpg\"},Phh1Vrqg6:image5??props.Phh1Vrqg6??{src:\"https://framerusercontent.com/images/NOQbZa3HdWUeLmMBsaMqrhUQY9s.jpg\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"rgnFqSP1a\",YtW95x8_o:image4??props.YtW95x8_o??{src:\"https://framerusercontent.com/images/kdJbm4RBRckYv8ZJ6q56WdkCUY.jpg\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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{style,className,layoutId,variant,G0MdvnpWj,KvMw_weZM,NxN1F7nUY,YtW95x8_o,Phh1Vrqg6,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rgnFqSP1a\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear5atnld=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"rJclMeAdW\"),1700);});const onAppear1o1aawe=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Uy0rT0FFu\"),1700);});const onAppearfdmh3z=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"W9LawaTq9\"),1700);});const onAppearawg3gn=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"U2HgW_FvI\"),1700);});const onAppear1cyp27p=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"rgnFqSP1a\"),1700);});useOnVariantChange(baseVariant,{default:onAppear5atnld,rJclMeAdW:onAppear1o1aawe,U2HgW_FvI:onAppear1cyp27p,Uy0rT0FFu:onAppearfdmh3z,W9LawaTq9:onAppearawg3gn});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-3ksxbx\",className,classNames),\"data-framer-name\":\"Image Carousel\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"rgnFqSP1a\",ref:refBinding,style:{...style},...addPropertyOverrides({rJclMeAdW:{\"data-framer-name\":\"Image 2\"},U2HgW_FvI:{\"data-framer-name\":\"Image 5\"},Uy0rT0FFu:{\"data-framer-name\":\"Image 3\"},W9LawaTq9:{\"data-framer-name\":\"Image 4\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:3840,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||800)*.5000000000000002-(componentViewport?.height||800)*1/2)),pixelHeight:2160,pixelWidth:3840,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(G0MdvnpWj)},className:\"framer-18dg131\",\"data-framer-name\":\"Image 1\",layoutDependency:layoutDependency,layoutId:\"G6YV6Zo50\",style:{borderBottomLeftRadius:45,borderBottomRightRadius:45,borderTopLeftRadius:45,borderTopRightRadius:45}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:1337,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||800)*.5000000000000002-(componentViewport?.height||800)*1/2)),pixelHeight:2e3,pixelWidth:1337,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(KvMw_weZM)},className:\"framer-bm9nh2\",\"data-framer-name\":\"Image 2\",layoutDependency:layoutDependency,layoutId:\"sguLQpAl0\",style:{borderBottomLeftRadius:45,borderBottomRightRadius:45,borderTopLeftRadius:45,borderTopRightRadius:45}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:1499,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||800)*.5000000000000002-(componentViewport?.height||800)*1/2)),pixelHeight:2e3,pixelWidth:1499,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(NxN1F7nUY)},className:\"framer-1xo05h5\",\"data-framer-name\":\"Image 3\",layoutDependency:layoutDependency,layoutId:\"yDlqo6nhC\",style:{borderBottomLeftRadius:45,borderBottomRightRadius:45,borderTopLeftRadius:45,borderTopRightRadius:45}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||800)*.5000000000000002-(componentViewport?.height||800)*1/2)),pixelHeight:2e3,pixelWidth:3e3,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(YtW95x8_o)},className:\"framer-qikabp\",\"data-framer-name\":\"Image 4\",layoutDependency:layoutDependency,layoutId:\"sw7ZKF3p5\",style:{borderBottomLeftRadius:45,borderBottomRightRadius:45,borderTopLeftRadius:45,borderTopRightRadius:45}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:1333,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||800)*.5000000000000002-(componentViewport?.height||800)*1/2)),pixelHeight:2e3,pixelWidth:1333,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(Phh1Vrqg6)},className:\"framer-c0pl84\",\"data-framer-name\":\"Image 5\",layoutDependency:layoutDependency,layoutId:\"MxzlZ4Tv1\",style:{borderBottomLeftRadius:45,borderBottomRightRadius:45,borderTopLeftRadius:45,borderTopRightRadius:45}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xmtk6.framer-17tzn1x, .framer-xmtk6 .framer-17tzn1x { display: block; }\",\".framer-xmtk6.framer-3ksxbx { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 800px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 600px; }\",\".framer-xmtk6 .framer-18dg131 { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 5; }\",\".framer-xmtk6 .framer-bm9nh2 { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 4; }\",\".framer-xmtk6 .framer-1xo05h5 { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 3; }\",\".framer-xmtk6 .framer-qikabp { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 2; }\",\".framer-xmtk6 .framer-c0pl84 { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xmtk6.framer-3ksxbx { gap: 0px; } .framer-xmtk6.framer-3ksxbx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-xmtk6.framer-3ksxbx > :first-child { margin-left: 0px; } .framer-xmtk6.framer-3ksxbx > :last-child { margin-right: 0px; } }\",\".framer-xmtk6.framer-v-yjybuy .framer-bm9nh2, .framer-xmtk6.framer-v-1xewady .framer-bm9nh2, .framer-xmtk6.framer-v-8y5m33 .framer-bm9nh2, .framer-xmtk6.framer-v-1jhy3q5 .framer-bm9nh2 { z-index: 6; }\",\".framer-xmtk6.framer-v-1xewady .framer-1xo05h5, .framer-xmtk6.framer-v-8y5m33 .framer-1xo05h5, .framer-xmtk6.framer-v-1jhy3q5 .framer-1xo05h5 { z-index: 7; }\",\".framer-xmtk6.framer-v-8y5m33 .framer-qikabp, .framer-xmtk6.framer-v-1jhy3q5 .framer-qikabp { z-index: 8; }\",\".framer-xmtk6.framer-v-1jhy3q5 .framer-c0pl84 { z-index: 9; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"rJclMeAdW\":{\"layout\":[\"fixed\",\"fixed\"]},\"Uy0rT0FFu\":{\"layout\":[\"fixed\",\"fixed\"]},\"W9LawaTq9\":{\"layout\":[\"fixed\",\"fixed\"]},\"U2HgW_FvI\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"G0MdvnpWj\":\"image1\",\"KvMw_weZM\":\"image2\",\"NxN1F7nUY\":\"image3\",\"YtW95x8_o\":\"image4\",\"Phh1Vrqg6\":\"image5\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramervaSeUEBOL=withCSS(Component,css,\"framer-xmtk6\");export default FramervaSeUEBOL;FramervaSeUEBOL.displayName=\"Home / Image Carousel\";FramervaSeUEBOL.defaultProps={height:800,width:600};addPropertyControls(FramervaSeUEBOL,{variant:{options:[\"rgnFqSP1a\",\"rJclMeAdW\",\"Uy0rT0FFu\",\"W9LawaTq9\",\"U2HgW_FvI\"],optionTitles:[\"Image Carousel\",\"Image 2\",\"Image 3\",\"Image 4\",\"Image 5\"],title:\"Variant\",type:ControlType.Enum},G0MdvnpWj:{__defaultAssetReference:\"data:framer/asset-reference,neYX4hGNZEFYFjg065oFkF1jk.jpg?originalFilename=image+29.jpg&preferredSize=full\",title:\"Image 1\",type:ControlType.ResponsiveImage},KvMw_weZM:{__defaultAssetReference:\"data:framer/asset-reference,lyihbSXuK96j35tWF2TaV7XTT4.jpg?originalFilename=pexels-c-a-2858932.jpg&preferredSize=full\",title:\"Image 2\",type:ControlType.ResponsiveImage},NxN1F7nUY:{__defaultAssetReference:\"data:framer/asset-reference,OnQai6c5EgNkuJOCGPxOmT4wc9I.jpg?originalFilename=pexels-fall-maple-2450959.jpg&preferredSize=full\",title:\"Image 3\",type:ControlType.ResponsiveImage},YtW95x8_o:{__defaultAssetReference:\"data:framer/asset-reference,kdJbm4RBRckYv8ZJ6q56WdkCUY.jpg?originalFilename=neom-THlO6Mkf5uI-unsplash.jpg&preferredSize=full\",title:\"Image 4\",type:ControlType.ResponsiveImage},Phh1Vrqg6:{__defaultAssetReference:\"data:framer/asset-reference,NOQbZa3HdWUeLmMBsaMqrhUQY9s.jpg?originalFilename=neom-I7NOiVT6jq0-unsplash.jpg&preferredSize=full\",title:\"Image 5\",type:ControlType.ResponsiveImage}});addFonts(FramervaSeUEBOL,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervaSeUEBOL\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"800\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rJclMeAdW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Uy0rT0FFu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"W9LawaTq9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"U2HgW_FvI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"G0MdvnpWj\\\":\\\"image1\\\",\\\"KvMw_weZM\\\":\\\"image2\\\",\\\"NxN1F7nUY\\\":\\\"image3\\\",\\\"YtW95x8_o\\\":\\\"image4\\\",\\\"Phh1Vrqg6\\\":\\\"image5\\\"}\",\"framerIntrinsicWidth\":\"600\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vaSeUEBOL.map", "// Generated by Framer (0c5492c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;FK Grotesk Neue Trial Bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"FK Grotesk Neue Trial Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/HX4ZxTkfsJB0zCyekXEfkyryHM.woff2\"}]}];export const css=['.framer-XYVjH .framer-styles-preset-1so2i3d:not(.rich-text-wrapper), .framer-XYVjH .framer-styles-preset-1so2i3d.rich-text-wrapper p { --framer-font-family: \"FK Grotesk Neue Trial Bold\", \"FK Grotesk Neue Trial Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 27px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.05em; --framer-line-height: 100%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #001d0b; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-XYVjH .framer-styles-preset-1so2i3d:not(.rich-text-wrapper), .framer-XYVjH .framer-styles-preset-1so2i3d.rich-text-wrapper p { --framer-font-family: \"FK Grotesk Neue Trial Bold\", \"FK Grotesk Neue Trial Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 25px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.05em; --framer-line-height: 100%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #001d0b; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-XYVjH .framer-styles-preset-1so2i3d:not(.rich-text-wrapper), .framer-XYVjH .framer-styles-preset-1so2i3d.rich-text-wrapper p { --framer-font-family: \"FK Grotesk Neue Trial Bold\", \"FK Grotesk Neue Trial Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 25px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.05em; --framer-line-height: 100%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #001d0b; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-XYVjH\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0c5492c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useDynamicRefs,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/3r1MOrsbGq47TYKOPcQV/SlideShow.js\";import NavigationMobileOpenNavigation from\"#framer/local/canvasComponent/BGiZQuPOO/BGiZQuPOO.js\";import FooterEnaLogo from\"#framer/local/canvasComponent/c9_KSBFxw/c9_KSBFxw.js\";import FooterFooter from\"#framer/local/canvasComponent/J0LNWxmCZ/J0LNWxmCZ.js\";import NewCrsr from\"#framer/local/canvasComponent/lXprePENS/lXprePENS.js\";import LinksTextLinkArrow from\"#framer/local/canvasComponent/Po_rIXMGe/Po_rIXMGe.js\";import GlobalLineAnimationGlobal from\"#framer/local/canvasComponent/QaFoemE2c/QaFoemE2c.js\";import GlobalSectionCTA from\"#framer/local/canvasComponent/qYLQfs811/qYLQfs811.js\";import NavigationNavigationMobile from\"#framer/local/canvasComponent/Se7Sa8kPD/Se7Sa8kPD.js\";import HomeImageCarousel from\"#framer/local/canvasComponent/vaSeUEBOL/vaSeUEBOL.js\";import JournalArticleCard from\"#framer/local/canvasComponent/vDFiPcfnz/vDFiPcfnz.js\";import NavigationNavigation from\"#framer/local/canvasComponent/ZhbW5Y__b/ZhbW5Y__b.js\";import CaseStudies from\"#framer/local/collection/islNjMppD/islNjMppD.js\";import Journal from\"#framer/local/collection/MpGbquskz/MpGbquskz.js\";import*as sharedStyle6 from\"#framer/local/css/FcNVB2w_7/FcNVB2w_7.js\";import*as sharedStyle from\"#framer/local/css/fqo2kTmnL/fqo2kTmnL.js\";import*as sharedStyle4 from\"#framer/local/css/m0dk3gyGs/m0dk3gyGs.js\";import*as sharedStyle3 from\"#framer/local/css/m3_IJQOPi/m3_IJQOPi.js\";import*as sharedStyle7 from\"#framer/local/css/RxAgf50GR/RxAgf50GR.js\";import*as sharedStyle2 from\"#framer/local/css/rxDf3EnjX/rxDf3EnjX.js\";import*as sharedStyle5 from\"#framer/local/css/Xitz9SmTf/Xitz9SmTf.js\";import*as sharedStyle1 from\"#framer/local/css/xSWhRhyfF/xSWhRhyfF.js\";import metadataProvider from\"#framer/local/webPageMetadata/aCjji0E7G/aCjji0E7G.js\";const NavigationNavigationFonts=getFonts(NavigationNavigation);const NavigationNavigationWithVariantAppearEffect=withVariantAppearEffect(NavigationNavigation);const NavigationNavigationMobileFonts=getFonts(NavigationNavigationMobile);const NavigationNavigationMobileWithVariantAppearEffect=withVariantAppearEffect(NavigationNavigationMobile);const NavigationMobileOpenNavigationFonts=getFonts(NavigationMobileOpenNavigation);const NewCrsrFonts=getFonts(NewCrsr);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithFX=withFX(RichText);const VideoFonts=getFonts(Video);const MotionDivWithFX=withFX(motion.div);const GlobalLineAnimationGlobalFonts=getFonts(GlobalLineAnimationGlobal);const GlobalLineAnimationGlobalWithVariantAppearEffect=withVariantAppearEffect(GlobalLineAnimationGlobal);const LinksTextLinkArrowFonts=getFonts(LinksTextLinkArrow);const HomeImageCarouselFonts=getFonts(HomeImageCarousel);const JournalArticleCardFonts=getFonts(JournalArticleCard);const SlideshowFonts=getFonts(Slideshow);const GlobalSectionCTAFonts=getFonts(GlobalSectionCTA);const FooterFooterFonts=getFonts(FooterFooter);const FooterEnaLogoFonts=getFonts(FooterEnaLogo);const breakpoints={RSFwkApLj:\"(min-width: 1200px)\",wrCR4XOsZ:\"(min-width: 810px) and (max-width: 1199px)\",wSTTlVESQ:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Z2B2z\";const variantClassNames={RSFwkApLj:\"framer-v-1q9zq9j\",wrCR4XOsZ:\"framer-v-1w1ellf\",wSTTlVESQ:\"framer-v-1789dar\"};const transition1={delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition2={bounce:.1,delay:0,duration:.5,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation5={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition3={delay:.04,duration:.8,ease:[.25,1,.5,1],type:\"tween\"};const textEffect={effect:animation5,startDelay:1,tokenization:\"character\",transition:transition3,trigger:\"onMount\",type:\"appear\"};const textEffect1={effect:animation5,startDelay:.3,tokenization:\"character\",transition:transition3,trigger:\"onMount\",type:\"appear\"};const animation6={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition4={delay:.04,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const textEffect2={effect:animation6,repeat:false,startDelay:1,tokenization:\"line\",transition:transition4,trigger:\"onMount\",type:\"appear\"};const textEffect3={effect:animation6,repeat:false,startDelay:.6,tokenization:\"line\",transition:transition4,trigger:\"onMount\",type:\"appear\"};const transition5={delay:0,duration:1.5,ease:[0,0,1,1],type:\"tween\"};const animation7={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition6={delay:0,duration:.8,ease:[.25,1,.5,1],type:\"tween\"};const textEffect4={effect:animation6,repeat:false,startDelay:1.1,tokenization:\"element\",transition:transition6,trigger:\"onMount\",type:\"appear\"};const transition7={delay:0,duration:2,ease:[.25,1,.5,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const animation9={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition8={delay:.9,duration:2,ease:[.25,1,.5,1],type:\"tween\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const animation11={opacity:.6,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition9={delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"};const transition10={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const animation12={opacity:.6,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:0};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:0};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation15={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition11={bounce:0,delay:.075,duration:.4,type:\"spring\"};const textEffect5={effect:animation15,threshold:.5,tokenization:\"word\",transition:transition11,trigger:\"onInView\",type:\"appear\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"Y_cr9Gw2G\":return\"nnPFGU7O6\";case\"dX8OafK7B\":return\"VE3saY9b3\";case\"kAOLQKMLO\":return\"CDHNwSyIo\";default:return\"VE3saY9b3\";}};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"RSFwkApLj\",Phone:\"wSTTlVESQ\",Tablet:\"wrCR4XOsZ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"RSFwkApLj\"};};const transition12={damping:38,delay:0,mass:1,stiffness:100,type:\"spring\"};const cursor={alignment:\"center\",component:NewCrsr,offset:{x:0,y:0},placement:\"top\",transition:transition12,variant:\"JjjaMqdhF\"};const cursor1={alignment:\"start\",component:FooterEnaLogo,offset:{x:15,y:-15},placement:\"top\",variant:\"stxP7bzad\"};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{style,className,layoutId,variant,IhjieOobtoG8Iswf2G,K40C8X2DnoG8Iswf2G,Nhc8zHgSuoG8Iswf2G,XhgCyJIpioG8Iswf2G,O7geCjRSaoG8Iswf2G,HKxK2ECMuoG8Iswf2G,xtIP1CHRToG8Iswf2G,idoG8Iswf2G,W37L3rfU1y1Q33s69p,XX0B0E_Zoy1Q33s69p,eZGlxy1OSy1Q33s69p,lgfzwQHyay1Q33s69p,kDVEREqNFy1Q33s69p,idy1Q33s69p,W37L3rfU1ZAHE0_xZI,XX0B0E_ZoZAHE0_xZI,eZGlxy1OSZAHE0_xZI,lgfzwQHyaZAHE0_xZI,kDVEREqNFZAHE0_xZI,idZAHE0_xZI,W37L3rfU1lWH6Mwp6d,XX0B0E_ZolWH6Mwp6d,eZGlxy1OSlWH6Mwp6d,lgfzwQHyalWH6Mwp6d,kDVEREqNFlWH6Mwp6d,idlWH6Mwp6d,W37L3rfU1GAnsdT8sB,XX0B0E_ZoGAnsdT8sB,eZGlxy1OSGAnsdT8sB,lgfzwQHyaGAnsdT8sB,kDVEREqNFGAnsdT8sB,idGAnsdT8sB,W37L3rfU1Y8_PitLnx,XX0B0E_ZoY8_PitLnx,eZGlxy1OSY8_PitLnx,lgfzwQHyaY8_PitLnx,kDVEREqNFY8_PitLnx,idY8_PitLnx,W37L3rfU1jnE0N3t2v,XX0B0E_ZojnE0N3t2v,eZGlxy1OSjnE0N3t2v,lgfzwQHyajnE0N3t2v,kDVEREqNFjnE0N3t2v,idjnE0N3t2v,W37L3rfU1bYOP38Ijn,XX0B0E_ZobYOP38Ijn,eZGlxy1OSbYOP38Ijn,lgfzwQHyabYOP38Ijn,kDVEREqNFbYOP38Ijn,idbYOP38Ijn,W37L3rfU1dmDIgGXpL,XX0B0E_ZodmDIgGXpL,eZGlxy1OSdmDIgGXpL,lgfzwQHyadmDIgGXpL,kDVEREqNFdmDIgGXpL,iddmDIgGXpL,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,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);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const EHMhKGDpT3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const wCQM1JsQO1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"wrCR4XOsZ\",\"wSTTlVESQ\"].includes(baseVariant))return false;return true;};const elementId=useRouteElementId(\"ldfg7pBFn\");const dynamicRef=useDynamicRefs();const isDisplayed1=()=>{if(!isBrowser())return true;if([\"wrCR4XOsZ\",\"wSTTlVESQ\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"wSTTlVESQ\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"wrCR4XOsZ\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"wSTTlVESQ\")return true;return false;};const router=useRouter();useCustomCursors({\"16158ew\":cursor1,yyb9pw:cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"RSFwkApLj\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1q9zq9j\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pjqlag-container hidden-1w1ellf hidden-1789dar\",layoutScroll:true,nodeId:\"f47uLfwCE\",rendersWithMotion:true,scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(NavigationNavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:0,ref:dynamicRef(`roam-${elementId}`),target:\"fHmZ6diE3\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"f47uLfwCE\",layoutId:\"f47uLfwCE\",style:{width:\"100%\"},variant:\"nS0kq8wbH\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wrCR4XOsZ:{height:48,width:componentViewport?.width||\"100vw\",y:0},wSTTlVESQ:{height:48,width:componentViewport?.width||\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-iuo3eg-container hidden-1q9zq9j\",\"data-framer-name\":\"Navigation Mobile\",id:\"iuo3eg\",layoutScroll:true,name:\"Navigation Mobile\",nodeId:\"FfxDvdKTA\",rendersWithMotion:true,scopeId:\"aCjji0E7G\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wSTTlVESQ:{__framer__animateOnce:false,__framer__threshold:0,__framer__variantAppearEffectEnabled:true,variant:overlay.visible?\"PPFOyo3m8\":undefined}},children:/*#__PURE__*/_jsx(NavigationNavigationMobileWithVariantAppearEffect,{EHMhKGDpT:EHMhKGDpT3bnx0g({overlay}),height:\"100%\",id:\"FfxDvdKTA\",layoutId:\"FfxDvdKTA\",name:\"Navigation Mobile\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},className:cx(scopingClassNames,\"framer-14g3oz7\"),\"data-framer-portal-id\":\"iuo3eg\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"UciYsgFxP\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{animate:animation1,className:cx(scopingClassNames,\"framer-pglhi5-container\"),\"data-framer-portal-id\":\"iuo3eg\",exit:animation,inComponentSlot:true,initial:animation2,nodeId:\"IF6yGhOWo\",rendersWithMotion:true,scopeId:\"aCjji0E7G\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(NavigationMobileOpenNavigation,{height:\"100%\",id:\"IF6yGhOWo\",layoutId:\"IF6yGhOWo\",style:{height:\"100%\",width:\"100%\"},wCQM1JsQO:wCQM1JsQO1wnntms({overlay}),width:\"100%\"})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-uoy2dn\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wrCR4XOsZ:{\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-146285n\",\"data-framer-cursor\":\"yyb9pw\",\"data-framer-name\":\"Section Hero\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wrCR4XOsZ:{animate:animation3,initial:animation4,optimized:true}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{className:\"framer-a0w4y5 hidden-1789dar\",\"data-framer-appear-id\":\"a0w4y5\",\"data-framer-name\":\"Container\",children:isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wrCR4XOsZ:{height:318.115,width:`calc((${componentViewport?.width||\"100vw\"} - 30px) * 0.821)`,y:(componentViewport?.y||0)+0+0+0+0+0+0+155.0399}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-twr8x7-container hidden-1q9zq9j\",nodeId:\"pesmPTCG1\",scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(NewCrsr,{height:\"100%\",id:\"pesmPTCG1\",layoutId:\"pesmPTCG1\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-idks51 hidden-1q9zq9j hidden-1w1ellf\",\"data-framer-appear-id\":\"idks51\",\"data-framer-name\":\"Container\",initial:animation4,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wSTTlVESQ:{height:219.7549,width:`calc((${componentViewport?.width||\"100vw\"} - 30px) * 0.9231)`,y:(componentViewport?.y||0)+0+0+0+0+0+0+113.4631}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ra4uuu-container\",nodeId:\"WfgYlVBa2\",scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(NewCrsr,{height:\"100%\",id:\"WfgYlVBa2\",layoutId:\"WfgYlVBa2\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13y2oys\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sil1ds\",\"data-framer-name\":\"Logo Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wrCR4XOsZ:{effect:textEffect1},wSTTlVESQ:{effect:textEffect1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-bkn6n2\",\"data-styles-preset\":\"fqo2kTmnL\",style:{\"--framer-text-color\":\"rgb(0, 29, 11)\"},children:\"Creatively Bold\"})}),className:\"framer-t3052a\",\"data-framer-name\":\"Monica Ellis\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-quf2if\",\"data-framer-name\":\"Intro\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l4bet\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wrCR4XOsZ:{effect:textEffect3},wSTTlVESQ:{effect:textEffect3}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ztuw2\",\"data-styles-preset\":\"xSWhRhyfF\",style:{\"--framer-text-color\":\"rgb(0, 29, 11)\"},children:\"We craft culture-forming campaigns that turn consumers into fans, helping brands be creatively bold & boldly creative.\"})}),className:\"framer-1f1le56\",effect:textEffect2,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-gt52rn hidden-1w1ellf hidden-1789dar\",\"data-framer-name\":\"Scroll to explore\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.8,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-w6ys15\",\"data-styles-preset\":\"rxDf3EnjX\",style:{\"--framer-text-color\":\"rgb(0, 29, 11)\"},children:\"Scroll to explore\"})}),className:\"framer-zgcpnn\",effect:textEffect4,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-rgp9pf\",\"data-framer-name\":\"Section Featured Projects\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wrCR4XOsZ:{animate:animation10},wSTTlVESQ:{animate:animation10}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-1ujzx4r\",\"data-framer-appear-id\":\"1ujzx4r\",initial:animation9,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"oG8Iswf2G\",data:CaseStudies,type:\"Collection\"},select:[{collection:\"oG8Iswf2G\",name:\"IhjieOobt\",type:\"Identifier\"},{collection:\"oG8Iswf2G\",name:\"K40C8X2Dn\",type:\"Identifier\"},{collection:\"oG8Iswf2G\",name:\"Nhc8zHgSu\",type:\"Identifier\"},{collection:\"oG8Iswf2G\",name:\"XhgCyJIpi\",type:\"Identifier\"},{collection:\"oG8Iswf2G\",name:\"O7geCjRSa\",type:\"Identifier\"},{collection:\"oG8Iswf2G\",name:\"HKxK2ECMu\",type:\"Identifier\"},{collection:\"oG8Iswf2G\",name:\"xtIP1CHRT\",type:\"Identifier\"},{collection:\"oG8Iswf2G\",name:\"id\",type:\"Identifier\"}],where:{collection:\"oG8Iswf2G\",name:\"bvjZvtYEZ\",type:\"Identifier\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({HKxK2ECMu:HKxK2ECMuoG8Iswf2G,id:idoG8Iswf2G,IhjieOobt:IhjieOobtoG8Iswf2G,K40C8X2Dn:K40C8X2DnoG8Iswf2G,Nhc8zHgSu:Nhc8zHgSuoG8Iswf2G,O7geCjRSa:O7geCjRSaoG8Iswf2G,XhgCyJIpi:XhgCyJIpioG8Iswf2G,xtIP1CHRT:xtIP1CHRToG8Iswf2G},index)=>{IhjieOobtoG8Iswf2G??=\"\";XhgCyJIpioG8Iswf2G??=\"\";O7geCjRSaoG8Iswf2G??=\"\";HKxK2ECMuoG8Iswf2G??=\"\";const visible=isSet(K40C8X2DnoG8Iswf2G);const visible1=isSet(XhgCyJIpioG8Iswf2G);return /*#__PURE__*/_jsx(LayoutGroup,{id:`oG8Iswf2G-${idoG8Iswf2G}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{IhjieOobt:IhjieOobtoG8Iswf2G},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{IhjieOobt:IhjieOobtoG8Iswf2G},webPageId:\"wHkICDJ1H\"},motionChild:true,nodeId:\"LyoNKE9lT\",scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1om4agn framer-43paty\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:false,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:0,ref:dynamicRef(`${IhjieOobtoG8Iswf2G}-${elementId}`),target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ub7fit\",\"data-framer-name\":\"Container (Animation)\",id:`${IhjieOobtoG8Iswf2G}-${elementId}`,ref:dynamicRef(`${IhjieOobtoG8Iswf2G}-${elementId}`),children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ybncfu\",\"data-framer-name\":\"Content Wrapper\",children:[visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wSTTlVESQ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+650+0+0+0+0+0+0+0),sizes:`max((${componentViewport?.width||\"100vw\"} + 10px) / 0, 1px)`,...toResponsiveImage(Nhc8zHgSuoG8Iswf2G)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+850+0+0+0+0+0+0+0),sizes:`max((${componentViewport?.width||\"100vw\"} + 10px) / 0, 1px)`,...toResponsiveImage(K40C8X2DnoG8Iswf2G)},className:\"framer-1bcjro6\",\"data-framer-name\":\"Image\"})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mc0vmv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"cNrQsJSkJ\",scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"cNrQsJSkJ\",isMixedBorderRadius:false,layoutId:\"cNrQsJSkJ\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcType:\"URL\",srcUrl:XhgCyJIpioG8Iswf2G,startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:false,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:0,ref:dynamicRef(`${IhjieOobtoG8Iswf2G}-${elementId}`),target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.99,className:\"framer-1jnjcle\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-441odt\",\"data-framer-name\":\"Sticky\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vsy5gs\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nawdn8\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8ya3s5\",\"data-styles-preset\":\"m3_IJQOPi\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Google Deepmind\"})}),className:\"framer-1a28457\",fonts:[\"Inter\"],text:O7geCjRSaoG8Iswf2G,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qyqqmo\",\"data-framer-name\":\"Category\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2aze68\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1so2i3d\",\"data-styles-preset\":\"m0dk3gyGs\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Art Direction\"})}),className:\"framer-bbhg35\",fonts:[\"Inter\"],text:HKxK2ECMuoG8Iswf2G,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nwfv90 hidden-1789dar\",\"data-framer-name\":\"Year\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1so2i3d\",\"data-styles-preset\":\"m0dk3gyGs\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"2025\"})}),className:\"framer-17r79zq\",fonts:[\"Inter\"],text:xtIP1CHRToG8Iswf2G,verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})]})})})},idoG8Iswf2G);})})})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1ckpzcy\",\"data-framer-name\":\"Section About\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wrCR4XOsZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`},wSTTlVESQ:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+0+0+1240+42+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+0+0+1500+150+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-whke9c-container\",nodeId:\"wr7PrGvX6\",rendersWithMotion:true,scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"mAV7el3aO\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"bKq9rIYfi\",height:\"100%\",id:\"wr7PrGvX6\",layoutId:\"wr7PrGvX6\",sjMku05M0:\"rgb(0, 29, 11)\",style:{height:\"100%\",width:\"100%\"},variant:\"bKq9rIYfi\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lmxfsi\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1j58bt\",\"data-styles-preset\":\"Xitz9SmTf\",style:{\"--framer-text-color\":\"rgb(0, 29, 11)\"},children:\"About Us\"})}),className:\"framer-t7dj0d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p9v5i5\",\"data-framer-name\":\"CTA\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-h8fypy\",\"data-styles-preset\":\"FcNVB2w_7\",style:{\"--framer-text-color\":\"rgb(0, 29, 11)\"},children:\"We craft culture-shifting campaigns that get remembered and reposted.\"})}),className:\"framer-yx5tqf\",\"data-framer-name\":\"Making brands memorable by creating lasting impressions that resonate with audiences\",effect:textEffect5,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"IxWyTvkk8\"},implicitPathVariables:undefined},{href:{webPageId:\"IxWyTvkk8\"},implicitPathVariables:undefined},{href:{webPageId:\"IxWyTvkk8\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wSTTlVESQ:{y:(componentViewport?.y||0)+0+0+0+1240+42+21+0+110+0+200}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:15,y:(componentViewport?.y||0)+0+0+0+1500+150+21+0+0+200,children:/*#__PURE__*/_jsx(Container,{className:\"framer-798cut-container\",nodeId:\"TMoEpURG0\",scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wrCR4XOsZ:{C2e2fP2V6:resolvedLinks[1]},wSTTlVESQ:{C2e2fP2V6:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(LinksTextLinkArrow,{C2e2fP2V6:resolvedLinks[0],ehVn66hfz:\"See How We Think\",height:\"100%\",id:\"TMoEpURG0\",layoutId:\"TMoEpURG0\",variant:\"NQMwUeeLL\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i05f4a\",\"data-framer-name\":\"Image Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wSTTlVESQ:{y:(componentViewport?.y||0)+0+0+0+1240+42+21+0+365+11}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:234,width:\"173px\",y:(componentViewport?.y||0)+0+0+0+1500+150+21+0+11,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1losj8b-container\",nodeId:\"IIQLsHsNO\",scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(HomeImageCarousel,{G0MdvnpWj:addImageAlt({pixelHeight:943,pixelWidth:627,src:\"https://framerusercontent.com/images/FSpQcYs30sTSYKsY3TqxRgGCqs.png\",srcSet:\"https://framerusercontent.com/images/FSpQcYs30sTSYKsY3TqxRgGCqs.png 627w\"},\"\"),height:\"100%\",id:\"IIQLsHsNO\",KvMw_weZM:addImageAlt({pixelHeight:1856,pixelWidth:2464,src:\"https://framerusercontent.com/images/clJVJvh2EXjJBXsHyYyNHLRBUg.png\"},\"\"),layoutId:\"IIQLsHsNO\",NxN1F7nUY:addImageAlt({pixelHeight:1696,pixelWidth:2784,src:\"https://framerusercontent.com/images/3nZBv2Ras2QcRsSJqHDBeR52QzA.png\"},\"\"),Phh1Vrqg6:addImageAlt({pixelHeight:1856,pixelWidth:2464,src:\"https://framerusercontent.com/images/LHzteucXPfgrA3CloL5GytX2NUo.png\",srcSet:\"https://framerusercontent.com/images/LHzteucXPfgrA3CloL5GytX2NUo.png?scale-down-to=512 512w,https://framerusercontent.com/images/LHzteucXPfgrA3CloL5GytX2NUo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LHzteucXPfgrA3CloL5GytX2NUo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/LHzteucXPfgrA3CloL5GytX2NUo.png 2464w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"rgnFqSP1a\",width:\"100%\",YtW95x8_o:addImageAlt({pixelHeight:1856,pixelWidth:2464,src:\"https://framerusercontent.com/images/RY2N6skNa2drH0UVfytzkqdzLHc.png\"},\"\")})})})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1qli4q7\",\"data-framer-name\":\"Section Journal\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uvp8x9\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l6eapi\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wrCR4XOsZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`},wSTTlVESQ:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+0+0+1974+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+0+0+2027+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1guwpa9-container\",nodeId:\"xJksAhqnG\",rendersWithMotion:true,scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"mAV7el3aO\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"bKq9rIYfi\",height:\"100%\",id:\"xJksAhqnG\",layoutId:\"xJksAhqnG\",sjMku05M0:\"rgba(0, 29, 11, 0.2)\",style:{height:\"100%\",width:\"100%\"},variant:\"bKq9rIYfi\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qtwnv4\",\"data-framer-name\":\"Heading Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1nmb3f\",\"data-styles-preset\":\"RxAgf50GR\",style:{\"--framer-text-color\":\"rgb(0, 29, 11)\"},children:\"Journal/Ideas\"})}),className:\"framer-1qp37om\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-100ax8t\",\"data-framer-name\":\"Slideshow Container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12ndb3l-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ttVYENBs4\",scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wrCR4XOsZ:{itemAmount:3,paddingLeft:15,paddingRight:15},wSTTlVESQ:{dragControl:true,itemAmount:2,paddingLeft:15,paddingRight:15}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"rgba(255, 255, 255, 0)\",arrowGap:0,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:12,arrowPaddingTop:-33,arrowPosition:\"top-right\",arrowRadius:0,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:25,leftArrow:\"https://framerusercontent.com/images/qfj1Ogi62SxFb5eAkcncbHEwz0.png\",rightArrow:\"https://framerusercontent.com/images/BUYb9kxVHuLC4ftFOp7V6AA5R0U.png\",showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:0,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:15,height:\"100%\",id:\"ttVYENBs4\",intervalControl:1.5,itemAmount:4,layoutId:\"ttVYENBs4\",padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:true,paddingRight:20,paddingTop:30,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bdtvpa\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"y1Q33s69p\",data:Journal,type:\"Collection\"},select:[{collection:\"y1Q33s69p\",name:\"W37L3rfU1\",type:\"Identifier\"},{collection:\"y1Q33s69p\",name:\"XX0B0E_Zo\",type:\"Identifier\"},{collection:\"y1Q33s69p\",name:\"eZGlxy1OS\",type:\"Identifier\"},{collection:\"y1Q33s69p\",name:\"lgfzwQHya\",type:\"Identifier\"},{collection:\"y1Q33s69p\",name:\"kDVEREqNF\",type:\"Identifier\"},{collection:\"y1Q33s69p\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"y1Q33s69p\",name:\"hOkf4gUco\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:1},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({eZGlxy1OS:eZGlxy1OSy1Q33s69p,id:idy1Q33s69p,kDVEREqNF:kDVEREqNFy1Q33s69p,lgfzwQHya:lgfzwQHyay1Q33s69p,W37L3rfU1:W37L3rfU1y1Q33s69p,XX0B0E_Zo:XX0B0E_Zoy1Q33s69p},index1)=>{W37L3rfU1y1Q33s69p??=\"\";lgfzwQHyay1Q33s69p??=\"\";kDVEREqNFy1Q33s69p??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`y1Q33s69p-${idy1Q33s69p}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W37L3rfU1:W37L3rfU1y1Q33s69p},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{W37L3rfU1:W37L3rfU1y1Q33s69p},webPageId:\"Crozie1vg\"},motionChild:true,nodeId:\"w0OOvt_dq\",scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1wyxvso framer-43paty\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:433,width:\"275px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-db5shk-container\",inComponentSlot:true,nodeId:\"IvxdT2Mpo\",rendersWithMotion:true,scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(JournalArticleCard,{height:\"100%\",hVGS4vAc8:lgfzwQHyay1Q33s69p,id:\"IvxdT2Mpo\",layoutId:\"IvxdT2Mpo\",style:{width:\"100%\"},variant:convertFromEnum(XX0B0E_Zoy1Q33s69p,activeLocale),vXS0OQu48:toResponsiveImage(eZGlxy1OSy1Q33s69p),width:\"100%\",YE5ookC0X:kDVEREqNFy1Q33s69p})})})})})})},idy1Q33s69p);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-n7fyu6\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ZAHE0_xZI\",data:Journal,type:\"Collection\"},select:[{collection:\"ZAHE0_xZI\",name:\"W37L3rfU1\",type:\"Identifier\"},{collection:\"ZAHE0_xZI\",name:\"XX0B0E_Zo\",type:\"Identifier\"},{collection:\"ZAHE0_xZI\",name:\"eZGlxy1OS\",type:\"Identifier\"},{collection:\"ZAHE0_xZI\",name:\"lgfzwQHya\",type:\"Identifier\"},{collection:\"ZAHE0_xZI\",name:\"kDVEREqNF\",type:\"Identifier\"},{collection:\"ZAHE0_xZI\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"ZAHE0_xZI\",name:\"hOkf4gUco\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:2},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({eZGlxy1OS:eZGlxy1OSZAHE0_xZI,id:idZAHE0_xZI,kDVEREqNF:kDVEREqNFZAHE0_xZI,lgfzwQHya:lgfzwQHyaZAHE0_xZI,W37L3rfU1:W37L3rfU1ZAHE0_xZI,XX0B0E_Zo:XX0B0E_ZoZAHE0_xZI},index2)=>{W37L3rfU1ZAHE0_xZI??=\"\";lgfzwQHyaZAHE0_xZI??=\"\";kDVEREqNFZAHE0_xZI??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ZAHE0_xZI-${idZAHE0_xZI}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W37L3rfU1:W37L3rfU1ZAHE0_xZI},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{W37L3rfU1:W37L3rfU1ZAHE0_xZI},webPageId:\"Crozie1vg\"},motionChild:true,nodeId:\"NSuKaR1Bb\",scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ferrki framer-43paty\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:433,width:\"275px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-wrm7ho-container\",inComponentSlot:true,nodeId:\"Uwk8nI5mD\",rendersWithMotion:true,scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(JournalArticleCard,{height:\"100%\",hVGS4vAc8:lgfzwQHyaZAHE0_xZI,id:\"Uwk8nI5mD\",layoutId:\"Uwk8nI5mD\",style:{width:\"100%\"},variant:convertFromEnum(XX0B0E_ZoZAHE0_xZI,activeLocale),vXS0OQu48:toResponsiveImage(eZGlxy1OSZAHE0_xZI),width:\"100%\",YE5ookC0X:kDVEREqNFZAHE0_xZI})})})})})})},idZAHE0_xZI);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8l1d20\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"lWH6Mwp6d\",data:Journal,type:\"Collection\"},select:[{collection:\"lWH6Mwp6d\",name:\"W37L3rfU1\",type:\"Identifier\"},{collection:\"lWH6Mwp6d\",name:\"XX0B0E_Zo\",type:\"Identifier\"},{collection:\"lWH6Mwp6d\",name:\"eZGlxy1OS\",type:\"Identifier\"},{collection:\"lWH6Mwp6d\",name:\"lgfzwQHya\",type:\"Identifier\"},{collection:\"lWH6Mwp6d\",name:\"kDVEREqNF\",type:\"Identifier\"},{collection:\"lWH6Mwp6d\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"lWH6Mwp6d\",name:\"hOkf4gUco\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:3},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({eZGlxy1OS:eZGlxy1OSlWH6Mwp6d,id:idlWH6Mwp6d,kDVEREqNF:kDVEREqNFlWH6Mwp6d,lgfzwQHya:lgfzwQHyalWH6Mwp6d,W37L3rfU1:W37L3rfU1lWH6Mwp6d,XX0B0E_Zo:XX0B0E_ZolWH6Mwp6d},index3)=>{W37L3rfU1lWH6Mwp6d??=\"\";lgfzwQHyalWH6Mwp6d??=\"\";kDVEREqNFlWH6Mwp6d??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`lWH6Mwp6d-${idlWH6Mwp6d}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W37L3rfU1:W37L3rfU1lWH6Mwp6d},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{W37L3rfU1:W37L3rfU1lWH6Mwp6d},webPageId:\"Crozie1vg\"},motionChild:true,nodeId:\"e8gkwj1xi\",scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-lu571d framer-43paty\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:433,width:\"275px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-nv7odi-container\",inComponentSlot:true,nodeId:\"P6QaUx5pq\",rendersWithMotion:true,scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(JournalArticleCard,{height:\"100%\",hVGS4vAc8:lgfzwQHyalWH6Mwp6d,id:\"P6QaUx5pq\",layoutId:\"P6QaUx5pq\",style:{width:\"100%\"},variant:convertFromEnum(XX0B0E_ZolWH6Mwp6d,activeLocale),vXS0OQu48:toResponsiveImage(eZGlxy1OSlWH6Mwp6d),width:\"100%\",YE5ookC0X:kDVEREqNFlWH6Mwp6d})})})})})})},idlWH6Mwp6d);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sro0tw\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"GAnsdT8sB\",data:Journal,type:\"Collection\"},select:[{collection:\"GAnsdT8sB\",name:\"W37L3rfU1\",type:\"Identifier\"},{collection:\"GAnsdT8sB\",name:\"XX0B0E_Zo\",type:\"Identifier\"},{collection:\"GAnsdT8sB\",name:\"eZGlxy1OS\",type:\"Identifier\"},{collection:\"GAnsdT8sB\",name:\"lgfzwQHya\",type:\"Identifier\"},{collection:\"GAnsdT8sB\",name:\"kDVEREqNF\",type:\"Identifier\"},{collection:\"GAnsdT8sB\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"GAnsdT8sB\",name:\"hOkf4gUco\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:4},type:\"BinaryOperation\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({eZGlxy1OS:eZGlxy1OSGAnsdT8sB,id:idGAnsdT8sB,kDVEREqNF:kDVEREqNFGAnsdT8sB,lgfzwQHya:lgfzwQHyaGAnsdT8sB,W37L3rfU1:W37L3rfU1GAnsdT8sB,XX0B0E_Zo:XX0B0E_ZoGAnsdT8sB},index4)=>{W37L3rfU1GAnsdT8sB??=\"\";lgfzwQHyaGAnsdT8sB??=\"\";kDVEREqNFGAnsdT8sB??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`GAnsdT8sB-${idGAnsdT8sB}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W37L3rfU1:W37L3rfU1GAnsdT8sB},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{W37L3rfU1:W37L3rfU1GAnsdT8sB},webPageId:\"Crozie1vg\"},motionChild:true,nodeId:\"X0wbreU7L\",scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-13xtikd framer-43paty\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:433,width:\"275px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5e69i-container\",inComponentSlot:true,nodeId:\"wsivhpAfd\",rendersWithMotion:true,scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(JournalArticleCard,{height:\"100%\",hVGS4vAc8:lgfzwQHyaGAnsdT8sB,id:\"wsivhpAfd\",layoutId:\"wsivhpAfd\",style:{width:\"100%\"},variant:convertFromEnum(XX0B0E_ZoGAnsdT8sB,activeLocale),vXS0OQu48:toResponsiveImage(eZGlxy1OSGAnsdT8sB),width:\"100%\",YE5ookC0X:kDVEREqNFGAnsdT8sB})})})})})})},idGAnsdT8sB);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bxzgn9\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Y8_PitLnx\",data:Journal,type:\"Collection\"},select:[{collection:\"Y8_PitLnx\",name:\"W37L3rfU1\",type:\"Identifier\"},{collection:\"Y8_PitLnx\",name:\"XX0B0E_Zo\",type:\"Identifier\"},{collection:\"Y8_PitLnx\",name:\"eZGlxy1OS\",type:\"Identifier\"},{collection:\"Y8_PitLnx\",name:\"lgfzwQHya\",type:\"Identifier\"},{collection:\"Y8_PitLnx\",name:\"kDVEREqNF\",type:\"Identifier\"},{collection:\"Y8_PitLnx\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Y8_PitLnx\",name:\"hOkf4gUco\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:5},type:\"BinaryOperation\"}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({eZGlxy1OS:eZGlxy1OSY8_PitLnx,id:idY8_PitLnx,kDVEREqNF:kDVEREqNFY8_PitLnx,lgfzwQHya:lgfzwQHyaY8_PitLnx,W37L3rfU1:W37L3rfU1Y8_PitLnx,XX0B0E_Zo:XX0B0E_ZoY8_PitLnx},index5)=>{W37L3rfU1Y8_PitLnx??=\"\";lgfzwQHyaY8_PitLnx??=\"\";kDVEREqNFY8_PitLnx??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Y8_PitLnx-${idY8_PitLnx}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W37L3rfU1:W37L3rfU1Y8_PitLnx},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{W37L3rfU1:W37L3rfU1Y8_PitLnx},webPageId:\"Crozie1vg\"},motionChild:true,nodeId:\"hbvUCY6gn\",scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-6ejnla framer-43paty\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:433,width:\"275px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ur0t6-container\",inComponentSlot:true,nodeId:\"wGi1f3Ni0\",rendersWithMotion:true,scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(JournalArticleCard,{height:\"100%\",hVGS4vAc8:lgfzwQHyaY8_PitLnx,id:\"wGi1f3Ni0\",layoutId:\"wGi1f3Ni0\",style:{width:\"100%\"},variant:convertFromEnum(XX0B0E_ZoY8_PitLnx,activeLocale),vXS0OQu48:toResponsiveImage(eZGlxy1OSY8_PitLnx),width:\"100%\",YE5ookC0X:kDVEREqNFY8_PitLnx})})})})})})},idY8_PitLnx);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g045at\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"jnE0N3t2v\",data:Journal,type:\"Collection\"},select:[{collection:\"jnE0N3t2v\",name:\"W37L3rfU1\",type:\"Identifier\"},{collection:\"jnE0N3t2v\",name:\"XX0B0E_Zo\",type:\"Identifier\"},{collection:\"jnE0N3t2v\",name:\"eZGlxy1OS\",type:\"Identifier\"},{collection:\"jnE0N3t2v\",name:\"lgfzwQHya\",type:\"Identifier\"},{collection:\"jnE0N3t2v\",name:\"kDVEREqNF\",type:\"Identifier\"},{collection:\"jnE0N3t2v\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"jnE0N3t2v\",name:\"hOkf4gUco\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:6},type:\"BinaryOperation\"}},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6?.map(({eZGlxy1OS:eZGlxy1OSjnE0N3t2v,id:idjnE0N3t2v,kDVEREqNF:kDVEREqNFjnE0N3t2v,lgfzwQHya:lgfzwQHyajnE0N3t2v,W37L3rfU1:W37L3rfU1jnE0N3t2v,XX0B0E_Zo:XX0B0E_ZojnE0N3t2v},index6)=>{W37L3rfU1jnE0N3t2v??=\"\";lgfzwQHyajnE0N3t2v??=\"\";kDVEREqNFjnE0N3t2v??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`jnE0N3t2v-${idjnE0N3t2v}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W37L3rfU1:W37L3rfU1jnE0N3t2v},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{W37L3rfU1:W37L3rfU1jnE0N3t2v},webPageId:\"Crozie1vg\"},motionChild:true,nodeId:\"c0Fq_3tHo\",scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1lwokwl framer-43paty\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:433,width:\"275px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-k1hwti-container\",inComponentSlot:true,nodeId:\"aoMqZRt0c\",rendersWithMotion:true,scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(JournalArticleCard,{height:\"100%\",hVGS4vAc8:lgfzwQHyajnE0N3t2v,id:\"aoMqZRt0c\",layoutId:\"aoMqZRt0c\",style:{width:\"100%\"},variant:convertFromEnum(XX0B0E_ZojnE0N3t2v,activeLocale),vXS0OQu48:toResponsiveImage(eZGlxy1OSjnE0N3t2v),width:\"100%\",YE5ookC0X:kDVEREqNFjnE0N3t2v})})})})})})},idjnE0N3t2v);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ocx7ts\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"bYOP38Ijn\",data:Journal,type:\"Collection\"},select:[{collection:\"bYOP38Ijn\",name:\"W37L3rfU1\",type:\"Identifier\"},{collection:\"bYOP38Ijn\",name:\"XX0B0E_Zo\",type:\"Identifier\"},{collection:\"bYOP38Ijn\",name:\"eZGlxy1OS\",type:\"Identifier\"},{collection:\"bYOP38Ijn\",name:\"lgfzwQHya\",type:\"Identifier\"},{collection:\"bYOP38Ijn\",name:\"kDVEREqNF\",type:\"Identifier\"},{collection:\"bYOP38Ijn\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"bYOP38Ijn\",name:\"hOkf4gUco\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:7},type:\"BinaryOperation\"}},children:(collection7,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection7?.map(({eZGlxy1OS:eZGlxy1OSbYOP38Ijn,id:idbYOP38Ijn,kDVEREqNF:kDVEREqNFbYOP38Ijn,lgfzwQHya:lgfzwQHyabYOP38Ijn,W37L3rfU1:W37L3rfU1bYOP38Ijn,XX0B0E_Zo:XX0B0E_ZobYOP38Ijn},index7)=>{W37L3rfU1bYOP38Ijn??=\"\";lgfzwQHyabYOP38Ijn??=\"\";kDVEREqNFbYOP38Ijn??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`bYOP38Ijn-${idbYOP38Ijn}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W37L3rfU1:W37L3rfU1bYOP38Ijn},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{W37L3rfU1:W37L3rfU1bYOP38Ijn},webPageId:\"Crozie1vg\"},motionChild:true,nodeId:\"jCYu4xYAT\",scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-17opybi framer-43paty\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:433,width:\"275px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ca5tjw-container\",inComponentSlot:true,nodeId:\"LvE5PleD4\",rendersWithMotion:true,scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(JournalArticleCard,{height:\"100%\",hVGS4vAc8:lgfzwQHyabYOP38Ijn,id:\"LvE5PleD4\",layoutId:\"LvE5PleD4\",style:{width:\"100%\"},variant:convertFromEnum(XX0B0E_ZobYOP38Ijn,activeLocale),vXS0OQu48:toResponsiveImage(eZGlxy1OSbYOP38Ijn),width:\"100%\",YE5ookC0X:kDVEREqNFbYOP38Ijn})})})})})})},idbYOP38Ijn);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-e04u94\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"dmDIgGXpL\",data:Journal,type:\"Collection\"},select:[{collection:\"dmDIgGXpL\",name:\"W37L3rfU1\",type:\"Identifier\"},{collection:\"dmDIgGXpL\",name:\"XX0B0E_Zo\",type:\"Identifier\"},{collection:\"dmDIgGXpL\",name:\"eZGlxy1OS\",type:\"Identifier\"},{collection:\"dmDIgGXpL\",name:\"lgfzwQHya\",type:\"Identifier\"},{collection:\"dmDIgGXpL\",name:\"kDVEREqNF\",type:\"Identifier\"},{collection:\"dmDIgGXpL\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"dmDIgGXpL\",name:\"hOkf4gUco\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:8},type:\"BinaryOperation\"}},children:(collection8,paginationInfo8,loadMore8)=>/*#__PURE__*/_jsx(_Fragment,{children:collection8?.map(({eZGlxy1OS:eZGlxy1OSdmDIgGXpL,id:iddmDIgGXpL,kDVEREqNF:kDVEREqNFdmDIgGXpL,lgfzwQHya:lgfzwQHyadmDIgGXpL,W37L3rfU1:W37L3rfU1dmDIgGXpL,XX0B0E_Zo:XX0B0E_ZodmDIgGXpL},index8)=>{W37L3rfU1dmDIgGXpL??=\"\";lgfzwQHyadmDIgGXpL??=\"\";kDVEREqNFdmDIgGXpL??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`dmDIgGXpL-${iddmDIgGXpL}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W37L3rfU1:W37L3rfU1dmDIgGXpL},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{W37L3rfU1:W37L3rfU1dmDIgGXpL},webPageId:\"Crozie1vg\"},motionChild:true,nodeId:\"J5qJvGbCS\",scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-xw9ibf framer-43paty\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:433,width:\"275px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-s4efkm-container\",inComponentSlot:true,nodeId:\"BbkRt5Iqc\",rendersWithMotion:true,scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(JournalArticleCard,{height:\"100%\",hVGS4vAc8:lgfzwQHyadmDIgGXpL,id:\"BbkRt5Iqc\",layoutId:\"BbkRt5Iqc\",style:{width:\"100%\"},variant:convertFromEnum(XX0B0E_ZodmDIgGXpL,activeLocale),vXS0OQu48:toResponsiveImage(eZGlxy1OSdmDIgGXpL),width:\"100%\",YE5ookC0X:kDVEREqNFdmDIgGXpL})})})})})})},iddmDIgGXpL);})})})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PeLs18OoC\"},implicitPathVariables:undefined},{href:{webPageId:\"PeLs18OoC\"},implicitPathVariables:undefined},{href:{webPageId:\"PeLs18OoC\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wrCR4XOsZ:{y:(componentViewport?.y||0)+0+2513},wSTTlVESQ:{y:(componentViewport?.y||0)+0+2390}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:570,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2593,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bxtmxw-container\",nodeId:\"hPBJsi3Wc\",scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wrCR4XOsZ:{variant:\"CEXgICyTG\",VC58SMAbI:resolvedLinks1[1]},wSTTlVESQ:{variant:\"LCLSEHgmw\",VC58SMAbI:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(GlobalSectionCTA,{D3lbLSGo2:\"Let's create excitment that drives growth!\",height:\"100%\",id:\"hPBJsi3Wc\",layoutId:\"hPBJsi3Wc\",style:{width:\"100%\"},variant:\"mS6OTodqb\",VC58SMAbI:resolvedLinks1[0],width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wrCR4XOsZ:{y:(componentViewport?.y||0)+0+3083},wSTTlVESQ:{y:(componentViewport?.y||0)+0+2960}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:537,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3163,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nbqjrk-container\",nodeId:\"g6Mi3L6KZ\",scopeId:\"aCjji0E7G\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wrCR4XOsZ:{variant:\"ld8eol0x7\"},wSTTlVESQ:{variant:\"LKuPWSgM0\"}},children:/*#__PURE__*/_jsx(FooterFooter,{g8ExVt6Ui:\"16158ew\",height:\"100%\",id:\"g6Mi3L6KZ\",layoutId:\"g6Mi3L6KZ\",style:{width:\"100%\"},variant:\"XcHzD8GMj\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Z2B2z.framer-43paty, .framer-Z2B2z .framer-43paty { display: block; }\",\".framer-Z2B2z.framer-1q9zq9j { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-Z2B2z .framer-pjqlag-container { flex: none; height: auto; left: 0px; mix-blend-mode: difference; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-Z2B2z .framer-iuo3eg-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 8; }\",\".framer-Z2B2z.framer-14g3oz7 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 6; }\",\".framer-Z2B2z.framer-pglhi5-container { flex: none; height: 100vh; left: 0px; position: fixed; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 9; }\",\".framer-Z2B2z .framer-uoy2dn { 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: 0px; position: relative; width: 100%; }\",\".framer-Z2B2z .framer-146285n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 85vh; justify-content: flex-end; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-Z2B2z .framer-a0w4y5 { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-Z2B2z .framer-twr8x7-container { flex: none; height: 52%; left: calc(50.00000000000002% - 82.09876543209876% / 2); position: absolute; top: calc(49.85673352435532% - 52.14899713467048% / 2); width: 82%; }\",\".framer-Z2B2z .framer-idks51 { flex: 1 0 0px; height: 1px; min-height: 400px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Z2B2z .framer-ra4uuu-container { flex: none; height: 53%; left: calc(50.00000000000002% - 92.3076923076923% / 2); position: absolute; top: calc(51.136363636363654% - 52.72727272727272% / 2); width: 92%; }\",\".framer-Z2B2z .framer-13y2oys { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 190px; justify-content: flex-start; min-height: 30%; overflow: hidden; padding: 0px 20px 20px 20px; position: relative; width: 100%; }\",\".framer-Z2B2z .framer-1sil1ds { align-content: center; align-items: center; display: flex; flex: 0.7 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Z2B2z .framer-t3052a { flex: none; height: 85%; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Z2B2z .framer-quf2if { align-content: center; align-items: center; display: flex; flex: 0.5 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Z2B2z .framer-l4bet { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Z2B2z .framer-1f1le56 { flex: 1 0 0px; height: auto; max-width: 329px; opacity: 0.7; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Z2B2z .framer-gt52rn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Z2B2z .framer-zgcpnn { flex: none; height: auto; opacity: 0.8; position: relative; white-space: pre; width: auto; }\",\".framer-Z2B2z .framer-rgp9pf { align-content: flex-end; align-items: flex-end; background-color: #000000; 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: 100%; }\",\".framer-Z2B2z .framer-1ujzx4r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-Z2B2z .framer-1om4agn { align-content: flex-start; align-items: flex-start; aspect-ratio: 1.8461538461538463 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 650px); justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-Z2B2z .framer-1ub7fit { align-content: flex-start; align-items: flex-start; aspect-ratio: 1.8461538461538463 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 650px); justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-Z2B2z .framer-ybncfu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-Z2B2z .framer-1bcjro6 { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; z-index: 2; }\",\".framer-Z2B2z .framer-1mc0vmv-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-Z2B2z .framer-1jnjcle { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; mix-blend-mode: screen; opacity: 0.99; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 1px; z-index: 4; }\",\".framer-Z2B2z .framer-441odt { align-content: flex-start; align-items: flex-start; bottom: 400px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: 5%; justify-content: flex-start; overflow: visible; padding: 0px; position: sticky; top: 400px; width: 1px; z-index: 1; }\",\".framer-Z2B2z .framer-1vsy5gs { 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-Z2B2z .framer-1nawdn8 { align-content: center; align-items: center; display: flex; flex: 0.8 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 2px 0px 2px 0px; position: relative; width: 1px; }\",\".framer-Z2B2z .framer-1a28457, .framer-Z2B2z .framer-bbhg35, .framer-Z2B2z .framer-17r79zq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Z2B2z .framer-qyqqmo { align-content: center; align-items: center; display: flex; flex: 0.5 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Z2B2z .framer-2aze68 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; opacity: 0.5; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Z2B2z .framer-1nwfv90 { align-content: center; align-items: center; display: flex; flex: 0.5 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; opacity: 0.5; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Z2B2z .framer-1ckpzcy { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 150px 20px 100px 20px; position: relative; width: 100%; z-index: 1; }\",\".framer-Z2B2z .framer-whke9c-container, .framer-Z2B2z .framer-1guwpa9-container { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-Z2B2z .framer-1lmxfsi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Z2B2z .framer-t7dj0d, .framer-Z2B2z .framer-1qp37om { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Z2B2z .framer-p9v5i5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Z2B2z .framer-yx5tqf { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 684px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Z2B2z .framer-798cut-container { flex: none; height: auto; position: relative; width: auto; z-index: 10; }\",\".framer-Z2B2z .framer-i05f4a { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 256px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Z2B2z .framer-1losj8b-container { flex: none; height: 234px; position: relative; width: 173px; }\",\".framer-Z2B2z .framer-1qli4q7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Z2B2z .framer-1uvp8x9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-Z2B2z .framer-1l6eapi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Z2B2z .framer-1qtwnv4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Z2B2z .framer-100ax8t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Z2B2z .framer-12ndb3l-container { aspect-ratio: 2.4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 500px); position: relative; width: 100%; }\",\".framer-Z2B2z .framer-1bdtvpa, .framer-Z2B2z .framer-n7fyu6, .framer-Z2B2z .framer-8l1d20, .framer-Z2B2z .framer-1bxzgn9, .framer-Z2B2z .framer-1g045at { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 275px; }\",\".framer-Z2B2z .framer-1wyxvso, .framer-Z2B2z .framer-ferrki, .framer-Z2B2z .framer-lu571d, .framer-Z2B2z .framer-13xtikd, .framer-Z2B2z .framer-6ejnla, .framer-Z2B2z .framer-1lwokwl, .framer-Z2B2z .framer-17opybi, .framer-Z2B2z .framer-xw9ibf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-Z2B2z .framer-db5shk-container, .framer-Z2B2z .framer-wrm7ho-container, .framer-Z2B2z .framer-nv7odi-container, .framer-Z2B2z .framer-5e69i-container, .framer-Z2B2z .framer-1ur0t6-container, .framer-Z2B2z .framer-k1hwti-container, .framer-Z2B2z .framer-ca5tjw-container, .framer-Z2B2z .framer-s4efkm-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-Z2B2z .framer-sro0tw { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 265px; justify-content: flex-start; padding: 0px; position: relative; width: 275px; }\",\".framer-Z2B2z .framer-1ocx7ts, .framer-Z2B2z .framer-e04u94 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 340px; justify-content: flex-start; padding: 0px; position: relative; width: 275px; }\",\".framer-Z2B2z .framer-1bxtmxw-container { flex: none; height: auto; position: relative; width: 100%; z-index: 7; }\",\".framer-Z2B2z .framer-nbqjrk-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Z2B2z.framer-1q9zq9j, .framer-Z2B2z .framer-uoy2dn, .framer-Z2B2z .framer-146285n, .framer-Z2B2z .framer-13y2oys, .framer-Z2B2z .framer-1sil1ds, .framer-Z2B2z .framer-quf2if, .framer-Z2B2z .framer-gt52rn, .framer-Z2B2z .framer-rgp9pf, .framer-Z2B2z .framer-1ujzx4r, .framer-Z2B2z .framer-1om4agn, .framer-Z2B2z .framer-1ub7fit, .framer-Z2B2z .framer-ybncfu, .framer-Z2B2z .framer-1jnjcle, .framer-Z2B2z .framer-441odt, .framer-Z2B2z .framer-1vsy5gs, .framer-Z2B2z .framer-1nawdn8, .framer-Z2B2z .framer-2aze68, .framer-Z2B2z .framer-1nwfv90, .framer-Z2B2z .framer-1ckpzcy, .framer-Z2B2z .framer-1lmxfsi, .framer-Z2B2z .framer-p9v5i5, .framer-Z2B2z .framer-i05f4a, .framer-Z2B2z .framer-1qli4q7, .framer-Z2B2z .framer-1uvp8x9, .framer-Z2B2z .framer-1l6eapi, .framer-Z2B2z .framer-1qtwnv4, .framer-Z2B2z .framer-100ax8t, .framer-Z2B2z .framer-1bdtvpa, .framer-Z2B2z .framer-1wyxvso, .framer-Z2B2z .framer-n7fyu6, .framer-Z2B2z .framer-ferrki, .framer-Z2B2z .framer-8l1d20, .framer-Z2B2z .framer-lu571d, .framer-Z2B2z .framer-sro0tw, .framer-Z2B2z .framer-13xtikd, .framer-Z2B2z .framer-1bxzgn9, .framer-Z2B2z .framer-6ejnla, .framer-Z2B2z .framer-1g045at, .framer-Z2B2z .framer-1lwokwl, .framer-Z2B2z .framer-1ocx7ts, .framer-Z2B2z .framer-17opybi, .framer-Z2B2z .framer-e04u94, .framer-Z2B2z .framer-xw9ibf { gap: 0px; } .framer-Z2B2z.framer-1q9zq9j > *, .framer-Z2B2z .framer-uoy2dn > *, .framer-Z2B2z .framer-146285n > *, .framer-Z2B2z .framer-1ujzx4r > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Z2B2z.framer-1q9zq9j > :first-child, .framer-Z2B2z .framer-uoy2dn > :first-child, .framer-Z2B2z .framer-146285n > :first-child, .framer-Z2B2z .framer-rgp9pf > :first-child, .framer-Z2B2z .framer-1ujzx4r > :first-child, .framer-Z2B2z .framer-441odt > :first-child, .framer-Z2B2z .framer-1ckpzcy > :first-child, .framer-Z2B2z .framer-p9v5i5 > :first-child, .framer-Z2B2z .framer-1qli4q7 > :first-child, .framer-Z2B2z .framer-1uvp8x9 > :first-child, .framer-Z2B2z .framer-1l6eapi > :first-child, .framer-Z2B2z .framer-100ax8t > :first-child, .framer-Z2B2z .framer-1bdtvpa > :first-child, .framer-Z2B2z .framer-n7fyu6 > :first-child, .framer-Z2B2z .framer-8l1d20 > :first-child, .framer-Z2B2z .framer-sro0tw > :first-child, .framer-Z2B2z .framer-1bxzgn9 > :first-child, .framer-Z2B2z .framer-1g045at > :first-child, .framer-Z2B2z .framer-1ocx7ts > :first-child, .framer-Z2B2z .framer-e04u94 > :first-child { margin-top: 0px; } .framer-Z2B2z.framer-1q9zq9j > :last-child, .framer-Z2B2z .framer-uoy2dn > :last-child, .framer-Z2B2z .framer-146285n > :last-child, .framer-Z2B2z .framer-rgp9pf > :last-child, .framer-Z2B2z .framer-1ujzx4r > :last-child, .framer-Z2B2z .framer-441odt > :last-child, .framer-Z2B2z .framer-1ckpzcy > :last-child, .framer-Z2B2z .framer-p9v5i5 > :last-child, .framer-Z2B2z .framer-1qli4q7 > :last-child, .framer-Z2B2z .framer-1uvp8x9 > :last-child, .framer-Z2B2z .framer-1l6eapi > :last-child, .framer-Z2B2z .framer-100ax8t > :last-child, .framer-Z2B2z .framer-1bdtvpa > :last-child, .framer-Z2B2z .framer-n7fyu6 > :last-child, .framer-Z2B2z .framer-8l1d20 > :last-child, .framer-Z2B2z .framer-sro0tw > :last-child, .framer-Z2B2z .framer-1bxzgn9 > :last-child, .framer-Z2B2z .framer-1g045at > :last-child, .framer-Z2B2z .framer-1ocx7ts > :last-child, .framer-Z2B2z .framer-e04u94 > :last-child { margin-bottom: 0px; } .framer-Z2B2z .framer-13y2oys > *, .framer-Z2B2z .framer-gt52rn > *, .framer-Z2B2z .framer-1om4agn > *, .framer-Z2B2z .framer-1ub7fit > *, .framer-Z2B2z .framer-2aze68 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Z2B2z .framer-13y2oys > :first-child, .framer-Z2B2z .framer-1sil1ds > :first-child, .framer-Z2B2z .framer-quf2if > :first-child, .framer-Z2B2z .framer-gt52rn > :first-child, .framer-Z2B2z .framer-1om4agn > :first-child, .framer-Z2B2z .framer-1ub7fit > :first-child, .framer-Z2B2z .framer-ybncfu > :first-child, .framer-Z2B2z .framer-1jnjcle > :first-child, .framer-Z2B2z .framer-1vsy5gs > :first-child, .framer-Z2B2z .framer-1nawdn8 > :first-child, .framer-Z2B2z .framer-2aze68 > :first-child, .framer-Z2B2z .framer-1nwfv90 > :first-child, .framer-Z2B2z .framer-1lmxfsi > :first-child, .framer-Z2B2z .framer-i05f4a > :first-child, .framer-Z2B2z .framer-1qtwnv4 > :first-child, .framer-Z2B2z .framer-1wyxvso > :first-child, .framer-Z2B2z .framer-ferrki > :first-child, .framer-Z2B2z .framer-lu571d > :first-child, .framer-Z2B2z .framer-13xtikd > :first-child, .framer-Z2B2z .framer-6ejnla > :first-child, .framer-Z2B2z .framer-1lwokwl > :first-child, .framer-Z2B2z .framer-17opybi > :first-child, .framer-Z2B2z .framer-xw9ibf > :first-child { margin-left: 0px; } .framer-Z2B2z .framer-13y2oys > :last-child, .framer-Z2B2z .framer-1sil1ds > :last-child, .framer-Z2B2z .framer-quf2if > :last-child, .framer-Z2B2z .framer-gt52rn > :last-child, .framer-Z2B2z .framer-1om4agn > :last-child, .framer-Z2B2z .framer-1ub7fit > :last-child, .framer-Z2B2z .framer-ybncfu > :last-child, .framer-Z2B2z .framer-1jnjcle > :last-child, .framer-Z2B2z .framer-1vsy5gs > :last-child, .framer-Z2B2z .framer-1nawdn8 > :last-child, .framer-Z2B2z .framer-2aze68 > :last-child, .framer-Z2B2z .framer-1nwfv90 > :last-child, .framer-Z2B2z .framer-1lmxfsi > :last-child, .framer-Z2B2z .framer-i05f4a > :last-child, .framer-Z2B2z .framer-1qtwnv4 > :last-child, .framer-Z2B2z .framer-1wyxvso > :last-child, .framer-Z2B2z .framer-ferrki > :last-child, .framer-Z2B2z .framer-lu571d > :last-child, .framer-Z2B2z .framer-13xtikd > :last-child, .framer-Z2B2z .framer-6ejnla > :last-child, .framer-Z2B2z .framer-1lwokwl > :last-child, .framer-Z2B2z .framer-17opybi > :last-child, .framer-Z2B2z .framer-xw9ibf > :last-child { margin-right: 0px; } .framer-Z2B2z .framer-1sil1ds > *, .framer-Z2B2z .framer-quf2if > *, .framer-Z2B2z .framer-ybncfu > *, .framer-Z2B2z .framer-1jnjcle > *, .framer-Z2B2z .framer-1vsy5gs > *, .framer-Z2B2z .framer-1nawdn8 > *, .framer-Z2B2z .framer-1nwfv90 > *, .framer-Z2B2z .framer-1lmxfsi > *, .framer-Z2B2z .framer-i05f4a > *, .framer-Z2B2z .framer-1qtwnv4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Z2B2z .framer-rgp9pf > *, .framer-Z2B2z .framer-1ckpzcy > *, .framer-Z2B2z .framer-p9v5i5 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Z2B2z .framer-441odt > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-Z2B2z .framer-1qli4q7 > *, .framer-Z2B2z .framer-100ax8t > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Z2B2z .framer-1uvp8x9 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Z2B2z .framer-1l6eapi > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-Z2B2z .framer-1bdtvpa > *, .framer-Z2B2z .framer-n7fyu6 > *, .framer-Z2B2z .framer-8l1d20 > *, .framer-Z2B2z .framer-sro0tw > *, .framer-Z2B2z .framer-1bxzgn9 > *, .framer-Z2B2z .framer-1g045at > *, .framer-Z2B2z .framer-1ocx7ts > *, .framer-Z2B2z .framer-e04u94 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Z2B2z .framer-1wyxvso > *, .framer-Z2B2z .framer-ferrki > *, .framer-Z2B2z .framer-lu571d > *, .framer-Z2B2z .framer-13xtikd > *, .framer-Z2B2z .framer-6ejnla > *, .framer-Z2B2z .framer-1lwokwl > *, .framer-Z2B2z .framer-17opybi > *, .framer-Z2B2z .framer-xw9ibf > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-Z2B2z.framer-1q9zq9j { width: 810px; } .framer-Z2B2z .framer-iuo3eg-container { mix-blend-mode: difference; } .framer-Z2B2z.framer-14g3oz7 { background-color: rgba(255, 255, 255, 0.8); } .framer-Z2B2z .framer-a0w4y5 { order: 0; will-change: var(--framer-will-change-effect-override, transform); } .framer-Z2B2z .framer-13y2oys { height: 200px; min-height: unset; order: 2; padding: 0px 15px 20px 15px; } .framer-Z2B2z .framer-1sil1ds { height: min-content; } .framer-Z2B2z .framer-t3052a { flex: 1 0 0px; height: 141%; width: 1px; } .framer-Z2B2z .framer-quf2if { flex: 0.6 0 0px; } .framer-Z2B2z .framer-l4bet { flex: 2 0 0px; } .framer-Z2B2z .framer-1f1le56 { flex: 2 0 0px; max-width: unset; order: 0; } .framer-Z2B2z .framer-1om4agn, .framer-Z2B2z .framer-1ub7fit { height: var(--framer-aspect-ratio-supported, 439px); } .framer-Z2B2z .framer-1jnjcle { align-content: center; align-items: center; padding: 0px 15px 0px 15px; } .framer-Z2B2z .framer-441odt { bottom: unset; position: relative; top: unset; } .framer-Z2B2z .framer-1ckpzcy { padding: 150px 15px 100px 15px; } .framer-Z2B2z .framer-1lmxfsi { gap: 4px; } .framer-Z2B2z .framer-t7dj0d { flex: 0.5 0 0px; } .framer-Z2B2z .framer-1uvp8x9 { padding: 0px 15px 0px 15px; } .framer-Z2B2z .framer-12ndb3l-container { aspect-ratio: 1.9285714285714286 / 1; height: var(--framer-aspect-ratio-supported, 420px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Z2B2z .framer-1lmxfsi { gap: 0px; } .framer-Z2B2z .framer-1lmxfsi > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-Z2B2z .framer-1lmxfsi > :first-child { margin-left: 0px; } .framer-Z2B2z .framer-1lmxfsi > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 809px) { .framer-Z2B2z.framer-1q9zq9j { width: 390px; } .framer-Z2B2z .framer-iuo3eg-container { mix-blend-mode: difference; } .framer-Z2B2z.framer-14g3oz7 { background-color: unset; } .framer-Z2B2z .framer-146285n { height: 45vh; min-height: 650px; } .framer-Z2B2z .framer-idks51 { order: 1; } .framer-Z2B2z .framer-13y2oys { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 23px; height: 193px; justify-content: flex-end; order: 2; overflow: visible; padding: 0px 15px 20px 15px; } .framer-Z2B2z .framer-1sil1ds { flex: none; height: min-content; width: 100%; } .framer-Z2B2z .framer-t3052a, .framer-Z2B2z .framer-1f1le56 { order: 0; } .framer-Z2B2z .framer-quf2if, .framer-Z2B2z .framer-t7dj0d, .framer-Z2B2z .framer-p9v5i5 { flex: none; width: 100%; } .framer-Z2B2z .framer-1om4agn { aspect-ratio: 0.6610169491525424 / 1; height: var(--framer-aspect-ratio-supported, 590px); } .framer-Z2B2z .framer-1ub7fit { aspect-ratio: unset; height: 100%; } .framer-Z2B2z .framer-1jnjcle, .framer-Z2B2z .framer-1uvp8x9 { padding: 0px 15px 0px 15px; } .framer-Z2B2z .framer-441odt { bottom: 322px; top: 322px; } .framer-Z2B2z .framer-1nawdn8 { padding: 5px 0px 2px 0px; } .framer-Z2B2z .framer-1a28457 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-Z2B2z .framer-qyqqmo { align-content: flex-start; align-items: flex-start; gap: 10px; justify-content: flex-end; } .framer-Z2B2z .framer-2aze68 { align-content: flex-start; align-items: flex-start; justify-content: flex-end; } .framer-Z2B2z .framer-1ckpzcy { padding: 42px 15px 50px 15px; } .framer-Z2B2z .framer-1lmxfsi { flex-direction: column; gap: 40px; } .framer-Z2B2z .framer-yx5tqf { max-width: unset; width: 90%; } .framer-Z2B2z .framer-i05f4a { flex: none; gap: 0px; justify-content: flex-start; width: 100%; } .framer-Z2B2z .framer-12ndb3l-container { aspect-ratio: 1.1142857142857143 / 1; height: var(--framer-aspect-ratio-supported, 350px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Z2B2z .framer-13y2oys, .framer-Z2B2z .framer-qyqqmo, .framer-Z2B2z .framer-1lmxfsi, .framer-Z2B2z .framer-i05f4a { gap: 0px; } .framer-Z2B2z .framer-13y2oys > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-Z2B2z .framer-13y2oys > :first-child, .framer-Z2B2z .framer-1lmxfsi > :first-child { margin-top: 0px; } .framer-Z2B2z .framer-13y2oys > :last-child, .framer-Z2B2z .framer-1lmxfsi > :last-child { margin-bottom: 0px; } .framer-Z2B2z .framer-qyqqmo > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Z2B2z .framer-qyqqmo > :first-child, .framer-Z2B2z .framer-i05f4a > :first-child { margin-left: 0px; } .framer-Z2B2z .framer-qyqqmo > :last-child, .framer-Z2B2z .framer-i05f4a > :last-child { margin-right: 0px; } .framer-Z2B2z .framer-1lmxfsi > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Z2B2z .framer-i05f4a > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4969\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wrCR4XOsZ\":{\"layout\":[\"fixed\",\"auto\"]},\"wSTTlVESQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"ldfg7pBFn\":{\"pattern\":\":IhjieOobt-:ldfg7pBFn\",\"name\":\"section\",\"slugs\":{\"IhjieOobt\":{\"identifier\":\"local-module:collection/islNjMppD:default\",\"provider\":\"oG8Iswf2G\"}}}}\n * @framerResponsiveScreen\n */const FrameraCjji0E7G=withCSS(Component,css,\"framer-Z2B2z\");export default FrameraCjji0E7G;FrameraCjji0E7G.displayName=\"Home\";FrameraCjji0E7G.defaultProps={height:4969,width:1200};addFonts(FrameraCjji0E7G,[{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\"}]},...NavigationNavigationFonts,...NavigationNavigationMobileFonts,...NavigationMobileOpenNavigationFonts,...NewCrsrFonts,...VideoFonts,...GlobalLineAnimationGlobalFonts,...LinksTextLinkArrowFonts,...HomeImageCarouselFonts,...JournalArticleCardFonts,...SlideshowFonts,...GlobalSectionCTAFonts,...FooterFooterFonts,...FooterEnaLogoFonts,...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\":\"FrameraCjji0E7G\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"4969\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wrCR4XOsZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wSTTlVESQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"ldfg7pBFn\\\":{\\\"pattern\\\":\\\":IhjieOobt-:ldfg7pBFn\\\",\\\"name\\\":\\\"section\\\",\\\"slugs\\\":{\\\"IhjieOobt\\\":{\\\"identifier\\\":\\\"local-module:collection/islNjMppD:default\\\",\\\"provider\\\":\\\"oG8Iswf2G\\\"}}}}\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"__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", "VideoFonts", "getFonts", "Video", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "Video", "css", "FramerlXprePENS", "withCSS", "lXprePENS_default", "addFonts", "VideoFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image1", "image2", "image3", "image4", "image5", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "G0MdvnpWj", "KvMw_weZM", "NxN1F7nUY", "YtW95x8_o", "Phh1Vrqg6", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear5atnld", "args", "onAppear1o1aawe", "onAppearfdmh3z", "onAppearawg3gn", "onAppear1cyp27p", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "css", "FramervaSeUEBOL", "withCSS", "vaSeUEBOL_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "NavigationNavigationFonts", "getFonts", "ZhbW5Y_b_default", "NavigationNavigationWithVariantAppearEffect", "withVariantAppearEffect", "NavigationNavigationMobileFonts", "Se7Sa8kPD_default", "NavigationNavigationMobileWithVariantAppearEffect", "NavigationMobileOpenNavigationFonts", "BGiZQuPOO_default", "NewCrsrFonts", "lXprePENS_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "RichTextWithFX", "withFX", "RichText", "VideoFonts", "Video", "MotionDivWithFX", "GlobalLineAnimationGlobalFonts", "QaFoemE2c_default", "GlobalLineAnimationGlobalWithVariantAppearEffect", "LinksTextLinkArrowFonts", "Po_rIXMGe_default", "HomeImageCarouselFonts", "vaSeUEBOL_default", "JournalArticleCardFonts", "vDFiPcfnz_default", "SlideshowFonts", "Slideshow", "GlobalSectionCTAFonts", "qYLQfs811_default", "FooterFooterFonts", "J0LNWxmCZ_default", "FooterEnaLogoFonts", "c9_KSBFxw_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition2", "animation3", "animation4", "animation5", "transition3", "textEffect", "textEffect1", "animation6", "transition4", "textEffect2", "textEffect3", "transition5", "animation7", "transition6", "textEffect4", "transition7", "animation8", "animation9", "transition8", "animation10", "animation11", "transition9", "transition10", "animation12", "isSet", "value", "toResponsiveImage", "animation13", "animation14", "QueryData", "query", "pageSize", "data", "useQueryData", "animation15", "transition11", "textEffect5", "addImageAlt", "image", "alt", "convertFromEnum", "activeLocale", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "transition12", "cursor", "cursor1", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "IhjieOobtoG8Iswf2G", "K40C8X2DnoG8Iswf2G", "Nhc8zHgSuoG8Iswf2G", "XhgCyJIpioG8Iswf2G", "O7geCjRSaoG8Iswf2G", "HKxK2ECMuoG8Iswf2G", "xtIP1CHRToG8Iswf2G", "idoG8Iswf2G", "W37L3rfU1y1Q33s69p", "XX0B0E_Zoy1Q33s69p", "eZGlxy1OSy1Q33s69p", "lgfzwQHyay1Q33s69p", "kDVEREqNFy1Q33s69p", "idy1Q33s69p", "W37L3rfU1ZAHE0_xZI", "XX0B0E_ZoZAHE0_xZI", "eZGlxy1OSZAHE0_xZI", "lgfzwQHyaZAHE0_xZI", "kDVEREqNFZAHE0_xZI", "idZAHE0_xZI", "W37L3rfU1lWH6Mwp6d", "XX0B0E_ZolWH6Mwp6d", "eZGlxy1OSlWH6Mwp6d", "lgfzwQHyalWH6Mwp6d", "kDVEREqNFlWH6Mwp6d", "idlWH6Mwp6d", "W37L3rfU1GAnsdT8sB", "XX0B0E_ZoGAnsdT8sB", "eZGlxy1OSGAnsdT8sB", "lgfzwQHyaGAnsdT8sB", "kDVEREqNFGAnsdT8sB", "idGAnsdT8sB", "W37L3rfU1Y8_PitLnx", "XX0B0E_ZoY8_PitLnx", "eZGlxy1OSY8_PitLnx", "lgfzwQHyaY8_PitLnx", "kDVEREqNFY8_PitLnx", "idY8_PitLnx", "W37L3rfU1jnE0N3t2v", "XX0B0E_ZojnE0N3t2v", "eZGlxy1OSjnE0N3t2v", "lgfzwQHyajnE0N3t2v", "kDVEREqNFjnE0N3t2v", "idjnE0N3t2v", "W37L3rfU1bYOP38Ijn", "XX0B0E_ZobYOP38Ijn", "eZGlxy1OSbYOP38Ijn", "lgfzwQHyabYOP38Ijn", "kDVEREqNFbYOP38Ijn", "idbYOP38Ijn", "W37L3rfU1dmDIgGXpL", "XX0B0E_ZodmDIgGXpL", "eZGlxy1OSdmDIgGXpL", "lgfzwQHyadmDIgGXpL", "kDVEREqNFdmDIgGXpL", "iddmDIgGXpL", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "EHMhKGDpT3bnx0g", "overlay", "loadMore", "args", "wCQM1JsQO1wnntms", "scopingClassNames", "cx", "isDisplayed", "elementId", "useRouteElementId", "dynamicRef", "useDynamicRefs", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "l", "PropertyOverrides2", "AnimatePresence", "Ga", "x", "ChildrenCanSuspend", "islNjMppD_default", "collection", "paginationInfo", "index", "visible1", "PathVariablesContext", "Link", "getLoadingLazyAtYPosition", "Image2", "ResolveLinks", "resolvedLinks", "MpGbquskz_default", "collection1", "paginationInfo1", "loadMore1", "index1", "collection2", "paginationInfo2", "loadMore2", "index2", "collection3", "paginationInfo3", "loadMore3", "index3", "collection4", "paginationInfo4", "loadMore4", "index4", "collection5", "paginationInfo5", "loadMore5", "index5", "collection6", "paginationInfo6", "loadMore6", "index6", "collection7", "paginationInfo7", "loadMore7", "index7", "collection8", "paginationInfo8", "loadMore8", "index8", "resolvedLinks1", "css", "FrameraCjji0E7G", "withCSS", "aCjji0E7G_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
