{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/2uGuwI0SAjH3WCd85kjq/E3Erdl6pzGlgSaTA5nad/J1Y0hFz6Q.js", "ssg:https://framerusercontent.com/modules/E1SIKXU5aSX0kDUzMiwB/kMtbrABjT95Pei37N5dG/FwGAKwnie.js", "ssg:https://framerusercontent.com/modules/9NH5n87YiG3qChh43b1J/rBqEc1deMDaFXLAQDEsa/EZb0a0T9h.js", "ssg:https://framerusercontent.com/modules/ziXK8yREtSwGeHhvrVT2/nrFCjuur7TdRcFswxrf6/lyGm6BTHS.js", "ssg:https://framerusercontent.com/modules/u1qNN16DjX6RpcDwLaNc/FeYwZjmeHxO3hcKo5FMG/GiwrK6nH0.js", "ssg:https://framerusercontent.com/modules/vJ6oHuLHTd2nsF3W8rIP/xDHdNiYPgRh3hIVZNu4N/qnOo_q8FA.js", "ssg:https://framerusercontent.com/modules/356RsMVJStCFj9tcKHYo/ZDCDeaO35uVnrwVX1rRi/yCMevNEsV.js", "ssg:https://framerusercontent.com/modules/k2mJiuHmbFEQdO73DEcd/eg6haIqUz3nwMBpQEsES/NTY9ZNXrt.js", "ssg:https://framerusercontent.com/modules/KoUVLGjhI6N4eH5fY3xy/MOYCur9cMVLZdHoh99cm/PytV7tpBU.js", "ssg:https://framerusercontent.com/modules/EAyGsrEs0kIygXqCtzHM/Mx3A8BxMjkqofvtgL9Vd/QituJVlSo.js", "ssg:https://framerusercontent.com/modules/KB9zPjqvepq9CwUHvKZv/BfS2UFY7H2EZXYsqX0jp/Y1dLoj96Z.js", "ssg:https://framerusercontent.com/modules/86Lvn5GA4oT8IZz3r1rL/tOQD4IYkZHWTWI3rsdzu/MuteToggler.js", "ssg:https://framerusercontent.com/modules/8k391oLfC8efuPpbqZyK/pmSK3NJ99fAivDT9kfG2/DznnFglBW.js", "ssg:https://framerusercontent.com/modules/5qBnxKZWoBubPth5cOZ5/3mUWmPuIro9gbbxEhREP/TtH6Q5E8O.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}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={}));// 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=\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\",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 borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",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(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\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!==null&&progress!==void 0?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!==null&&rawProgressValue!==void 0?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!==null&&startTime!==void 0?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//     !isOnCanvas\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!==null&&volume!==void 0?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!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?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\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options: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\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (be6943a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={jdGNEVNMJ:{hover:true}};const cycleOrder=[\"jdGNEVNMJ\",\"ihtDFE9T8\"];const serializationHash=\"framer-qIBmA\";const variantClassNames={ihtDFE9T8:\"framer-v-1olcdhf\",jdGNEVNMJ:\"framer-v-11i7usz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={active:\"ihtDFE9T8\",initial:\"jdGNEVNMJ\"};const getProps=({height,id,tap,width,year,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,RdjKx6J30:(_ref=year!==null&&year!==void 0?year:props.RdjKx6J30)!==null&&_ref!==void 0?_ref:\"2022\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"jdGNEVNMJ\",XZvbtQ8jS:tap!==null&&tap!==void 0?tap:props.XZvbtQ8jS};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,RdjKx6J30,XZvbtQ8jS,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jdGNEVNMJ\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTappefu0b=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(XZvbtQ8jS){const res=await XZvbtQ8jS(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-11i7usz\",className,classNames),\"data-framer-name\":\"initial\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"jdGNEVNMJ\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTappefu0b,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"jdGNEVNMJ-hover\":{\"data-framer-name\":undefined},ihtDFE9T8:{\"data-framer-name\":\"active\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(39, 49, 62, 0.5))\"},children:\"2022\"})}),className:\"framer-1maab3c\",\"data-framer-name\":\"2022\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"tK3fL4w3k\",style:{\"--extracted-r6o4lv\":\"rgba(39, 49, 62, 0.5)\",\"--framer-paragraph-spacing\":\"0px\"},text:RdjKx6J30,transformTemplate:transformTemplate1,variants:{\"jdGNEVNMJ-hover\":{\"--extracted-r6o4lv\":\"rgb(39, 49, 62)\"},ihtDFE9T8:{\"--extracted-r6o4lv\":\"rgb(39, 49, 62)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"jdGNEVNMJ-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(39, 49, 62))\"},children:\"2022\"})})},ihtDFE9T8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(39, 49, 62))\"},children:\"2022\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qIBmA.framer-f2udyi, .framer-qIBmA .framer-f2udyi { display: block; }\",\".framer-qIBmA.framer-11i7usz { cursor: pointer; height: 28px; overflow: visible; position: relative; width: 50px; }\",\".framer-qIBmA .framer-1maab3c { flex: none; height: auto; left: 50%; position: absolute; top: 50%; white-space: pre; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 28\n * @framerIntrinsicWidth 50\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ihtDFE9T8\":{\"layout\":[\"fixed\",\"fixed\"]},\"A4rpJXfdH\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"RdjKx6J30\":\"year\",\"XZvbtQ8jS\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJ1Y0hFz6Q=withCSS(Component,css,\"framer-qIBmA\");export default FramerJ1Y0hFz6Q;FramerJ1Y0hFz6Q.displayName=\"component-link\";FramerJ1Y0hFz6Q.defaultProps={height:28,width:50};addPropertyControls(FramerJ1Y0hFz6Q,{variant:{options:[\"jdGNEVNMJ\",\"ihtDFE9T8\"],optionTitles:[\"initial\",\"active\"],title:\"Variant\",type:ControlType.Enum},RdjKx6J30:{defaultValue:\"2022\",displayTextArea:false,title:\"Year\",type:ControlType.String},XZvbtQ8jS:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerJ1Y0hFz6Q,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Medium.cyrillic-ext-M4WHNGTS.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Medium.cyrillic-JVU2PANX.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Medium.greek-ext-4KCQBEIZ.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Medium.greek-DPOQGN7L.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Medium.latin-ext-J4DBSW7F.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Medium.latin-Y3IVPL46.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Medium.vietnamese-PJV76O4P.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJ1Y0hFz6Q\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ihtDFE9T8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"A4rpJXfdH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"RdjKx6J30\\\":\\\"year\\\",\\\"XZvbtQ8jS\\\":\\\"tap\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"50\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"28\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./J1Y0hFz6Q.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ComponentLink from\"https://framerusercontent.com/modules/2uGuwI0SAjH3WCd85kjq/E3Erdl6pzGlgSaTA5nad/J1Y0hFz6Q.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/9O8VJyhEyHWWuYNQiA58/Oqqmu4rTDgoNjQzWVPnl/NRFuWW4LM.js\";const ComponentLinkFonts=getFonts(ComponentLink);const cycleOrder=[\"A_FgWkH5a\",\"eQ3BubNkn\",\"HIbY89iBr\",\"znuiebn6r\"];const serializationHash=\"framer-y4MLS\";const variantClassNames={A_FgWkH5a:\"framer-v-1pw5q28\",eQ3BubNkn:\"framer-v-fsfgc\",HIbY89iBr:\"framer-v-1m89que\",znuiebn6r:\"framer-v-107oc7h\"};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 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 humanReadableEnumMap={Horizontal:\"row\",Vertical:\"column\"};const humanReadableVariantMap={\"2021\":\"znuiebn6r\",\"2022\":\"HIbY89iBr\",\"2023\":\"eQ3BubNkn\",\"2024\":\"A_FgWkH5a\"};const getProps=({direction,gapTitle,height,id,width,...props})=>{return{...props,DG2fCQxy6:humanReadableEnumMap[direction]??direction??props.DG2fCQxy6??\"row\",n6YOPHEdZ:gapTitle??props.n6YOPHEdZ??64,variant:humanReadableVariantMap[props.variant]??props.variant??\"A_FgWkH5a\"};};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,DG2fCQxy6,n6YOPHEdZ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"A_FgWkH5a\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const XZvbtQ8jSwt13i0=activeVariantCallback(async(...args)=>{setVariant(\"A_FgWkH5a\");});const XZvbtQ8jS7wt77l=activeVariantCallback(async(...args)=>{setVariant(\"eQ3BubNkn\");});const onTap7wt77l=activeVariantCallback(async(...args)=>{setVariant(\"eQ3BubNkn\");});const sharedStyleClassNames=[sharedStyle.className];const isDisplayed=()=>{if([\"HIbY89iBr\",\"znuiebn6r\"].includes(baseVariant))return false;return true;};const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed1=()=>{if(baseVariant===\"eQ3BubNkn\")return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"eQ3BubNkn\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1pw5q28\",className,classNames),\"data-framer-name\":\"2024\",layoutDependency:layoutDependency,layoutId:\"A_FgWkH5a\",ref:refBinding,style:{...style},...addPropertyOverrides({eQ3BubNkn:{\"data-framer-name\":\"2023\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wxkdfx\",\"data-border\":true,\"data-framer-name\":\"selector\",layoutDependency:layoutDependency,layoutId:\"FNugxqQWK\",style:{\"--1sioaxq\":n6YOPHEdZ,\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(39, 49, 62, 0.2)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,width:\"50px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nluhpv-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"pOLyMsRV2-container\",nodeId:\"pOLyMsRV2\",rendersWithMotion:true,scopeId:\"FwGAKwnie\",children:/*#__PURE__*/_jsx(ComponentLink,{height:\"100%\",id:\"pOLyMsRV2\",layoutId:\"pOLyMsRV2\",RdjKx6J30:\"2024\",style:{height:\"100%\",width:\"100%\"},variant:\"ihtDFE9T8\",width:\"100%\",XZvbtQ8jS:XZvbtQ8jSwt13i0,...addPropertyOverrides({eQ3BubNkn:{variant:\"jdGNEVNMJ\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,width:\"50px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-n1q6de-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"L_F1KKYfI-container\",nodeId:\"L_F1KKYfI\",rendersWithMotion:true,scopeId:\"FwGAKwnie\",children:/*#__PURE__*/_jsx(ComponentLink,{height:\"100%\",id:\"L_F1KKYfI\",layoutId:\"L_F1KKYfI\",RdjKx6J30:\"2023\",style:{height:\"100%\",width:\"100%\"},variant:\"jdGNEVNMJ\",width:\"100%\",XZvbtQ8jS:XZvbtQ8jS7wt77l,...addPropertyOverrides({eQ3BubNkn:{variant:\"ihtDFE9T8\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ru7f9s\",\"data-framer-name\":\"highlight\",layoutDependency:layoutDependency,layoutId:\"GYPe7u65A\",style:{backgroundColor:\"rgb(39, 49, 62)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6he0ol\",\"data-framer-name\":\"items\",layoutDependency:layoutDependency,layoutId:\"hkfUE83P2\",style:{\"--19f1bsq\":DG2fCQxy6===\"column\"?0:\"calc(84px / 2)\",\"--1mjjuc0\":DG2fCQxy6===\"row\"?0:\"calc(84px / 2)\",\"--s1xs55\":DG2fCQxy6},children:[isDisplayed1()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1226p6t\",\"data-framer-name\":\"card - Q4\",layoutDependency:layoutDependency,layoutId:\"x7IeTolIh\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(39, 49, 62))\"},children:\"Q4\"})}),className:\"framer-j0ujn1\",\"data-framer-name\":\"Q4\",\"data-highlight\":true,fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"EYVgZSNOd\",onTap:onTap7wt77l,style:{\"--extracted-r6o4lv\":\"rgb(39, 49, 62)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-161ypig\",\"data-framer-name\":\"links\",layoutDependency:layoutDependency,layoutId:\"tZw70bsdx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(79, 16, 16))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.globenewswire.com/news-release/2025/03/04/3036363/0/en/Beamr-Issues-Annual-CEO-Letter-to-Shareholders-Highlighting-2024-Achievements-and-2025-Strategy-Capitalizing-on-Market-Validation.html\",motionChild:true,nodeId:\"kvwYopvq3\",openInNewTab:true,scopeId:\"FwGAKwnie\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cks8ff\",\"data-styles-preset\":\"NRFuWW4LM\",children:\"Press Release\"})})})}),className:\"framer-zu9rc2\",\"data-framer-name\":\"Press Release\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"kvwYopvq3\",style:{\"--extracted-r6o4lv\":\"rgb(79, 16, 16)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Lvhsp7m4U\"},motionChild:true,nodeId:\"Lri5PuoG8\",openInNewTab:false,scopeId:\"FwGAKwnie\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cks8ff\",\"data-styles-preset\":\"NRFuWW4LM\",children:\"Financial Statements\"})})})}),className:\"framer-c9biax\",\"data-framer-name\":\"Financial Statements\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Lri5PuoG8\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y7zkzr\",\"data-framer-name\":\"card - Q3\",layoutDependency:layoutDependency,layoutId:\"LbkuXgQFo\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(39, 49, 62))\"},children:\"Q3\"})}),className:\"framer-19c27mj\",\"data-framer-name\":\"Q1\",\"data-highlight\":true,fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"SmxxvmyIu\",onTap:onTap7wt77l,style:{\"--extracted-r6o4lv\":\"rgb(39, 49, 62)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3tcylq\",\"data-framer-name\":\"links\",layoutDependency:layoutDependency,layoutId:\"VrrykxQI5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(79, 16, 16))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.globenewswire.com/news-release/2024/11/13/2980093/0/en/Beamr-Issues-Q3-2024-CEO-Letter-to-Shareholders-Focus-on-Marketing-Strategies-and-Building-the-Sales-Funnel.html\",motionChild:true,nodeId:\"MA9hGsAfK\",openInNewTab:true,scopeId:\"FwGAKwnie\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cks8ff\",\"data-styles-preset\":\"NRFuWW4LM\",children:\"Press Release\"})})})}),className:\"framer-13kvlja\",\"data-framer-name\":\"Press Release\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"MA9hGsAfK\",style:{\"--extracted-r6o4lv\":\"rgb(79, 16, 16)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Lvhsp7m4U\"},motionChild:true,nodeId:\"IUVcN99wk\",openInNewTab:false,scopeId:\"FwGAKwnie\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cks8ff\",\"data-styles-preset\":\"NRFuWW4LM\",children:\"Financial Statements\"})})})}),className:\"framer-1sj2vn7\",\"data-framer-name\":\"Financial Statements\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"IUVcN99wk\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dbzqsz\",\"data-framer-name\":\"card - Q2\",layoutDependency:layoutDependency,layoutId:\"Ra8R2YpmY\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(39, 49, 62))\"},children:\"Q2\"})}),className:\"framer-1vlqwtz\",\"data-framer-name\":\"Q1\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"QPkJxvDtF\",style:{\"--extracted-r6o4lv\":\"rgb(39, 49, 62)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b52ek1\",\"data-framer-name\":\"links\",layoutDependency:layoutDependency,layoutId:\"TU56zC6Jm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(79, 16, 16))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.globenewswire.com/news-release/2024/08/06/2924886/0/en/Beamr-in-Q2-2024-Enhancements-to-Beamr-Cloud-and-Collaborations-with-Industry-Giants.html\",motionChild:true,nodeId:\"AZMH2JITq\",openInNewTab:true,scopeId:\"FwGAKwnie\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cks8ff\",\"data-styles-preset\":\"NRFuWW4LM\",children:\"Press Release\"})})})}),className:\"framer-1t3qii8\",\"data-framer-name\":\"Press Release\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"AZMH2JITq\",style:{\"--extracted-r6o4lv\":\"rgb(79, 16, 16)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Lvhsp7m4U\"},motionChild:true,nodeId:\"VY1UaLuh9\",openInNewTab:false,scopeId:\"FwGAKwnie\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cks8ff\",\"data-styles-preset\":\"NRFuWW4LM\",children:\"Financial Statements\"})})})}),className:\"framer-1loanrp\",\"data-framer-name\":\"Financial Statements\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"VY1UaLuh9\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-83o50r\",\"data-framer-name\":\"card - Q1\",layoutDependency:layoutDependency,layoutId:\"rxVcYYWjD\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(39, 49, 62))\"},children:\"Q1\"})}),className:\"framer-49xfc0\",\"data-framer-name\":\"Q1\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"Inr69ohdx\",style:{\"--extracted-r6o4lv\":\"rgb(39, 49, 62)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10id2db\",\"data-framer-name\":\"links\",layoutDependency:layoutDependency,layoutId:\"bA3tJdiVq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(79, 16, 16))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.globenewswire.com/news-release/2024/04/12/2862095/0/en/Beamr-Issues-Q1-2024-CEO-Letter-to-Shareholders-Cloud-service-and-AI-workflows.html\",motionChild:true,nodeId:\"Cr8JjBso4\",openInNewTab:true,scopeId:\"FwGAKwnie\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cks8ff\",\"data-styles-preset\":\"NRFuWW4LM\",children:\"Press Release\"})})})}),className:\"framer-188f2jd\",\"data-framer-name\":\"Press Release\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Cr8JjBso4\",style:{\"--extracted-r6o4lv\":\"rgb(79, 16, 16)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:\"/sec-filings\",motionChild:true,nodeId:\"S4BCgsIDZ\",openInNewTab:false,scopeId:\"FwGAKwnie\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cks8ff\",\"data-styles-preset\":\"NRFuWW4LM\",children:\"Financial Statements\"})})})}),className:\"framer-cyua79\",\"data-framer-name\":\"Financial Statements\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"S4BCgsIDZ\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m2iobg\",\"data-framer-name\":\"card - Q2\",layoutDependency:layoutDependency,layoutId:\"MEfofcknA\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(39, 49, 62))\"},children:\"Q2\"})}),className:\"framer-10jcuv4\",\"data-framer-name\":\"Q2\",\"data-highlight\":true,fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"MCYAZ2kyO\",onTap:onTap7wt77l,style:{\"--extracted-r6o4lv\":\"rgb(39, 49, 62)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gn16rl\",\"data-framer-name\":\"links\",layoutDependency:layoutDependency,layoutId:\"sUsfVahV4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(79, 16, 16))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.globenewswire.com/en/news-release/2023/08/01/2715872/0/en/Beamr-Announces-First-Half-2023-Financial-Results.html\",motionChild:true,nodeId:\"wzviIMO9F\",openInNewTab:true,scopeId:\"FwGAKwnie\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cks8ff\",\"data-styles-preset\":\"NRFuWW4LM\",children:\"Press Release\"})})})}),className:\"framer-7kffz6\",\"data-framer-name\":\"Press Release\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"wzviIMO9F\",style:{\"--extracted-r6o4lv\":\"rgb(79, 16, 16)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Lvhsp7m4U\"},motionChild:true,nodeId:\"Jnkwzfxyd\",openInNewTab:false,scopeId:\"FwGAKwnie\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cks8ff\",\"data-styles-preset\":\"NRFuWW4LM\",children:\"Financial Statements\"})})})}),className:\"framer-1op7s1i\",\"data-framer-name\":\"Financial Statements\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Jnkwzfxyd\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-y4MLS.framer-wc2q6o, .framer-y4MLS .framer-wc2q6o { display: block; }\",\".framer-y4MLS.framer-1pw5q28 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: auto; padding: 0px; position: relative; width: 1240px; }\",\".framer-y4MLS .framer-1wxkdfx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: calc(max(0, var(--1sioaxq)) * 1px); height: min-content; justify-content: flex-start; overflow: auto; padding: 0px 0px 24px 16px; position: relative; width: 100%; }\",\".framer-y4MLS .framer-1nluhpv-container, .framer-y4MLS .framer-n1q6de-container { flex: none; height: 28px; position: relative; width: 50px; }\",\".framer-y4MLS .framer-ru7f9s { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; width: 83px; z-index: 1; }\",\".framer-y4MLS .framer-6he0ol { align-content: center; align-items: center; display: flex; flex: none; flex-direction: var(--s1xs55); flex-wrap: nowrap; gap: 84px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-y4MLS .framer-1226p6t, .framer-y4MLS .framer-y7zkzr, .framer-y4MLS .framer-dbzqsz, .framer-y4MLS .framer-83o50r, .framer-y4MLS .framer-1m2iobg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 32px; position: relative; width: min-content; }\",\".framer-y4MLS .framer-j0ujn1, .framer-y4MLS .framer-19c27mj, .framer-y4MLS .framer-10jcuv4 { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-y4MLS .framer-161ypig, .framer-y4MLS .framer-3tcylq, .framer-y4MLS .framer-1b52ek1, .framer-y4MLS .framer-10id2db, .framer-y4MLS .framer-1gn16rl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-y4MLS .framer-zu9rc2, .framer-y4MLS .framer-c9biax, .framer-y4MLS .framer-13kvlja, .framer-y4MLS .framer-1sj2vn7, .framer-y4MLS .framer-1vlqwtz, .framer-y4MLS .framer-1t3qii8, .framer-y4MLS .framer-1loanrp, .framer-y4MLS .framer-49xfc0, .framer-y4MLS .framer-188f2jd, .framer-y4MLS .framer-cyua79, .framer-y4MLS .framer-7kffz6, .framer-y4MLS .framer-1op7s1i { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-y4MLS.framer-1pw5q28, .framer-y4MLS .framer-1wxkdfx, .framer-y4MLS .framer-ru7f9s, .framer-y4MLS .framer-6he0ol, .framer-y4MLS .framer-1226p6t, .framer-y4MLS .framer-161ypig, .framer-y4MLS .framer-y7zkzr, .framer-y4MLS .framer-3tcylq, .framer-y4MLS .framer-dbzqsz, .framer-y4MLS .framer-1b52ek1, .framer-y4MLS .framer-83o50r, .framer-y4MLS .framer-10id2db, .framer-y4MLS .framer-1m2iobg, .framer-y4MLS .framer-1gn16rl { gap: 0px; } .framer-y4MLS.framer-1pw5q28 > *, .framer-y4MLS .framer-1226p6t > *, .framer-y4MLS .framer-y7zkzr > *, .framer-y4MLS .framer-dbzqsz > *, .framer-y4MLS .framer-83o50r > *, .framer-y4MLS .framer-1m2iobg > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-y4MLS.framer-1pw5q28 > :first-child, .framer-y4MLS .framer-1226p6t > :first-child, .framer-y4MLS .framer-161ypig > :first-child, .framer-y4MLS .framer-y7zkzr > :first-child, .framer-y4MLS .framer-3tcylq > :first-child, .framer-y4MLS .framer-dbzqsz > :first-child, .framer-y4MLS .framer-1b52ek1 > :first-child, .framer-y4MLS .framer-83o50r > :first-child, .framer-y4MLS .framer-10id2db > :first-child, .framer-y4MLS .framer-1m2iobg > :first-child, .framer-y4MLS .framer-1gn16rl > :first-child { margin-top: 0px; } .framer-y4MLS.framer-1pw5q28 > :last-child, .framer-y4MLS .framer-1226p6t > :last-child, .framer-y4MLS .framer-161ypig > :last-child, .framer-y4MLS .framer-y7zkzr > :last-child, .framer-y4MLS .framer-3tcylq > :last-child, .framer-y4MLS .framer-dbzqsz > :last-child, .framer-y4MLS .framer-1b52ek1 > :last-child, .framer-y4MLS .framer-83o50r > :last-child, .framer-y4MLS .framer-10id2db > :last-child, .framer-y4MLS .framer-1m2iobg > :last-child, .framer-y4MLS .framer-1gn16rl > :last-child { margin-bottom: 0px; } .framer-y4MLS .framer-1wxkdfx > * { margin: 0px; margin-left: calc(calc(max(0, var(--1sioaxq)) * 1px) / 2); margin-right: calc(calc(max(0, var(--1sioaxq)) * 1px) / 2); } .framer-y4MLS .framer-1wxkdfx > :first-child, .framer-y4MLS .framer-ru7f9s > :first-child { margin-left: 0px; } .framer-y4MLS .framer-1wxkdfx > :last-child, .framer-y4MLS .framer-ru7f9s > :last-child { margin-right: 0px; } .framer-y4MLS .framer-ru7f9s > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-y4MLS .framer-6he0ol > * { margin-bottom: var(--1mjjuc0); margin-left: var(--19f1bsq); margin-right: var(--19f1bsq); margin-top: var(--1mjjuc0); } .framer-y4MLS .framer-6he0ol > :first-child { margin-left: 0px; margin-top: 0px; } .framer-y4MLS .framer-6he0ol > :last-child { margin-bottom: 0px; margin-right: 0px; } .framer-y4MLS .framer-161ypig > *, .framer-y4MLS .framer-3tcylq > *, .framer-y4MLS .framer-1b52ek1 > *, .framer-y4MLS .framer-10id2db > *, .framer-y4MLS .framer-1gn16rl > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-y4MLS.framer-v-fsfgc .framer-ru7f9s { left: 114px; }\",\".framer-y4MLS.framer-v-fsfgc .framer-y7zkzr { order: 4; }\",\".framer-y4MLS.framer-v-fsfgc .framer-1m2iobg { order: 5; }\",...sharedStyle.css,'.framer-y4MLS[data-border=\"true\"]::after, .framer-y4MLS [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 340.5\n * @framerIntrinsicWidth 1240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"eQ3BubNkn\":{\"layout\":[\"fixed\",\"auto\"]},\"HIbY89iBr\":{\"layout\":[\"fixed\",\"auto\"]},\"znuiebn6r\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"DG2fCQxy6\":\"direction\",\"n6YOPHEdZ\":\"gapTitle\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFwGAKwnie=withCSS(Component,css,\"framer-y4MLS\");export default FramerFwGAKwnie;FramerFwGAKwnie.displayName=\"financial-data 2\";FramerFwGAKwnie.defaultProps={height:340.5,width:1240};addPropertyControls(FramerFwGAKwnie,{variant:{options:[\"A_FgWkH5a\",\"eQ3BubNkn\",\"HIbY89iBr\",\"znuiebn6r\"],optionTitles:[\"2024\",\"2023\",\"2022\",\"2021\"],title:\"Variant\",type:ControlType.Enum},DG2fCQxy6:{defaultValue:\"row\",displaySegmentedControl:true,optionIcons:[\"direction-horizontal\",\"direction-vertical\"],options:[\"row\",\"column\"],optionTitles:[\"Horizontal\",\"Vertical\"],title:\"Direction\",type:ControlType.Enum},n6YOPHEdZ:{defaultValue:64,min:0,title:\"Gap-title\",type:ControlType.Number}});addFonts(FramerFwGAKwnie,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...ComponentLinkFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFwGAKwnie\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"DG2fCQxy6\\\":\\\"direction\\\",\\\"n6YOPHEdZ\\\":\\\"gapTitle\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eQ3BubNkn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HIbY89iBr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"znuiebn6r\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"340.5\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1240\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FwGAKwnie.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"Inter-SemiBold\"]);export const fonts=[];export const css=['.framer-zzw5o .framer-styles-preset-1ivuopm:not(.rich-text-wrapper), .framer-zzw5o .framer-styles-preset-1ivuopm.rich-text-wrapper p { --framer-font-family: \"Inter-SemiBold\", \"Inter\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: -0.3px; --framer-line-height: 1.7em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-fe24a84b-b018-47cf-9fb6-8baff8a48c86, #3b4147); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-zzw5o\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/9NH5n87YiG3qChh43b1J/rBqEc1deMDaFXLAQDEsa/EZb0a0T9h.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/omSF34vQWImDe7kbAzuz/Pi9vOZ7ZZuEG4UvHOq5T/IX0wyLhQC.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/atnzub8UhcJBXV8Ur3HR/kVo4HlNprXET9LqaBb0T/nPwdVqnve.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/bcTL9xtuJLCWcWd4Tuth/UQeTlFs1OkE7aZ9t3Lmr/WkfHcav9C.js\";const cycleOrder=[\"qlDYesXXM\",\"UzL1VpO2N\",\"d3XjiWOqG\",\"PyX7GMh2D\",\"wtYu6PXOI\",\"XRHiCrFx3\"];const serializationHash=\"framer-vN6d9\";const variantClassNames={d3XjiWOqG:\"framer-v-5vpmmt\",PyX7GMh2D:\"framer-v-1r46wyf\",qlDYesXXM:\"framer-v-i7nwf2\",UzL1VpO2N:\"framer-v-wm4htw\",wtYu6PXOI:\"framer-v-5z9kzw\",XRHiCrFx3:\"framer-v-18vlbd6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Feature - Primary - 18 - Center\":\"wtYu6PXOI\",\"Feature - Primary - 18\":\"PyX7GMh2D\",\"Feature - Primary - Center\":\"UzL1VpO2N\",\"Feature - Primary\":\"qlDYesXXM\",\"Feature - Secondary  - Small\":\"XRHiCrFx3\",\"Feature - Secondary\":\"d3XjiWOqG\"};const getProps=({height,id,image,paragraph,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,FdjxzEO46:(_ref=image!==null&&image!==void 0?image:props.FdjxzEO46)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/J8u76DK5JVaSjJkLcsebRMyA.png\"},lrvdaqUbf:(_ref1=paragraph!==null&&paragraph!==void 0?paragraph:props.lrvdaqUbf)!==null&&_ref1!==void 0?_ref1:\"Use and re-use tons of responsive sections too a main create the perfect layout. Sections are firmly of organised into layers.\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"qlDYesXXM\",Xsxi0csWQ:(_ref3=title!==null&&title!==void 0?title:props.Xsxi0csWQ)!==null&&_ref3!==void 0?_ref3:\"Manage Spending\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,FdjxzEO46,Xsxi0csWQ,lrvdaqUbf,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qlDYesXXM\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-i7nwf2\",className,classNames),\"data-framer-name\":\"Feature - Primary\",layoutDependency:layoutDependency,layoutId:\"qlDYesXXM\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({d3XjiWOqG:{\"data-framer-name\":\"Feature - Secondary\"},PyX7GMh2D:{\"data-framer-name\":\"Feature - Primary - 18\"},UzL1VpO2N:{\"data-framer-name\":\"Feature - Primary - Center\"},wtYu6PXOI:{\"data-framer-name\":\"Feature - Primary - 18 - Center\"},XRHiCrFx3:{\"data-framer-name\":\"Feature - Secondary  - Small\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||189)-0-240.2)/2+0+0)),sizes:\"51px\",...toResponsiveImage(FdjxzEO46)},className:\"framer-3h0la2\",\"data-framer-name\":\"icon\",layoutDependency:layoutDependency,layoutId:\"jV5aJhYQQ\",...addPropertyOverrides({d3XjiWOqG:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),sizes:\"40px\",...toResponsiveImage(FdjxzEO46)}},PyX7GMh2D:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||248.6)-0-279.2)/2+0+0)),sizes:\"60px\",...toResponsiveImage(FdjxzEO46),...{positionX:\"center\",positionY:\"center\"}}},wtYu6PXOI:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||234.6)-0-265.2)/2+0+0)),sizes:\"51px\",...toResponsiveImage(FdjxzEO46)}},XRHiCrFx3:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),sizes:\"40px\",...toResponsiveImage(FdjxzEO46),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e5vg3p\",\"data-framer-name\":\"text\",layoutDependency:layoutDependency,layoutId:\"gA8IPnWy5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1eb6xhj\",\"data-styles-preset\":\"IX0wyLhQC\",children:\"Manage Spending\"})}),className:\"framer-1nrm1ot\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uTtquFEzC\",text:Xsxi0csWQ,variants:{XRHiCrFx3:{\"--extracted-r6o4lv\":\"var(--token-875f055a-13f2-49b4-8020-6c2b0d9a0d0e, rgb(12, 21, 35)) \"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UzL1VpO2N:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1eb6xhj\",\"data-styles-preset\":\"IX0wyLhQC\",style:{\"--framer-text-alignment\":\"center\"},children:\"Manage Spending\"})})},wtYu6PXOI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1eb6xhj\",\"data-styles-preset\":\"IX0wyLhQC\",style:{\"--framer-text-alignment\":\"center\"},children:\"Manage Spending\"})})},XRHiCrFx3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ivuopm\",\"data-styles-preset\":\"EZb0a0T9h\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-875f055a-13f2-49b4-8020-6c2b0d9a0d0e, rgb(12, 21, 35)) )\"},children:\"Manage Spending\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ctvnnl\",\"data-styles-preset\":\"nPwdVqnve\",children:\"Use and re-use tons of responsive sections too a main create the perfect layout. Sections are firmly of organised into layers.\"})}),className:\"framer-1u0ezzv\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NPGPgoqxK\",text:lrvdaqUbf,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({d3XjiWOqG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15ql1dd\",\"data-styles-preset\":\"WkfHcav9C\",children:\"Use and re-use tons of responsive sections too a main create the perfect layout. Sections are firmly of organised into layers.\"})})},PyX7GMh2D:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15ql1dd\",\"data-styles-preset\":\"WkfHcav9C\",children:\"Use and re-use tons of responsive sections too a main create the perfect layout. Sections are firmly of organised into layers.\"})})},UzL1VpO2N:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ctvnnl\",\"data-styles-preset\":\"nPwdVqnve\",style:{\"--framer-text-alignment\":\"center\"},children:\"Use and re-use tons of responsive sections too a main create the perfect layout. Sections are firmly of organised into layers.\"})})},wtYu6PXOI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15ql1dd\",\"data-styles-preset\":\"WkfHcav9C\",style:{\"--framer-text-alignment\":\"center\"},children:\"Use and re-use tons of responsive sections too a main create the perfect layout. Sections are firmly of organised into layers.\"})})}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vN6d9.framer-1dl8ybw, .framer-vN6d9 .framer-1dl8ybw { display: block; }\",\".framer-vN6d9.framer-i7nwf2 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 349px; }\",\".framer-vN6d9 .framer-3h0la2 { flex: none; height: 46px; overflow: visible; position: relative; width: 51px; }\",\".framer-vN6d9 .framer-e5vg3p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vN6d9 .framer-1nrm1ot { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-vN6d9 .framer-1u0ezzv { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vN6d9.framer-i7nwf2, .framer-vN6d9 .framer-e5vg3p { gap: 0px; } .framer-vN6d9.framer-i7nwf2 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-vN6d9.framer-i7nwf2 > :first-child, .framer-vN6d9 .framer-e5vg3p > :first-child { margin-top: 0px; } .framer-vN6d9.framer-i7nwf2 > :last-child, .framer-vN6d9 .framer-e5vg3p > :last-child { margin-bottom: 0px; } .framer-vN6d9 .framer-e5vg3p > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-vN6d9.framer-v-wm4htw.framer-i7nwf2, .framer-vN6d9.framer-v-wm4htw .framer-e5vg3p, .framer-vN6d9.framer-v-5z9kzw.framer-i7nwf2, .framer-vN6d9.framer-v-5z9kzw .framer-e5vg3p { align-content: center; align-items: center; }\",\".framer-vN6d9.framer-v-5vpmmt.framer-i7nwf2, .framer-vN6d9.framer-v-18vlbd6.framer-i7nwf2 { flex-direction: row; gap: 16px; justify-content: flex-start; width: 400px; }\",\".framer-vN6d9.framer-v-5vpmmt .framer-3h0la2, .framer-vN6d9.framer-v-18vlbd6 .framer-3h0la2 { height: 40px; width: 40px; }\",\".framer-vN6d9.framer-v-5vpmmt .framer-e5vg3p, .framer-vN6d9.framer-v-18vlbd6 .framer-e5vg3p { flex: 1 0 0px; width: 1px; }\",\".framer-vN6d9.framer-v-5vpmmt .framer-1nrm1ot { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vN6d9.framer-v-5vpmmt.framer-i7nwf2 { gap: 0px; } .framer-vN6d9.framer-v-5vpmmt.framer-i7nwf2 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-vN6d9.framer-v-5vpmmt.framer-i7nwf2 > :first-child { margin-left: 0px; } .framer-vN6d9.framer-v-5vpmmt.framer-i7nwf2 > :last-child { margin-right: 0px; } }\",\".framer-vN6d9.framer-v-1r46wyf .framer-3h0la2 { height: 60px; width: 60px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vN6d9.framer-v-18vlbd6.framer-i7nwf2 { gap: 0px; } .framer-vN6d9.framer-v-18vlbd6.framer-i7nwf2 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-vN6d9.framer-v-18vlbd6.framer-i7nwf2 > :first-child { margin-left: 0px; } .framer-vN6d9.framer-v-18vlbd6.framer-i7nwf2 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 189\n * @framerIntrinsicWidth 349\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UzL1VpO2N\":{\"layout\":[\"fixed\",\"auto\"]},\"d3XjiWOqG\":{\"layout\":[\"fixed\",\"auto\"]},\"PyX7GMh2D\":{\"layout\":[\"fixed\",\"auto\"]},\"wtYu6PXOI\":{\"layout\":[\"fixed\",\"auto\"]},\"XRHiCrFx3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"FdjxzEO46\":\"image\",\"Xsxi0csWQ\":\"title\",\"lrvdaqUbf\":\"paragraph\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerlyGm6BTHS=withCSS(Component,css,\"framer-vN6d9\");export default FramerlyGm6BTHS;FramerlyGm6BTHS.displayName=\"Feature Widget\";FramerlyGm6BTHS.defaultProps={height:189,width:349};addPropertyControls(FramerlyGm6BTHS,{variant:{options:[\"qlDYesXXM\",\"UzL1VpO2N\",\"d3XjiWOqG\",\"PyX7GMh2D\",\"wtYu6PXOI\",\"XRHiCrFx3\"],optionTitles:[\"Feature - Primary\",\"Feature - Primary - Center\",\"Feature - Secondary\",\"Feature - Primary - 18\",\"Feature - Primary - 18 - Center\",\"Feature - Secondary  - Small\"],title:\"Variant\",type:ControlType.Enum},FdjxzEO46:{__defaultAssetReference:\"data:framer/asset-reference,J8u76DK5JVaSjJkLcsebRMyA.png?originalFilename=icon.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},Xsxi0csWQ:{defaultValue:\"Manage Spending\",displayTextArea:false,title:\"Title\",type:ControlType.String},lrvdaqUbf:{defaultValue:\"Use and re-use tons of responsive sections too a main create the perfect layout. Sections are firmly of organised into layers.\",displayTextArea:false,title:\"Paragraph\",type:ControlType.String}});addFonts(FramerlyGm6BTHS,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlyGm6BTHS\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"349\",\"framerVariables\":\"{\\\"FdjxzEO46\\\":\\\"image\\\",\\\"Xsxi0csWQ\\\":\\\"title\\\",\\\"lrvdaqUbf\\\":\\\"paragraph\\\"}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"189\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UzL1VpO2N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"d3XjiWOqG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PyX7GMh2D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wtYu6PXOI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XRHiCrFx3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./lyGm6BTHS.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"Inter-Medium\"]);export const fonts=[];export const css=['.framer-AdnFy .framer-styles-preset-28zb33:not(.rich-text-wrapper), .framer-AdnFy .framer-styles-preset-28zb33.rich-text-wrapper p { --framer-font-family: \"Inter-Medium\", \"Inter\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: -0.0166667em; --framer-line-height: 170%; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #0c1523; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-AdnFy\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"Inter\"]);export const fonts=[];export const css=['.framer-GsYSR .framer-styles-preset-19craec:not(.rich-text-wrapper), .framer-GsYSR .framer-styles-preset-19craec.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.3px; --framer-line-height: 160%; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #3b4147; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-GsYSR\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"Inter-SemiBold\"]);export const fonts=[];export const css=['.framer-h7nyM .framer-styles-preset-b8qye6:not(.rich-text-wrapper), .framer-h7nyM .framer-styles-preset-b8qye6.rich-text-wrapper p { --framer-font-family: \"Inter-SemiBold\", \"Inter\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: -0.3px; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #0c1523; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-h7nyM\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (64bc75b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/u1qNN16DjX6RpcDwLaNc/FeYwZjmeHxO3hcKo5FMG/GiwrK6nH0.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/vJ6oHuLHTd2nsF3W8rIP/xDHdNiYPgRh3hIVZNu4N/qnOo_q8FA.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/356RsMVJStCFj9tcKHYo/ZDCDeaO35uVnrwVX1rRi/yCMevNEsV.js\";const enabledGestures={OS37_IEGA:{hover:true}};const cycleOrder=[\"OS37_IEGA\",\"l25xIZZh2\"];const serializationHash=\"framer-L2Dr7\";const variantClassNames={l25xIZZh2:\"framer-v-13kie93\",OS37_IEGA:\"framer-v-lnnntq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Default - Active\":\"l25xIZZh2\",Default:\"OS37_IEGA\"};const getProps=({background,height,id,image,name1,paragraph,position,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4,_ref5;return{...props,bHt_tDIVZ:(_ref=background!==null&&background!==void 0?background:props.bHt_tDIVZ)!==null&&_ref!==void 0?_ref:\"rgb(255, 255, 255)\",CR78IoPpo:(_ref1=paragraph!==null&&paragraph!==void 0?paragraph:props.CR78IoPpo)!==null&&_ref1!==void 0?_ref1:\"\u201CI just simply love tools that make my life easier! I have everything that I need in one place, and that allows our team to be more organized and user-oriented.\u201D\",ERqdrwcnL:(_ref2=position!==null&&position!==void 0?position:props.ERqdrwcnL)!==null&&_ref2!==void 0?_ref2:\"Project Manager at Microsoft\",ufwcfNf8y:(_ref3=name1!==null&&name1!==void 0?name1:props.ufwcfNf8y)!==null&&_ref3!==void 0?_ref3:\"Jenny Wilson\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"OS37_IEGA\",yZUdPskf7:(_ref5=image!==null&&image!==void 0?image:props.yZUdPskf7)!==null&&_ref5!==void 0?_ref5:{src:\"https://framerusercontent.com/images/fwFdlQz8VikOtNRB39948fNV8As.png\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,yZUdPskf7,CR78IoPpo,ufwcfNf8y,ERqdrwcnL,bHt_tDIVZ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OS37_IEGA\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-lnnntq\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"OS37_IEGA\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:bHt_tDIVZ,borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 34px 104px 0px rgba(18, 21, 27, 0)\",...style},variants:{\"OS37_IEGA-hover\":{boxShadow:\"0px 34px 104px 0px rgba(18, 21, 27, 0.1)\"},l25xIZZh2:{boxShadow:\"0px 34px 104px 0px rgba(18, 21, 27, 0.1)\"}},...addPropertyOverrides({\"OS37_IEGA-hover\":{\"data-framer-name\":undefined},l25xIZZh2:{\"data-framer-name\":\"Default - Active\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-717whn\",layoutDependency:layoutDependency,layoutId:\"LmRxPUypG\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+40+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||453)-70-473)/2+0+0)+0+0),sizes:\"300px\",...toResponsiveImage(yZUdPskf7),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-owwso3\",\"data-framer-name\":\"User Image\",layoutDependency:layoutDependency,layoutId:\"MUEbpHRjn\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-28zb33\",\"data-styles-preset\":\"GiwrK6nH0\",children:\"\u201CI just simply love tools that make my life easier! I have everything that I need in one place, and that allows our team to be more organized and user-oriented.\u201D\"})}),className:\"framer-16f71xx\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eS9QdgJcM\",text:CR78IoPpo,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-umsm9e\",\"data-framer-name\":\"User Info\",layoutDependency:layoutDependency,layoutId:\"NyMa2hSUt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b8qye6\",\"data-styles-preset\":\"yCMevNEsV\",children:\"Jenny Wilson\"})}),className:\"framer-1mc73u0\",\"data-framer-name\":\"User Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bP_ofACEL\",text:ufwcfNf8y,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19craec\",\"data-styles-preset\":\"qnOo_q8FA\",children:\"Project Manager at Microsoft\"})}),className:\"framer-1t51n9c\",\"data-framer-name\":\"User Position\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"u9Yu2WBuW\",text:ERqdrwcnL,verticalAlignment:\"center\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-L2Dr7.framer-1e42io2, .framer-L2Dr7 .framer-1e42io2 { display: block; }\",\".framer-L2Dr7.framer-lnnntq { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 22px 30px 22px; position: relative; width: 362px; will-change: var(--framer-will-change-override, transform); }\",\".framer-L2Dr7 .framer-717whn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L2Dr7 .framer-owwso3 { flex: none; height: 120px; position: relative; width: 300px; }\",\".framer-L2Dr7 .framer-16f71xx, .framer-L2Dr7 .framer-1t51n9c { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-L2Dr7 .framer-umsm9e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L2Dr7 .framer-1mc73u0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-L2Dr7.framer-lnnntq, .framer-L2Dr7 .framer-717whn, .framer-L2Dr7 .framer-umsm9e { gap: 0px; } .framer-L2Dr7.framer-lnnntq > *, .framer-L2Dr7 .framer-717whn > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-L2Dr7.framer-lnnntq > :first-child, .framer-L2Dr7 .framer-717whn > :first-child, .framer-L2Dr7 .framer-umsm9e > :first-child { margin-top: 0px; } .framer-L2Dr7.framer-lnnntq > :last-child, .framer-L2Dr7 .framer-717whn > :last-child, .framer-L2Dr7 .framer-umsm9e > :last-child { margin-bottom: 0px; } .framer-L2Dr7 .framer-umsm9e > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }\",\".framer-L2Dr7.framer-v-13kie93.framer-lnnntq { cursor: unset; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 453\n * @framerIntrinsicWidth 362\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"l25xIZZh2\":{\"layout\":[\"fixed\",\"auto\"]},\"rrzP3mFHn\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"yZUdPskf7\":\"image\",\"CR78IoPpo\":\"paragraph\",\"ufwcfNf8y\":\"name1\",\"ERqdrwcnL\":\"position\",\"bHt_tDIVZ\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNTY9ZNXrt=withCSS(Component,css,\"framer-L2Dr7\");export default FramerNTY9ZNXrt;FramerNTY9ZNXrt.displayName=\"Testimonial Card\";FramerNTY9ZNXrt.defaultProps={height:453,width:362};addPropertyControls(FramerNTY9ZNXrt,{variant:{options:[\"OS37_IEGA\",\"l25xIZZh2\"],optionTitles:[\"Default\",\"Default - Active\"],title:\"Variant\",type:ControlType.Enum},yZUdPskf7:{__defaultAssetReference:\"data:framer/asset-reference,fwFdlQz8VikOtNRB39948fNV8As.png?originalFilename=Ellipse+14.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},CR78IoPpo:{defaultValue:\"\u201CI just simply love tools that make my life easier! I have everything that I need in one place, and that allows our team to be more organized and user-oriented.\u201D\",displayTextArea:true,placeholder:\"\",title:\"Paragraph\",type:ControlType.String},ufwcfNf8y:{defaultValue:\"Jenny Wilson\",displayTextArea:false,title:\"Name\",type:ControlType.String},ERqdrwcnL:{defaultValue:\"Project Manager at Microsoft\",displayTextArea:false,title:\"Position\",type:ControlType.String},bHt_tDIVZ:{defaultValue:\"rgb(255, 255, 255)\",title:\"Background\",type:ControlType.Color}});addFonts(FramerNTY9ZNXrt,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNTY9ZNXrt\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"362\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"yZUdPskf7\\\":\\\"image\\\",\\\"CR78IoPpo\\\":\\\"paragraph\\\",\\\"ufwcfNf8y\\\":\\\"name1\\\",\\\"ERqdrwcnL\\\":\\\"position\\\",\\\"bHt_tDIVZ\\\":\\\"background\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"l25xIZZh2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rrzP3mFHn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"453\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NTY9ZNXrt.map", "// Generated by Framer (cf240c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={h7GL2XQ5N:{hover:true}};const serializationHash=\"framer-hmDmV\";const variantClassNames={h7GL2XQ5N:\"framer-v-lk7ry6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,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!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({date,height,id,image,link2,text,title,width,...props})=>{var _ref,_ref1,_ref2;return{...props,cK4sz_f39:(_ref=title!==null&&title!==void 0?title:props.cK4sz_f39)!==null&&_ref!==void 0?_ref:\"Read more ->\",d5YjiVwZi:image!==null&&image!==void 0?image:props.d5YjiVwZi,Fe5LrJyMx:(_ref1=date!==null&&date!==void 0?date:props.Fe5LrJyMx)!==null&&_ref1!==void 0?_ref1:\"October 17, 2023\",Pds0K7GA1:link2!==null&&link2!==void 0?link2:props.Pds0K7GA1,vrfGFy6oc:(_ref2=text!==null&&text!==void 0?text:props.vrfGFy6oc)!==null&&_ref2!==void 0?_ref2:\"add headline here\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,d5YjiVwZi,Fe5LrJyMx,vrfGFy6oc,cK4sz_f39,Pds0K7GA1,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"h7GL2XQ5N\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-lk7ry6\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"h7GL2XQ5N\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-a6796134-ead1-4854-80f4-027e3d25f32f, rgb(255, 255, 255))\",...style},variants:{\"h7GL2XQ5N-hover\":{backgroundColor:\"rgb(243, 247, 250)\"}},...addPropertyOverrides({\"h7GL2XQ5N-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:Pds0K7GA1,openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-uapkv6 framer-1nean1h\",\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"tbinzOJo8\",style:{backgroundColor:\"var(--token-a6796134-ead1-4854-80f4-027e3d25f32f, rgb(255, 255, 255))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||334)-0-334)/2+0+0)+8+0),sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 16px)`,...toResponsiveImage(d5YjiVwZi),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1lag9t4\",\"data-framer-name\":\"img\",layoutDependency:layoutDependency,layoutId:\"z6YybzOkH\",style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},...addPropertyOverrides({\"h7GL2XQ5N-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||334)-0-334)/2+0+0)+8+0),sizes:\"350px\",...toResponsiveImage(d5YjiVwZi),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hcl1gw\",\"data-framer-name\":\"content\",layoutDependency:layoutDependency,layoutId:\"eTvYvAES8\",style:{backgroundColor:\"var(--token-a6796134-ead1-4854-80f4-027e3d25f32f, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e2x90a\",\"data-framer-name\":\"text\",layoutDependency:layoutDependency,layoutId:\"jBlWLHTcH\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(96, 104, 114, 0.7))\"},children:\"October 17, 2023\"})}),className:\"framer-28putp\",\"data-framer-name\":\"GlobeNewswire \u2022 October 17, 2023\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Gxv3oPE7v\",style:{\"--extracted-r6o4lv\":\"rgba(96, 104, 114, 0.7)\",\"--framer-paragraph-spacing\":\"0px\"},text:Fe5LrJyMx,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(39, 49, 62))\"},children:\"Beamr Issues Q3-2023 CEO Letter to Shareholders\"})}),className:\"framer-1livet2\",\"data-framer-name\":\"Beamr Issues Q3-2023 CEO Letter to Shareholders\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"fxk6HvVxk\",style:{\"--extracted-r6o4lv\":\"rgb(39, 49, 62)\",\"--framer-paragraph-spacing\":\"0px\"},text:vrfGFy6oc,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13ce4er\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"eNrTSUMMs\",style:{borderBottomLeftRadius:99,borderBottomRightRadius:99,borderTopLeftRadius:99,borderTopRightRadius:99},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 153, 255))\"},children:\"Read more ->\"})}),className:\"framer-mqsmk5\",\"data-framer-name\":\"Read more ->\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Tcv0s7wxt\",style:{\"--extracted-r6o4lv\":\"rgb(0, 153, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:cK4sz_f39,verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hmDmV.framer-1nean1h, .framer-hmDmV .framer-1nean1h { display: block; }\",\".framer-hmDmV.framer-lk7ry6 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 366px; }\",\".framer-hmDmV .framer-uapkv6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 334px; justify-content: center; overflow: hidden; padding: 8px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-hmDmV .framer-1lag9t4 { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-hmDmV .framer-1hcl1gw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 12px 16px 12px 16px; position: relative; width: 100%; }\",\".framer-hmDmV .framer-1e2x90a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hmDmV .framer-28putp { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 319px; word-break: break-word; word-wrap: break-word; }\",\".framer-hmDmV .framer-1livet2 { flex: none; height: auto; max-height: 56px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hmDmV .framer-13ce4er { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-hmDmV .framer-mqsmk5 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hmDmV.framer-lk7ry6, .framer-hmDmV .framer-uapkv6, .framer-hmDmV .framer-1hcl1gw, .framer-hmDmV .framer-1e2x90a, .framer-hmDmV .framer-13ce4er { gap: 0px; } .framer-hmDmV.framer-lk7ry6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-hmDmV.framer-lk7ry6 > :first-child, .framer-hmDmV .framer-uapkv6 > :first-child, .framer-hmDmV .framer-1hcl1gw > :first-child, .framer-hmDmV .framer-1e2x90a > :first-child { margin-top: 0px; } .framer-hmDmV.framer-lk7ry6 > :last-child, .framer-hmDmV .framer-uapkv6 > :last-child, .framer-hmDmV .framer-1hcl1gw > :last-child, .framer-hmDmV .framer-1e2x90a > :last-child { margin-bottom: 0px; } .framer-hmDmV .framer-uapkv6 > *, .framer-hmDmV .framer-1hcl1gw > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-hmDmV .framer-1e2x90a > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-hmDmV .framer-13ce4er > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-hmDmV .framer-13ce4er > :first-child { margin-left: 0px; } .framer-hmDmV .framer-13ce4er > :last-child { margin-right: 0px; } }\",\".framer-hmDmV.framer-v-lk7ry6.hover.framer-lk7ry6 { width: min-content; }\",\".framer-hmDmV.framer-v-lk7ry6.hover .framer-uapkv6 { width: 366px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 334\n * @framerIntrinsicWidth 366\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nmSLjNbUE\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"d5YjiVwZi\":\"image\",\"Fe5LrJyMx\":\"date\",\"vrfGFy6oc\":\"text\",\"cK4sz_f39\":\"title\",\"Pds0K7GA1\":\"link2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPytV7tpBU=withCSS(Component,css,\"framer-hmDmV\");export default FramerPytV7tpBU;FramerPytV7tpBU.displayName=\"Card Press\";FramerPytV7tpBU.defaultProps={height:334,width:366};addPropertyControls(FramerPytV7tpBU,{d5YjiVwZi:{description:\"\",title:\"Image\",type:ControlType.ResponsiveImage},Fe5LrJyMx:{defaultValue:\"October 17, 2023\",description:\"\",displayTextArea:false,placeholder:\"\",title:\"Date\",type:ControlType.String},vrfGFy6oc:{defaultValue:\"add headline here\",displayTextArea:false,placeholder:\"\",title:\"Text\",type:ControlType.String},cK4sz_f39:{defaultValue:\"Read more ->\",displayTextArea:false,title:\"Title\",type:ControlType.String},Pds0K7GA1:{title:\"Link 2\",type:ControlType.Link}});addFonts(FramerPytV7tpBU,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPytV7tpBU\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"334\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nmSLjNbUE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"366\",\"framerVariables\":\"{\\\"d5YjiVwZi\\\":\\\"image\\\",\\\"Fe5LrJyMx\\\":\\\"date\\\",\\\"vrfGFy6oc\\\":\\\"text\\\",\\\"cK4sz_f39\\\":\\\"title\\\",\\\"Pds0K7GA1\\\":\\\"link2\\\"}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PytV7tpBU.map", "// Generated by Framer (cf240c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Faq from\"https://framerusercontent.com/modules/QIVOemq8FqpiTVIiRuLE/Jln1fXGnSWEpsJK0otu5/Xa1mIcm0r.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/9O8VJyhEyHWWuYNQiA58/Oqqmu4rTDgoNjQzWVPnl/NRFuWW4LM.js\";const FaqFonts=getFonts(Faq);const serializationHash=\"framer-HeD3W\";const variantClassNames={IM1ERiglI:\"framer-v-d8yffn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const 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{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"IM1ERiglI\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-d8yffn\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"IM1ERiglI\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dh721s\",\"data-border\":true,\"data-framer-name\":\"item\",layoutDependency:layoutDependency,layoutId:\"L0e6E1Bf6\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.1)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e25sj1-container\",layoutDependency:layoutDependency,layoutId:\"WPM_EK3WK-container\",children:/*#__PURE__*/_jsx(Faq,{height:\"100%\",hj6SfFrZW:\"What does Beamr do?\",id:\"WPM_EK3WK\",layoutId:\"WPM_EK3WK\",style:{width:\"100%\"},variant:\"fpK3g3xuW\",width:\"100%\",WqiUkjpxw:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Beamr is an innovative software company that developed unique patented technology for reducing the size of video files without compromising quality. Based on our technology, we are offering products and services that guarantee the highest video quality at the lowest bitrate possible.\"})})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13a5a44\",\"data-border\":true,\"data-framer-name\":\"item\",layoutDependency:layoutDependency,layoutId:\"fosxnA4HW\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.1)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+96+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jjvik0-container\",layoutDependency:layoutDependency,layoutId:\"lQYmHmZCs-container\",children:/*#__PURE__*/_jsx(Faq,{height:\"100%\",hj6SfFrZW:\"Where is Beamr headquartered?\",id:\"lQYmHmZCs\",layoutId:\"lQYmHmZCs\",style:{width:\"100%\"},variant:\"fpK3g3xuW\",width:\"100%\",WqiUkjpxw:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Our main offices are located at 10 Hamenofim St., Hertzeliya, Israel.\"})})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yo456m\",\"data-border\":true,\"data-framer-name\":\"item\",layoutDependency:layoutDependency,layoutId:\"I8mhatscS\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.1)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+192+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16wkxhb-container\",layoutDependency:layoutDependency,layoutId:\"sTVkPHS53-container\",children:/*#__PURE__*/_jsx(Faq,{height:\"100%\",hj6SfFrZW:\"When was Beamr founded?\",id:\"sTVkPHS53\",layoutId:\"sTVkPHS53\",style:{width:\"100%\"},variant:\"fpK3g3xuW\",width:\"100%\",WqiUkjpxw:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Beamr was founded in 2009.\"})})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c2642t\",\"data-border\":true,\"data-framer-name\":\"item\",layoutDependency:layoutDependency,layoutId:\"MWZ1uUlEW\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.1)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+288+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lrrgsd-container\",layoutDependency:layoutDependency,layoutId:\"UHgGg6Mkv-container\",children:/*#__PURE__*/_jsx(Faq,{height:\"100%\",hj6SfFrZW:\"When did Beamr go public?\",id:\"UHgGg6Mkv\",layoutId:\"UHgGg6Mkv\",style:{width:\"100%\"},variant:\"fpK3g3xuW\",width:\"100%\",WqiUkjpxw:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Beamr first issued shares to the public on February 28th, 2023.\"})})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7qjp3a\",\"data-framer-name\":\"item\",layoutDependency:layoutDependency,layoutId:\"WNkuY6Tts\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+384+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18ry6xl-container\",layoutDependency:layoutDependency,layoutId:\"KfH7Xt0vd-container\",children:/*#__PURE__*/_jsx(Faq,{height:\"100%\",hj6SfFrZW:\"What is the ticker symbol for Beamr, and where is the company listed?\",id:\"KfH7Xt0vd\",layoutId:\"KfH7Xt0vd\",style:{width:\"100%\"},variant:\"fpK3g3xuW\",width:\"100%\",WqiUkjpxw:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Beamr stock is traded on NASDAQ\\xa0under the ticker symbol BMR.\"})})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1heey6a\",\"data-framer-name\":\"link\",layoutDependency:layoutDependency,layoutId:\"aFBgjepfd\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 153, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tGzd6jzLf\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cks8ff\",\"data-styles-preset\":\"NRFuWW4LM\",children:\"View all ->\"})})})}),className:\"framer-1mnzq5o\",\"data-framer-name\":\"View all ->\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"U2RuBMyIC\",style:{\"--extracted-r6o4lv\":\"rgb(0, 153, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HeD3W.framer-1pgei2a, .framer-HeD3W .framer-1pgei2a { display: block; }\",\".framer-HeD3W.framer-d8yffn { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 721px; }\",\".framer-HeD3W .framer-1dh721s, .framer-HeD3W .framer-13a5a44, .framer-HeD3W .framer-1yo456m, .framer-HeD3W .framer-1c2642t { 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 0px 16px 0px; position: relative; width: 100%; }\",\".framer-HeD3W .framer-1e25sj1-container, .framer-HeD3W .framer-1jjvik0-container, .framer-HeD3W .framer-16wkxhb-container, .framer-HeD3W .framer-lrrgsd-container, .framer-HeD3W .framer-18ry6xl-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-HeD3W .framer-7qjp3a { 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-HeD3W .framer-1heey6a { 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: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-HeD3W .framer-1mnzq5o { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HeD3W.framer-d8yffn, .framer-HeD3W .framer-1dh721s, .framer-HeD3W .framer-13a5a44, .framer-HeD3W .framer-1yo456m, .framer-HeD3W .framer-1c2642t, .framer-HeD3W .framer-7qjp3a, .framer-HeD3W .framer-1heey6a { gap: 0px; } .framer-HeD3W.framer-d8yffn > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-HeD3W.framer-d8yffn > :first-child { margin-top: 0px; } .framer-HeD3W.framer-d8yffn > :last-child { margin-bottom: 0px; } .framer-HeD3W .framer-1dh721s > *, .framer-HeD3W .framer-13a5a44 > *, .framer-HeD3W .framer-1yo456m > *, .framer-HeD3W .framer-1c2642t > *, .framer-HeD3W .framer-7qjp3a > *, .framer-HeD3W .framer-1heey6a > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-HeD3W .framer-1dh721s > :first-child, .framer-HeD3W .framer-13a5a44 > :first-child, .framer-HeD3W .framer-1yo456m > :first-child, .framer-HeD3W .framer-1c2642t > :first-child, .framer-HeD3W .framer-7qjp3a > :first-child, .framer-HeD3W .framer-1heey6a > :first-child { margin-left: 0px; } .framer-HeD3W .framer-1dh721s > :last-child, .framer-HeD3W .framer-13a5a44 > :last-child, .framer-HeD3W .framer-1yo456m > :last-child, .framer-HeD3W .framer-1c2642t > :last-child, .framer-HeD3W .framer-7qjp3a > :last-child, .framer-HeD3W .framer-1heey6a > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-HeD3W[data-border=\"true\"]::after, .framer-HeD3W [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 529\n * @framerIntrinsicWidth 721\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQituJVlSo=withCSS(Component,css,\"framer-HeD3W\");export default FramerQituJVlSo;FramerQituJVlSo.displayName=\"faq-items-home\";FramerQituJVlSo.defaultProps={height:529,width:721};addFonts(FramerQituJVlSo,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...FaqFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQituJVlSo\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"529\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"721\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QituJVlSo.map", "// Generated by Framer (cf240c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={p8izhketN:{hover:true,pressed:true}};const cycleOrder=[\"p8izhketN\",\"dcvTPcTOi\",\"dhBt_Ssdf\",\"keOFPhERr\",\"e8GfyiHq3\"];const serializationHash=\"framer-BFVrN\";const variantClassNames={dcvTPcTOi:\"framer-v-pvbsk9\",dhBt_Ssdf:\"framer-v-qscwwi\",e8GfyiHq3:\"framer-v-15tzo4s\",keOFPhERr:\"framer-v-tuke8u\",p8izhketN:\"framer-v-b6j5h4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"p8izhketN\",Disabled:\"dhBt_Ssdf\",Error:\"e8GfyiHq3\",Loading:\"dcvTPcTOi\",Success:\"keOFPhERr\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"p8izhketN\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"p8izhketN\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"dcvTPcTOi\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"dcvTPcTOi\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-b6j5h4\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"p8izhketN\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-580137c5-4f0f-4922-bf6d-ba473023f763, rgb(76, 60, 255))\",opacity:1,...style},variants:{\"p8izhketN-hover\":{backgroundColor:\"rgba(77, 61, 255, 0.75)\"},\"p8izhketN-pressed\":{backgroundColor:\"rgba(77, 61, 255, 0.84)\"},dhBt_Ssdf:{opacity:.5},e8GfyiHq3:{backgroundColor:\"rgba(255, 34, 68, 0.15)\"}},...addPropertyOverrides({\"p8izhketN-hover\":{\"data-framer-name\":undefined},\"p8izhketN-pressed\":{\"data-framer-name\":undefined},dcvTPcTOi:{\"data-framer-name\":\"Loading\"},dhBt_Ssdf:{\"data-framer-name\":\"Disabled\"},e8GfyiHq3:{\"data-framer-name\":\"Error\"},keOFPhERr:{\"data-framer-name\":\"Success\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Get Investor Updates\"})}),className:\"framer-7tonfw\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"W1pqwljqN\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{e8GfyiHq3:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({e8GfyiHq3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Something went wrong\"})})},keOFPhERr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Thank you\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-wo6knf\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"mogoR1QfC\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-g883gr\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"XBSS1uOhl\",style:{background:\"conic-gradient(from 180deg at 50% 50%, #4cf 0deg, #4cf 360deg)\",backgroundColor:\"rgb(68, 204, 255)\",mask:\"none\",WebkitMask:\"none\"},variants:{dcvTPcTOi:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tyx5co\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"erzhYxnZY\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BFVrN.framer-1f7kzck, .framer-BFVrN .framer-1f7kzck { display: block; }\",\".framer-BFVrN.framer-b6j5h4 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-BFVrN .framer-7tonfw { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-BFVrN .framer-wo6knf { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-BFVrN .framer-g883gr { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-BFVrN .framer-tyx5co { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BFVrN.framer-b6j5h4 { gap: 0px; } .framer-BFVrN.framer-b6j5h4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-BFVrN.framer-b6j5h4 > :first-child { margin-left: 0px; } .framer-BFVrN.framer-b6j5h4 > :last-child { margin-right: 0px; } }\",\".framer-BFVrN.framer-v-pvbsk9.framer-b6j5h4, .framer-BFVrN.framer-v-qscwwi.framer-b6j5h4, .framer-BFVrN.framer-v-tuke8u.framer-b6j5h4, .framer-BFVrN.framer-v-15tzo4s.framer-b6j5h4 { cursor: unset; }\",\".framer-BFVrN.framer-v-pvbsk9 .framer-g883gr { overflow: hidden; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"dcvTPcTOi\":{\"layout\":[\"fixed\",\"fixed\"]},\"dhBt_Ssdf\":{\"layout\":[\"fixed\",\"fixed\"]},\"keOFPhERr\":{\"layout\":[\"fixed\",\"fixed\"]},\"e8GfyiHq3\":{\"layout\":[\"fixed\",\"fixed\"]},\"BI16YcUy8\":{\"layout\":[\"fixed\",\"fixed\"]},\"e5bD2QHbF\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerY1dLoj96Z=withCSS(Component,css,\"framer-BFVrN\");export default FramerY1dLoj96Z;FramerY1dLoj96Z.displayName=\"Button 2\";FramerY1dLoj96Z.defaultProps={height:40,width:240};addPropertyControls(FramerY1dLoj96Z,{variant:{options:[\"p8izhketN\",\"dcvTPcTOi\",\"dhBt_Ssdf\",\"keOFPhERr\",\"e8GfyiHq3\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerY1dLoj96Z,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerY1dLoj96Z\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"240\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dcvTPcTOi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dhBt_Ssdf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"keOFPhERr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"e8GfyiHq3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BI16YcUy8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"e5bD2QHbF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"40\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Y1dLoj96Z.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useRef}from\"react\";export const withMuteToggle=Component=>{return props=>{const ref=useRef();const onTap=()=>{const vid=document.querySelector(\"video\");if(vid){vid.muted=!vid.muted;}if(ref.current){const divs=Array.from(ref.current.querySelectorAll(\"div\"));const hidden=divs.find(d=>window.getComputedStyle(d).opacity===\"0\");const visible=divs.find(d=>window.getComputedStyle(d).opacity===\"0.99\");if(hidden&&visible){hidden.style.opacity=\"0.99\";visible.style.opacity=\"0\";}}};return /*#__PURE__*/_jsx(Component,{...props,ref:ref,onTap:onTap});};};\nexport const __FramerMetadata__ = {\"exports\":{\"withMuteToggle\":{\"type\":\"reactHoc\",\"name\":\"withMuteToggle\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MuteToggler.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"Inter-Medium\"]);export const fonts=[];export const css=['.framer-vABLz .framer-styles-preset-wv40a4:not(.rich-text-wrapper), .framer-vABLz .framer-styles-preset-wv40a4.rich-text-wrapper p { --framer-font-family: \"Inter-Medium\", \"Inter\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: -0.3px; --framer-line-height: 170%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-fe24a84b-b018-47cf-9fb6-8baff8a48c86, #3b4147); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-vABLz\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCodeBoundaryForOverrides,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import FinancialData2 from\"#framer/local/canvasComponent/FwGAKwnie/FwGAKwnie.js\";import FooterDark from\"#framer/local/canvasComponent/Hp6jSVixL/Hp6jSVixL.js\";import SectionHeading from\"#framer/local/canvasComponent/KTijjbYLC/KTijjbYLC.js\";import FeatureWidget from\"#framer/local/canvasComponent/lyGm6BTHS/lyGm6BTHS.js\";import TestimonialCard from\"#framer/local/canvasComponent/NTY9ZNXrt/NTY9ZNXrt.js\";import GradientHeading from\"#framer/local/canvasComponent/pAhJXTUUw/pAhJXTUUw.js\";import CardPress from\"#framer/local/canvasComponent/PytV7tpBU/PytV7tpBU.js\";import FaqItemsHome from\"#framer/local/canvasComponent/QituJVlSo/QituJVlSo.js\";import Navigation from\"#framer/local/canvasComponent/XfZ7e0oN2/XfZ7e0oN2.js\";import Button2 from\"#framer/local/canvasComponent/Y1dLoj96Z/Y1dLoj96Z.js\";import{withMuteToggle}from\"#framer/local/codeFile/wUG6OMR/MuteToggler.js\";import*as sharedStyle2 from\"#framer/local/css/Auc7mTuC6/Auc7mTuC6.js\";import*as sharedStyle from\"#framer/local/css/DznnFglBW/DznnFglBW.js\";import*as sharedStyle1 from\"#framer/local/css/EQ7NfK_OK/EQ7NfK_OK.js\";import*as sharedStyle3 from\"#framer/local/css/GiwrK6nH0/GiwrK6nH0.js\";import*as sharedStyle4 from\"#framer/local/css/IX0wyLhQC/IX0wyLhQC.js\";import*as sharedStyle5 from\"#framer/local/css/NRFuWW4LM/NRFuWW4LM.js\";import metadataProvider from\"#framer/local/webPageMetadata/TtH6Q5E8O/TtH6Q5E8O.js\";const GradientHeadingFonts=getFonts(GradientHeading);const Button2Fonts=getFonts(Button2);const MotionDivWithFX=withFX(motion.div);const VideoFonts=getFonts(Video);const MaterialFonts=getFonts(Material);const MotionDivWithMuteToggleo67au4=withCodeBoundaryForOverrides(motion.div,{nodeId:\"eDng_nWWL\",override:withMuteToggle,scopeId:\"TtH6Q5E8O\"});const RichTextWithFX=withFX(RichText);const SectionHeadingFonts=getFonts(SectionHeading);const ContainerWithFX=withFX(Container);const FeatureWidgetFonts=getFonts(FeatureWidget);const EmbedFonts=getFonts(Embed);const FinancialData2Fonts=getFonts(FinancialData2);const CardPressFonts=getFonts(CardPress);const TestimonialCardFonts=getFonts(TestimonialCard);const FaqItemsHomeFonts=getFonts(FaqItemsHome);const FooterDarkFonts=getFonts(FooterDark);const NavigationFonts=getFonts(Navigation);const breakpoints={c9TQUvVNH:\"(min-width: 992px) and (max-width: 1439px)\",CF44nfHsT:\"(min-width: 768px) and (max-width: 991px)\",eOu5SCzfi:\"(min-width: 1440px)\",ORDqUmxR5:\"(max-width: 767px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-XF0v5\";const variantClassNames={c9TQUvVNH:\"framer-v-1idaj9y\",CF44nfHsT:\"framer-v-zthobq\",eOu5SCzfi:\"framer-v-10cjd7a\",ORDqUmxR5:\"framer-v-1lsxpd8\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-40,y:0};const transition1={damping:60,delay:0,mass:1.2,stiffness:200,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:-40,y:0};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:50};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:30};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition2={damping:60,delay:.2,mass:1.2,stiffness:200,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={damping:60,delay:.4,mass:1.2,stiffness:200,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:60};const transition4={damping:60,delay:0,mass:1.2,stiffness:300,type:\"spring\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:60};const transition5={damping:60,delay:.2,mass:1.2,stiffness:300,type:\"spring\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:60};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Large Desktop\":\"eOu5SCzfi\",Desktop:\"c9TQUvVNH\",Phone:\"ORDqUmxR5\",Tablet:\"CF44nfHsT\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"eOu5SCzfi\"};};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);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 sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"ORDqUmxR5\")return false;return true;};const elementId=useRouteElementId(\"KAdpZftoH\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"Onh7_QKPN\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"vYU5zyLNv\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"S4xg8SkAE\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"t_OpWp54F\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"GbUDsZJyZ\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"hMHJ8LONs\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"H2se2SPKB\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"EF5AOw7yH\");const ref9=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"eOu5SCzfi\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-a6796134-ead1-4854-80f4-027e3d25f32f, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-10cjd7a\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q1g135\",\"data-framer-name\":\"2 Columns Text Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ehjcn6\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-e2shtt\",\"data-framer-name\":\"Hero Content Text\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j0ulpv\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c9TQUvVNH:{width:`calc(min(max((${componentViewport?.width||\"100vw\"} - 10px) / 2, 1px) - 50px, 718px) * 0.8)`},CF44nfHsT:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 718px) * 0.8)`},ORDqUmxR5:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 20px, 1px), 718px) * 0.8)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:`calc(min(max((${componentViewport?.width||\"100vw\"} - 10px) / 2, 1px) - 100px, 718px) * 0.8)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zpe8q-container\",nodeId:\"g4Aa59vgt\",scopeId:\"TtH6Q5E8O\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c9TQUvVNH:{variant:\"AEFi3Ctr0\"},CF44nfHsT:{variant:\"sLR0neTqf\"},ORDqUmxR5:{variant:\"sLR0neTqf\"}},children:/*#__PURE__*/_jsx(GradientHeading,{G9EDJleJX:\"The future of video is now\",height:\"100%\",id:\"g4Aa59vgt\",layoutId:\"g4Aa59vgt\",style:{width:\"100%\"},variant:\"DPO8YkG7L\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c9TQUvVNH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kil6ua\",\"data-styles-preset\":\"EQ7NfK_OK\",children:\"Beamr is bringing AI-ready, high-performance, and future-proof technology to a rapidly growing industry\"})})},CF44nfHsT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-wv40a4\",\"data-styles-preset\":\"DznnFglBW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Beamr is bringing AI-ready, high-performance, and future-proof technology to a rapidly growing industry\"})})},ORDqUmxR5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-wv40a4\",\"data-styles-preset\":\"DznnFglBW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Beamr is bringing AI-ready, high-performance, and future-proof technology to a rapidly growing industry\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-wv40a4\",\"data-styles-preset\":\"DznnFglBW\",children:\"Beamr is bringing AI-ready, high-performance, and future-proof technology to a rapidly growing industry\"})}),className:\"framer-t6jd4r\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q6kaj0\",\"data-framer-name\":\"Form\",children:/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/4208c3fc-2e4f-45d6-b42a-0346aeac057a/submit\",className:\"framer-1uj8dv1\",nodeId:\"cIr2vE1li\",redirectUrl:\"/\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"label\",{className:\"framer-13ru6d8\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-fwv57k\",inputName:\"Email\",placeholder:\"email@domain.com\",type:\"email\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c9TQUvVNH:{width:\"180px\"},CF44nfHsT:{width:`calc((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 718px) * 0.7 - 20px) * 0.4)`},ORDqUmxR5:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 20px, 1px), 718px) - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:`calc((min(max((${componentViewport?.width||\"100vw\"} - 10px) / 2, 1px) - 100px, 718px) * 0.7946 - 20px) * 0.4)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mbpxkz-container\",nodeId:\"TKV4AJMjJ\",scopeId:\"TtH6Q5E8O\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c9TQUvVNH:{variant:formVariants(formState,{pending:\"p8izhketN\",success:\"keOFPhERr\"},\"p8izhketN\")}},children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",id:\"TKV4AJMjJ\",layoutId:\"TKV4AJMjJ\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"dcvTPcTOi\",success:\"keOFPhERr\"},\"p8izhketN\"),width:\"100%\"})})})})})]})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sf9w38\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lm0dkq\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dy0m8x-container\",isModuleExternal:true,nodeId:\"tyQCcyKDD\",scopeId:\"TtH6Q5E8O\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"tyQCcyKDD\",isMixedBorderRadius:false,layoutId:\"tyQCcyKDD\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/re3BAbZrL1isnTmk23eZYaVfyc.png\",posterEnabled:true,srcType:\"URL\",srcUrl:\"https://assets.jpegmini.com/user/videos/Sharon+Nasdaq+Interview+11.2024+-+Snippet+1.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(MotionDivWithMuteToggleo67au4,{className:\"framer-o67au4\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lbge3d\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fqbyg9-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Koy9LarB7\",rendersWithMotion:true,scopeId:\"TtH6Q5E8O\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Volume\",iconSelection:\"VolumeOff\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"Koy9LarB7\",layoutId:\"Koy9LarB7\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12e9wda-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"QSHmtB7Vo\",rendersWithMotion:true,scopeId:\"TtH6Q5E8O\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Volume\",iconSelection:\"VolumeUp\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"QSHmtB7Vo\",layoutId:\"QSHmtB7Vo\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gwb37j\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.investors.beamr.com/events/beamr-ceo-sharon-carmel-in-an-interview-with-the-nasdaq-amplify-spotlight\",motionChild:true,nodeId:\"PQCCF3lk7\",openInNewTab:true,scopeId:\"TtH6Q5E8O\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-6o02lg\",\"data-styles-preset\":\"Auc7mTuC6\",children:\"Watch\"})}),\" the full interview of CEO Sharon Carmel with the Nasdaq Spotlight\"]})}),className:\"framer-xoxi9l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1k2hinl\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4t14kh\",\"data-framer-name\":\"Brand Wrapper\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-28zb33\",\"data-styles-preset\":\"GiwrK6nH0\",children:\"Trusted by\"})}),className:\"framer-uin08c\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15d2hcv\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c9TQUvVNH:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:75,intrinsicWidth:282,pixelHeight:1756,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:`calc(((${componentViewport?.width||\"100vw\"} - 80px) * 0.9 - 40px) * 0.16)`,src:\"https://framerusercontent.com/images/pfHHlopdZbLaDrfhkbSUnzzTaI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/pfHHlopdZbLaDrfhkbSUnzzTaI.png?scale-down-to=512 512w,https://framerusercontent.com/images/pfHHlopdZbLaDrfhkbSUnzzTaI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pfHHlopdZbLaDrfhkbSUnzzTaI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/pfHHlopdZbLaDrfhkbSUnzzTaI.png 2560w\"}},CF44nfHsT:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:75,intrinsicWidth:282,pixelHeight:1756,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:`calc(((${componentViewport?.width||\"100vw\"} - 80px) * 0.9 - 40px) * 0.16)`,src:\"https://framerusercontent.com/images/pfHHlopdZbLaDrfhkbSUnzzTaI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/pfHHlopdZbLaDrfhkbSUnzzTaI.png?scale-down-to=512 512w,https://framerusercontent.com/images/pfHHlopdZbLaDrfhkbSUnzzTaI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pfHHlopdZbLaDrfhkbSUnzzTaI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/pfHHlopdZbLaDrfhkbSUnzzTaI.png 2560w\"}},ORDqUmxR5:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:75,intrinsicWidth:282,pixelHeight:1756,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 160px) * 0.31)`,src:\"https://framerusercontent.com/images/pfHHlopdZbLaDrfhkbSUnzzTaI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/pfHHlopdZbLaDrfhkbSUnzzTaI.png?scale-down-to=512 512w,https://framerusercontent.com/images/pfHHlopdZbLaDrfhkbSUnzzTaI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pfHHlopdZbLaDrfhkbSUnzzTaI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/pfHHlopdZbLaDrfhkbSUnzzTaI.png 2560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:75,intrinsicWidth:282,pixelHeight:1756,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:`calc(((${componentViewport?.width||\"100vw\"} - 80px) * 0.8 - 40px) * 0.12)`,src:\"https://framerusercontent.com/images/pfHHlopdZbLaDrfhkbSUnzzTaI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/pfHHlopdZbLaDrfhkbSUnzzTaI.png?scale-down-to=512 512w,https://framerusercontent.com/images/pfHHlopdZbLaDrfhkbSUnzzTaI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pfHHlopdZbLaDrfhkbSUnzzTaI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/pfHHlopdZbLaDrfhkbSUnzzTaI.png 2560w\"},className:\"framer-gl9syx\",\"data-framer-name\":\"Brand Single\"})}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:79,intrinsicWidth:379,pixelHeight:93,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/i3NfJWgq9Eobzi7pOrNygKow.svg\"},className:\"framer-4w1u2v hidden-1lsxpd8\",\"data-framer-name\":\"Brand Single\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c9TQUvVNH:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:79,intrinsicWidth:324,pixelHeight:678,pixelWidth:2226,positionX:\"center\",positionY:\"center\",sizes:`calc(((${componentViewport?.width||\"100vw\"} - 80px) * 0.9 - 40px) * 0.18)`,src:\"https://framerusercontent.com/images/SFXndjitG3xECubD9NnPzz2p7y4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/SFXndjitG3xECubD9NnPzz2p7y4.png?scale-down-to=512 512w,https://framerusercontent.com/images/SFXndjitG3xECubD9NnPzz2p7y4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SFXndjitG3xECubD9NnPzz2p7y4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/SFXndjitG3xECubD9NnPzz2p7y4.png 2226w\"}},CF44nfHsT:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:79,intrinsicWidth:324,pixelHeight:678,pixelWidth:2226,positionX:\"center\",positionY:\"center\",sizes:`calc(((${componentViewport?.width||\"100vw\"} - 80px) * 0.9 - 40px) * 0.18)`,src:\"https://framerusercontent.com/images/SFXndjitG3xECubD9NnPzz2p7y4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/SFXndjitG3xECubD9NnPzz2p7y4.png?scale-down-to=512 512w,https://framerusercontent.com/images/SFXndjitG3xECubD9NnPzz2p7y4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SFXndjitG3xECubD9NnPzz2p7y4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/SFXndjitG3xECubD9NnPzz2p7y4.png 2226w\"}},ORDqUmxR5:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:79,intrinsicWidth:324,pixelHeight:678,pixelWidth:2226,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 160px) * 0.31)`,src:\"https://framerusercontent.com/images/SFXndjitG3xECubD9NnPzz2p7y4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/SFXndjitG3xECubD9NnPzz2p7y4.png?scale-down-to=512 512w,https://framerusercontent.com/images/SFXndjitG3xECubD9NnPzz2p7y4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SFXndjitG3xECubD9NnPzz2p7y4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/SFXndjitG3xECubD9NnPzz2p7y4.png 2226w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:79,intrinsicWidth:324,pixelHeight:678,pixelWidth:2226,positionX:\"center\",positionY:\"center\",sizes:`calc(((${componentViewport?.width||\"100vw\"} - 80px) * 0.8 - 40px) * 0.11)`,src:\"https://framerusercontent.com/images/SFXndjitG3xECubD9NnPzz2p7y4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/SFXndjitG3xECubD9NnPzz2p7y4.png?scale-down-to=512 512w,https://framerusercontent.com/images/SFXndjitG3xECubD9NnPzz2p7y4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SFXndjitG3xECubD9NnPzz2p7y4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/SFXndjitG3xECubD9NnPzz2p7y4.png 2226w\"},className:\"framer-qimlfx\",\"data-framer-name\":\"Brand Single\"})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c9TQUvVNH:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:59,intrinsicWidth:311,pixelHeight:46,pixelWidth:300,positionX:\"center\",positionY:\"center\",sizes:`calc(((${componentViewport?.width||\"100vw\"} - 80px) * 0.9 - 40px) * 0.16)`,src:\"https://framerusercontent.com/images/HuTSDHhPW7Z5mAAYbk0WqWXvtPQ.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/HuTSDHhPW7Z5mAAYbk0WqWXvtPQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/HuTSDHhPW7Z5mAAYbk0WqWXvtPQ.svg 520w\"}},CF44nfHsT:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:59,intrinsicWidth:311,pixelHeight:46,pixelWidth:300,positionX:\"center\",positionY:\"center\",sizes:`calc(((${componentViewport?.width||\"100vw\"} - 80px) * 0.9 - 40px) * 0.16)`,src:\"https://framerusercontent.com/images/HuTSDHhPW7Z5mAAYbk0WqWXvtPQ.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/HuTSDHhPW7Z5mAAYbk0WqWXvtPQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/HuTSDHhPW7Z5mAAYbk0WqWXvtPQ.svg 520w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:59,intrinsicWidth:311,pixelHeight:46,pixelWidth:300,positionX:\"center\",positionY:\"center\",sizes:`calc(((${componentViewport?.width||\"100vw\"} - 80px) * 0.8 - 40px) * 0.11)`,src:\"https://framerusercontent.com/images/HuTSDHhPW7Z5mAAYbk0WqWXvtPQ.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/HuTSDHhPW7Z5mAAYbk0WqWXvtPQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/HuTSDHhPW7Z5mAAYbk0WqWXvtPQ.svg 520w\"},className:\"framer-1wjjy40 hidden-1lsxpd8\",\"data-framer-name\":\"Brand Single\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c9TQUvVNH:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:61,intrinsicWidth:339,pixelHeight:1200,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:`calc(((${componentViewport?.width||\"100vw\"} - 80px) * 0.9 - 40px) * 0.12)`,src:\"https://framerusercontent.com/images/fvFrPHBUGLvqVPrGxIAxrHm8R5c.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/fvFrPHBUGLvqVPrGxIAxrHm8R5c.png?scale-down-to=512 512w,https://framerusercontent.com/images/fvFrPHBUGLvqVPrGxIAxrHm8R5c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fvFrPHBUGLvqVPrGxIAxrHm8R5c.png 1200w\"}},CF44nfHsT:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:61,intrinsicWidth:339,pixelHeight:1200,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:`calc(((${componentViewport?.width||\"100vw\"} - 80px) * 0.9 - 40px) * 0.13)`,src:\"https://framerusercontent.com/images/fvFrPHBUGLvqVPrGxIAxrHm8R5c.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/fvFrPHBUGLvqVPrGxIAxrHm8R5c.png?scale-down-to=512 512w,https://framerusercontent.com/images/fvFrPHBUGLvqVPrGxIAxrHm8R5c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fvFrPHBUGLvqVPrGxIAxrHm8R5c.png 1200w\"}},ORDqUmxR5:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:61,intrinsicWidth:339,pixelHeight:1200,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 160px) / 5)`,src:\"https://framerusercontent.com/images/fvFrPHBUGLvqVPrGxIAxrHm8R5c.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/fvFrPHBUGLvqVPrGxIAxrHm8R5c.png?scale-down-to=512 512w,https://framerusercontent.com/images/fvFrPHBUGLvqVPrGxIAxrHm8R5c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fvFrPHBUGLvqVPrGxIAxrHm8R5c.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:61,intrinsicWidth:339,pixelHeight:1200,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:`calc(((${componentViewport?.width||\"100vw\"} - 80px) * 0.8 - 40px) * 0.08)`,src:\"https://framerusercontent.com/images/fvFrPHBUGLvqVPrGxIAxrHm8R5c.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/fvFrPHBUGLvqVPrGxIAxrHm8R5c.png?scale-down-to=512 512w,https://framerusercontent.com/images/fvFrPHBUGLvqVPrGxIAxrHm8R5c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fvFrPHBUGLvqVPrGxIAxrHm8R5c.png 1200w\"},className:\"framer-dhz8gw\",\"data-framer-name\":\"Brand Single\"})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1918br6\",\"data-framer-name\":\"Feature Section\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iv989f\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-va72xc\",\"data-framer-name\":\"Feature Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c9TQUvVNH:{width:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px) - 60px) * 0.6)`},CF44nfHsT:{width:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 720px) - 60px) * 0.7)`},ORDqUmxR5:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 524px) - 60px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:127,width:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1320px) - 60px) * 0.6)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1n2sn25-container\",nodeId:\"WoyWUPkJI\",rendersWithMotion:true,scopeId:\"TtH6Q5E8O\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SectionHeading,{height:\"100%\",id:\"WoyWUPkJI\",layoutId:\"WoyWUPkJI\",QI7bJ5fo7:\"\",style:{width:\"100%\"},u9HJGBk16:false,variant:\"XmnCEUIqu\",width:\"100%\",ZLuc9q4oS:\"Unlocking hidden value in every frame\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-28zb33\",\"data-styles-preset\":\"GiwrK6nH0\",children:\"As video content grows rapidly, Beamr provides essential tools that enable companies with large video libraries to manage, optimize, and monetize their assets, using scalable, high-performance and high-efficiency technology.\"})}),className:\"framer-1dt1hiz\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xsz5yn\",\"data-framer-name\":\"Feature Row\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pufb13\",\"data-framer-name\":\"Column\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c9TQUvVNH:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px) - 90px) / 2, 1px)`},CF44nfHsT:{width:`max(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 720px) - 110px) / 2, 200px), 1px)`},ORDqUmxR5:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 524px) - 60px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:189,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1320px) - 160px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18n90fj-container\",\"data-framer-name\":\"Feature Widget\",name:\"Feature Widget\",nodeId:\"thmHxdXSr\",scopeId:\"TtH6Q5E8O\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CF44nfHsT:{lrvdaqUbf:\"Patented Content-Adaptive Technology (CABR) reduces video file sizes without sacrificing quality, cutting storage and bandwidth costs by up to 50% \u2014 a critical advantage for companies managing large-scale video libraries.\"},ORDqUmxR5:{variant:\"UzL1VpO2N\"}},children:/*#__PURE__*/_jsx(FeatureWidget,{FdjxzEO46:addImageAlt({src:\"https://framerusercontent.com/images/HRaAuOSiFkKlhczzEz7zXY010.svg\"},\"\"),height:\"100%\",id:\"thmHxdXSr\",layoutId:\"thmHxdXSr\",lrvdaqUbf:\"Beamr\u2019s patented Content-Adaptive Technology (CABR) reduces video file sizes without sacrificing quality, cutting storage and bandwidth costs by up to 50% - a critical advantage for companies managing large-scale video libraries.\",name:\"Feature Widget\",style:{width:\"100%\"},variant:\"d3XjiWOqG\",width:\"100%\",Xsxi0csWQ:\"Cost-Efficient Video Compression\"})})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tqcass\",\"data-framer-name\":\"Column\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c9TQUvVNH:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px) - 90px) / 2, 1px)`},CF44nfHsT:{width:\"305px\"},ORDqUmxR5:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 524px) - 60px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:189,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1320px) - 160px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gonzrd-container\",\"data-framer-name\":\"Feature Widget\",name:\"Feature Widget\",nodeId:\"YbJe6AyCG\",scopeId:\"TtH6Q5E8O\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CF44nfHsT:{lrvdaqUbf:\"By leveraging GPU acceleration, Beamr enables faster video processing and AI-powered data enrichment. Beamr customers are maximizing infrastructure efficiency and enhancing content delivery to their end-users.\"},ORDqUmxR5:{variant:\"UzL1VpO2N\"}},children:/*#__PURE__*/_jsx(FeatureWidget,{FdjxzEO46:addImageAlt({src:\"https://framerusercontent.com/images/HRaAuOSiFkKlhczzEz7zXY010.svg\"},\"\"),height:\"100%\",id:\"YbJe6AyCG\",layoutId:\"YbJe6AyCG\",lrvdaqUbf:\"By leveraging GPU acceleration, Beamr technology enables faster video processing and AI-powered data enrichment, unlocking more efficient infrastructure and enhancing content delivery to customers.\",name:\"Feature Widget\",style:{width:\"100%\"},variant:\"d3XjiWOqG\",width:\"100%\",Xsxi0csWQ:\"Enhanced AI Capabilities with GPUs\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12p34bp\",\"data-framer-name\":\"Feature Row\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pwb2je\",\"data-framer-name\":\"Column\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c9TQUvVNH:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px) - 90px) / 2, 1px)`},CF44nfHsT:{width:`max(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 720px) - 111px) / 2, 200px), 1px)`},ORDqUmxR5:{width:`max(min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 524px) - 60px, 370px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:189,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1320px) - 160px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kiqj3s-container\",\"data-framer-name\":\"Feature Widget\",name:\"Feature Widget\",nodeId:\"YbDX2IXJc\",scopeId:\"TtH6Q5E8O\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ORDqUmxR5:{variant:\"UzL1VpO2N\"}},children:/*#__PURE__*/_jsx(FeatureWidget,{FdjxzEO46:addImageAlt({src:\"https://framerusercontent.com/images/HRaAuOSiFkKlhczzEz7zXY010.svg\"},\"\"),height:\"100%\",id:\"YbDX2IXJc\",layoutId:\"YbDX2IXJc\",lrvdaqUbf:\"Beamr technology empowers clients to extract new value from their video assets through data enrichment, personalized content, and content repurposing, creating competitive advantages and unlocking new income opportunities.\",name:\"Feature Widget\",style:{width:\"100%\"},variant:\"d3XjiWOqG\",width:\"100%\",Xsxi0csWQ:\"Capturing New Revenue Streams\"})})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-d8fmdr\",\"data-framer-name\":\"Column\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c9TQUvVNH:{width:\"451px\"},CF44nfHsT:{width:\"304.5px\"},ORDqUmxR5:{width:`max(min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 524px) - 60px, 370px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:189,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1320px) - 160px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d66o9g-container\",\"data-framer-name\":\"Feature Widget\",name:\"Feature Widget\",nodeId:\"GkLkpDHyx\",scopeId:\"TtH6Q5E8O\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c9TQUvVNH:{lrvdaqUbf:\"Led by a team of serial entrepreneurs and industry veterans with deep expertise in video compression, AI, and scalable processing solutions \u2014 Beamr is uniquely positioned to lead the next-generation of the video industry.\"},ORDqUmxR5:{variant:\"UzL1VpO2N\"}},children:/*#__PURE__*/_jsx(FeatureWidget,{FdjxzEO46:addImageAlt({src:\"https://framerusercontent.com/images/HRaAuOSiFkKlhczzEz7zXY010.svg\"},\"\"),height:\"100%\",id:\"GkLkpDHyx\",layoutId:\"GkLkpDHyx\",lrvdaqUbf:\"Led by a team of serial entrepreneurs and industry veterans with deep expertise in video compression, AI, and scalable processing solutions - Beamr is uniquely positioned to drive innovation and lead the next-generation of the video industry.\",name:\"Feature Widget\",style:{width:\"100%\"},variant:\"d3XjiWOqG\",width:\"100%\",Xsxi0csWQ:\"Experienced Leadership\"})})})})})})]})]})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1yqd3bs\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-28zb33\",\"data-styles-preset\":\"GiwrK6nH0\",children:\"Partners\"})}),className:\"framer-x3djrl\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2icl7f\",\"data-framer-name\":\"Brand Wrapper\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2uisda\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c9TQUvVNH:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:75,intrinsicWidth:282,pixelHeight:187,pixelWidth:679,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.9 - 40px) * 0.16)`,src:\"https://framerusercontent.com/images/jthD1hPU5BuFAhohOgXiWTOwDqY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jthD1hPU5BuFAhohOgXiWTOwDqY.png?scale-down-to=512 512w,https://framerusercontent.com/images/jthD1hPU5BuFAhohOgXiWTOwDqY.png 679w\"}},CF44nfHsT:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:75,intrinsicWidth:282,pixelHeight:187,pixelWidth:679,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.9 - 40px) * 0.16)`,src:\"https://framerusercontent.com/images/jthD1hPU5BuFAhohOgXiWTOwDqY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jthD1hPU5BuFAhohOgXiWTOwDqY.png?scale-down-to=512 512w,https://framerusercontent.com/images/jthD1hPU5BuFAhohOgXiWTOwDqY.png 679w\"}},ORDqUmxR5:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:75,intrinsicWidth:282,pixelHeight:187,pixelWidth:679,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 40px) * 0.31)`,src:\"https://framerusercontent.com/images/jthD1hPU5BuFAhohOgXiWTOwDqY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jthD1hPU5BuFAhohOgXiWTOwDqY.png?scale-down-to=512 512w,https://framerusercontent.com/images/jthD1hPU5BuFAhohOgXiWTOwDqY.png 679w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:75,intrinsicWidth:282,pixelHeight:187,pixelWidth:679,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.8 - 40px) / 5)`,src:\"https://framerusercontent.com/images/jthD1hPU5BuFAhohOgXiWTOwDqY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jthD1hPU5BuFAhohOgXiWTOwDqY.png?scale-down-to=512 512w,https://framerusercontent.com/images/jthD1hPU5BuFAhohOgXiWTOwDqY.png 679w\"},className:\"framer-1gucmhy\",\"data-framer-name\":\"Brand Single\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c9TQUvVNH:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:79,intrinsicWidth:324,pixelHeight:332,pixelWidth:908,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.9 - 40px) * 0.18)`,src:\"https://framerusercontent.com/images/mrpJqsOIO18MjcRO6FbqvLGqijI.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/mrpJqsOIO18MjcRO6FbqvLGqijI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mrpJqsOIO18MjcRO6FbqvLGqijI.jpg 908w\"}},CF44nfHsT:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:79,intrinsicWidth:324,pixelHeight:332,pixelWidth:908,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.9 - 40px) * 0.18)`,src:\"https://framerusercontent.com/images/mrpJqsOIO18MjcRO6FbqvLGqijI.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/mrpJqsOIO18MjcRO6FbqvLGqijI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mrpJqsOIO18MjcRO6FbqvLGqijI.jpg 908w\"}},ORDqUmxR5:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:79,intrinsicWidth:324,pixelHeight:332,pixelWidth:908,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 40px) * 0.31)`,src:\"https://framerusercontent.com/images/mrpJqsOIO18MjcRO6FbqvLGqijI.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/mrpJqsOIO18MjcRO6FbqvLGqijI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mrpJqsOIO18MjcRO6FbqvLGqijI.jpg 908w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:79,intrinsicWidth:324,pixelHeight:332,pixelWidth:908,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.8 - 40px) * 0.1853)`,src:\"https://framerusercontent.com/images/mrpJqsOIO18MjcRO6FbqvLGqijI.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/mrpJqsOIO18MjcRO6FbqvLGqijI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mrpJqsOIO18MjcRO6FbqvLGqijI.jpg 908w\"},className:\"framer-qryazj\",\"data-framer-name\":\"Brand Single\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c9TQUvVNH:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:79,intrinsicWidth:379,pixelHeight:233,pixelWidth:721,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.9 - 40px) * 0.16)`,src:\"https://framerusercontent.com/images/DspDP2STA6ZBvPJdZKLehUs7FD4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/DspDP2STA6ZBvPJdZKLehUs7FD4.png?scale-down-to=512 512w,https://framerusercontent.com/images/DspDP2STA6ZBvPJdZKLehUs7FD4.png 721w\"}},CF44nfHsT:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:79,intrinsicWidth:379,pixelHeight:233,pixelWidth:721,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.9 - 40px) * 0.16)`,src:\"https://framerusercontent.com/images/DspDP2STA6ZBvPJdZKLehUs7FD4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/DspDP2STA6ZBvPJdZKLehUs7FD4.png?scale-down-to=512 512w,https://framerusercontent.com/images/DspDP2STA6ZBvPJdZKLehUs7FD4.png 721w\"}},ORDqUmxR5:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:79,intrinsicWidth:379,pixelHeight:233,pixelWidth:721,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 40px) * 0.31)`,src:\"https://framerusercontent.com/images/DspDP2STA6ZBvPJdZKLehUs7FD4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/DspDP2STA6ZBvPJdZKLehUs7FD4.png?scale-down-to=512 512w,https://framerusercontent.com/images/DspDP2STA6ZBvPJdZKLehUs7FD4.png 721w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:79,intrinsicWidth:379,pixelHeight:233,pixelWidth:721,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} * 0.8 - 40px) * 0.3)`,src:\"https://framerusercontent.com/images/DspDP2STA6ZBvPJdZKLehUs7FD4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/DspDP2STA6ZBvPJdZKLehUs7FD4.png?scale-down-to=512 512w,https://framerusercontent.com/images/DspDP2STA6ZBvPJdZKLehUs7FD4.png 721w\"},className:\"framer-1qrh5l9\",\"data-framer-name\":\"Brand Single\"})})]})})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-4613wj\",\"data-framer-name\":\"Header\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1eb6xhj\",\"data-styles-preset\":\"IX0wyLhQC\",children:\"Investor Deck\"})}),className:\"framer-13kjacl\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pi65rj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MXxxNY_bd\",scopeId:\"TtH6Q5E8O\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe class=\"speakerdeck-iframe\" frameborder=\"0\" src=\"https://speakerdeck.com/player/3713bb8fbcb24b9ab5f48eb80051b1e4\" title=\"Beamr Company Presentation\" allowfullscreen=\"true\" style=\"border: 0px; background: padding-box padding-box rgba(0, 0, 0, 0.1); margin: 0px; padding: 0px; border-radius: 6px; box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 40px; width: 100%; height: auto; aspect-ratio: 560 / 315;\" data-ratio=\"1.7777777777777777\"></iframe>',id:\"MXxxNY_bd\",layoutId:\"MXxxNY_bd\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-28zb33\",\"data-styles-preset\":\"GiwrK6nH0\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://drive.google.com/file/d/16BTA7ne2LRUOpU9YgD-R_oue4JES-Cda/view?usp=drive_link\",motionChild:true,nodeId:\"K3piOr6rO\",openInNewTab:true,scopeId:\"TtH6Q5E8O\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cks8ff\",\"data-styles-preset\":\"NRFuWW4LM\",children:\"Download PDF version here ->\"})})})}),className:\"framer-ijsg23\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rrnp7g\",\"data-framer-name\":\"Feature Section\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-evrn9z\",\"data-framer-name\":\"Integrate Card block\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1eb6xhj\",\"data-styles-preset\":\"IX0wyLhQC\",children:\"Stock Quote\"})}),className:\"framer-1fguilh\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4v3qcm-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"rmD7ffHRX\",scopeId:\"TtH6Q5E8O\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<!-- TradingView Widget BEGIN -->\\n<div class=\"tradingview-widget-container\">\\n  <div class=\"tradingview-widget-container__widget\"></div>\\n  <div class=\"tradingview-widget-copyright\"><a href=\"https://www.tradingview.com/\" rel=\"noopener nofollow\" target=\"_blank\"><span class=\"blue-text\">Track all markets on TradingView</span></a></div>\\n  <script type=\"text/javascript\" src=\"https://s3.tradingview.com/external-embedding/embed-widget-mini-symbol-overview.js\" async>\\n  {\\n  \"symbol\": \"NASDAQ:BMR\",\\n  \"width\": \"100%\",\\n  \"height\": \"500\",\\n  \"locale\": \"en\",\\n  \"dateRange\": \"1D\",\\n  \"colorTheme\": \"light\",\\n  \"isTransparent\": true,\\n  \"autosize\": false,\\n  \"largeChartUrl\": \"\",\\n  \"chartOnly\": false\\n}\\n  </script>\\n</div>\\n<!-- TradingView Widget END -->',id:\"rmD7ffHRX\",layoutId:\"rmD7ffHRX\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1te0euy\",\"data-framer-name\":\"Feature Section\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1slv12o\",\"data-framer-name\":\"Integrate Card block\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1eb6xhj\",\"data-styles-preset\":\"IX0wyLhQC\",children:\"Finanacial Data\"})}),className:\"framer-hpzyae\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CF44nfHsT:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`},ORDqUmxR5:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:340,width:`calc(${componentViewport?.width||\"100vw\"} - 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-md5zjq-container\",nodeId:\"G7uqjMH1U\",scopeId:\"TtH6Q5E8O\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ORDqUmxR5:{DG2fCQxy6:\"column\",n6YOPHEdZ:42}},children:/*#__PURE__*/_jsx(FinancialData2,{DG2fCQxy6:\"row\",height:\"100%\",id:\"G7uqjMH1U\",layoutId:\"G7uqjMH1U\",n6YOPHEdZ:64,style:{width:\"100%\"},variant:\"A_FgWkH5a\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tmgif1\",\"data-framer-name\":\"Feature Section\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cwunuu\",\"data-framer-name\":\"Integrate Card block\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1eb6xhj\",\"data-styles-preset\":\"IX0wyLhQC\",children:\"Latest SEC Filings\"})}),className:\"framer-a5k05p\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tfoiay-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Wr_9DeHvl\",scopeId:\"TtH6Q5E8O\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"<div id=\\\"sec-filings-table\\\">\\n    <p>Loading SEC filings...</p>\\n</div>\\n\\n<script>\\n    async function loadFilings() {\\n        try {\\n            const response = await fetch('https://investor-webite.s3.us-east-1.amazonaws.com/sec-filing.json');\\n            if (!response.ok) throw new Error('Failed to load filings.');\\n\\n            const data = await response.json();\\n            const filings = data.filings.recent;\\n\\n            const tableHeaders = `\\n                <tr>\\n                    <th>Form Type</th>\\n                    <th>Form Description</th>\\n                    <th>Filing Date</th>\\n                    <th>Reporting Date</th>\\n                </tr>`;\\n\\n            const tableRows = filings.form.map((form, index) => `\\n                <tr>\\n                    <td><a href=\\\"${filings.url[index]}\\\" target=\\\"_blank\\\">${form}</a></td>\\n                    <td>${filings.primaryDocDescription[index]}</td>\\n                    <td>${filings.filingDate[index]}</td>\\n                    <td>${filings.reportDate[index] || '-'}</td>\\n                </tr>\\n            `).join('');\\n\\n            document.getElementById('sec-filings-table').innerHTML = `\\n                <table>\\n                    ${tableHeaders}\\n                    ${tableRows}\\n                </table>`;\\n        } catch (error) {\\n            document.getElementById('sec-filings-table').innerHTML = `<p>Error loading filings.</p>`;\\n            console.error(error);\\n        }\\n    }\\n\\n    loadFilings();\\n</script>\\n\\n<style>\\n    #sec-filings-table {\\n        width: 100%;\\n        overflow-x: auto;\\n        margin-top: 20px;\\n        font-family: Arial, sans-serif;\\n    }\\n    #sec-filings-table table {\\n        width: 100%;\\n        border-collapse: collapse;\\n        font-size: 16px;\\n    }\\n    #sec-filings-table th, #sec-filings-table td {\\n        padding: 12px;\\n        border: 1px solid #ddd;\\n        text-align: left;\\n    }\\n    #sec-filings-table th {\\n        background-color: #f4f4f4;\\n        font-weight: bold;\\n    }\\n    #sec-filings-table a {\\n        color: #0073e6;\\n        text-decoration: none;\\n    }\\n    #sec-filings-table a:hover {\\n        text-decoration: underline;\\n    }\\n</style>\",id:\"Wr_9DeHvl\",layoutId:\"Wr_9DeHvl\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-28zb33\",\"data-styles-preset\":\"GiwrK6nH0\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Lvhsp7m4U\"},motionChild:true,nodeId:\"Qx5zeEm1S\",openInNewTab:false,scopeId:\"TtH6Q5E8O\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cks8ff\",\"data-styles-preset\":\"NRFuWW4LM\",children:\"View all Sec-Filings->\"})})})}),className:\"framer-1xvmc6p\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tpxvxp\",\"data-framer-name\":\"Feature Section\",id:elementId5,ref:ref6,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-njwouj\",\"data-framer-name\":\"Integrate Card block\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1eb6xhj\",\"data-styles-preset\":\"IX0wyLhQC\",children:\"Latest News\"})}),className:\"framer-zozkoi\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hp7wnw\",\"data-framer-name\":\"Integrate Card Deck\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ustz14\",\"data-framer-name\":\"Integrate Card \",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:334,width:\"366px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5leo87-container\",nodeId:\"MiTKO1qNq\",scopeId:\"TtH6Q5E8O\",children:/*#__PURE__*/_jsx(CardPress,{cK4sz_f39:\"Read more ->\",d5YjiVwZi:addImageAlt({src:\"https://framerusercontent.com/images/rljz4xhxSNB0raut3wIzwCGzEs.jpg\",srcSet:\"https://framerusercontent.com/images/rljz4xhxSNB0raut3wIzwCGzEs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rljz4xhxSNB0raut3wIzwCGzEs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rljz4xhxSNB0raut3wIzwCGzEs.jpg 1200w\"},\"\"),Fe5LrJyMx:\"March 19, 2025\",height:\"100%\",id:\"MiTKO1qNq\",layoutId:\"MiTKO1qNq\",Pds0K7GA1:\"https://www.globenewswire.com/news-release/2025/03/19/3045697/0/en/Beamr-Cloud-Now-Available-to-Members-of-NVIDIA-s-Startup-and-ISV-Programs-at-Special-Rates.html\",style:{width:\"100%\"},vrfGFy6oc:\"Beamr Cloud Now Available to Members of NVIDIA\u2019s Startup and ISV Programs at Special Rates\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:334,width:\"366px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9assel-container\",nodeId:\"efpWxSrj2\",scopeId:\"TtH6Q5E8O\",children:/*#__PURE__*/_jsx(CardPress,{cK4sz_f39:\"Read more ->\",d5YjiVwZi:addImageAlt({src:\"https://framerusercontent.com/images/Dg8NiyypyF0zg8C5g0S2yafmp8.jpg\",srcSet:\"https://framerusercontent.com/images/Dg8NiyypyF0zg8C5g0S2yafmp8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Dg8NiyypyF0zg8C5g0S2yafmp8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Dg8NiyypyF0zg8C5g0S2yafmp8.jpg 1920w\"},\"\"),Fe5LrJyMx:\"March 4, 2025\",height:\"100%\",id:\"efpWxSrj2\",layoutId:\"efpWxSrj2\",Pds0K7GA1:\"https://www.globenewswire.com/news-release/2025/03/04/3036363/0/en/Beamr-Issues-Annual-CEO-Letter-to-Shareholders-Highlighting-2024-Achievements-and-2025-Strategy-Capitalizing-on-Market-Validation.html\",style:{width:\"100%\"},vrfGFy6oc:\"Beamr Issues Annual CEO Letter to Shareholders: Highlighting 2024 Achievements and 2025 Strategy - Capitalizing on Market Validation\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:334,width:\"366px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d9gfbl-container\",nodeId:\"l3_US0EfD\",scopeId:\"TtH6Q5E8O\",children:/*#__PURE__*/_jsx(CardPress,{cK4sz_f39:\"Read more ->\",d5YjiVwZi:addImageAlt({src:\"https://framerusercontent.com/images/XWa9P2nI17Ljycla79V5hcf8Y.jpg\",srcSet:\"https://framerusercontent.com/images/XWa9P2nI17Ljycla79V5hcf8Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XWa9P2nI17Ljycla79V5hcf8Y.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XWa9P2nI17Ljycla79V5hcf8Y.jpg 1200w\"},\"\"),Fe5LrJyMx:\"February 27, 2025\",height:\"100%\",id:\"l3_US0EfD\",layoutId:\"l3_US0EfD\",Pds0K7GA1:\"https://www.globenewswire.com/news-release/2025/02/27/3033701/0/en/Beamr-to-Discuss-How-AI-Revolutionizes-the-Video-Industry-at-NVIDIA-GTC.html\",style:{width:\"100%\"},vrfGFy6oc:\"Beamr to Discuss How AI Revolutionizes the Video Industry at NVIDIA GTC\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-28zb33\",\"data-styles-preset\":\"GiwrK6nH0\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"bYJ5po8fG\"},motionChild:true,nodeId:\"VUWpF0uVA\",openInNewTab:false,scopeId:\"TtH6Q5E8O\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cks8ff\",\"data-styles-preset\":\"NRFuWW4LM\",children:\"View all News ->\"})})})}),className:\"framer-1n8fjsg\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ua1vqd\",\"data-framer-name\":\"Feature Section\",id:elementId6,ref:ref7,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xvg9jv\",\"data-framer-name\":\"Integrate Card block\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1eb6xhj\",\"data-styles-preset\":\"IX0wyLhQC\",children:\"Events & Interviews\"})}),className:\"framer-1dfp77s\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10pbcvn\",\"data-framer-name\":\"Integrate Card Deck\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iv5l1f\",\"data-framer-name\":\"Integrate Card \",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:334,width:\"366px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tipte9-container\",nodeId:\"l69HcWFB0\",scopeId:\"TtH6Q5E8O\",children:/*#__PURE__*/_jsx(CardPress,{cK4sz_f39:\"Watch now ->\",d5YjiVwZi:addImageAlt({src:\"https://framerusercontent.com/images/MZiL14oShNVtzTy3Qn0uk6DYk.png\",srcSet:\"https://framerusercontent.com/images/MZiL14oShNVtzTy3Qn0uk6DYk.png?scale-down-to=512 512w,https://framerusercontent.com/images/MZiL14oShNVtzTy3Qn0uk6DYk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MZiL14oShNVtzTy3Qn0uk6DYk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/MZiL14oShNVtzTy3Qn0uk6DYk.png 2592w\"},\"\"),Fe5LrJyMx:\"February 21, 2025\",height:\"100%\",id:\"l69HcWFB0\",layoutId:\"l69HcWFB0\",Pds0K7GA1:\"https://www.investors.beamr.com/events/watch-technology-advancements-key-collaborations-and-ai-in-beamr-ceo-sharon-carmel-interview-with-jan-ozer\",style:{width:\"100%\"},vrfGFy6oc:\"Watch: Technology Advancements, Key Collaborations and AI in Beamr CEO, Sharon Carmel, interview with Jan Ozer \",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:334,width:\"366px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-sbhpsv-container\",nodeId:\"vf8kSQjjZ\",scopeId:\"TtH6Q5E8O\",children:/*#__PURE__*/_jsx(CardPress,{cK4sz_f39:\"Watch now ->\",d5YjiVwZi:addImageAlt({src:\"https://framerusercontent.com/images/u5A3lCATHoUYeyLasUejchbhJNI.jpg\",srcSet:\"https://framerusercontent.com/images/u5A3lCATHoUYeyLasUejchbhJNI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/u5A3lCATHoUYeyLasUejchbhJNI.jpg 800w\"},\"\"),Fe5LrJyMx:\"January 29, 2025\",height:\"100%\",id:\"vf8kSQjjZ\",layoutId:\"vf8kSQjjZ\",Pds0K7GA1:\"https://www.investors.beamr.com/events/live-webinar-the-future-of-ai-video-from-infrastructure-to-experience\",style:{width:\"100%\"},vrfGFy6oc:\"Watch the webinar: The Future of AI Video - From Infrastructure to Experience\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:334,width:\"366px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-7pvnwo-container\",nodeId:\"RtR21JOaB\",scopeId:\"TtH6Q5E8O\",children:/*#__PURE__*/_jsx(CardPress,{cK4sz_f39:\"Watch now ->\",d5YjiVwZi:addImageAlt({src:\"https://framerusercontent.com/images/gVIkWMMYLHsR73JiXC5gKHGEPQ.png\",srcSet:\"https://framerusercontent.com/images/gVIkWMMYLHsR73JiXC5gKHGEPQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/gVIkWMMYLHsR73JiXC5gKHGEPQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gVIkWMMYLHsR73JiXC5gKHGEPQ.png 1970w\"},\"\"),Fe5LrJyMx:\"December 8, 2024\",height:\"100%\",id:\"RtR21JOaB\",layoutId:\"RtR21JOaB\",Pds0K7GA1:\"https://www.investors.beamr.com/events/beamr-ceo-sharon-carmel-in-an-interview-with-the-nasdaq-amplify-spotlight\",style:{width:\"100%\"},vrfGFy6oc:\"Watch: Beamr CEO, Sharon Carmel, in an interview with the Nasdaq Amplify Spotlight\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-28zb33\",\"data-styles-preset\":\"GiwrK6nH0\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ybJutCK6e\"},motionChild:true,nodeId:\"oCnnja6pi\",openInNewTab:false,scopeId:\"TtH6Q5E8O\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cks8ff\",\"data-styles-preset\":\"NRFuWW4LM\",children:\"View all Events ->\"})})})}),className:\"framer-1wx36uv\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16iz4n9\",\"data-framer-name\":\"Testimonial Section\",id:elementId7,ref:ref8,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-xd8k1b\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pv413x\",\"data-framer-name\":\"Testimonial Stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1eb6xhj\",\"data-styles-preset\":\"IX0wyLhQC\",children:\"What Our Partners Say\"})}),className:\"framer-1utc66b\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ps4alx\",\"data-framer-name\":\"Testimonial Card Deck\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11mb0vk\",\"data-framer-name\":\"Testimonial Card Single\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c9TQUvVNH:{height:453,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 30px) / 2, 50px)`},CF44nfHsT:{width:`min(${componentViewport?.width||\"100vw\"} - 200px, 720px)`},ORDqUmxR5:{height:453,width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1320px), 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1320px) - 46px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-e9584s-container\",nodeId:\"T2QtZJbtC\",scopeId:\"TtH6Q5E8O\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c9TQUvVNH:{style:{width:\"100%\"}},CF44nfHsT:{variant:\"l25xIZZh2\"},ORDqUmxR5:{style:{width:\"100%\"},variant:\"l25xIZZh2\"}},children:/*#__PURE__*/_jsx(TestimonialCard,{bHt_tDIVZ:\"var(--token-a6796134-ead1-4854-80f4-027e3d25f32f, rgb(255, 255, 255))\",CR78IoPpo:\"\\\"The combination of high-performance NVIDIA NVENC with Beamr's CABR technology offers businesses with large video repositories a compelling solution for reducing storage requirements without compromising video quality, at scale\u201D\",ERqdrwcnL:\"Global Broadcast Industry Strategy and Marketing Lead at NVIDIA\",height:\"100%\",id:\"T2QtZJbtC\",layoutId:\"T2QtZJbtC\",style:{height:\"100%\",width:\"100%\"},ufwcfNf8y:\"Sepi Motamedi\",variant:\"OS37_IEGA\",width:\"100%\",yZUdPskf7:addImageAlt({src:\"https://framerusercontent.com/images/RehB2bkr6ZQMIySQs9FRCtx6v4.png\",srcSet:\"https://framerusercontent.com/images/RehB2bkr6ZQMIySQs9FRCtx6v4.png?scale-down-to=512 512w,https://framerusercontent.com/images/RehB2bkr6ZQMIySQs9FRCtx6v4.png 630w\"},\"\")})})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-txty28\",\"data-framer-name\":\"Testimonial Card Single\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c9TQUvVNH:{height:453,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 30px) / 2, 50px)`},CF44nfHsT:{width:`min(${componentViewport?.width||\"100vw\"} - 200px, 720px)`},ORDqUmxR5:{height:453,width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1320px), 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1320px) - 46px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w2hn3k-container\",nodeId:\"useeQjWBc\",scopeId:\"TtH6Q5E8O\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c9TQUvVNH:{style:{width:\"100%\"}},ORDqUmxR5:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(TestimonialCard,{bHt_tDIVZ:\"var(--token-a6796134-ead1-4854-80f4-027e3d25f32f, rgb(255, 255, 255))\",CR78IoPpo:'The cloud represents a huge opportunity for our partner community. Beamr\u2019s commitment to innovation with the Oracle Cloud and quality execution helps our mutual customers receive cloud-enabled, automated, and scalable video processing solutions ready to meet critical business needs\"',ERqdrwcnL:\"Group Vice President, Worldwide ISV Cloud Business Development, Oracle\",height:\"100%\",id:\"useeQjWBc\",layoutId:\"useeQjWBc\",style:{height:\"100%\",width:\"100%\"},ufwcfNf8y:\"David Hicks\",variant:\"OS37_IEGA\",width:\"100%\",yZUdPskf7:addImageAlt({positionX:\"50%\",positionY:\"50%\",src:\"https://framerusercontent.com/images/uUcUddkJ90RXnmXrve1tX49lpik.svg\",srcSet:\"https://framerusercontent.com/images/uUcUddkJ90RXnmXrve1tX49lpik.svg?scale-down-to=512 512w,https://framerusercontent.com/images/uUcUddkJ90RXnmXrve1tX49lpik.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uUcUddkJ90RXnmXrve1tX49lpik.svg 1509w\"},\"\")})})})})})})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ysnr5n\",\"data-framer-name\":\"faq\",id:elementId8,ref:ref9,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tpmfev\",\"data-framer-name\":\"title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c9TQUvVNH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(39, 49, 62)\"},children:\"FAQ\"})})},CF44nfHsT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(39, 49, 62)\"},children:\"FAQ\"})})},ORDqUmxR5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(39, 49, 62)\"},children:\"FAQ\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(39, 49, 62)\"},children:\"FAQ\"})}),className:\"framer-z9sc13\",\"data-framer-name\":\"FAQ\",fonts:[\"GF;Inter Tight-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ORDqUmxR5:{width:`min(${componentViewport?.width||\"100vw\"}, 358px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:529,width:\"720px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-17s3pg1-container\",nodeId:\"KRKOKuq8_\",scopeId:\"TtH6Q5E8O\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ORDqUmxR5:{style:{maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(FaqItemsHome,{height:\"100%\",id:\"KRKOKuq8_\",layoutId:\"KRKOKuq8_\",style:{maxWidth:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:343,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xb2w18-container\",nodeId:\"t5Nqq3vKP\",scopeId:\"TtH6Q5E8O\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c9TQUvVNH:{variant:\"oeq8Tutz7\"},CF44nfHsT:{variant:\"oeq8Tutz7\"},ORDqUmxR5:{variant:\"z1ybUObgC\"}},children:/*#__PURE__*/_jsx(FooterDark,{height:\"100%\",id:\"t5Nqq3vKP\",layoutId:\"t5Nqq3vKP\",style:{width:\"100%\"},variant:\"xT6fDZon2\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dnpvob\",\"data-framer-name\":\"Header Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+39+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c2im5g-container\",nodeId:\"SiydYTdXT\",scopeId:\"TtH6Q5E8O\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c9TQUvVNH:{variant:\"X_QlAWrLd\"},CF44nfHsT:{variant:\"fJTFj2y2a\"},ORDqUmxR5:{variant:\"fJTFj2y2a\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"SiydYTdXT\",layoutId:\"SiydYTdXT\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"XfSZNvbBB\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XF0v5.framer-v01qo1, .framer-XF0v5 .framer-v01qo1 { display: block; }\",\".framer-XF0v5.framer-10cjd7a { align-content: center; align-items: center; background-color: var(--token-a6796134-ead1-4854-80f4-027e3d25f32f, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-XF0v5 .framer-1q1g135 { align-content: center; align-items: center; background-color: var(--token-c831d0cc-7a71-4905-abe9-b1606dbbd3fe, #f5f7f9); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-1ehjcn6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 500px; justify-content: center; overflow: hidden; padding: 100px 0px 100px 100px; position: relative; width: 1px; }\",\".framer-XF0v5 .framer-e2shtt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 718px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-1j0ulpv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-zpe8q-container { flex: none; height: auto; position: relative; width: 80%; }\",\".framer-XF0v5 .framer-t6jd4r { flex: none; height: auto; max-width: 630px; position: relative; white-space: pre-wrap; width: 75%; word-break: break-word; word-wrap: break-word; }\",\".framer-XF0v5 .framer-q6kaj0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 79%; }\",\".framer-XF0v5 .framer-1uj8dv1 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 0px; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-13ru6d8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 60%; }\",'.framer-XF0v5 .framer-fwv57k { --framer-input-background: rgba(187, 187, 187, 0.15); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #999999; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; flex: none; height: 55px; position: relative; width: 100%; }',\".framer-XF0v5 .framer-mbpxkz-container { flex: none; height: 55px; position: relative; width: 40%; }\",\".framer-XF0v5 .framer-sf9w38 { align-content: center; align-items: center; background-color: #f7f7f7; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 100px 0px 100px; position: relative; width: 1px; }\",\".framer-XF0v5 .framer-lm0dkq { 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: 116%; z-index: 1; }\",\".framer-XF0v5 .framer-1dy0m8x-container, .framer-XF0v5 .framer-pi65rj-container, .framer-XF0v5 .framer-md5zjq-container, .framer-XF0v5 .framer-1xb2w18-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-o67au4 { align-content: flex-end; align-items: flex-end; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-start; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-XF0v5 .framer-1lbge3d { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 40px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 40px; z-index: 1; }\",\".framer-XF0v5 .framer-fqbyg9-container { flex: 1 0 0px; height: 1px; opacity: 0.99; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-12e9wda-container { flex: none; height: 100%; opacity: 0; position: absolute; right: 0px; top: 0px; width: 100%; z-index: 1; }\",\".framer-XF0v5 .framer-1gwb37j { 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-XF0v5 .framer-xoxi9l, .framer-XF0v5 .framer-uin08c, .framer-XF0v5 .framer-x3djrl, .framer-XF0v5 .framer-13kjacl, .framer-XF0v5 .framer-ijsg23, .framer-XF0v5 .framer-1fguilh, .framer-XF0v5 .framer-hpzyae, .framer-XF0v5 .framer-a5k05p, .framer-XF0v5 .framer-1xvmc6p, .framer-XF0v5 .framer-zozkoi, .framer-XF0v5 .framer-1n8fjsg, .framer-XF0v5 .framer-1dfp77s, .framer-XF0v5 .framer-1wx36uv, .framer-XF0v5 .framer-1utc66b { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-XF0v5 .framer-1k2hinl { align-content: center; align-items: center; background-color: var(--token-c831d0cc-7a71-4905-abe9-b1606dbbd3fe, #f5f7f9); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-4t14kh, .framer-XF0v5 .framer-2icl7f { align-content: center; align-items: center; 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-XF0v5 .framer-15d2hcv, .framer-XF0v5 .framer-2uisda { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 20px; position: relative; width: 80%; }\",\".framer-XF0v5 .framer-gl9syx { aspect-ratio: 2.2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 58px); overflow: hidden; position: relative; width: 12%; }\",\".framer-XF0v5 .framer-4w1u2v, .framer-XF0v5 .framer-qimlfx, .framer-XF0v5 .framer-1wjjy40 { aspect-ratio: 4.073170731707317 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); overflow: hidden; position: relative; width: 11%; }\",\".framer-XF0v5 .framer-dhz8gw { aspect-ratio: 1.26 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 67px); overflow: hidden; position: relative; width: 8%; }\",\".framer-XF0v5 .framer-1918br6 { align-content: center; align-items: center; background-color: var(--token-c831d0cc-7a71-4905-abe9-b1606dbbd3fe, #f5f7f9); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-1iv989f { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1320px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 1px; }\",\".framer-XF0v5 .framer-va72xc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-1n2sn25-container { flex: none; height: auto; position: relative; width: 60%; }\",\".framer-XF0v5 .framer-1dt1hiz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 89%; word-break: break-word; word-wrap: break-word; }\",\".framer-XF0v5 .framer-1xsz5yn, .framer-XF0v5 .framer-12p34bp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-pufb13, .framer-XF0v5 .framer-1tqcass, .framer-XF0v5 .framer-pwb2je, .framer-XF0v5 .framer-d8fmdr { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-XF0v5 .framer-18n90fj-container, .framer-XF0v5 .framer-gonzrd-container, .framer-XF0v5 .framer-kiqj3s-container, .framer-XF0v5 .framer-1d66o9g-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-XF0v5 .framer-1yqd3bs { align-content: center; align-items: center; background-color: var(--token-c831d0cc-7a71-4905-abe9-b1606dbbd3fe, #f5f7f9); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 260px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-1gucmhy { aspect-ratio: 2.2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 101px); overflow: hidden; position: relative; width: 20%; }\",\".framer-XF0v5 .framer-qryazj { flex: none; height: 100px; overflow: hidden; position: relative; width: 19%; }\",\".framer-XF0v5 .framer-1qrh5l9 { flex: none; height: 100px; overflow: hidden; position: relative; width: 30%; }\",\".framer-XF0v5 .framer-4613wj { align-content: center; align-items: center; background-color: var(--token-a6796134-ead1-4854-80f4-027e3d25f32f, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 100px; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-1rrnp7g { align-content: flex-start; align-items: flex-start; background-color: var(--token-a6796134-ead1-4854-80f4-027e3d25f32f, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 50px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-evrn9z, .framer-XF0v5 .framer-1slv12o, .framer-XF0v5 .framer-cwunuu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-4v3qcm-container { flex: none; height: 500px; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-1te0euy { align-content: center; align-items: center; background-color: var(--token-a6796134-ead1-4854-80f4-027e3d25f32f, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: 500px; justify-content: center; overflow: hidden; padding: 0px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-tmgif1 { align-content: center; align-items: center; background-color: var(--token-a6796134-ead1-4854-80f4-027e3d25f32f, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 500px; justify-content: center; overflow: hidden; padding: 0px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-tfoiay-container { flex: none; height: 400px; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-1tpxvxp, .framer-XF0v5 .framer-ua1vqd { align-content: center; align-items: center; background-color: var(--token-c831d0cc-7a71-4905-abe9-b1606dbbd3fe, #f5f7f9); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 100px 50px 100px; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-njwouj, .framer-XF0v5 .framer-1xvg9jv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-hp7wnw, .framer-XF0v5 .framer-10pbcvn { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-ustz14, .framer-XF0v5 .framer-iv5l1f { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-XF0v5 .framer-5leo87-container, .framer-XF0v5 .framer-9assel-container, .framer-XF0v5 .framer-1d9gfbl-container, .framer-XF0v5 .framer-1tipte9-container, .framer-XF0v5 .framer-sbhpsv-container, .framer-XF0v5 .framer-7pvnwo-container { flex: none; height: auto; position: relative; width: 366px; }\",\".framer-XF0v5 .framer-16iz4n9 { align-content: center; align-items: center; background-color: var(--token-c831d0cc-7a71-4905-abe9-b1606dbbd3fe, #f5f7f9); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 100px 50px 100px; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-xd8k1b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1320px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-pv413x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-1ps4alx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 46px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-11mb0vk { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 423px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-XF0v5 .framer-e9584s-container, .framer-XF0v5 .framer-1w2hn3k-container { flex: none; height: 480px; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-txty28 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-XF0v5 .framer-1ysnr5n { align-content: center; align-items: center; background-color: var(--token-2e26449b-a681-44b8-b222-9e7db1a074fa, #ebecf2); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 128px 0px 128px 0px; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-1tpmfev { 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 0px 10px 0px; position: relative; width: 100%; }\",\".framer-XF0v5 .framer-z9sc13 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-XF0v5 .framer-17s3pg1-container { flex: none; height: auto; max-width: 720px; position: relative; width: auto; }\",\".framer-XF0v5 .framer-dnpvob { align-content: center; align-items: center; background-color: var(--token-c831d0cc-7a71-4905-abe9-b1606dbbd3fe, #f5f7f9); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 39px; transform: translateX(-50%); width: 100%; z-index: 8; }\",\".framer-XF0v5 .framer-1c2im5g-container { flex: none; height: auto; max-width: 100%; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-XF0v5.framer-10cjd7a, .framer-XF0v5 .framer-1q1g135, .framer-XF0v5 .framer-1ehjcn6, .framer-XF0v5 .framer-e2shtt, .framer-XF0v5 .framer-1j0ulpv, .framer-XF0v5 .framer-q6kaj0, .framer-XF0v5 .framer-1uj8dv1, .framer-XF0v5 .framer-13ru6d8, .framer-XF0v5 .framer-sf9w38, .framer-XF0v5 .framer-lm0dkq, .framer-XF0v5 .framer-o67au4, .framer-XF0v5 .framer-1lbge3d, .framer-XF0v5 .framer-1gwb37j, .framer-XF0v5 .framer-1k2hinl, .framer-XF0v5 .framer-4t14kh, .framer-XF0v5 .framer-1918br6, .framer-XF0v5 .framer-1iv989f, .framer-XF0v5 .framer-va72xc, .framer-XF0v5 .framer-1xsz5yn, .framer-XF0v5 .framer-pufb13, .framer-XF0v5 .framer-1tqcass, .framer-XF0v5 .framer-12p34bp, .framer-XF0v5 .framer-pwb2je, .framer-XF0v5 .framer-d8fmdr, .framer-XF0v5 .framer-1yqd3bs, .framer-XF0v5 .framer-2icl7f, .framer-XF0v5 .framer-4613wj, .framer-XF0v5 .framer-1rrnp7g, .framer-XF0v5 .framer-evrn9z, .framer-XF0v5 .framer-1te0euy, .framer-XF0v5 .framer-1slv12o, .framer-XF0v5 .framer-tmgif1, .framer-XF0v5 .framer-cwunuu, .framer-XF0v5 .framer-1tpxvxp, .framer-XF0v5 .framer-njwouj, .framer-XF0v5 .framer-hp7wnw, .framer-XF0v5 .framer-ua1vqd, .framer-XF0v5 .framer-1xvg9jv, .framer-XF0v5 .framer-10pbcvn, .framer-XF0v5 .framer-16iz4n9, .framer-XF0v5 .framer-xd8k1b, .framer-XF0v5 .framer-pv413x, .framer-XF0v5 .framer-1ps4alx, .framer-XF0v5 .framer-11mb0vk, .framer-XF0v5 .framer-txty28, .framer-XF0v5 .framer-1ysnr5n, .framer-XF0v5 .framer-1tpmfev, .framer-XF0v5 .framer-dnpvob { gap: 0px; } .framer-XF0v5.framer-10cjd7a > *, .framer-XF0v5 .framer-o67au4 > *, .framer-XF0v5 .framer-1lbge3d > *, .framer-XF0v5 .framer-tmgif1 > *, .framer-XF0v5 .framer-16iz4n9 > *, .framer-XF0v5 .framer-xd8k1b > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-XF0v5.framer-10cjd7a > :first-child, .framer-XF0v5 .framer-e2shtt > :first-child, .framer-XF0v5 .framer-1j0ulpv > :first-child, .framer-XF0v5 .framer-q6kaj0 > :first-child, .framer-XF0v5 .framer-13ru6d8 > :first-child, .framer-XF0v5 .framer-sf9w38 > :first-child, .framer-XF0v5 .framer-lm0dkq > :first-child, .framer-XF0v5 .framer-o67au4 > :first-child, .framer-XF0v5 .framer-1lbge3d > :first-child, .framer-XF0v5 .framer-1gwb37j > :first-child, .framer-XF0v5 .framer-1k2hinl > :first-child, .framer-XF0v5 .framer-4t14kh > :first-child, .framer-XF0v5 .framer-1iv989f > :first-child, .framer-XF0v5 .framer-va72xc > :first-child, .framer-XF0v5 .framer-1yqd3bs > :first-child, .framer-XF0v5 .framer-2icl7f > :first-child, .framer-XF0v5 .framer-4613wj > :first-child, .framer-XF0v5 .framer-1rrnp7g > :first-child, .framer-XF0v5 .framer-evrn9z > :first-child, .framer-XF0v5 .framer-1te0euy > :first-child, .framer-XF0v5 .framer-1slv12o > :first-child, .framer-XF0v5 .framer-tmgif1 > :first-child, .framer-XF0v5 .framer-cwunuu > :first-child, .framer-XF0v5 .framer-njwouj > :first-child, .framer-XF0v5 .framer-1xvg9jv > :first-child, .framer-XF0v5 .framer-16iz4n9 > :first-child, .framer-XF0v5 .framer-xd8k1b > :first-child, .framer-XF0v5 .framer-pv413x > :first-child, .framer-XF0v5 .framer-11mb0vk > :first-child, .framer-XF0v5 .framer-txty28 > :first-child, .framer-XF0v5 .framer-1ysnr5n > :first-child { margin-top: 0px; } .framer-XF0v5.framer-10cjd7a > :last-child, .framer-XF0v5 .framer-e2shtt > :last-child, .framer-XF0v5 .framer-1j0ulpv > :last-child, .framer-XF0v5 .framer-q6kaj0 > :last-child, .framer-XF0v5 .framer-13ru6d8 > :last-child, .framer-XF0v5 .framer-sf9w38 > :last-child, .framer-XF0v5 .framer-lm0dkq > :last-child, .framer-XF0v5 .framer-o67au4 > :last-child, .framer-XF0v5 .framer-1lbge3d > :last-child, .framer-XF0v5 .framer-1gwb37j > :last-child, .framer-XF0v5 .framer-1k2hinl > :last-child, .framer-XF0v5 .framer-4t14kh > :last-child, .framer-XF0v5 .framer-1iv989f > :last-child, .framer-XF0v5 .framer-va72xc > :last-child, .framer-XF0v5 .framer-1yqd3bs > :last-child, .framer-XF0v5 .framer-2icl7f > :last-child, .framer-XF0v5 .framer-4613wj > :last-child, .framer-XF0v5 .framer-1rrnp7g > :last-child, .framer-XF0v5 .framer-evrn9z > :last-child, .framer-XF0v5 .framer-1te0euy > :last-child, .framer-XF0v5 .framer-1slv12o > :last-child, .framer-XF0v5 .framer-tmgif1 > :last-child, .framer-XF0v5 .framer-cwunuu > :last-child, .framer-XF0v5 .framer-njwouj > :last-child, .framer-XF0v5 .framer-1xvg9jv > :last-child, .framer-XF0v5 .framer-16iz4n9 > :last-child, .framer-XF0v5 .framer-xd8k1b > :last-child, .framer-XF0v5 .framer-pv413x > :last-child, .framer-XF0v5 .framer-11mb0vk > :last-child, .framer-XF0v5 .framer-txty28 > :last-child, .framer-XF0v5 .framer-1ysnr5n > :last-child { margin-bottom: 0px; } .framer-XF0v5 .framer-1q1g135 > *, .framer-XF0v5 .framer-1ehjcn6 > *, .framer-XF0v5 .framer-1918br6 > *, .framer-XF0v5 .framer-pufb13 > *, .framer-XF0v5 .framer-1tqcass > *, .framer-XF0v5 .framer-pwb2je > *, .framer-XF0v5 .framer-d8fmdr > *, .framer-XF0v5 .framer-1tpxvxp > *, .framer-XF0v5 .framer-ua1vqd > *, .framer-XF0v5 .framer-1tpmfev > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-XF0v5 .framer-1q1g135 > :first-child, .framer-XF0v5 .framer-1ehjcn6 > :first-child, .framer-XF0v5 .framer-1uj8dv1 > :first-child, .framer-XF0v5 .framer-1918br6 > :first-child, .framer-XF0v5 .framer-1xsz5yn > :first-child, .framer-XF0v5 .framer-pufb13 > :first-child, .framer-XF0v5 .framer-1tqcass > :first-child, .framer-XF0v5 .framer-12p34bp > :first-child, .framer-XF0v5 .framer-pwb2je > :first-child, .framer-XF0v5 .framer-d8fmdr > :first-child, .framer-XF0v5 .framer-1tpxvxp > :first-child, .framer-XF0v5 .framer-hp7wnw > :first-child, .framer-XF0v5 .framer-ua1vqd > :first-child, .framer-XF0v5 .framer-10pbcvn > :first-child, .framer-XF0v5 .framer-1ps4alx > :first-child, .framer-XF0v5 .framer-1tpmfev > :first-child, .framer-XF0v5 .framer-dnpvob > :first-child { margin-left: 0px; } .framer-XF0v5 .framer-1q1g135 > :last-child, .framer-XF0v5 .framer-1ehjcn6 > :last-child, .framer-XF0v5 .framer-1uj8dv1 > :last-child, .framer-XF0v5 .framer-1918br6 > :last-child, .framer-XF0v5 .framer-1xsz5yn > :last-child, .framer-XF0v5 .framer-pufb13 > :last-child, .framer-XF0v5 .framer-1tqcass > :last-child, .framer-XF0v5 .framer-12p34bp > :last-child, .framer-XF0v5 .framer-pwb2je > :last-child, .framer-XF0v5 .framer-d8fmdr > :last-child, .framer-XF0v5 .framer-1tpxvxp > :last-child, .framer-XF0v5 .framer-hp7wnw > :last-child, .framer-XF0v5 .framer-ua1vqd > :last-child, .framer-XF0v5 .framer-10pbcvn > :last-child, .framer-XF0v5 .framer-1ps4alx > :last-child, .framer-XF0v5 .framer-1tpmfev > :last-child, .framer-XF0v5 .framer-dnpvob > :last-child { margin-right: 0px; } .framer-XF0v5 .framer-e2shtt > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-XF0v5 .framer-1j0ulpv > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-XF0v5 .framer-q6kaj0 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-XF0v5 .framer-1uj8dv1 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-XF0v5 .framer-13ru6d8 > *, .framer-XF0v5 .framer-lm0dkq > *, .framer-XF0v5 .framer-1gwb37j > *, .framer-XF0v5 .framer-11mb0vk > *, .framer-XF0v5 .framer-txty28 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-XF0v5 .framer-sf9w38 > *, .framer-XF0v5 .framer-1k2hinl > *, .framer-XF0v5 .framer-4t14kh > *, .framer-XF0v5 .framer-1yqd3bs > *, .framer-XF0v5 .framer-2icl7f > *, .framer-XF0v5 .framer-1rrnp7g > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-XF0v5 .framer-1iv989f > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-XF0v5 .framer-va72xc > *, .framer-XF0v5 .framer-1te0euy > *, .framer-XF0v5 .framer-njwouj > *, .framer-XF0v5 .framer-1xvg9jv > *, .framer-XF0v5 .framer-pv413x > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-XF0v5 .framer-1xsz5yn > *, .framer-XF0v5 .framer-12p34bp > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-XF0v5 .framer-4613wj > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-XF0v5 .framer-evrn9z > *, .framer-XF0v5 .framer-1slv12o > *, .framer-XF0v5 .framer-cwunuu > *, .framer-XF0v5 .framer-1ysnr5n > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-XF0v5 .framer-hp7wnw > *, .framer-XF0v5 .framer-10pbcvn > * { margin: 0px; margin-left: calc(-1px / 2); margin-right: calc(-1px / 2); } .framer-XF0v5 .framer-1ps4alx > * { margin: 0px; margin-left: calc(46px / 2); margin-right: calc(46px / 2); } .framer-XF0v5 .framer-dnpvob > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,\"@media (min-width: 992px) and (max-width: 1439px) { .framer-XF0v5.framer-10cjd7a { width: 992px; } .framer-XF0v5 .framer-1q1g135 { height: 605px; padding: 80px 0px 60px 0px; } .framer-XF0v5 .framer-1ehjcn6 { gap: 30px; order: 0; padding: 20px 0px 20px 50px; } .framer-XF0v5 .framer-e2shtt { gap: 0px; } .framer-XF0v5 .framer-1j0ulpv { padding: 55px 0px 55px 0px; } .framer-XF0v5 .framer-t6jd4r { width: 80%; } .framer-XF0v5 .framer-q6kaj0 { width: 100%; } .framer-XF0v5 .framer-mbpxkz-container { width: 180px; } .framer-XF0v5 .framer-sf9w38 { order: 1; padding: 0px 20px 0px 20px; } .framer-XF0v5 .framer-lm0dkq { order: 2; width: 100%; } .framer-XF0v5 .framer-1gwb37j { order: 3; } .framer-XF0v5 .framer-4t14kh, .framer-XF0v5 .framer-2icl7f { gap: 48px; } .framer-XF0v5 .framer-15d2hcv, .framer-XF0v5 .framer-2uisda { gap: 20px; justify-content: center; width: 90%; } .framer-XF0v5 .framer-gl9syx { height: var(--framer-aspect-ratio-supported, 57px); width: 16%; } .framer-XF0v5 .framer-4w1u2v, .framer-XF0v5 .framer-1wjjy40 { height: var(--framer-aspect-ratio-supported, 31px); width: 16%; } .framer-XF0v5 .framer-qimlfx { height: var(--framer-aspect-ratio-supported, 35px); width: 18%; } .framer-XF0v5 .framer-dhz8gw { aspect-ratio: 1.264516129032258 / 1; height: var(--framer-aspect-ratio-supported, 74px); width: 12%; } .framer-XF0v5 .framer-1918br6 { padding: 80px 0px 120px 0px; } .framer-XF0v5 .framer-1iv989f { gap: 65px; max-width: 1000px; } .framer-XF0v5 .framer-1xsz5yn, .framer-XF0v5 .framer-12p34bp { gap: 30px; } .framer-XF0v5 .framer-pwb2je { order: 0; } .framer-XF0v5 .framer-d8fmdr { order: 1; } .framer-XF0v5 .framer-1d66o9g-container { flex: none; order: 0; width: 451px; z-index: 1; } .framer-XF0v5 .framer-1gucmhy { height: var(--framer-aspect-ratio-supported, 62px); width: 16%; } .framer-XF0v5 .framer-qryazj { height: 42px; width: 18%; } .framer-XF0v5 .framer-1qrh5l9 { height: 41px; width: 16%; } .framer-XF0v5 .framer-1rrnp7g { padding: 40px; } .framer-XF0v5 .framer-1te0euy, .framer-XF0v5 .framer-tmgif1 { height: min-content; padding: 100px; } .framer-XF0v5 .framer-1tpxvxp, .framer-XF0v5 .framer-ua1vqd { padding: 100px; } .framer-XF0v5 .framer-16iz4n9 { padding: 100px 100px 120px 100px; } .framer-XF0v5 .framer-xd8k1b { max-width: 1000px; } .framer-XF0v5 .framer-1ps4alx { align-content: unset; align-items: unset; display: grid; gap: 30px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); } .framer-XF0v5 .framer-11mb0vk, .framer-XF0v5 .framer-txty28 { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-XF0v5 .framer-e9584s-container, .framer-XF0v5 .framer-1w2hn3k-container { height: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-XF0v5 .framer-1ehjcn6, .framer-XF0v5 .framer-e2shtt, .framer-XF0v5 .framer-4t14kh, .framer-XF0v5 .framer-15d2hcv, .framer-XF0v5 .framer-1iv989f, .framer-XF0v5 .framer-1xsz5yn, .framer-XF0v5 .framer-12p34bp, .framer-XF0v5 .framer-2icl7f, .framer-XF0v5 .framer-2uisda, .framer-XF0v5 .framer-1ps4alx { gap: 0px; } .framer-XF0v5 .framer-1ehjcn6 > *, .framer-XF0v5 .framer-1xsz5yn > *, .framer-XF0v5 .framer-12p34bp > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-XF0v5 .framer-1ehjcn6 > :first-child, .framer-XF0v5 .framer-15d2hcv > :first-child, .framer-XF0v5 .framer-1xsz5yn > :first-child, .framer-XF0v5 .framer-12p34bp > :first-child, .framer-XF0v5 .framer-2uisda > :first-child { margin-left: 0px; } .framer-XF0v5 .framer-1ehjcn6 > :last-child, .framer-XF0v5 .framer-15d2hcv > :last-child, .framer-XF0v5 .framer-1xsz5yn > :last-child, .framer-XF0v5 .framer-12p34bp > :last-child, .framer-XF0v5 .framer-2uisda > :last-child { margin-right: 0px; } .framer-XF0v5 .framer-e2shtt > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-XF0v5 .framer-e2shtt > :first-child, .framer-XF0v5 .framer-4t14kh > :first-child, .framer-XF0v5 .framer-1iv989f > :first-child, .framer-XF0v5 .framer-2icl7f > :first-child { margin-top: 0px; } .framer-XF0v5 .framer-e2shtt > :last-child, .framer-XF0v5 .framer-4t14kh > :last-child, .framer-XF0v5 .framer-1iv989f > :last-child, .framer-XF0v5 .framer-2icl7f > :last-child { margin-bottom: 0px; } .framer-XF0v5 .framer-4t14kh > *, .framer-XF0v5 .framer-2icl7f > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-XF0v5 .framer-15d2hcv > *, .framer-XF0v5 .framer-2uisda > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-XF0v5 .framer-1iv989f > * { margin: 0px; margin-bottom: calc(65px / 2); margin-top: calc(65px / 2); } .framer-XF0v5 .framer-1ps4alx > *, .framer-XF0v5 .framer-1ps4alx > :first-child, .framer-XF0v5 .framer-1ps4alx > :last-child { margin: 0px; } }}\",\"@media (min-width: 768px) and (max-width: 991px) { .framer-XF0v5.framer-10cjd7a { width: 768px; } .framer-XF0v5 .framer-1q1g135 { flex-direction: column; padding: 40px 0px 60px 0px; } .framer-XF0v5 .framer-1ehjcn6 { flex: none; height: 566px; order: 0; padding: 40px; width: 100%; } .framer-XF0v5 .framer-e2shtt { align-content: center; align-items: center; flex: 1 0 0px; justify-content: center; width: 1px; } .framer-XF0v5 .framer-1j0ulpv { align-content: center; align-items: center; height: 246px; order: 0; } .framer-XF0v5 .framer-zpe8q-container, .framer-XF0v5 .framer-13ru6d8 { order: 0; } .framer-XF0v5 .framer-t6jd4r { order: 1; width: 100%; } .framer-XF0v5 .framer-q6kaj0 { order: 1; width: 70%; } .framer-XF0v5 .framer-mbpxkz-container { order: 1; } .framer-XF0v5 .framer-sf9w38 { flex: none; order: 1; width: 100%; } .framer-XF0v5 .framer-4t14kh, .framer-XF0v5 .framer-2icl7f { gap: 15px; } .framer-XF0v5 .framer-15d2hcv, .framer-XF0v5 .framer-2uisda { gap: 30px; justify-content: center; width: 90%; } .framer-XF0v5 .framer-gl9syx, .framer-XF0v5 .framer-1gucmhy { height: var(--framer-aspect-ratio-supported, 91px); width: 16%; } .framer-XF0v5 .framer-4w1u2v, .framer-XF0v5 .framer-1wjjy40 { height: var(--framer-aspect-ratio-supported, 49px); width: 16%; } .framer-XF0v5 .framer-qimlfx { height: var(--framer-aspect-ratio-supported, 49px); width: 18%; } .framer-XF0v5 .framer-dhz8gw { height: var(--framer-aspect-ratio-supported, 159px); width: 13%; } .framer-XF0v5 .framer-1iv989f { gap: 40px; max-width: 720px; } .framer-XF0v5 .framer-1n2sn25-container { width: 70%; } .framer-XF0v5 .framer-1xsz5yn { align-content: unset; align-items: unset; display: grid; gap: 50px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); } .framer-XF0v5 .framer-pufb13, .framer-XF0v5 .framer-1tqcass, .framer-XF0v5 .framer-pwb2je, .framer-XF0v5 .framer-d8fmdr { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-XF0v5 .framer-gonzrd-container, .framer-XF0v5 .framer-1d66o9g-container { flex: none; order: 0; width: 305px; z-index: 1; } .framer-XF0v5 .framer-12p34bp { align-content: unset; align-items: unset; display: grid; gap: 51px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); } .framer-XF0v5 .framer-1yqd3bs { height: 240px; } .framer-XF0v5 .framer-qryazj { width: 18%; } .framer-XF0v5 .framer-1qrh5l9 { width: 16%; } .framer-XF0v5 .framer-4613wj { padding: 40px; } .framer-XF0v5 .framer-1rrnp7g { padding: 80px 100px 80px 100px; } .framer-XF0v5 .framer-1te0euy, .framer-XF0v5 .framer-tmgif1 { height: min-content; padding: 40px; } .framer-XF0v5 .framer-1tpxvxp, .framer-XF0v5 .framer-ua1vqd { flex-direction: column; padding: 40px; } .framer-XF0v5 .framer-njwouj, .framer-XF0v5 .framer-1xvg9jv { align-content: center; align-items: center; } .framer-XF0v5 .framer-hp7wnw, .framer-XF0v5 .framer-10pbcvn { flex-wrap: wrap; width: min-content; } .framer-XF0v5 .framer-ustz14, .framer-XF0v5 .framer-iv5l1f { flex: none; flex-direction: column; gap: 40px; justify-content: flex-start; padding: 40px; width: min-content; } .framer-XF0v5 .framer-16iz4n9 { padding: 80px 100px 100px 100px; } .framer-XF0v5 .framer-xd8k1b { max-width: 720px; } .framer-XF0v5 .framer-pv413x { gap: 60px; } .framer-XF0v5 .framer-1ps4alx { flex-direction: column; gap: 30px; } .framer-XF0v5 .framer-11mb0vk { flex: none; height: min-content; width: 100%; } .framer-XF0v5 .framer-txty28 { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-XF0v5 .framer-1q1g135, .framer-XF0v5 .framer-4t14kh, .framer-XF0v5 .framer-15d2hcv, .framer-XF0v5 .framer-1iv989f, .framer-XF0v5 .framer-1xsz5yn, .framer-XF0v5 .framer-12p34bp, .framer-XF0v5 .framer-2icl7f, .framer-XF0v5 .framer-2uisda, .framer-XF0v5 .framer-1tpxvxp, .framer-XF0v5 .framer-ustz14, .framer-XF0v5 .framer-ua1vqd, .framer-XF0v5 .framer-iv5l1f, .framer-XF0v5 .framer-pv413x, .framer-XF0v5 .framer-1ps4alx { gap: 0px; } .framer-XF0v5 .framer-1q1g135 > *, .framer-XF0v5 .framer-1tpxvxp > *, .framer-XF0v5 .framer-ua1vqd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-XF0v5 .framer-1q1g135 > :first-child, .framer-XF0v5 .framer-4t14kh > :first-child, .framer-XF0v5 .framer-1iv989f > :first-child, .framer-XF0v5 .framer-2icl7f > :first-child, .framer-XF0v5 .framer-1tpxvxp > :first-child, .framer-XF0v5 .framer-ustz14 > :first-child, .framer-XF0v5 .framer-ua1vqd > :first-child, .framer-XF0v5 .framer-iv5l1f > :first-child, .framer-XF0v5 .framer-pv413x > :first-child, .framer-XF0v5 .framer-1ps4alx > :first-child { margin-top: 0px; } .framer-XF0v5 .framer-1q1g135 > :last-child, .framer-XF0v5 .framer-4t14kh > :last-child, .framer-XF0v5 .framer-1iv989f > :last-child, .framer-XF0v5 .framer-2icl7f > :last-child, .framer-XF0v5 .framer-1tpxvxp > :last-child, .framer-XF0v5 .framer-ustz14 > :last-child, .framer-XF0v5 .framer-ua1vqd > :last-child, .framer-XF0v5 .framer-iv5l1f > :last-child, .framer-XF0v5 .framer-pv413x > :last-child, .framer-XF0v5 .framer-1ps4alx > :last-child { margin-bottom: 0px; } .framer-XF0v5 .framer-4t14kh > *, .framer-XF0v5 .framer-2icl7f > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-XF0v5 .framer-15d2hcv > *, .framer-XF0v5 .framer-2uisda > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-XF0v5 .framer-15d2hcv > :first-child, .framer-XF0v5 .framer-2uisda > :first-child { margin-left: 0px; } .framer-XF0v5 .framer-15d2hcv > :last-child, .framer-XF0v5 .framer-2uisda > :last-child { margin-right: 0px; } .framer-XF0v5 .framer-1iv989f > *, .framer-XF0v5 .framer-ustz14 > *, .framer-XF0v5 .framer-iv5l1f > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-XF0v5 .framer-1xsz5yn > *, .framer-XF0v5 .framer-1xsz5yn > :first-child, .framer-XF0v5 .framer-1xsz5yn > :last-child, .framer-XF0v5 .framer-12p34bp > *, .framer-XF0v5 .framer-12p34bp > :first-child, .framer-XF0v5 .framer-12p34bp > :last-child { margin: 0px; } .framer-XF0v5 .framer-pv413x > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-XF0v5 .framer-1ps4alx > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}\",\"@media (max-width: 767px) { .framer-XF0v5.framer-10cjd7a { width: 390px; } .framer-XF0v5 .framer-1q1g135 { flex-direction: column; padding: 20px 0px 0px 0px; } .framer-XF0v5 .framer-1ehjcn6 { flex: none; height: min-content; order: 0; padding: 80px 0px 20px 20px; width: 100%; } .framer-XF0v5 .framer-e2shtt { align-content: center; align-items: center; flex: 1 0 0px; justify-content: center; order: 0; width: 1px; } .framer-XF0v5 .framer-1j0ulpv { align-content: center; align-items: center; } .framer-XF0v5 .framer-zpe8q-container { order: 0; } .framer-XF0v5 .framer-t6jd4r { order: 1; } .framer-XF0v5 .framer-q6kaj0 { gap: 20px; width: 100%; } .framer-XF0v5 .framer-1uj8dv1 { flex-direction: column; padding: 0px 20px 0px 20px; } .framer-XF0v5 .framer-13ru6d8, .framer-XF0v5 .framer-mbpxkz-container, .framer-XF0v5 .framer-lm0dkq, .framer-XF0v5 .framer-1n2sn25-container { width: 100%; } .framer-XF0v5 .framer-sf9w38 { flex: none; height: 400px; order: 1; padding: 0px; width: 100%; } .framer-XF0v5 .framer-1lbge3d { height: var(--framer-aspect-ratio-supported, 30px); width: 30px; } .framer-XF0v5 .framer-1gwb37j, .framer-XF0v5 .framer-16iz4n9 { padding: 0px 20px 0px 20px; } .framer-XF0v5 .framer-1k2hinl { padding: 60px; } .framer-XF0v5 .framer-4t14kh, .framer-XF0v5 .framer-2icl7f { gap: 13px; } .framer-XF0v5 .framer-uin08c, .framer-XF0v5 .framer-x3djrl, .framer-XF0v5 .framer-ijsg23, .framer-XF0v5 .framer-1xvmc6p { max-width: 264px; } .framer-XF0v5 .framer-15d2hcv, .framer-XF0v5 .framer-2uisda { gap: 17px; justify-content: center; width: 100%; } .framer-XF0v5 .framer-gl9syx, .framer-XF0v5 .framer-1gucmhy { height: var(--framer-aspect-ratio-supported, 91px); width: 31%; } .framer-XF0v5 .framer-qimlfx { height: var(--framer-aspect-ratio-supported, 49px); width: 31%; } .framer-XF0v5 .framer-dhz8gw { height: var(--framer-aspect-ratio-supported, 159px); width: 20%; } .framer-XF0v5 .framer-1918br6 { padding: 40px 0px 40px 0px; } .framer-XF0v5 .framer-1iv989f { gap: 30px; max-width: 524px; } .framer-XF0v5 .framer-1xsz5yn, .framer-XF0v5 .framer-1ps4alx { flex-direction: column; gap: 30px; } .framer-XF0v5 .framer-pufb13, .framer-XF0v5 .framer-1tqcass, .framer-XF0v5 .framer-pwb2je, .framer-XF0v5 .framer-d8fmdr, .framer-XF0v5 .framer-txty28 { flex: none; width: 100%; } .framer-XF0v5 .framer-12p34bp { flex-direction: column; gap: 30px; max-width: 370px; } .framer-XF0v5 .framer-1yqd3bs { height: 251px; } .framer-XF0v5 .framer-qryazj, .framer-XF0v5 .framer-1qrh5l9 { width: 31%; } .framer-XF0v5 .framer-4613wj { padding: 40px 0px 40px 0px; width: 80%; } .framer-XF0v5 .framer-1rrnp7g, .framer-XF0v5 .framer-1tpxvxp, .framer-XF0v5 .framer-ua1vqd { padding: 20px; } .framer-XF0v5 .framer-1te0euy { height: min-content; padding: 20px; } .framer-XF0v5 .framer-tmgif1 { gap: 40px; height: min-content; padding: 20px; } .framer-XF0v5 .framer-tfoiay-container { height: 600px; } .framer-XF0v5 .framer-hp7wnw, .framer-XF0v5 .framer-10pbcvn { flex-direction: column; } .framer-XF0v5 .framer-ustz14, .framer-XF0v5 .framer-iv5l1f { border-top-right-radius: 8px; flex: none; flex-direction: column; gap: 20px; justify-content: flex-start; width: 100%; will-change: var(--framer-will-change-override, transform); } .framer-XF0v5 .framer-xd8k1b { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); justify-content: center; padding: 20px 0px 20px 0px; } .framer-XF0v5 .framer-pv413x { align-self: start; gap: 40px; height: 100%; justify-self: start; } .framer-XF0v5 .framer-11mb0vk { flex: none; height: min-content; width: 100%; } .framer-XF0v5 .framer-e9584s-container, .framer-XF0v5 .framer-1w2hn3k-container { height: auto; } .framer-XF0v5 .framer-1ysnr5n { padding: 80px 0px 80px 0px; } .framer-XF0v5 .framer-17s3pg1-container { max-width: 358px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-XF0v5 .framer-1q1g135, .framer-XF0v5 .framer-q6kaj0, .framer-XF0v5 .framer-1uj8dv1, .framer-XF0v5 .framer-4t14kh, .framer-XF0v5 .framer-15d2hcv, .framer-XF0v5 .framer-1iv989f, .framer-XF0v5 .framer-1xsz5yn, .framer-XF0v5 .framer-12p34bp, .framer-XF0v5 .framer-2icl7f, .framer-XF0v5 .framer-2uisda, .framer-XF0v5 .framer-tmgif1, .framer-XF0v5 .framer-hp7wnw, .framer-XF0v5 .framer-ustz14, .framer-XF0v5 .framer-10pbcvn, .framer-XF0v5 .framer-iv5l1f, .framer-XF0v5 .framer-xd8k1b, .framer-XF0v5 .framer-pv413x, .framer-XF0v5 .framer-1ps4alx { gap: 0px; } .framer-XF0v5 .framer-1q1g135 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-XF0v5 .framer-1q1g135 > :first-child, .framer-XF0v5 .framer-q6kaj0 > :first-child, .framer-XF0v5 .framer-1uj8dv1 > :first-child, .framer-XF0v5 .framer-4t14kh > :first-child, .framer-XF0v5 .framer-1iv989f > :first-child, .framer-XF0v5 .framer-1xsz5yn > :first-child, .framer-XF0v5 .framer-12p34bp > :first-child, .framer-XF0v5 .framer-2icl7f > :first-child, .framer-XF0v5 .framer-tmgif1 > :first-child, .framer-XF0v5 .framer-hp7wnw > :first-child, .framer-XF0v5 .framer-ustz14 > :first-child, .framer-XF0v5 .framer-10pbcvn > :first-child, .framer-XF0v5 .framer-iv5l1f > :first-child, .framer-XF0v5 .framer-pv413x > :first-child, .framer-XF0v5 .framer-1ps4alx > :first-child { margin-top: 0px; } .framer-XF0v5 .framer-1q1g135 > :last-child, .framer-XF0v5 .framer-q6kaj0 > :last-child, .framer-XF0v5 .framer-1uj8dv1 > :last-child, .framer-XF0v5 .framer-4t14kh > :last-child, .framer-XF0v5 .framer-1iv989f > :last-child, .framer-XF0v5 .framer-1xsz5yn > :last-child, .framer-XF0v5 .framer-12p34bp > :last-child, .framer-XF0v5 .framer-2icl7f > :last-child, .framer-XF0v5 .framer-tmgif1 > :last-child, .framer-XF0v5 .framer-hp7wnw > :last-child, .framer-XF0v5 .framer-ustz14 > :last-child, .framer-XF0v5 .framer-10pbcvn > :last-child, .framer-XF0v5 .framer-iv5l1f > :last-child, .framer-XF0v5 .framer-pv413x > :last-child, .framer-XF0v5 .framer-1ps4alx > :last-child { margin-bottom: 0px; } .framer-XF0v5 .framer-q6kaj0 > *, .framer-XF0v5 .framer-1uj8dv1 > *, .framer-XF0v5 .framer-ustz14 > *, .framer-XF0v5 .framer-iv5l1f > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-XF0v5 .framer-4t14kh > *, .framer-XF0v5 .framer-2icl7f > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-XF0v5 .framer-15d2hcv > *, .framer-XF0v5 .framer-2uisda > * { margin: 0px; margin-left: calc(17px / 2); margin-right: calc(17px / 2); } .framer-XF0v5 .framer-15d2hcv > :first-child, .framer-XF0v5 .framer-2uisda > :first-child { margin-left: 0px; } .framer-XF0v5 .framer-15d2hcv > :last-child, .framer-XF0v5 .framer-2uisda > :last-child { margin-right: 0px; } .framer-XF0v5 .framer-1iv989f > *, .framer-XF0v5 .framer-1xsz5yn > *, .framer-XF0v5 .framer-12p34bp > *, .framer-XF0v5 .framer-1ps4alx > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-XF0v5 .framer-tmgif1 > *, .framer-XF0v5 .framer-pv413x > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-XF0v5 .framer-hp7wnw > *, .framer-XF0v5 .framer-10pbcvn > * { margin: 0px; margin-bottom: calc(-1px / 2); margin-top: calc(-1px / 2); } .framer-XF0v5 .framer-xd8k1b > *, .framer-XF0v5 .framer-xd8k1b > :first-child, .framer-XF0v5 .framer-xd8k1b > :last-child { margin: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7818.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"c9TQUvVNH\":{\"layout\":[\"fixed\",\"auto\"]},\"CF44nfHsT\":{\"layout\":[\"fixed\",\"auto\"]},\"ORDqUmxR5\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"KAdpZftoH\":{\"pattern\":\":KAdpZftoH\",\"name\":\"about\"},\"Onh7_QKPN\":{\"pattern\":\":Onh7_QKPN\",\"name\":\"deck\"},\"vYU5zyLNv\":{\"pattern\":\":vYU5zyLNv\",\"name\":\"quote\"},\"S4xg8SkAE\":{\"pattern\":\":S4xg8SkAE\",\"name\":\"finanacial-data\"},\"t_OpWp54F\":{\"pattern\":\":t_OpWp54F\",\"name\":\"sec-filings\"},\"GbUDsZJyZ\":{\"pattern\":\":GbUDsZJyZ\",\"name\":\"news\"},\"hMHJ8LONs\":{\"pattern\":\":hMHJ8LONs\",\"name\":\"news\"},\"H2se2SPKB\":{\"pattern\":\":H2se2SPKB\",\"name\":\"partners\"},\"EF5AOw7yH\":{\"pattern\":\":EF5AOw7yH\",\"name\":\"faq\"}}\n * @framerResponsiveScreen\n */const FramerTtH6Q5E8O=withCSS(Component,css,\"framer-XF0v5\");export default FramerTtH6Q5E8O;FramerTtH6Q5E8O.displayName=\"Home\";FramerTtH6Q5E8O.defaultProps={height:7818.5,width:1440};addFonts(FramerTtH6Q5E8O,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj6AiqWSRToK8EPg.woff2\",weight:\"700\"}]},...GradientHeadingFonts,...Button2Fonts,...VideoFonts,...MaterialFonts,...SectionHeadingFonts,...FeatureWidgetFonts,...EmbedFonts,...FinancialData2Fonts,...CardPressFonts,...TestimonialCardFonts,...FaqItemsHomeFonts,...FooterDarkFonts,...NavigationFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTtH6Q5E8O\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"7818.5\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"KAdpZftoH\\\":{\\\"pattern\\\":\\\":KAdpZftoH\\\",\\\"name\\\":\\\"about\\\"},\\\"Onh7_QKPN\\\":{\\\"pattern\\\":\\\":Onh7_QKPN\\\",\\\"name\\\":\\\"deck\\\"},\\\"vYU5zyLNv\\\":{\\\"pattern\\\":\\\":vYU5zyLNv\\\",\\\"name\\\":\\\"quote\\\"},\\\"S4xg8SkAE\\\":{\\\"pattern\\\":\\\":S4xg8SkAE\\\",\\\"name\\\":\\\"finanacial-data\\\"},\\\"t_OpWp54F\\\":{\\\"pattern\\\":\\\":t_OpWp54F\\\",\\\"name\\\":\\\"sec-filings\\\"},\\\"GbUDsZJyZ\\\":{\\\"pattern\\\":\\\":GbUDsZJyZ\\\",\\\"name\\\":\\\"news\\\"},\\\"hMHJ8LONs\\\":{\\\"pattern\\\":\\\":hMHJ8LONs\\\",\\\"name\\\":\\\"news\\\"},\\\"H2se2SPKB\\\":{\\\"pattern\\\":\\\":H2se2SPKB\\\",\\\"name\\\":\\\"partners\\\"},\\\"EF5AOw7yH\\\":{\\\"pattern\\\":\\\":EF5AOw7yH\\\",\\\"name\\\":\\\"faq\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"c9TQUvVNH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CF44nfHsT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ORDqUmxR5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "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", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "tap", "width", "year", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "RdjKx6J30", "XZvbtQ8jS", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTappefu0b", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramerJ1Y0hFz6Q", "withCSS", "J1Y0hFz6Q_default", "addPropertyControls", "ControlType", "addFonts", "ComponentLinkFonts", "getFonts", "J1Y0hFz6Q_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "direction", "gapTitle", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "DG2fCQxy6", "n6YOPHEdZ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "XZvbtQ8jSwt13i0", "args", "XZvbtQ8jS7wt77l", "onTap7wt77l", "sharedStyleClassNames", "isDisplayed", "scopingClassNames", "cx", "isDisplayed1", "isDisplayed2", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "Link", "css", "FramerFwGAKwnie", "withCSS", "FwGAKwnie_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "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", "image", "paragraph", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "FdjxzEO46", "Xsxi0csWQ", "lrvdaqUbf", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerlyGm6BTHS", "withCSS", "lyGm6BTHS_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "enabledGestures", "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", "background", "height", "id", "image", "name1", "paragraph", "position", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "yZUdPskf7", "CR78IoPpo", "ufwcfNf8y", "ERqdrwcnL", "bHt_tDIVZ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerNTY9ZNXrt", "withCSS", "NTY9ZNXrt_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "date", "height", "id", "image", "link2", "text", "title", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "d5YjiVwZi", "Fe5LrJyMx", "vrfGFy6oc", "cK4sz_f39", "Pds0K7GA1", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerPytV7tpBU", "withCSS", "PytV7tpBU_default", "addPropertyControls", "ControlType", "addFonts", "FaqFonts", "getFonts", "Xa1mIcm0r_default", "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", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "Xa1mIcm0r_default", "RichText2", "Link", "css", "FramerQituJVlSo", "withCSS", "QituJVlSo_default", "addFonts", "FaqFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerY1dLoj96Z", "withCSS", "Y1dLoj96Z_default", "addPropertyControls", "ControlType", "addFonts", "withMuteToggle", "Component", "props", "ref", "pe", "p", "vid", "divs", "hidden", "d", "window", "visible", "fontStore", "fonts", "css", "className", "GradientHeadingFonts", "getFonts", "pAhJXTUUw_default", "Button2Fonts", "Y1dLoj96Z_default", "MotionDivWithFX", "withFX", "motion", "VideoFonts", "Video", "MaterialFonts", "Icon", "MotionDivWithMuteToggleo67au4", "withCodeBoundaryForOverrides", "withMuteToggle", "RichTextWithFX", "RichText2", "SectionHeadingFonts", "KTijjbYLC_default", "ContainerWithFX", "Container", "FeatureWidgetFonts", "lyGm6BTHS_default", "EmbedFonts", "Embed", "FinancialData2Fonts", "FwGAKwnie_default", "CardPressFonts", "PytV7tpBU_default", "TestimonialCardFonts", "NTY9ZNXrt_default", "FaqItemsHomeFonts", "QituJVlSo_default", "FooterDarkFonts", "Hp6jSVixL_default", "NavigationFonts", "XfZ7e0oN2_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "formVariants", "form", "variants", "currentVariant", "animation2", "animation3", "animation4", "animation5", "animation6", "animation7", "addImageAlt", "image", "alt", "transition2", "animation8", "transition3", "animation9", "animation10", "transition4", "animation11", "transition5", "animation12", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "elementId7", "ref8", "elementId8", "ref9", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "x", "FormContainer", "formState", "l", "FormPlainTextInput2", "Link", "Image2", "css", "FramerTtH6Q5E8O", "withCSS", "TtH6Q5E8O_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
