{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/LNZaHlj3prM5wzgDhNCH/iGi0JVvLSKwUaURG4Uin/JCUTktxxM.js", "ssg:https://framerusercontent.com/modules/7VlF4m7msqQIvBsd2eJm/pCK9eCm3Oxip0MJi7R8v/yzoeN0SQa.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"hZuHdgEX2\",\"ZZdG5fHTg\",\"ir5zZ3Jvg\",\"GWkSCzkIP\",\"f2QYPpy9u\",\"OK5wEketO\",\"wib39RjoS\",\"Xuf4vM_Uj\",\"XlhKAP8ux\",\"ZbuhRz0iU\",\"wAtgRXJqB\",\"R6o0mtuBj\",\"akPHHey1v\",\"Ip0Mi_17p\"];const serializationHash=\"framer-lSNzE\";const variantClassNames={akPHHey1v:\"framer-v-voy98j\",f2QYPpy9u:\"framer-v-1high1c\",GWkSCzkIP:\"framer-v-1q72gl4\",hZuHdgEX2:\"framer-v-1cwug3y\",Ip0Mi_17p:\"framer-v-5arjqb\",ir5zZ3Jvg:\"framer-v-1kuuqoc\",OK5wEketO:\"framer-v-1epi8bc\",R6o0mtuBj:\"framer-v-43cu4l\",wAtgRXJqB:\"framer-v-gp5fqe\",wib39RjoS:\"framer-v-hyzfkw\",XlhKAP8ux:\"framer-v-1b62l9v\",Xuf4vM_Uj:\"framer-v-1oh991p\",ZbuhRz0iU:\"framer-v-1izuzdk\",ZZdG5fHTg:\"framer-v-18q7znf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"hZuHdgEX2\",\"Variant 10\":\"ZbuhRz0iU\",\"Variant 11\":\"wAtgRXJqB\",\"Variant 12\":\"R6o0mtuBj\",\"Variant 13\":\"akPHHey1v\",\"Variant 14\":\"Ip0Mi_17p\",\"Variant 2\":\"ZZdG5fHTg\",\"Variant 3\":\"ir5zZ3Jvg\",\"Variant 4\":\"GWkSCzkIP\",\"Variant 5\":\"f2QYPpy9u\",\"Variant 6\":\"OK5wEketO\",\"Variant 7\":\"wib39RjoS\",\"Variant 8\":\"Xuf4vM_Uj\",\"Variant 9\":\"XlhKAP8ux\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"hZuHdgEX2\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hZuHdgEX2\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"wib39RjoS\",\"wAtgRXJqB\",\"R6o0mtuBj\",\"akPHHey1v\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"ir5zZ3Jvg\",\"GWkSCzkIP\",\"f2QYPpy9u\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"ZZdG5fHTg\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"ZbuhRz0iU\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"ir5zZ3Jvg\")return true;return false;};const isDisplayed5=()=>{if([\"GWkSCzkIP\",\"f2QYPpy9u\",\"wib39RjoS\",\"wAtgRXJqB\",\"R6o0mtuBj\",\"akPHHey1v\"].includes(baseVariant))return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"f2QYPpy9u\")return false;return true;};const isDisplayed7=()=>{if([\"f2QYPpy9u\",\"wib39RjoS\",\"wAtgRXJqB\",\"R6o0mtuBj\",\"akPHHey1v\"].includes(baseVariant))return false;return true;};const isDisplayed8=()=>{if(baseVariant===\"f2QYPpy9u\")return true;return false;};const isDisplayed9=()=>{if([\"ZZdG5fHTg\",\"ir5zZ3Jvg\",\"GWkSCzkIP\",\"f2QYPpy9u\",\"OK5wEketO\",\"wib39RjoS\",\"Xuf4vM_Uj\",\"XlhKAP8ux\",\"ZbuhRz0iU\",\"wAtgRXJqB\",\"R6o0mtuBj\",\"akPHHey1v\",\"Ip0Mi_17p\"].includes(baseVariant))return false;return true;};const isDisplayed10=()=>{if(baseVariant===\"OK5wEketO\")return true;return false;};const isDisplayed11=()=>{if(baseVariant===\"wib39RjoS\")return true;return false;};const isDisplayed12=()=>{if(baseVariant===\"Xuf4vM_Uj\")return true;return false;};const isDisplayed13=()=>{if(baseVariant===\"wAtgRXJqB\")return true;return false;};const isDisplayed14=()=>{if(baseVariant===\"R6o0mtuBj\")return true;return false;};const isDisplayed15=()=>{if(baseVariant===\"akPHHey1v\")return true;return false;};const isDisplayed16=()=>{if(baseVariant===\"Ip0Mi_17p\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1cwug3y\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"hZuHdgEX2\",ref:refBinding,style:{...style},...addPropertyOverrides({akPHHey1v:{\"data-framer-name\":\"Variant 13\"},f2QYPpy9u:{\"data-framer-name\":\"Variant 5\"},GWkSCzkIP:{\"data-framer-name\":\"Variant 4\"},Ip0Mi_17p:{\"data-framer-name\":\"Variant 14\"},ir5zZ3Jvg:{\"data-framer-name\":\"Variant 3\"},OK5wEketO:{\"data-framer-name\":\"Variant 6\"},R6o0mtuBj:{\"data-framer-name\":\"Variant 12\"},wAtgRXJqB:{\"data-framer-name\":\"Variant 11\"},wib39RjoS:{\"data-framer-name\":\"Variant 7\"},XlhKAP8ux:{\"data-framer-name\":\"Variant 9\"},Xuf4vM_Uj:{\"data-framer-name\":\"Variant 8\"},ZbuhRz0iU:{\"data-framer-name\":\"Variant 10\"},ZZdG5fHTg:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l0hu8k\",\"data-framer-name\":\"Frame 1000003388\",layoutDependency:layoutDependency,layoutId:\"zwYbcnnUI\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-11zl556\",\"data-framer-name\":\"Symbol only\",layoutDependency:layoutDependency,layoutId:\"HuvIW8Z9m\",style:{opacity:.03,rotate:-1},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qu2kiw\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:766,intrinsicWidth:766,layoutDependency:layoutDependency,layoutId:\"I352:22795;18:22\",style:{rotate:1},svg:'<svg width=\"766\" height=\"766\" viewBox=\"0 0 766 766\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.13646 426.744L7.62227 356.732L340.327 9.31743L408.963 7.83299L756.379 340.539L757.893 410.549L426.532 756.56L355.146 758.104L9.13646 426.744Z\" fill=\"#1F52DE\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u0yrrn\",\"data-framer-name\":\"Symbol only\",layoutDependency:layoutDependency,layoutId:\"pL4tAd7wf\",style:{opacity:.3,rotate:-1},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-18dasdb\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:766,intrinsicWidth:766,layoutDependency:layoutDependency,layoutId:\"I352:22796;18:22\",style:{rotate:1},svg:'<svg width=\"766\" height=\"766\" viewBox=\"0 0 766 766\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.5891 427.245L8.07491 357.233L340.78 9.81865L409.416 8.33421L756.832 341.04L758.346 411.05L426.985 757.061L355.599 758.605L9.5891 427.245Z\" fill=\"#1F52DE\" fill-opacity=\"0.1\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-t7mtb5\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:326,intrinsicWidth:388,layoutDependency:layoutDependency,layoutId:\"vC4YHa0sA\",svg:'<svg width=\"388\" height=\"326\" viewBox=\"0 0 388 326\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g style=\"mix-blend-mode:overlay\" filter=\"url(#filter0_f_352_22797)\">\\n<path d=\"M152.877 268.041C237.516 298.843 333.471 261.914 350.993 213.768C368.515 165.621 343.233 97.4771 258.594 66.6743C216.651 51.41 146.23 23.7432 87.6726 29.584C28.0635 35.5297 64.1604 153.31 55.3214 177.598C37.7993 225.744 68.2377 237.238 152.877 268.041Z\" fill=\"#0259FE\" fill-opacity=\"0.12\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_352_22797\" x=\"-21.8721\" y=\"-43.6428\" width=\"450.54\" height=\"395.402\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"36.2149\" result=\"effect1_foregroundBlur_352_22797\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1klce40\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:221,intrinsicWidth:288,layoutDependency:layoutDependency,layoutId:\"XX8dzF4E_\",svg:'<svg width=\"288\" height=\"221\" viewBox=\"0 0 288 221\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_f_352_22798)\">\\n<path d=\"M117.559 176.924C182.486 200.553 252.956 180.845 264.017 150.452C275.078 120.06 253.11 74.8582 188.183 51.2294C156.009 39.5201 101.9 18.5414 58.1661 19.7645C13.6466 21.0096 45.9053 98.805 40.3258 114.136C29.2651 144.529 52.6325 153.295 117.559 176.924Z\" fill=\"#A1CEFF\" fill-opacity=\"0.22\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_352_22798\" x=\"-38.2202\" y=\"-52.7163\" width=\"377.4\" height=\"312.524\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"36.2149\" result=\"effect1_foregroundBlur_352_22798\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-19g6t2q\",\"data-framer-name\":\"Frame 1000003389\",layoutDependency:layoutDependency,layoutId:\"XtM2krAcK\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jtsdno\",\"data-border\":true,\"data-framer-name\":\"Core/SelectItem/List\",layoutDependency:layoutDependency,layoutId:\"m5xEUMCml\",style:{\"--border-bottom-width\":\"2.266839027404785px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"2.266839027404785px\",\"--border-right-width\":\"2.266839027404785px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2.266839027404785px\",backdropFilter:\"blur(13.024018287658691px)\",backgroundColor:\"rgba(255, 255, 255, 0.4)\",borderBottomLeftRadius:10.14,borderBottomRightRadius:10.14,borderTopLeftRadius:10.14,borderTopRightRadius:10.14,WebkitBackdropFilter:\"blur(13.024018287658691px)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b5bxmp\",\"data-framer-name\":\"Investments\",layoutDependency:layoutDependency,layoutId:\"EVVswqmjJ\",style:{borderBottomLeftRadius:13.47,borderBottomRightRadius:13.47,borderTopLeftRadius:13.47,borderTopRightRadius:13.47},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13fumf7\",\"data-framer-name\":\"Item 1\",layoutDependency:layoutDependency,layoutId:\"g4tYURrSr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXZlbmlyLTgwMA==\",\"--framer-font-family\":'\"Avenir\", \"Avenir Placeholder\", sans-serif',\"--framer-font-size\":\"10.43px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"10.26px\"},children:\"Maximum number of instruments\"})}),className:\"framer-1xw9qz0\",\"data-framer-name\":\"Maximum number of instruments\",fonts:[\"GF;Avenir-800\"],layoutDependency:layoutDependency,layoutId:\"e3k2stsD3\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-i2843a\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"iihLiyOT8\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14sioxr\",\"data-framer-name\":\"1st line\",layoutDependency:layoutDependency,layoutId:\"jTKjV4taI\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gfgikc\",\"data-framer-name\":\"Core/Values/Amount or percentage\",layoutDependency:layoutDependency,layoutId:\"uDPd9hlxr\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgUHJvLTYwMA==\",\"--framer-font-family\":'\"Source Sans Pro\", \"Source Sans Pro Placeholder\", sans-serif',\"--framer-font-size\":\"10.1px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"16.16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(61, 61, 61))\"},children:\"4\"})}),className:\"framer-1moup9h\",\"data-framer-name\":\"Amount\",fonts:[\"GF;Source Sans Pro-600\"],layoutDependency:layoutDependency,layoutId:\"I352:27705;817:19372\",style:{\"--extracted-r6o4lv\":\"rgb(61, 61, 61)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r2y7s6\",\"data-framer-name\":\"Slider\",layoutDependency:layoutDependency,layoutId:\"CJxT3SHEO\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lw5frj\",\"data-framer-name\":\"Core/Slider/Date\",layoutDependency:layoutDependency,layoutId:\"jUVBRryJt\",style:{borderBottomLeftRadius:2.57,borderBottomRightRadius:2.57,borderTopLeftRadius:2.57,borderTopRightRadius:2.57},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1czpymn\",\"data-framer-name\":\"Background\",layoutDependency:layoutDependency,layoutId:\"WG1JznYa6\",transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u6diz7\",\"data-framer-name\":\"Fill\",layoutDependency:layoutDependency,layoutId:\"haOG_2P8J\",style:{backgroundColor:\"rgb(255, 255, 255)\"}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-168zjw\",\"data-framer-name\":\"Fade out\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:27,layoutDependency:layoutDependency,layoutId:\"RC6irMzcs\",svg:'<svg width=\"27\" height=\"3\" viewBox=\"0 0 27 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_352_27716\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"27\" height=\"3\">\\n<rect width=\"1.8252\" height=\"25.5527\" transform=\"matrix(4.37114e-08 1 1 -4.37114e-08 0.487305 0.501221)\" fill=\"url(#paint0_linear_352_27716)\"/>\\n</mask>\\n<g mask=\"url(#mask0_352_27716)\">\\n<rect width=\"1.8252\" height=\"25.5527\" transform=\"matrix(4.37114e-08 1 1 -4.37114e-08 0.487305 0.501221)\" fill=\"white\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_352_27716\" x1=\"0.912598\" y1=\"0\" x2=\"0.912598\" y2=\"25.5527\" gradientUnits=\"userSpaceOnUse\">\\n<stop/>\\n<stop offset=\"1\" stop-color=\"#737373\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1930dnt\",\"data-framer-name\":\"Marker 1\",layoutDependency:layoutDependency,layoutId:\"EmdouwaSZ\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-596702\",\"data-framer-name\":\"Marker 2\",layoutDependency:layoutDependency,layoutId:\"UrL8YYoKg\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6tfk71\",\"data-framer-name\":\"Slider value\",layoutDependency:layoutDependency,layoutId:\"NLPlAv9wX\",style:{backgroundColor:\"rgb(45, 101, 255)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jua7lu\",\"data-framer-name\":\"spacer\",layoutDependency:layoutDependency,layoutId:\"ccyy2wHY1\",style:{backgroundColor:\"rgb(255, 255, 255)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4keife\",\"data-framer-name\":\"Knob\",layoutDependency:layoutDependency,layoutId:\"Ep1bFfpbs\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rv8ijd\",\"data-framer-name\":\"Knob\",layoutDependency:layoutDependency,layoutId:\"I352:27725;404:56201\",style:{background:\"linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 100%)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",boxShadow:\"0px 0.45629891753196716px 1.8251956701278687px 0px rgba(0, 0, 0, 0.11999999731779099), 0px 0.45629891753196716px 0.9125978350639343px 0px rgba(0, 0, 0, 0.11999999731779099), 0px 1.8251956701278687px 5.475586891174316px 0px rgba(0, 0, 0, 0.11999999731779099)\"}})})]})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6ax9mp\",\"data-framer-name\":\"Frame 1000001326\",layoutDependency:layoutDependency,layoutId:\"Y2RBmqIyo\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kfroh8\",\"data-framer-name\":\"Frame 1000001323\",layoutDependency:layoutDependency,layoutId:\"nNcLbCBpS\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17ye33u\",\"data-border\":true,\"data-framer-name\":\"visuals/illustration/self/orders/learn-to-protect-2\",layoutDependency:layoutDependency,layoutId:\"Fa12QcyNX\",style:{\"--border-bottom-width\":\"0.5965650081634521px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.5965650081634521px\",\"--border-right-width\":\"0.5965650081634521px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5965650081634521px\",backdropFilter:\"blur(3.427536964416504px)\",backgroundColor:\"rgba(255, 255, 255, 0.4)\",borderBottomLeftRadius:3.25,borderBottomRightRadius:3.25,borderTopLeftRadius:3.25,borderTopRightRadius:3.25,WebkitBackdropFilter:\"blur(3.427536964416504px)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1cytnlz\",\"data-framer-name\":\"Core/Card/Instrument\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:41,intrinsicWidth:102,layoutDependency:layoutDependency,layoutId:\"fUxMX6F7n\",svg:'<svg width=\"102\" height=\"41\" viewBox=\"0 0 102 41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_352_27732)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.1303 26.1957C18.6742 26.1957 18.4398 25.8994 18.4398 25.8994C18.0649 25.8831 15.1353 25.8913 15.1353 25.8913L14.8501 23.4926C14.8501 23.4926 13.0457 22.2254 12.899 22.0793C12.0328 18.1643 15.1635 14.4321 19.1304 14.4321C23.0973 14.4321 26.228 18.1643 25.3619 22.0793C25.2152 22.2254 23.4108 23.4926 23.4108 23.4926L23.1256 25.8913C23.1256 25.8913 20.1959 25.8831 19.8211 25.8994C19.8211 25.8994 19.5867 26.1957 19.1303 26.1957Z\" fill=\"#ED1C24\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.1348 22.5477L18.858 15.6238C18.5241 15.5559 17.6725 15.6374 17.216 15.9768L18.5446 22.5749L16.7323 16.2483C16.2978 16.243 15.4212 16.9749 15.356 17.1919L17.9995 22.8056L15.029 17.6738C14.736 17.7824 14.0956 18.9568 14.1978 19.0932L17.509 23.1315L14.1024 19.6831C14.1024 19.6831 13.6596 20.3551 13.9484 21.4934L15.8725 22.8779L16.1134 24.7693H18.4726C18.4726 24.7693 18.8585 25.1339 19.1324 25.1339C19.4062 25.1339 19.7922 24.7693 19.7922 24.7693H22.1513L22.3922 22.8779L24.3163 21.4934C24.6051 20.3551 24.1623 19.6831 24.1623 19.6831L20.7557 23.1315L24.0669 19.0932C24.1691 18.9568 23.5287 17.7824 23.2357 17.6738L20.2652 22.8056L22.9087 17.1919C22.8436 16.9749 21.9669 16.243 21.5324 16.2483L19.7202 22.5749L21.0487 15.9768C20.5922 15.6374 19.7406 15.5559 19.4068 15.6238L19.1348 22.5477Z\" fill=\"#FFD500\"/>\\n</g>\\n<path d=\"M38.7941 12.3937C38.6916 12.2449 38.5531 12.1372 38.3787 12.0705C38.2094 11.9987 38.0299 11.9628 37.8401 11.9628C37.7273 11.9628 37.617 11.9756 37.5093 12.0013C37.4067 12.0269 37.3118 12.068 37.2246 12.1244C37.1425 12.1808 37.0759 12.2552 37.0246 12.3475C36.9733 12.4347 36.9476 12.5398 36.9476 12.6629C36.9476 12.8476 37.0118 12.9886 37.14 13.0861C37.2682 13.1835 37.4272 13.2682 37.617 13.34C37.8068 13.4118 38.0145 13.481 38.2402 13.5477C38.4659 13.6144 38.6736 13.7067 38.8634 13.8247C39.0532 13.9427 39.2122 14.0991 39.3404 14.294C39.4686 14.4889 39.5327 14.7479 39.5327 15.0711C39.5327 15.3634 39.4789 15.6199 39.3712 15.8405C39.2635 16.0559 39.1173 16.2354 38.9326 16.379C38.7531 16.5226 38.5428 16.6304 38.3017 16.7022C38.0607 16.774 37.8068 16.8099 37.5401 16.8099C37.2015 16.8099 36.8758 16.7535 36.563 16.6406C36.2501 16.5278 35.9808 16.338 35.7551 16.0713L36.486 15.3634C36.604 15.543 36.7579 15.684 36.9476 15.7866C37.1425 15.8841 37.3477 15.9328 37.5631 15.9328C37.676 15.9328 37.7888 15.9174 37.9017 15.8866C38.0145 15.8558 38.1171 15.8097 38.2094 15.7481C38.3017 15.6866 38.3761 15.6096 38.4325 15.5173C38.489 15.4199 38.5172 15.3096 38.5172 15.1865C38.5172 14.9865 38.4531 14.8326 38.3248 14.7249C38.1966 14.6172 38.0376 14.5274 37.8478 14.4556C37.658 14.3786 37.4503 14.3068 37.2246 14.2402C36.9989 14.1735 36.7912 14.0837 36.6014 13.9709C36.4116 13.8529 36.2526 13.699 36.1244 13.5093C35.9962 13.3143 35.9321 13.0553 35.9321 12.7322C35.9321 12.4501 35.9885 12.2064 36.1013 12.0013C36.2193 11.7961 36.3706 11.6268 36.5553 11.4935C36.745 11.355 36.9605 11.2524 37.2015 11.1857C37.4426 11.1191 37.6888 11.0857 37.9401 11.0857C38.2274 11.0857 38.5043 11.1293 38.7711 11.2165C39.0429 11.3037 39.2865 11.4473 39.502 11.6474L38.7941 12.3937ZM41.3809 13.4939H41.3963C41.4681 13.34 41.5938 13.2015 41.7733 13.0784C41.958 12.9502 42.1939 12.8861 42.4811 12.8861C42.7273 12.8861 42.9351 12.9271 43.1043 13.0092C43.2787 13.0912 43.4198 13.1989 43.5275 13.3323C43.6352 13.4657 43.7121 13.6195 43.7583 13.7939C43.8045 13.9683 43.8275 14.1504 43.8275 14.3402V16.6714H42.9043V14.8018C42.9043 14.6992 42.8992 14.5864 42.8889 14.4633C42.8786 14.335 42.8504 14.2171 42.8043 14.1094C42.7632 13.9965 42.6966 13.9042 42.6042 13.8324C42.5119 13.7555 42.3862 13.717 42.2272 13.717C42.0734 13.717 41.9426 13.7426 41.8349 13.7939C41.7323 13.8452 41.6451 13.9145 41.5733 14.0017C41.5066 14.0888 41.4579 14.1889 41.4271 14.3017C41.3963 14.4146 41.3809 14.5325 41.3809 14.6556V16.6714H40.4577V10.8549H41.3809V13.4939ZM45.6142 15.148C45.645 15.425 45.7527 15.6404 45.9373 15.7943C46.122 15.9482 46.3451 16.0251 46.6067 16.0251C46.8375 16.0251 47.0298 15.9789 47.1837 15.8866C47.3427 15.7892 47.4812 15.6686 47.5992 15.525L48.2608 16.0251C48.0454 16.2918 47.8043 16.4816 47.5376 16.5944C47.2709 16.7073 46.9914 16.7637 46.699 16.7637C46.422 16.7637 46.1604 16.7175 45.9142 16.6252C45.668 16.5329 45.4552 16.4021 45.2757 16.2328C45.0961 16.0636 44.9525 15.861 44.8448 15.625C44.7422 15.384 44.6909 15.1172 44.6909 14.8249C44.6909 14.5325 44.7422 14.2684 44.8448 14.0324C44.9525 13.7914 45.0961 13.5862 45.2757 13.4169C45.4552 13.2477 45.668 13.1169 45.9142 13.0245C46.1604 12.9322 46.422 12.8861 46.699 12.8861C46.9555 12.8861 47.1888 12.9322 47.3991 13.0245C47.6146 13.1117 47.7966 13.24 47.9454 13.4092C48.0993 13.5785 48.2172 13.7888 48.2993 14.0401C48.3865 14.2863 48.4301 14.571 48.4301 14.8941V15.148H45.6142ZM47.5068 14.4556C47.5017 14.1837 47.4171 13.9709 47.253 13.817C47.0888 13.658 46.8606 13.5785 46.5682 13.5785C46.2912 13.5785 46.0707 13.658 45.9065 13.817C45.7475 13.976 45.6501 14.1889 45.6142 14.4556H47.5068ZM49.3089 10.8549H50.2321V16.6714H49.3089V10.8549ZM51.315 10.8549H52.2382V16.6714H51.315V10.8549Z\" fill=\"black\"/>\\n<rect x=\"35.5166\" y=\"25.4722\" width=\"33.4327\" height=\"2.71858\" rx=\"1.35929\" fill=\"white\"/>\\n<path d=\"M74.2463 29.7418V24.0997H74.6807V29.7418H74.2463Z\" fill=\"#939393\"/>\\n<g clip-path=\"url(#clip1_352_27732)\">\\n<path d=\"M81.8992 30.9347C84.1654 30.9347 86.0026 29.0976 86.0026 26.8314C86.0026 24.5652 84.1654 22.728 81.8992 22.728C79.633 22.728 77.7959 24.5652 77.7959 26.8314C77.7959 29.0976 79.633 30.9347 81.8992 30.9347Z\" fill=\"#F0F0F0\"/>\\n<path d=\"M78.6434 24.333C78.3211 24.7524 78.078 25.2357 77.9365 25.7608H80.0712L78.6434 24.333Z\" fill=\"#0052B4\"/>\\n<path d=\"M85.8602 25.7608C85.7187 25.2357 85.4756 24.7524 85.1533 24.333L83.7256 25.7608H85.8602Z\" fill=\"#0052B4\"/>\\n<path d=\"M77.9365 27.9019C78.0781 28.4269 78.3211 28.9103 78.6434 29.3296L80.0711 27.9019H77.9365Z\" fill=\"#0052B4\"/>\\n<path d=\"M84.3965 23.5763C83.9772 23.254 83.4938 23.0109 82.9688 22.8694V25.004L84.3965 23.5763Z\" fill=\"#0052B4\"/>\\n<path d=\"M79.4004 30.0864C79.8197 30.4087 80.3031 30.6518 80.8282 30.7933V28.6587L79.4004 30.0864Z\" fill=\"#0052B4\"/>\\n<path d=\"M80.8281 22.8694C80.3031 23.0109 79.8197 23.254 79.4004 23.5763L80.8281 25.004V22.8694Z\" fill=\"#0052B4\"/>\\n<path d=\"M82.9688 30.7933C83.4938 30.6518 83.9772 30.4087 84.3965 30.0864L82.9688 28.6587V30.7933Z\" fill=\"#0052B4\"/>\\n<path d=\"M83.7256 27.9019L85.1533 29.3296C85.4756 28.9103 85.7187 28.4269 85.8602 27.9019H83.7256Z\" fill=\"#0052B4\"/>\\n<path d=\"M85.9678 26.2962H82.4345H82.4345V22.7628C82.2593 22.74 82.0806 22.728 81.8992 22.728C81.7178 22.728 81.5392 22.74 81.364 22.7628V26.2961V26.2961H77.8306C77.8078 26.4713 77.7959 26.65 77.7959 26.8314C77.7959 27.0128 77.8078 27.1914 77.8306 27.3666H81.364H81.364V30.9C81.5392 30.9228 81.7178 30.9347 81.8992 30.9347C82.0806 30.9347 82.2593 30.9228 82.4344 30.9V27.3666V27.3666H85.9678C85.9906 27.1914 86.0026 27.0128 86.0026 26.8314C86.0026 26.65 85.9906 26.4713 85.9678 26.2962V26.2962Z\" fill=\"#D80027\"/>\\n<path d=\"M82.9697 27.9019L84.8008 29.7329C84.885 29.6487 84.9653 29.5607 85.042 29.4695L83.4743 27.9019H82.9697V27.9019Z\" fill=\"#D80027\"/>\\n<path d=\"M80.8281 27.9019H80.8281L78.9971 29.7329C79.0813 29.8171 79.1693 29.8974 79.2605 29.9741L80.8281 28.4064V27.9019Z\" fill=\"#D80027\"/>\\n<path d=\"M80.8291 25.7608V25.7608L78.998 23.9297C78.9138 24.0139 78.8335 24.1019 78.7568 24.1931L80.3245 25.7608H80.8291V25.7608Z\" fill=\"#D80027\"/>\\n<path d=\"M82.9697 25.761L84.8008 23.9299C84.7166 23.8457 84.6286 23.7654 84.5374 23.6887L82.9697 25.2564V25.761Z\" fill=\"#D80027\"/>\\n</g>\\n<circle cx=\"81.8992\" cy=\"26.8314\" r=\"4.61626\" stroke=\"white\" stroke-width=\"1.02583\"/>\\n<defs>\\n<clipPath id=\"clip0_352_27732\">\\n<rect width=\"13.3358\" height=\"12.31\" fill=\"white\" transform=\"translate(12.4365 14.1606)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_352_27732\">\\n<rect width=\"8.20668\" height=\"8.20668\" fill=\"white\" transform=\"translate(77.7959 22.728)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b6lp9b\",\"data-border\":true,\"data-framer-name\":\"visuals/illustration/self/orders/learn-to-protect-2\",layoutDependency:layoutDependency,layoutId:\"hCuRRzOxG\",style:{\"--border-bottom-width\":\"0.5965650081634521px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.5965650081634521px\",\"--border-right-width\":\"0.5965650081634521px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5965650081634521px\",backdropFilter:\"blur(3.427536964416504px)\",backgroundColor:\"rgba(255, 255, 255, 0.4)\",borderBottomLeftRadius:3.25,borderBottomRightRadius:3.25,borderTopLeftRadius:3.25,borderTopRightRadius:3.25,WebkitBackdropFilter:\"blur(3.427536964416504px)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1wgqpxu\",\"data-framer-name\":\"Core/Card/Instrument\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:41,intrinsicWidth:102,layoutDependency:layoutDependency,layoutId:\"OfSQ1Jnrk\",svg:'<svg width=\"102\" height=\"41\" viewBox=\"0 0 102 41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"8.7959\" y=\"10.459\" width=\"20.5167\" height=\"20.5167\" rx=\"10.2583\" fill=\"#E82127\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.3801 17.3354C22.4984 16.515 20.6602 16.2542 19.0542 16.2665H19.054C17.448 16.2542 15.6095 16.515 13.7281 17.3354C13.5039 16.929 13.4121 16.6825 13.4121 16.6825C15.4689 15.8684 17.3952 15.5898 19.054 15.5828C20.7128 15.5898 22.6392 15.8684 24.6963 16.6825C24.6963 16.6825 24.6316 16.8826 24.3801 17.3354ZM20.6336 17.9411L19.055 26.8224L17.4636 17.9398C15.969 17.9409 15.4949 18.106 15.426 18.7797C15.426 18.7797 14.4162 18.4032 13.9075 17.6386C15.894 16.7177 17.8902 16.6761 17.8902 16.6761L19.0537 18.0938L20.2172 16.6763C20.2172 16.6763 22.2133 16.7179 24.2 17.6388C23.6909 18.4034 22.6815 18.7799 22.6815 18.7799C22.613 18.1062 22.1383 17.9411 20.6336 17.9411Z\" fill=\"white\"/>\\n<path d=\"M37.1902 12.5029H35.5207V11.6258H39.8292V12.5029H38.1596V17.073H37.1902V12.5029ZM40.2899 15.5496C40.3207 15.8266 40.4284 16.042 40.6131 16.1959C40.7977 16.3498 41.0209 16.4267 41.2824 16.4267C41.5133 16.4267 41.7056 16.3806 41.8595 16.2882C42.0185 16.1908 42.157 16.0702 42.2749 15.9266L42.9366 16.4267C42.7212 16.6934 42.4801 16.8832 42.2134 16.9961C41.9467 17.1089 41.6671 17.1653 41.3748 17.1653C41.0978 17.1653 40.8362 17.1192 40.59 17.0268C40.3438 16.9345 40.1309 16.8037 39.9514 16.6345C39.7719 16.4652 39.6283 16.2626 39.5206 16.0266C39.418 15.7856 39.3667 15.5189 39.3667 15.2265C39.3667 14.9341 39.418 14.67 39.5206 14.434C39.6283 14.193 39.7719 13.9878 39.9514 13.8185C40.1309 13.6493 40.3438 13.5185 40.59 13.4262C40.8362 13.3338 41.0978 13.2877 41.3748 13.2877C41.6312 13.2877 41.8646 13.3338 42.0749 13.4262C42.2903 13.5134 42.4724 13.6416 42.6212 13.8108C42.775 13.9801 42.893 14.1904 42.9751 14.4417C43.0623 14.6879 43.1059 14.9726 43.1059 15.2957V15.5496H40.2899ZM42.1826 14.8572C42.1775 14.5853 42.0928 14.3725 41.9287 14.2186C41.7646 14.0596 41.5363 13.9801 41.244 13.9801C40.967 13.9801 40.7464 14.0596 40.5823 14.2186C40.4233 14.3776 40.3258 14.5905 40.2899 14.8572H42.1826ZM45.9388 14.4033C45.7593 14.1519 45.5183 14.0263 45.2156 14.0263C45.0925 14.0263 44.972 14.057 44.854 14.1186C44.7361 14.1801 44.6771 14.2802 44.6771 14.4187C44.6771 14.5315 44.7258 14.6136 44.8233 14.6649C44.9207 14.7161 45.0438 14.7597 45.1926 14.7956C45.3413 14.8315 45.5003 14.87 45.6696 14.9111C45.844 14.947 46.0055 15.0059 46.1543 15.088C46.303 15.1649 46.4261 15.2727 46.5236 15.4111C46.621 15.5496 46.6698 15.7394 46.6698 15.9805C46.6698 16.201 46.621 16.3883 46.5236 16.5421C46.4312 16.6909 46.3081 16.8114 46.1543 16.9037C46.0055 16.9961 45.8363 17.0627 45.6465 17.1038C45.4567 17.1448 45.2669 17.1653 45.0771 17.1653C44.7899 17.1653 44.5258 17.1243 44.2847 17.0422C44.0436 16.9602 43.8282 16.8114 43.6384 16.596L44.2539 16.019C44.3719 16.1523 44.4975 16.2626 44.6309 16.3498C44.7694 16.4319 44.9361 16.4729 45.131 16.4729C45.1977 16.4729 45.2669 16.4652 45.3387 16.4498C45.4105 16.4344 45.4772 16.4088 45.5388 16.3729C45.6003 16.337 45.649 16.2934 45.685 16.2421C45.726 16.1857 45.7465 16.1215 45.7465 16.0497C45.7465 15.9215 45.6978 15.8266 45.6003 15.7651C45.5029 15.7035 45.3798 15.6548 45.231 15.6189C45.0823 15.5778 44.9207 15.5419 44.7463 15.5112C44.5771 15.4753 44.418 15.4214 44.2693 15.3496C44.1206 15.2727 43.9975 15.1675 43.9 15.0342C43.8025 14.9008 43.7538 14.7161 43.7538 14.4802C43.7538 14.275 43.7949 14.0981 43.8769 13.9493C43.9641 13.7955 44.077 13.6698 44.2154 13.5723C44.3539 13.4749 44.5129 13.4031 44.6925 13.3569C44.872 13.3107 45.0541 13.2877 45.2387 13.2877C45.4849 13.2877 45.7286 13.3313 45.9696 13.4185C46.2107 13.5005 46.4056 13.6441 46.5543 13.8493L45.9388 14.4033ZM47.4032 11.2565H48.3265V17.073H47.4032V11.2565ZM51.6946 16.5652H51.6715C51.5381 16.7755 51.3689 16.9294 51.1637 17.0268C50.9585 17.1192 50.7328 17.1653 50.4866 17.1653C50.3174 17.1653 50.1507 17.1422 49.9865 17.0961C49.8275 17.0499 49.6839 16.9807 49.5557 16.8883C49.4326 16.796 49.3326 16.6806 49.2556 16.5421C49.1787 16.4036 49.1402 16.2421 49.1402 16.0574C49.1402 15.8574 49.1761 15.6881 49.2479 15.5496C49.3198 15.406 49.4146 15.288 49.5326 15.1957C49.6557 15.0983 49.7968 15.0213 49.9558 14.9649C50.1148 14.9085 50.2789 14.8675 50.4482 14.8418C50.6226 14.811 50.797 14.7931 50.9713 14.788C51.1457 14.7777 51.3099 14.7726 51.4637 14.7726H51.6946V14.6725C51.6946 14.4417 51.6151 14.2699 51.4561 14.1571C51.297 14.0391 51.0944 13.9801 50.8482 13.9801C50.6533 13.9801 50.4713 14.016 50.302 14.0878C50.1327 14.1545 49.9865 14.2468 49.8634 14.3648L49.3787 13.8801C49.5839 13.6698 49.8224 13.5185 50.0943 13.4262C50.3712 13.3338 50.6559 13.2877 50.9483 13.2877C51.2099 13.2877 51.4304 13.3184 51.6099 13.38C51.7895 13.4364 51.9382 13.5108 52.0562 13.6031C52.1741 13.6954 52.2639 13.8031 52.3254 13.9262C52.3921 14.0442 52.4383 14.1648 52.4639 14.2879C52.4947 14.411 52.5127 14.5315 52.5178 14.6495C52.5229 14.7623 52.5255 14.8623 52.5255 14.9495V17.073H51.6946V16.5652ZM51.6407 15.4188H51.4484C51.3201 15.4188 51.1765 15.424 51.0175 15.4342C50.8585 15.4445 50.7072 15.4701 50.5636 15.5112C50.4251 15.5471 50.3071 15.6035 50.2097 15.6804C50.1122 15.7522 50.0635 15.8548 50.0635 15.9882C50.0635 16.0754 50.0814 16.1497 50.1173 16.2113C50.1584 16.2677 50.2097 16.3164 50.2712 16.3575C50.3328 16.3985 50.402 16.4293 50.4789 16.4498C50.5559 16.4652 50.6328 16.4729 50.7098 16.4729C51.0278 16.4729 51.2611 16.3985 51.4099 16.2498C51.5638 16.0959 51.6407 15.8882 51.6407 15.6266V15.4188Z\" fill=\"black\"/>\\n<rect x=\"35.4668\" y=\"25.8735\" width=\"33.4327\" height=\"2.71858\" rx=\"1.35929\" fill=\"white\"/>\\n<path d=\"M74.1965 30.1434V24.5013H74.6309V30.1434H74.1965Z\" fill=\"#939393\"/>\\n<g clip-path=\"url(#clip0_352_27745)\">\\n<path d=\"M81.8494 31.3363C84.1156 31.3363 85.9528 29.4992 85.9528 27.233C85.9528 24.9668 84.1156 23.1296 81.8494 23.1296C79.5832 23.1296 77.7461 24.9668 77.7461 27.233C77.7461 29.4992 79.5832 31.3363 81.8494 31.3363Z\" fill=\"#F0F0F0\"/>\\n<path d=\"M81.6709 27.233H85.9526C85.9526 26.8627 85.9033 26.5039 85.8113 26.1626H81.6709V27.233Z\" fill=\"#D80027\"/>\\n<path d=\"M81.6709 25.0922H85.3504C85.0992 24.6823 84.778 24.32 84.4036 24.0217H81.6709V25.0922Z\" fill=\"#D80027\"/>\\n<path d=\"M81.8482 31.3364C82.8139 31.3364 83.7015 31.0026 84.4025 30.4443H79.2939C79.9949 31.0026 80.8825 31.3364 81.8482 31.3364Z\" fill=\"#D80027\"/>\\n<path d=\"M78.3476 29.3739H85.3498C85.5514 29.0449 85.7078 28.6852 85.8107 28.3035H77.8867C77.9896 28.6852 78.146 29.0449 78.3476 29.3739V29.3739Z\" fill=\"#D80027\"/>\\n<path d=\"M79.6468 23.7704H80.0208L79.6729 24.0231L79.8058 24.432L79.458 24.1793L79.1102 24.432L79.225 24.0788C78.9187 24.3339 78.6503 24.6327 78.4291 24.9658H78.5489L78.3275 25.1266C78.293 25.1841 78.2599 25.2426 78.2282 25.3019L78.334 25.6273L78.1367 25.484C78.0877 25.5879 78.0428 25.6941 78.0025 25.8025L78.119 26.1611H78.5489L78.2011 26.4138L78.334 26.8226L77.9862 26.57L77.7778 26.7213C77.757 26.889 77.7461 27.0597 77.7461 27.233H81.8494C81.8494 24.9668 81.8494 24.6996 81.8494 23.1296C81.0388 23.1296 80.2832 23.3648 79.6468 23.7704V23.7704ZM79.8058 26.8226L79.458 26.57L79.1102 26.8226L79.2431 26.4138L78.8952 26.1611H79.3252L79.458 25.7522L79.5908 26.1611H80.0208L79.6729 26.4138L79.8058 26.8226ZM79.6729 25.2184L79.8058 25.6273L79.458 25.3746L79.1102 25.6273L79.2431 25.2184L78.8952 24.9658H79.3252L79.458 24.5569L79.5908 24.9658H80.0208L79.6729 25.2184ZM81.2777 26.8226L80.9299 26.57L80.582 26.8226L80.7149 26.4138L80.3671 26.1611H80.797L80.9299 25.7522L81.0627 26.1611H81.4926L81.1448 26.4138L81.2777 26.8226ZM81.1448 25.2184L81.2777 25.6273L80.9299 25.3746L80.582 25.6273L80.7149 25.2184L80.3671 24.9658H80.797L80.9299 24.5569L81.0627 24.9658H81.4926L81.1448 25.2184ZM81.1448 24.0231L81.2777 24.432L80.9299 24.1793L80.582 24.432L80.7149 24.0231L80.3671 23.7704H80.797L80.9299 23.3616L81.0627 23.7704H81.4926L81.1448 24.0231Z\" fill=\"#0052B4\"/>\\n</g>\\n<circle cx=\"81.8494\" cy=\"27.233\" r=\"4.61626\" stroke=\"white\" stroke-width=\"1.02583\"/>\\n<defs>\\n<clipPath id=\"clip0_352_27745\">\\n<rect width=\"8.20668\" height=\"8.20668\" fill=\"white\" transform=\"translate(77.7461 23.1296)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fza82p\",\"data-framer-name\":\"Frame 1000001324\",layoutDependency:layoutDependency,layoutId:\"Gpwnt2txi\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k2khbe\",\"data-border\":true,\"data-framer-name\":\"visuals/illustration/self/orders/learn-to-protect-2\",layoutDependency:layoutDependency,layoutId:\"j2qANAJW8\",style:{\"--border-bottom-width\":\"0.5965650081634521px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.5965650081634521px\",\"--border-right-width\":\"0.5965650081634521px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5965650081634521px\",backdropFilter:\"blur(3.427536964416504px)\",backgroundColor:\"rgba(255, 255, 255, 0.4)\",borderBottomLeftRadius:3.25,borderBottomRightRadius:3.25,borderTopLeftRadius:3.25,borderTopRightRadius:3.25,WebkitBackdropFilter:\"blur(3.427536964416504px)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1sam7m\",\"data-framer-name\":\"Core/Card/Instrument\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:41,intrinsicWidth:102,layoutDependency:layoutDependency,layoutId:\"taGciVL7V\",svg:'<svg width=\"102\" height=\"41\" viewBox=\"0 0 102 41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"8.68555\" y=\"10.5989\" width=\"20.5167\" height=\"20.5167\" rx=\"10.2583\" fill=\"white\"/>\\n<rect x=\"35.3564\" y=\"12.4617\" width=\"26.1596\" height=\"4.50221\" rx=\"2.25111\" fill=\"#A8B3CC\"/>\\n<rect x=\"35.3564\" y=\"26.2561\" width=\"33.4327\" height=\"2.71858\" rx=\"1.35929\" fill=\"white\"/>\\n<path d=\"M74.0861 30.5258V24.8837H74.5206V30.5258H74.0861Z\" fill=\"#939393\"/>\\n<g clip-path=\"url(#clip0_352_27759)\">\\n<path d=\"M81.7391 31.7186C84.0053 31.7186 85.8424 29.8815 85.8424 27.6153C85.8424 25.3491 84.0053 23.512 81.7391 23.512C79.4729 23.512 77.6357 25.3491 77.6357 27.6153C77.6357 29.8815 79.4729 31.7186 81.7391 31.7186Z\" fill=\"#F0F0F0\"/>\\n<path d=\"M85.8421 27.6152C85.8421 25.8509 84.7286 24.3469 83.166 23.7671V31.4633C84.7286 30.8835 85.8421 29.3795 85.8421 27.6152V27.6152Z\" fill=\"#D80027\"/>\\n<path d=\"M77.6357 27.6152C77.6357 29.3795 78.7493 30.8835 80.3118 31.4633V23.7671C78.7493 24.3469 77.6357 25.8509 77.6357 27.6152Z\" fill=\"#0052B4\"/>\\n</g>\\n<circle cx=\"81.7391\" cy=\"27.6153\" r=\"4.61626\" stroke=\"white\" stroke-width=\"1.02583\"/>\\n<defs>\\n<clipPath id=\"clip0_352_27759\">\\n<rect width=\"8.20668\" height=\"8.20668\" fill=\"white\" transform=\"translate(77.6357 23.512)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ai5ikc\",\"data-border\":true,\"data-framer-name\":\"visuals/illustration/self/orders/learn-to-protect-2\",layoutDependency:layoutDependency,layoutId:\"q8M4OEtKG\",style:{\"--border-bottom-width\":\"0.5965650081634521px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.5965650081634521px\",\"--border-right-width\":\"0.5965650081634521px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5965650081634521px\",backdropFilter:\"blur(3.427536964416504px)\",backgroundColor:\"rgba(255, 255, 255, 0.4)\",borderBottomLeftRadius:3.25,borderBottomRightRadius:3.25,borderTopLeftRadius:3.25,borderTopRightRadius:3.25,WebkitBackdropFilter:\"blur(3.427536964416504px)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-rjslwy\",\"data-framer-name\":\"Core/Card/Instrument\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:41,intrinsicWidth:102,layoutDependency:layoutDependency,layoutId:\"XvC7FHJqn\",svg:'<svg width=\"102\" height=\"41\" viewBox=\"0 0 102 41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"8.63672\" y=\"9.89014\" width=\"20.5167\" height=\"20.5167\" rx=\"10.2583\" fill=\"white\"/>\\n<rect x=\"35.3076\" y=\"11.7529\" width=\"26.1596\" height=\"4.50221\" rx=\"2.25111\" fill=\"#A8B3CC\"/>\\n<rect x=\"35.3076\" y=\"25.5474\" width=\"33.4327\" height=\"2.71858\" rx=\"1.35929\" fill=\"white\"/>\\n<path d=\"M74.0373 29.817V24.1749H74.4717V29.817H74.0373Z\" fill=\"#939393\"/>\\n<g clip-path=\"url(#clip0_352_27773)\">\\n<path d=\"M83.1175 23.0584C82.673 22.8935 82.1922 22.8032 81.6903 22.8032C81.1884 22.8032 80.7076 22.8935 80.2631 23.0584L79.9062 26.9066L80.2631 30.7547C80.7076 30.9196 81.1884 31.0099 81.6903 31.0099C82.1922 31.0099 82.673 30.9196 83.1175 30.7547L83.4744 26.9066L83.1175 23.0584Z\" fill=\"#FFDA44\"/>\\n<path d=\"M85.7933 26.9064C85.7933 25.1422 84.6797 23.6381 83.1172 23.0583V30.7546C84.6797 30.1748 85.7933 28.6708 85.7933 26.9064V26.9064Z\" fill=\"#D80027\"/>\\n<path d=\"M77.5869 26.9064C77.5869 28.6708 78.7005 30.1748 80.263 30.7546V23.0583C78.7005 23.6381 77.5869 25.1422 77.5869 26.9064V26.9064Z\" fill=\"black\"/>\\n</g>\\n<circle cx=\"81.6903\" cy=\"26.9066\" r=\"4.61626\" stroke=\"white\" stroke-width=\"1.02583\"/>\\n<defs>\\n<clipPath id=\"clip0_352_27773\">\\n<rect width=\"8.20668\" height=\"8.20668\" fill=\"white\" transform=\"translate(77.5869 22.8032)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})]})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/S57RZaSQweNc5YsPVfBYMoQlSow.png\",srcSet:\"https://framerusercontent.com/images/S57RZaSQweNc5YsPVfBYMoQlSow.png?scale-down-to=512 512w,https://framerusercontent.com/images/S57RZaSQweNc5YsPVfBYMoQlSow.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/S57RZaSQweNc5YsPVfBYMoQlSow.png 1681w\"},className:\"framer-1352cgr\",\"data-framer-name\":\"Frame 5\",layoutDependency:layoutDependency,layoutId:\"sPhno9akO\",...addPropertyOverrides({ZbuhRz0iU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+-3),positionX:\"center\",positionY:\"center\",sizes:\"363px\",src:\"https://framerusercontent.com/images/S57RZaSQweNc5YsPVfBYMoQlSow.png\",srcSet:\"https://framerusercontent.com/images/S57RZaSQweNc5YsPVfBYMoQlSow.png?scale-down-to=512 512w,https://framerusercontent.com/images/S57RZaSQweNc5YsPVfBYMoQlSow.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/S57RZaSQweNc5YsPVfBYMoQlSow.png 1681w\"}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-juoc1m\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"GXPgS9Cwb\",style:{background:\"linear-gradient(180deg, rgba(237, 241, 253, 1) 0%, rgba(237, 241, 253, 0) 100%)\"}}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d5qd8x\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"G_3KL8jsH\",style:{background:\"linear-gradient(180deg, rgba(237, 241, 253, 1) 0%, rgba(237, 241, 253, 0) 100%)\",rotate:180}})]}),isDisplayed4()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:729,pixelWidth:1509,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6BooRs60RjhvwAUCS5bOT9w22g.png\",srcSet:\"https://framerusercontent.com/images/6BooRs60RjhvwAUCS5bOT9w22g.png?scale-down-to=512 512w,https://framerusercontent.com/images/6BooRs60RjhvwAUCS5bOT9w22g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6BooRs60RjhvwAUCS5bOT9w22g.png 1509w\"},className:\"framer-z8kk0w\",\"data-framer-name\":\"Frame 1000003391\",layoutDependency:layoutDependency,layoutId:\"uABccNMwQ\",...addPropertyOverrides({ir5zZ3Jvg:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||327)*.4250764525993886-187.5)),pixelHeight:729,pixelWidth:1509,positionX:\"center\",positionY:\"center\",sizes:\"828px\",src:\"https://framerusercontent.com/images/6BooRs60RjhvwAUCS5bOT9w22g.png\",srcSet:\"https://framerusercontent.com/images/6BooRs60RjhvwAUCS5bOT9w22g.png?scale-down-to=512 512w,https://framerusercontent.com/images/6BooRs60RjhvwAUCS5bOT9w22g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6BooRs60RjhvwAUCS5bOT9w22g.png 1509w\"}}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qzh5vb\",\"data-framer-name\":\"Frame 1000003395\",layoutDependency:layoutDependency,layoutId:\"tKlcOmu_Y\",children:[isDisplayed6()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-4ttuh2\",\"data-framer-name\":\"Symbol only\",layoutDependency:layoutDependency,layoutId:\"NFLpbxNOu\",style:{opacity:.03,rotate:-1},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-13eserb\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:687,intrinsicWidth:687,layoutDependency:layoutDependency,layoutId:\"I373:27986;18:22\",style:{rotate:1},svg:'<svg width=\"687\" height=\"687\" viewBox=\"0 0 687 687\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.35743 383.125L6.99934 320.331L305.406 8.73058L366.967 7.39917L678.568 305.807L679.926 368.6L382.724 678.941L318.698 680.326L8.35743 383.125Z\" fill=\"#DE1F42\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed6()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-18y9jt0\",\"data-framer-name\":\"Symbol only\",layoutDependency:layoutDependency,layoutId:\"y9Tg8yMev\",style:{opacity:.3,rotate:-1},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1nysar\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:687,intrinsicWidth:687,layoutDependency:layoutDependency,layoutId:\"I373:27987;18:22\",style:{rotate:1},svg:'<svg width=\"687\" height=\"687\" viewBox=\"0 0 687 687\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.1963 383.059L6.83821 320.265L305.245 8.66466L366.806 7.33325L678.407 305.741L679.765 368.534L382.563 678.875L318.537 680.26L8.1963 383.059Z\" fill=\"#DE1F42\" fill-opacity=\"0.1\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2rxu7r\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:292,intrinsicWidth:348,layoutDependency:layoutDependency,layoutId:\"hxQE706wI\",svg:'<svg width=\"348\" height=\"292\" viewBox=\"0 0 348 292\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g style=\"mix-blend-mode:overlay\" filter=\"url(#filter0_f_373_27988)\">\\n<path d=\"M136.96 240.041C212.874 267.669 298.937 234.547 314.653 191.363C330.369 148.18 307.693 87.061 231.779 59.4336C194.16 45.7429 130.999 20.9282 78.478 26.1669C25.0139 31.4997 57.3896 137.138 49.4618 158.922C33.746 202.105 61.0465 212.414 136.96 240.041Z\" fill=\"#FE0230\" fill-opacity=\"0.12\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_373_27988\" x=\"-19.7741\" y=\"-39.511\" width=\"404.094\" height=\"354.64\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"32.4815\" result=\"effect1_foregroundBlur_373_27988\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fxciry\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:198,intrinsicWidth:258,layoutDependency:layoutDependency,layoutId:\"TeD4Iqoat\",svg:'<svg width=\"258\" height=\"198\" viewBox=\"0 0 258 198\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_f_373_27989)\">\\n<path d=\"M105.562 158.297C163.796 179.49 227.001 161.813 236.922 134.554C246.842 107.295 227.139 66.753 168.906 45.56C140.048 35.0579 91.517 16.2419 52.2917 17.3389C12.3617 18.4556 41.2949 88.2312 36.2906 101.982C26.3701 129.241 47.3286 137.104 105.562 158.297Z\" fill=\"#FFA1B2\" fill-opacity=\"0.22\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_373_27989\" x=\"-34.1583\" y=\"-47.6701\" width=\"338.494\" height=\"280.306\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"32.4815\" result=\"effect1_foregroundBlur_373_27989\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed6()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zzcesv\",\"data-framer-name\":\"Group 2085663397\",layoutDependency:layoutDependency,layoutId:\"NZj06QT0I\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-14clejx\",\"data-border\":true,\"data-framer-name\":\"image 11\",layoutDependency:layoutDependency,layoutId:\"VXJE1f2HU\",style:{\"--border-bottom-width\":\"0.9933557510375977px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.9933557510375977px\",\"--border-right-width\":\"0.9933557510375977px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.9933557510375977px\",backdropFilter:\"blur(62.780086517333984px)\",backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:7.85,borderBottomRightRadius:7.85,borderTopLeftRadius:7.85,borderTopRightRadius:7.85,rotate:-8,WebkitBackdropFilter:\"blur(62.780086517333984px)\"}}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"179.7412px\",src:\"https://framerusercontent.com/images/vTSOaV23GYYxSNtrWAaNDHSByT0.png\",srcSet:\"https://framerusercontent.com/images/vTSOaV23GYYxSNtrWAaNDHSByT0.png?scale-down-to=1024 708w,https://framerusercontent.com/images/vTSOaV23GYYxSNtrWAaNDHSByT0.png 720w\"},className:\"framer-70l8ts\",\"data-framer-name\":\"image 10\",layoutDependency:layoutDependency,layoutId:\"UKOJLMene\",style:{backdropFilter:\"blur(66.56565856933594px)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,rotate:-8,WebkitBackdropFilter:\"blur(66.56565856933594px)\"},...addPropertyOverrides({GWkSCzkIP:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||327)- -7)*.4880239520958086-143.5794)+14.9064),positionX:\"center\",positionY:\"center\",sizes:\"179.7412px\",src:\"https://framerusercontent.com/images/vTSOaV23GYYxSNtrWAaNDHSByT0.png\",srcSet:\"https://framerusercontent.com/images/vTSOaV23GYYxSNtrWAaNDHSByT0.png?scale-down-to=1024 708w,https://framerusercontent.com/images/vTSOaV23GYYxSNtrWAaNDHSByT0.png 720w\"}}},baseVariant,gestureVariant)})]}),isDisplayed7()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"87px\",src:\"https://framerusercontent.com/images/XYvaqT4Oowh18UBHJeo4CB6JYwI.png\",srcSet:\"https://framerusercontent.com/images/XYvaqT4Oowh18UBHJeo4CB6JYwI.png 350w\"},className:\"framer-17fhufr\",\"data-framer-name\":\"Group 9\",layoutDependency:layoutDependency,layoutId:\"jYYF1QSRf\",...addPropertyOverrides({GWkSCzkIP:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||327)- -7)-199),positionX:\"center\",positionY:\"center\",sizes:\"87px\",src:\"https://framerusercontent.com/images/XYvaqT4Oowh18UBHJeo4CB6JYwI.png\",srcSet:\"https://framerusercontent.com/images/XYvaqT4Oowh18UBHJeo4CB6JYwI.png 350w\"}}},baseVariant,gestureVariant)})]}),isDisplayed8()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-143m710\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"Ki6UAzSo0\",style:{rotate:-3},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ilfpwv\",\"data-framer-name\":\"visuals/illustration/core/world_map_masked\",layoutDependency:layoutDependency,layoutId:\"aHiX0Z9gj\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:376,intrinsicWidth:625,positionX:\"center\",positionY:\"center\",sizes:\"606.1332px\",src:\"https://framerusercontent.com/images/fzyXj9DHC7fsW2D8EDGwX5pDY.svg\",srcSet:\"https://framerusercontent.com/images/fzyXj9DHC7fsW2D8EDGwX5pDY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/fzyXj9DHC7fsW2D8EDGwX5pDY.svg 625w\"},className:\"framer-1vi1xif\",\"data-framer-name\":\"World\",layoutDependency:layoutDependency,layoutId:\"I414:61029;5323:33838\",style:{rotate:3},...addPropertyOverrides({f2QYPpy9u:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:376,intrinsicWidth:625,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||327)-335.9947+0+0+-17.1796),positionX:\"center\",positionY:\"center\",sizes:\"606.1332px\",src:\"https://framerusercontent.com/images/fzyXj9DHC7fsW2D8EDGwX5pDY.svg\",srcSet:\"https://framerusercontent.com/images/fzyXj9DHC7fsW2D8EDGwX5pDY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/fzyXj9DHC7fsW2D8EDGwX5pDY.svg 625w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-swj304\",\"data-framer-name\":\"US\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:137,intrinsicWidth:203,layoutDependency:layoutDependency,layoutId:\"I414:61029;5323:33839\",style:{rotate:3},svg:'<svg width=\"203\" height=\"137\" viewBox=\"0 0 203 137\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M52.8352 12.0769C52.9568 14.2598 51.2883 16.1272 49.1101 16.2485C46.9298 16.3698 45.0665 14.6991 44.9449 12.5162C44.8235 10.3343 46.4898 8.46701 48.6701 8.34562C50.8483 8.22435 52.7138 9.89494 52.8352 12.0769Z\" fill=\"#E7285D\"/>\\n<path d=\"M43.917 12.5734C44.0385 14.7564 42.37 16.6237 40.1929 16.7449C38.0127 16.8663 36.1472 15.1957 36.0256 13.0128C35.9042 10.8308 37.5727 8.96349 39.7529 8.8421C41.93 8.72089 43.7955 10.3915 43.917 12.5734Z\" fill=\"#E7285D\"/>\\n<path d=\"M34.9998 13.0699C35.1214 15.2528 33.4518 17.1203 31.2747 17.2415C29.0944 17.3629 27.23 15.6922 27.1085 13.5092C26.987 11.3273 28.6544 9.46003 30.8347 9.33864C33.0118 9.21743 34.8783 10.888 34.9998 13.0699Z\" fill=\"#E7285D\"/>\\n<path d=\"M26.0816 13.5664C26.2031 15.7494 24.5336 17.6168 22.3554 17.7381C20.1762 17.8594 18.3118 16.1888 18.1902 14.0058C18.0687 11.8239 19.7362 9.95657 21.9154 9.83524C24.0936 9.71397 25.9601 11.3845 26.0816 13.5664Z\" fill=\"#E7285D\"/>\\n<path d=\"M17.1623 14.063C17.2838 16.246 15.6153 18.1133 13.4372 18.2346C11.258 18.356 9.39354 16.6853 9.272 14.5023C9.15051 12.3204 10.818 10.4531 12.9972 10.3318C15.1753 10.2105 17.0408 11.8811 17.1623 14.063Z\" fill=\"#E7285D\"/>\\n<path d=\"M53.3367 21.0833C53.4582 23.2652 51.7897 25.1337 49.6116 25.2549C47.4313 25.3763 45.5679 23.7045 45.4464 21.5226C45.3248 19.3397 46.9912 17.4724 49.1715 17.351C51.3497 17.2298 53.2151 18.9004 53.3367 21.0833Z\" fill=\"#E7285D\"/>\\n<path d=\"M44.4185 21.5799C44.5399 23.7618 42.8715 25.6302 40.6944 25.7514C38.5141 25.8728 36.6486 24.2011 36.5271 22.0192C36.4056 19.8363 38.0741 17.9689 40.2543 17.8475C42.4314 17.7263 44.2969 19.3969 44.4185 21.5799Z\" fill=\"#E7285D\"/>\\n<path d=\"M35.5013 22.0763C35.6228 24.2583 33.9533 26.1267 31.7762 26.2479C29.5959 26.3693 27.7314 24.6976 27.6099 22.5157C27.4884 20.3327 29.1558 18.4654 31.3361 18.344C33.5132 18.2228 35.3797 19.8934 35.5013 22.0763Z\" fill=\"#E7285D\"/>\\n<path d=\"M26.583 22.5729C26.7045 24.7548 25.035 26.6233 22.8569 26.7445C20.6777 26.8659 18.8132 25.1942 18.6917 23.0122C18.5701 20.8293 20.2376 18.962 22.4168 18.8406C24.595 18.7194 26.4615 20.3899 26.583 22.5729Z\" fill=\"#E7285D\"/>\\n<path d=\"M17.6638 23.0695C17.7852 25.2514 16.1168 27.1198 13.9386 27.2411C11.7594 27.3624 9.89493 25.6907 9.77345 23.5088C9.65191 21.3258 11.3194 19.4585 13.4986 19.3372C15.6767 19.2159 17.5422 20.8865 17.6638 23.0695Z\" fill=\"#E7285D\"/>\\n<path d=\"M8.74552 23.566C8.867 25.7479 7.19856 27.6164 5.0204 27.7376C2.84118 27.859 0.976698 26.1872 0.855215 24.0053C0.733674 21.8224 2.40112 19.9551 4.58033 19.8337C6.7585 19.7125 8.62398 21.3831 8.74552 23.566Z\" fill=\"#E7285D\"/>\\n<path d=\"M53.8381 30.0887C53.9596 32.2717 52.2911 34.1391 50.113 34.2603C47.9327 34.3817 46.0693 32.711 45.9478 30.528C45.8263 28.3461 47.4926 26.4778 49.6729 26.3564C51.8511 26.2352 53.7166 27.9068 53.8381 30.0887Z\" fill=\"#E7285D\"/>\\n<path d=\"M44.9199 30.5853C45.0414 32.7682 43.3729 34.6356 41.1958 34.7568C39.0155 34.8782 37.15 33.2076 37.0285 31.0246C36.907 28.8427 38.5754 26.9743 40.7557 26.8529C42.9328 26.7317 44.7984 28.4034 44.9199 30.5853Z\" fill=\"#E7285D\"/>\\n<path d=\"M36.0027 31.0818C36.1242 33.2647 34.4547 35.1321 32.2775 35.2534C30.0973 35.3748 28.2329 33.7041 28.1113 31.5211C27.9898 29.3392 29.6572 27.4709 31.8375 27.3495C34.0146 27.2283 35.8812 28.8998 36.0027 31.0818Z\" fill=\"#E7285D\"/>\\n<path d=\"M27.0844 31.5783C27.206 33.7613 25.5364 35.6287 23.3583 35.75C21.179 35.8713 19.3146 34.2006 19.1931 32.0177C19.0716 29.8358 20.739 27.9674 22.9182 27.8461C25.0964 27.7248 26.963 29.3964 27.0844 31.5783Z\" fill=\"#E7285D\"/>\\n<path d=\"M18.1651 32.0749C18.2867 34.2579 16.6182 36.1252 14.44 36.2465C12.2608 36.3678 10.3964 34.6972 10.2748 32.5142C10.1534 30.3323 11.8207 28.4639 14 28.3426C16.1781 28.2213 18.0437 29.893 18.1651 32.0749Z\" fill=\"#E7285D\"/>\\n<path d=\"M54.3395 39.0941C54.461 41.2761 52.7925 43.1445 50.6144 43.2657C48.4341 43.3871 46.5707 41.7154 46.4492 39.5335C46.3277 37.3515 47.9941 35.4843 50.1743 35.3629C52.3525 35.2416 54.218 36.9122 54.3395 39.0941Z\" fill=\"#E7285D\"/>\\n<path d=\"M45.4212 39.5907C45.5427 41.7726 43.8743 43.641 41.6972 43.7622C39.5169 43.8836 37.6514 42.212 37.5299 40.0301C37.4084 37.8481 39.0769 35.9808 41.2572 35.8594C43.4343 35.7382 45.2998 37.4088 45.4212 39.5907Z\" fill=\"#E7285D\"/>\\n<path d=\"M36.5041 40.0872C36.6255 42.2691 34.9561 44.1376 32.7789 44.2588C30.5987 44.3802 28.7342 42.7084 28.6127 40.5265C28.4912 38.3446 30.1587 36.4773 32.3389 36.3559C34.516 36.2347 36.3826 37.9053 36.5041 40.0872Z\" fill=\"#E7285D\"/>\\n<path d=\"M27.5858 40.5837C27.7073 42.7656 26.0378 44.6341 23.8597 44.7554C21.6804 44.8767 19.816 43.205 19.6945 41.0231C19.573 38.8412 21.2404 36.9739 23.4196 36.8525C25.5978 36.7313 27.4643 38.4018 27.5858 40.5837Z\" fill=\"#E7285D\"/>\\n<path d=\"M18.6665 41.0803C18.788 43.2622 17.1196 45.1306 14.9414 45.2519C12.7622 45.3732 10.8977 43.7015 10.7762 41.5196C10.6548 39.3377 12.3222 37.4704 14.5014 37.3491C16.6796 37.2278 18.5451 38.8984 18.6665 41.0803Z\" fill=\"#E7285D\"/>\\n<path d=\"M9.74831 41.5768C9.86979 43.7588 8.20135 45.6272 6.02319 45.7484C3.84397 45.8698 1.97949 44.1981 1.858 42.0162C1.73652 39.8342 3.40396 37.9669 5.58318 37.8456C7.76134 37.7243 9.62682 39.3949 9.74831 41.5768Z\" fill=\"#E7285D\"/>\\n<path d=\"M37.0055 49.0926C37.127 51.2756 35.4575 53.144 33.2804 53.2652C31.1001 53.3866 29.2356 51.7149 29.1141 49.532C28.9926 47.35 30.66 45.4817 32.8403 45.3603C35.0174 45.2391 36.884 46.9107 37.0055 49.0926Z\" fill=\"#E7285D\"/>\\n<path d=\"M28.0872 49.5891C28.2088 51.7721 26.5393 53.6406 24.3611 53.7618C22.1819 53.8832 20.3174 52.2115 20.1959 50.0285C20.0744 47.8466 21.7418 45.9782 23.921 45.8569C26.0991 45.7356 27.9657 47.4072 28.0872 49.5891Z\" fill=\"#E7285D\"/>\\n<path d=\"M19.1679 50.0857C19.2895 52.2687 17.621 54.1371 15.4429 54.2584C13.2637 54.3797 11.3992 52.708 11.2776 50.525C11.1561 48.3431 12.8235 46.4748 15.0028 46.3534C17.1809 46.2322 19.0465 47.9038 19.1679 50.0857Z\" fill=\"#E7285D\"/>\\n<path d=\"M19.6694 59.0922C19.7909 61.2741 18.1224 63.1425 15.9443 63.2638C13.7651 63.3851 11.9006 61.7134 11.7791 59.5315C11.6575 57.3485 13.325 55.4812 15.5042 55.3599C17.6824 55.2386 19.5478 56.9092 19.6694 59.0922Z\" fill=\"#E7285D\"/>\\n<path d=\"M11.2525 68.5941C11.3741 70.7771 9.70559 72.6445 7.52743 72.7657C5.34821 72.8871 3.48379 71.2164 3.36224 69.0335C3.24076 66.8515 4.90815 64.9832 7.08736 64.8619C9.26552 64.7406 11.1311 66.4122 11.2525 68.5941Z\" fill=\"#E7285D\"/>\\n<path d=\"M199.036 67.1723C199.157 69.3542 197.489 71.2226 195.312 71.3438C193.131 71.4652 191.266 69.7936 191.144 67.6116C191.023 65.4308 192.691 63.5624 194.872 63.441C197.049 63.3198 198.914 64.9914 199.036 67.1723Z\" fill=\"#E7285D\"/>\\n<path d=\"M190.118 67.6688C190.239 69.8507 188.571 71.7191 186.392 71.8404C184.213 71.9618 182.349 70.29 182.227 68.1081C182.106 65.9273 183.773 64.0589 185.952 63.9376C188.131 63.8163 189.996 65.488 190.118 67.6688Z\" fill=\"#E7285D\"/>\\n<path d=\"M181.199 68.1654C181.321 70.3473 179.652 72.2157 177.474 72.337C175.295 72.4583 173.431 70.7866 173.309 68.6047C173.188 66.4238 174.855 64.5554 177.034 64.4341C179.212 64.3128 181.078 65.9845 181.199 68.1654Z\" fill=\"#E7285D\"/>\\n<path d=\"M172.281 68.6619C172.403 70.8438 170.735 72.7122 168.556 72.8335C166.378 72.9548 164.512 71.2831 164.391 69.1012C164.269 66.9203 165.938 65.0519 168.116 64.9307C170.295 64.8093 172.16 66.481 172.281 68.6619Z\" fill=\"#E7285D\"/>\\n<path d=\"M163.363 69.1584C163.484 71.3403 161.817 73.2087 159.638 73.33C157.459 73.4514 155.594 71.7797 155.473 69.5977C155.351 67.4169 157.019 65.5485 159.198 65.4272C161.377 65.3059 163.241 66.9776 163.363 69.1584Z\" fill=\"#E7285D\"/>\\n<path d=\"M154.445 69.655C154.566 71.8369 152.898 73.7053 150.72 73.8266C148.54 73.9479 146.676 72.2762 146.554 70.0943C146.433 67.9134 148.1 66.0451 150.28 65.9237C152.458 65.8025 154.323 67.4741 154.445 69.655Z\" fill=\"#E7285D\"/>\\n<path d=\"M145.526 70.1515C145.648 72.3334 143.978 74.2019 141.802 74.3231C139.623 74.4444 137.759 72.7727 137.637 70.5908C137.516 68.4099 139.183 66.5415 141.362 66.4202C143.538 66.2991 145.405 67.9707 145.526 70.1515Z\" fill=\"#E7285D\"/>\\n<path d=\"M136.609 70.648C136.731 72.8299 135.061 74.6984 132.884 74.8196C130.705 74.9409 128.84 73.2692 128.719 71.0873C128.597 68.9065 130.265 67.0381 132.444 66.9168C134.621 66.7955 136.488 68.4671 136.609 70.648Z\" fill=\"#E7285D\"/>\\n<path d=\"M127.69 71.1446C127.811 73.3265 126.143 75.1949 123.966 75.3161C121.786 75.4375 119.922 73.7658 119.801 71.5838C119.679 69.403 121.346 67.5347 123.526 67.4133C125.703 67.2921 127.569 68.9637 127.69 71.1446Z\" fill=\"#E7285D\"/>\\n<path d=\"M118.773 71.6411C118.894 73.823 117.226 75.6914 115.048 75.8127C112.867 75.9341 111.003 74.2624 110.881 72.0804C110.76 69.8996 112.427 68.0312 114.608 67.9098C116.786 67.7886 118.651 69.4602 118.773 71.6411Z\" fill=\"#E7285D\"/>\\n<path d=\"M109.855 72.1376C109.976 74.3195 108.308 76.1879 106.128 76.3093C103.949 76.4306 102.086 74.7588 101.964 72.5769C101.843 70.3961 103.509 68.5278 105.688 68.4064C107.868 68.2851 109.733 69.9568 109.855 72.1376Z\" fill=\"#E7285D\"/>\\n<path d=\"M100.936 72.6342C101.058 74.8161 99.3893 76.6845 97.2112 76.8058C95.0319 76.9271 93.1675 75.2554 93.046 73.0735C92.9246 70.8926 94.5919 69.0242 96.7712 68.9029C98.9493 68.7816 100.815 70.4533 100.936 72.6342Z\" fill=\"#E7285D\"/>\\n<path d=\"M92.018 73.1307C92.1395 75.3126 90.4711 77.181 88.2929 77.3023C86.1137 77.4236 84.2492 75.7519 84.1277 73.57C84.0063 71.3892 85.6737 69.5208 87.8529 69.3995C90.0311 69.2782 91.8966 70.9498 92.018 73.1307Z\" fill=\"#E7285D\"/>\\n<path d=\"M83.0988 73.6273C83.2202 75.8092 81.5529 77.6776 79.3747 77.7988C77.1955 77.9202 75.331 76.2485 75.2095 74.0665C75.0881 71.8857 76.7555 70.0173 78.9347 69.896C81.1128 69.7747 82.9773 71.4464 83.0988 73.6273Z\" fill=\"#E7285D\"/>\\n<path d=\"M190.619 76.6753C190.741 78.8572 189.072 80.7256 186.894 80.8469C184.715 80.9682 182.85 79.2965 182.729 77.1146C182.607 74.9316 184.275 73.0633 186.454 72.9419C188.632 72.8207 190.497 74.4923 190.619 76.6753Z\" fill=\"#E7285D\"/>\\n<path d=\"M181.701 77.1718C181.822 79.3537 180.154 81.2221 177.976 81.3434C175.796 81.4647 173.932 79.793 173.81 77.6111C173.689 75.4282 175.356 73.5598 177.536 73.4385C179.714 73.3172 181.579 74.9888 181.701 77.1718Z\" fill=\"#E7285D\"/>\\n<path d=\"M172.783 77.6683C172.904 79.8503 171.237 81.7186 169.057 81.84C166.879 81.9612 165.014 80.2896 164.892 78.1077C164.771 75.9247 166.439 74.0563 168.617 73.935C170.797 73.8137 172.661 75.4854 172.783 77.6683Z\" fill=\"#E7285D\"/>\\n<path d=\"M163.864 78.1649C163.986 80.3468 162.318 82.2152 160.139 82.3365C157.96 82.4578 156.095 80.7861 155.974 78.6042C155.852 76.4212 157.52 74.5529 159.699 74.4316C161.878 74.3102 163.743 75.9819 163.864 78.1649Z\" fill=\"#E7285D\"/>\\n<path d=\"M154.946 78.6614C155.068 80.8433 153.399 82.7118 151.221 82.833C149.042 82.9544 147.177 81.2827 147.056 79.1007C146.934 76.9178 148.602 75.0494 150.781 74.9281C152.959 74.8068 154.825 76.4785 154.946 78.6614Z\" fill=\"#E7285D\"/>\\n<path d=\"M146.028 79.158C146.149 81.3399 144.48 83.2084 142.304 83.3295C140.125 83.4508 138.26 81.7791 138.139 79.5972C138.017 77.4143 139.684 75.5459 141.864 75.4246C144.04 75.3034 145.906 76.975 146.028 79.158Z\" fill=\"#E7285D\"/>\\n<path d=\"M137.111 79.6545C137.232 81.8364 135.563 83.7048 133.386 83.8261C131.206 83.9474 129.342 82.2757 129.22 80.0938C129.099 77.9108 130.766 76.0424 132.945 75.9211C135.123 75.7999 136.989 77.4715 137.111 79.6545Z\" fill=\"#E7285D\"/>\\n<path d=\"M128.191 80.1511C128.313 82.333 126.644 84.2014 124.467 84.3226C122.287 84.444 120.424 82.7722 120.302 80.5903C120.181 78.4073 121.847 76.539 124.027 76.4177C126.204 76.2964 128.07 77.9681 128.191 80.1511Z\" fill=\"#E7285D\"/>\\n<path d=\"M119.274 80.6475C119.396 82.8294 117.727 84.6979 115.549 84.8191C113.369 84.9405 111.504 83.2688 111.383 81.0869C111.261 78.9039 112.929 77.0356 115.109 76.9142C117.287 76.7929 119.153 78.4646 119.274 80.6475Z\" fill=\"#E7285D\"/>\\n<path d=\"M110.356 81.1441C110.477 83.326 108.809 85.1944 106.63 85.3157C104.451 85.4371 102.587 83.7653 102.466 81.5834C102.344 79.4004 104.01 77.5321 106.19 77.4108C108.369 77.2895 110.234 78.9611 110.356 81.1441Z\" fill=\"#E7285D\"/>\\n<path d=\"M101.438 81.6406C101.559 83.8225 99.8908 85.6909 97.7126 85.8122C95.5334 85.9335 93.6689 84.2618 93.5474 82.0799C93.4259 79.897 95.0933 78.0286 97.2725 77.9073C99.4507 77.786 101.316 79.4576 101.438 81.6406Z\" fill=\"#E7285D\"/>\\n<path d=\"M92.5195 82.1372C92.641 84.3191 90.9725 86.1875 88.7944 86.3088C86.6152 86.4301 84.7507 84.7584 84.6292 82.5765C84.5077 80.3935 86.175 78.5251 88.3543 78.4038C90.5324 78.2825 92.398 79.9542 92.5195 82.1372Z\" fill=\"#E7285D\"/>\\n<path d=\"M83.6002 82.6338C83.7217 84.8157 82.0543 86.684 79.8761 86.8053C77.6969 86.9266 75.8324 85.2549 75.711 83.073C75.5894 80.89 77.2568 79.0217 79.436 78.9004C81.6142 78.7791 83.4787 80.4508 83.6002 82.6338Z\" fill=\"#E7285D\"/>\\n<path d=\"M173.284 86.6738C173.405 88.8557 171.738 90.724 169.559 90.8454C167.381 90.9666 165.515 89.295 165.394 87.1131C165.272 84.9312 166.941 83.0628 169.119 82.9415C171.298 82.8201 173.162 84.4919 173.284 86.6738Z\" fill=\"#E7285D\"/>\\n<path d=\"M164.366 87.1703C164.487 89.3522 162.82 91.2206 160.641 91.3419C158.461 91.4632 156.597 89.7915 156.475 87.6096C156.354 85.4277 158.021 83.5594 160.201 83.438C162.38 83.3167 164.244 84.9884 164.366 87.1703Z\" fill=\"#E7285D\"/>\\n<path d=\"M155.447 87.6669C155.569 89.8488 153.901 91.7172 151.722 91.8385C149.543 91.9598 147.679 90.2881 147.557 88.1062C147.436 85.9243 149.103 84.0559 151.282 83.9346C153.46 83.8133 155.326 85.4849 155.447 87.6669Z\" fill=\"#E7285D\"/>\\n<path d=\"M146.529 88.1634C146.651 90.3453 144.981 92.2138 142.805 92.3349C140.626 92.4563 138.761 90.7846 138.64 88.6026C138.519 86.4207 140.186 84.5524 142.365 84.431C144.541 84.3099 146.408 85.9815 146.529 88.1634Z\" fill=\"#E7285D\"/>\\n<path d=\"M137.612 88.6599C137.734 90.8418 136.064 92.7103 133.887 92.8315C131.708 92.9528 129.843 91.2811 129.722 89.0992C129.6 86.9173 131.268 85.0489 133.447 84.9276C135.624 84.8064 137.491 86.478 137.612 88.6599Z\" fill=\"#E7285D\"/>\\n<path d=\"M128.693 89.1565C128.814 91.3384 127.146 93.2068 124.969 93.328C122.788 93.4494 120.925 91.7776 120.804 89.5957C120.682 87.4138 122.348 85.5455 124.529 85.4241C126.706 85.3029 128.571 86.9746 128.693 89.1565Z\" fill=\"#E7285D\"/>\\n<path d=\"M119.776 89.653C119.897 91.8349 118.229 93.7033 116.05 93.8246C113.87 93.9459 112.006 92.2742 111.884 90.0923C111.763 87.9104 113.43 86.0421 115.61 85.9207C117.789 85.7994 119.654 87.471 119.776 89.653Z\" fill=\"#E7285D\"/>\\n<path d=\"M110.857 90.1495C110.979 92.3314 109.31 94.1998 107.131 94.3212C104.952 94.4425 103.089 92.7707 102.967 90.5888C102.846 88.4069 104.512 86.5386 106.691 86.4173C108.87 86.2959 110.736 87.9676 110.857 90.1495Z\" fill=\"#E7285D\"/>\\n<path d=\"M101.939 90.646C102.061 92.828 100.392 94.6964 98.214 94.8176C96.0348 94.939 94.1703 93.2673 94.0488 91.0853C93.9273 88.9034 95.5947 87.0351 97.7739 86.9137C99.9521 86.7925 101.818 88.4641 101.939 90.646Z\" fill=\"#E7285D\"/>\\n<path d=\"M93.0209 91.1426C93.1424 93.3245 91.4739 95.1929 89.2958 95.3142C87.1166 95.4355 85.2521 93.7638 85.1306 91.5819C85.0091 89.4 86.6765 87.5316 88.8557 87.4103C91.0339 87.289 92.8994 88.9607 93.0209 91.1426Z\" fill=\"#E7285D\"/>\\n<path d=\"M84.1016 91.6392C84.2231 93.8211 82.5557 95.6894 80.3775 95.8107C78.1983 95.9321 76.3338 94.2603 76.2124 92.0784C76.0909 89.8965 77.7583 88.0282 79.9375 87.9068C82.1156 87.7855 83.9801 89.4573 84.1016 91.6392Z\" fill=\"#E7285D\"/>\\n<path d=\"M164.867 96.1757C164.989 98.3576 163.321 100.226 161.142 100.347C158.963 100.469 157.098 98.7969 156.977 96.615C156.855 94.4321 158.523 92.5637 160.702 92.4424C162.881 92.321 164.746 93.9928 164.867 96.1757Z\" fill=\"#E7285D\"/>\\n<path d=\"M155.949 96.6723C156.07 98.8542 154.402 100.723 152.224 100.844C150.045 100.965 148.18 99.2935 148.059 97.1116C147.937 94.9286 149.604 93.0602 151.784 92.9389C153.962 92.8176 155.827 94.4893 155.949 96.6723Z\" fill=\"#E7285D\"/>\\n<path d=\"M147.031 97.1688C147.152 99.3507 145.483 101.219 143.307 101.34C141.127 101.462 139.263 99.79 139.141 97.6081C139.02 95.4251 140.687 93.5567 142.866 93.4354C145.043 93.3142 146.909 94.9858 147.031 97.1688Z\" fill=\"#E7285D\"/>\\n<path d=\"M138.113 97.6653C138.235 99.8472 136.565 101.716 134.388 101.837C132.209 101.958 130.345 100.287 130.223 98.1046C130.102 95.9216 131.769 94.0533 133.948 93.9319C136.125 93.8107 137.992 95.4823 138.113 97.6653Z\" fill=\"#E7285D\"/>\\n<path d=\"M129.194 98.1619C129.316 100.344 127.647 102.212 125.47 102.333C123.29 102.455 121.426 100.783 121.305 98.6011C121.183 96.4182 122.85 94.5499 125.03 94.4285C127.207 94.3073 129.073 95.9789 129.194 98.1619Z\" fill=\"#E7285D\"/>\\n<path d=\"M120.277 98.6584C120.398 100.84 118.73 102.709 116.552 102.83C114.372 102.951 112.507 101.28 112.386 99.0977C112.264 96.9148 113.931 95.0464 116.112 94.925C118.29 94.8037 120.155 96.4754 120.277 98.6584Z\" fill=\"#E7285D\"/>\\n<path d=\"M111.359 99.1549C111.48 101.337 109.812 103.205 107.633 103.327C105.453 103.448 103.59 101.776 103.468 99.5942C103.347 97.4112 105.013 95.5429 107.192 95.4216C109.372 95.3003 111.237 96.9719 111.359 99.1549Z\" fill=\"#E7285D\"/>\\n<path d=\"M102.441 99.6514C102.562 101.833 100.894 103.702 98.7154 103.823C96.5362 103.944 94.6717 102.273 94.5502 100.091C94.4287 97.9078 96.0961 96.0394 98.2753 95.9181C100.453 95.7968 102.319 97.4685 102.441 99.6514Z\" fill=\"#E7285D\"/>\\n<path d=\"M93.5223 100.148C93.6438 102.33 91.9753 104.198 89.7972 104.32C87.618 104.441 85.7535 102.769 85.632 100.587C85.5104 98.4043 87.1778 96.536 89.357 96.4146C91.5352 96.2934 93.4007 97.965 93.5223 100.148Z\" fill=\"#E7285D\"/>\\n<path d=\"M156.45 105.678C156.572 107.861 154.903 109.728 152.725 109.849C150.546 109.971 148.682 108.3 148.56 106.117C148.438 103.935 150.106 102.067 152.285 101.945C154.463 101.824 156.329 103.496 156.45 105.678Z\" fill=\"#E7285D\"/>\\n<path d=\"M147.532 106.174C147.654 108.357 145.984 110.225 143.808 110.346C141.629 110.467 139.764 108.796 139.643 106.613C139.521 104.432 141.189 102.563 143.368 102.442C145.544 102.321 147.411 103.992 147.532 106.174Z\" fill=\"#E7285D\"/>\\n<path d=\"M138.615 106.671C138.736 108.854 137.067 110.721 134.89 110.842C132.711 110.964 130.846 109.293 130.725 107.11C130.603 104.928 132.27 103.06 134.45 102.938C136.627 102.817 138.493 104.489 138.615 106.671Z\" fill=\"#E7285D\"/>\\n<path d=\"M129.696 107.167C129.817 109.35 128.149 111.218 125.972 111.339C123.791 111.46 121.928 109.79 121.806 107.607C121.685 105.425 123.351 103.556 125.531 103.435C127.709 103.314 129.574 104.985 129.696 107.167Z\" fill=\"#E7285D\"/>\\n<path d=\"M120.778 107.664C120.9 109.847 119.231 111.714 117.053 111.835C114.873 111.957 113.009 110.286 112.887 108.103C112.766 105.921 114.433 104.053 116.613 103.931C118.791 103.81 120.657 105.482 120.778 107.664Z\" fill=\"#E7285D\"/>\\n<path d=\"M111.86 108.16C111.982 110.343 110.313 112.211 108.134 112.332C105.955 112.453 104.091 110.783 103.97 108.6C103.848 106.418 105.515 104.549 107.694 104.428C109.873 104.307 111.739 105.978 111.86 108.16Z\" fill=\"#E7285D\"/>\\n<path d=\"M102.942 108.657C103.063 110.84 101.395 112.707 99.2168 112.828C97.0376 112.95 95.1732 111.279 95.0516 109.096C94.9301 106.914 96.5975 105.046 98.7767 104.925C100.955 104.803 102.82 106.475 102.942 108.657Z\" fill=\"#E7285D\"/>\\n<path d=\"M156.952 114.684C157.073 116.866 155.405 118.734 153.227 118.856C151.047 118.977 149.183 117.305 149.061 115.123C148.94 112.94 150.607 111.072 152.786 110.951C154.965 110.83 156.83 112.501 156.952 114.684Z\" fill=\"#E7285D\"/>\\n<path d=\"M32.5999 130.64C32.7214 132.823 31.0519 134.69 28.8737 134.812C26.6945 134.933 24.8301 133.262 24.7085 131.079C24.587 128.897 26.2544 127.029 28.4336 126.908C30.6118 126.786 32.4784 128.458 32.5999 130.64Z\" fill=\"#E7285D\"/>\\n<path d=\"M23.6806 131.137C23.8021 133.32 22.1336 135.187 19.9555 135.308C17.7763 135.429 15.9118 133.759 15.7903 131.576C15.6688 129.394 17.3362 127.526 19.5154 127.404C21.6936 127.283 23.5591 128.955 23.6806 131.137Z\" fill=\"#E7285D\"/>\\n</svg>\\n',withExternalLayout:true})]})}),isDisplayed8()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kr77md\",\"data-framer-name\":\"ivs7067_product_still_a_hand_holding_an_iphone_15_pro_max_scree_350e9a56-73f8-4cd8-869d-b42f56071f71 1\",layoutDependency:layoutDependency,layoutId:\"KxzCE3Tos\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Tirhv7yDseMu6iqbudCXflNMg.png\",srcSet:\"https://framerusercontent.com/images/Tirhv7yDseMu6iqbudCXflNMg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Tirhv7yDseMu6iqbudCXflNMg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tirhv7yDseMu6iqbudCXflNMg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Tirhv7yDseMu6iqbudCXflNMg.png 2840w\"},className:\"framer-ci8l1w\",\"data-framer-name\":\"ivs7067_product_still_a_hand_holding_an_iphone_15_pro_max_scree_350e9a56-73f8-4cd8-869d-b42f56071f71 1\",layoutDependency:layoutDependency,layoutId:\"xuj9HPv5I\",...addPropertyOverrides({f2QYPpy9u:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-64+0),positionX:\"center\",positionY:\"center\",sizes:\"709.9316px\",src:\"https://framerusercontent.com/images/Tirhv7yDseMu6iqbudCXflNMg.png\",srcSet:\"https://framerusercontent.com/images/Tirhv7yDseMu6iqbudCXflNMg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Tirhv7yDseMu6iqbudCXflNMg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tirhv7yDseMu6iqbudCXflNMg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Tirhv7yDseMu6iqbudCXflNMg.png 2840w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/azS7dwUtBTsUIhREa5maaih98x4.png\",srcSet:\"https://framerusercontent.com/images/azS7dwUtBTsUIhREa5maaih98x4.png 764w\"},className:\"framer-gw4bkk\",\"data-framer-name\":\"image 9\",layoutDependency:layoutDependency,layoutId:\"Qyhr7CUGs\",style:{borderBottomLeftRadius:23.66,borderBottomRightRadius:23.66,borderTopLeftRadius:23.66,borderTopRightRadius:23.66,rotate:-1},...addPropertyOverrides({f2QYPpy9u:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-64+129.7909),positionX:\"center\",positionY:\"center\",sizes:\"190.4983px\",src:\"https://framerusercontent.com/images/azS7dwUtBTsUIhREa5maaih98x4.png\",srcSet:\"https://framerusercontent.com/images/azS7dwUtBTsUIhREa5maaih98x4.png 764w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/MFYdlAzRybTTPNXnu7UFFFsordI.png\",srcSet:\"https://framerusercontent.com/images/MFYdlAzRybTTPNXnu7UFFFsordI.png?scale-down-to=512 512w,https://framerusercontent.com/images/MFYdlAzRybTTPNXnu7UFFFsordI.png 750w\"},className:\"framer-11rj2io\",\"data-framer-name\":\"image 10\",layoutDependency:layoutDependency,layoutId:\"qJehXdIh3\",style:{rotate:-1},...addPropertyOverrides({f2QYPpy9u:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-64+172.0104),sizes:\"221.8536px\",src:\"https://framerusercontent.com/images/MFYdlAzRybTTPNXnu7UFFFsordI.png\",srcSet:\"https://framerusercontent.com/images/MFYdlAzRybTTPNXnu7UFFFsordI.png?scale-down-to=512 512w,https://framerusercontent.com/images/MFYdlAzRybTTPNXnu7UFFFsordI.png 750w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/kTuqtZKHVq9Sh525s937jsIeEk.png\",srcSet:\"https://framerusercontent.com/images/kTuqtZKHVq9Sh525s937jsIeEk.png?scale-down-to=512 512w,https://framerusercontent.com/images/kTuqtZKHVq9Sh525s937jsIeEk.png 750w\"},className:\"framer-1aucjxr\",\"data-framer-name\":\"image 11\",layoutDependency:layoutDependency,layoutId:\"uJ5zoudd5\",style:{rotate:-1},...addPropertyOverrides({f2QYPpy9u:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-64+315.6012),sizes:\"188.7708px\",src:\"https://framerusercontent.com/images/kTuqtZKHVq9Sh525s937jsIeEk.png\",srcSet:\"https://framerusercontent.com/images/kTuqtZKHVq9Sh525s937jsIeEk.png?scale-down-to=512 512w,https://framerusercontent.com/images/kTuqtZKHVq9Sh525s937jsIeEk.png 750w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/NneyfDlerjk9YrkriiyvIt6j1Uc.png\",srcSet:\"https://framerusercontent.com/images/NneyfDlerjk9YrkriiyvIt6j1Uc.png?scale-down-to=512 512w,https://framerusercontent.com/images/NneyfDlerjk9YrkriiyvIt6j1Uc.png 750w\"},className:\"framer-1c0s2ht\",\"data-framer-name\":\"image 13\",layoutDependency:layoutDependency,layoutId:\"Qee15t72l\",style:{borderBottomLeftRadius:23.66,borderBottomRightRadius:23.66,rotate:-1},...addPropertyOverrides({f2QYPpy9u:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-64+427.7594),sizes:\"191.0899px\",src:\"https://framerusercontent.com/images/NneyfDlerjk9YrkriiyvIt6j1Uc.png\",srcSet:\"https://framerusercontent.com/images/NneyfDlerjk9YrkriiyvIt6j1Uc.png?scale-down-to=512 512w,https://framerusercontent.com/images/NneyfDlerjk9YrkriiyvIt6j1Uc.png 750w\"}}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-8fy8lq\",\"data-border\":true,\"data-framer-name\":\"visuals/illustration/self/orders/learn-to-protect-2\",layoutDependency:layoutDependency,layoutId:\"wllmynLXl\",style:{\"--border-bottom-width\":\"0.651700496673584px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.651700496673584px\",\"--border-right-width\":\"0.651700496673584px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.651700496673584px\",backdropFilter:\"blur(9.389434814453125px)\",backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:3.55,borderBottomRightRadius:3.55,borderTopLeftRadius:3.55,borderTopRightRadius:3.55,boxShadow:\"0px 2.1584906578063965px 75.43925476074219px 0px rgba(155, 0, 42, 0.2199999988079071)\",WebkitBackdropFilter:\"blur(9.389434814453125px)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-pewicy\",\"data-framer-name\":\"Core/Card/Instrument\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:45,intrinsicWidth:112,layoutDependency:layoutDependency,layoutId:\"VPK5Toio5\",svg:'<svg width=\"112\" height=\"45\" viewBox=\"0 0 112 45\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_3695_11288)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.9911 28.7737C20.4928 28.7737 20.2368 28.4499 20.2368 28.4499C19.8272 28.4322 16.6269 28.441 16.6269 28.441L16.3153 25.8207C16.3153 25.8207 14.3441 24.4364 14.1839 24.2767C13.2377 20 16.6577 15.9229 20.9912 15.9229C25.3248 15.9229 28.7448 20 27.7986 24.2767C27.6384 24.4364 25.6672 25.8207 25.6672 25.8207L25.3556 28.441C25.3556 28.441 22.1552 28.4322 21.7457 28.4499C21.7457 28.4499 21.4896 28.7737 20.9911 28.7737Z\" fill=\"#ED1C24\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.9962 24.788L20.6938 17.2242C20.3291 17.1501 19.3988 17.2391 18.9001 17.6098L20.3514 24.8177L18.3717 17.9065C17.8971 17.9007 16.9394 18.7002 16.8682 18.9372L19.756 25.0698L16.511 19.4637C16.1909 19.5824 15.4913 20.8652 15.6029 21.0143L19.2201 25.4258L15.4988 21.6587C15.4988 21.6587 15.015 22.3928 15.3305 23.6363L17.4325 25.1487L17.6956 27.215H20.2728C20.2728 27.215 20.6944 27.6132 20.9936 27.6132C21.2927 27.6132 21.7143 27.215 21.7143 27.215H24.2915L24.5546 25.1487L26.6567 23.6363C26.9721 22.3928 26.4884 21.6587 26.4884 21.6587L22.767 25.4258L26.3842 21.0143C26.4958 20.8652 25.7962 19.5824 25.4761 19.4637L22.2311 25.0698L25.1189 18.9372C25.0478 18.7002 24.0901 17.9007 23.6155 17.9065L21.6357 24.8177L23.087 17.6098C22.5884 17.2391 21.658 17.1501 21.2933 17.2242L20.9962 24.788Z\" fill=\"#FFD500\"/>\\n</g>\\n<path d=\"M42.474 12.9646C42.3619 12.8021 42.2107 12.6844 42.0202 12.6116C41.8352 12.5332 41.6391 12.4939 41.4318 12.4939C41.3085 12.4939 41.1881 12.5079 41.0704 12.536C40.9583 12.564 40.8547 12.6088 40.7594 12.6704C40.6698 12.7321 40.5969 12.8133 40.5409 12.9142C40.4849 13.0094 40.4569 13.1243 40.4569 13.2588C40.4569 13.4605 40.5269 13.6146 40.667 13.721C40.8071 13.8275 40.9808 13.92 41.1881 13.9984C41.3954 14.0768 41.6223 14.1525 41.8689 14.2253C42.1154 14.2982 42.3423 14.399 42.5497 14.5279C42.757 14.6568 42.9307 14.8277 43.0708 15.0406C43.2108 15.2535 43.2809 15.5365 43.2809 15.8895C43.2809 16.2089 43.222 16.489 43.1044 16.73C42.9867 16.9653 42.827 17.1614 42.6253 17.3183C42.4292 17.4752 42.1995 17.5929 41.9361 17.6713C41.6728 17.7498 41.3954 17.789 41.104 17.789C40.7342 17.789 40.3784 17.7273 40.0366 17.6041C39.6948 17.4808 39.4006 17.2735 39.1541 16.9821L39.9526 16.2089C40.0814 16.405 40.2495 16.5591 40.4569 16.6711C40.6698 16.7776 40.8939 16.8308 41.1292 16.8308C41.2525 16.8308 41.3758 16.814 41.4991 16.7804C41.6223 16.7468 41.7344 16.6964 41.8352 16.6291C41.9361 16.5619 42.0173 16.4778 42.079 16.377C42.1406 16.2705 42.1714 16.15 42.1714 16.0156C42.1714 15.797 42.1014 15.6289 41.9613 15.5113C41.8212 15.3936 41.6475 15.2955 41.4402 15.2171C41.2329 15.1331 41.006 15.0546 40.7594 14.9818C40.5129 14.9089 40.286 14.8109 40.0786 14.6876C39.8713 14.5587 39.6976 14.3906 39.5575 14.1833C39.4175 13.9704 39.3474 13.6874 39.3474 13.3344C39.3474 13.0262 39.4091 12.7601 39.5323 12.536C39.6612 12.3118 39.8265 12.1269 40.0282 11.9812C40.2355 11.83 40.4709 11.7179 40.7342 11.6451C40.9976 11.5722 41.2665 11.5358 41.5411 11.5358C41.8549 11.5358 42.1574 11.5834 42.4488 11.6787C42.7458 11.7739 43.0119 11.9308 43.2473 12.1493L42.474 12.9646ZM45.2999 14.1665H45.3167C45.3951 13.9984 45.5324 13.8471 45.7285 13.7126C45.9302 13.5726 46.188 13.5025 46.5018 13.5025C46.7707 13.5025 46.9976 13.5473 47.1826 13.637C47.3731 13.7266 47.5272 13.8443 47.6448 13.99C47.7625 14.1357 47.8465 14.3038 47.897 14.4943C47.9474 14.6848 47.9726 14.8837 47.9726 15.091V17.6377H46.964V15.5953C46.964 15.4833 46.9584 15.36 46.9472 15.2255C46.936 15.0854 46.9052 14.9566 46.8548 14.8389C46.8099 14.7156 46.7371 14.6148 46.6362 14.5363C46.5354 14.4523 46.3981 14.4102 46.2244 14.4102C46.0563 14.4102 45.9134 14.4383 45.7958 14.4943C45.6837 14.5503 45.5884 14.626 45.51 14.7212C45.4372 14.8165 45.3839 14.9257 45.3503 15.049C45.3167 15.1723 45.2999 15.3012 45.2999 15.4356V17.6377H44.2913V11.2836H45.2999V14.1665ZM49.9244 15.9735C49.958 16.2761 50.0757 16.5114 50.2774 16.6795C50.4791 16.8476 50.7228 16.9317 51.0086 16.9317C51.2607 16.9317 51.4709 16.8813 51.639 16.7804C51.8127 16.6739 51.9639 16.5423 52.0928 16.3854L52.8156 16.9317C52.5803 17.2231 52.3169 17.4304 52.0256 17.5536C51.7342 17.6769 51.4288 17.7386 51.1094 17.7386C50.8069 17.7386 50.5211 17.6881 50.2522 17.5873C49.9832 17.4864 49.7507 17.3435 49.5546 17.1586C49.3584 16.9737 49.2016 16.7524 49.0839 16.4946C48.9718 16.2313 48.9158 15.9399 48.9158 15.6205C48.9158 15.3012 48.9718 15.0126 49.0839 14.7548C49.2016 14.4915 49.3584 14.2674 49.5546 14.0825C49.7507 13.8975 49.9832 13.7547 50.2522 13.6538C50.5211 13.5529 50.8069 13.5025 51.1094 13.5025C51.3896 13.5025 51.6446 13.5529 51.8743 13.6538C52.1096 13.7491 52.3085 13.8891 52.471 14.074C52.6391 14.259 52.768 14.4887 52.8577 14.7632C52.9529 15.0322 53.0005 15.3432 53.0005 15.6962V15.9735H49.9244ZM51.992 15.2171C51.9864 14.9201 51.8939 14.6876 51.7146 14.5195C51.5353 14.3458 51.286 14.259 50.9666 14.259C50.664 14.259 50.4231 14.3458 50.2438 14.5195C50.0701 14.6932 49.9636 14.9257 49.9244 15.2171H51.992ZM53.9605 11.2836H54.9691V17.6377H53.9605V11.2836ZM56.152 11.2836H57.1606V17.6377H56.152V11.2836Z\" fill=\"#415175\"/>\\n<rect x=\"38.8936\" y=\"27.9746\" width=\"36.5226\" height=\"2.96983\" rx=\"1.48492\" fill=\"white\"/>\\n<path d=\"M81.2029 33.5008V27.3373H81.6774V33.5008H81.2029Z\" fill=\"#939393\"/>\\n<g clip-path=\"url(#clip1_3695_11288)\">\\n<path d=\"M89.3781 33.9417C91.8537 33.9417 93.8607 31.9348 93.8607 29.4591C93.8607 26.9835 91.8537 24.9766 89.3781 24.9766C86.9024 24.9766 84.8955 26.9835 84.8955 29.4591C84.8955 31.9348 86.9024 33.9417 89.3781 33.9417Z\" fill=\"#F0F0F0\"/>\\n<path d=\"M85.822 26.7285C85.4699 27.1866 85.2044 27.7146 85.0498 28.2883H87.3818L85.822 26.7285Z\" fill=\"#0052B4\"/>\\n<path d=\"M93.7059 28.2882C93.5513 27.7146 93.2858 27.1866 92.9337 26.7285L91.374 28.2882H93.7059Z\" fill=\"#0052B4\"/>\\n<path d=\"M85.0498 30.6279C85.2044 31.2015 85.4699 31.7295 85.822 32.1876L87.3817 30.6279H85.0498Z\" fill=\"#0052B4\"/>\\n<path d=\"M92.1076 25.9021C91.6495 25.55 91.1215 25.2845 90.5479 25.1299V27.4618L92.1076 25.9021Z\" fill=\"#0052B4\"/>\\n<path d=\"M86.6484 33.0138C87.1066 33.3659 87.6346 33.6314 88.2082 33.786V31.4541L86.6484 33.0138Z\" fill=\"#0052B4\"/>\\n<path d=\"M88.2081 25.1299C87.6346 25.2845 87.1065 25.55 86.6484 25.9021L88.2081 27.4618V25.1299Z\" fill=\"#0052B4\"/>\\n<path d=\"M90.5479 33.786C91.1214 33.6314 91.6495 33.3659 92.1076 33.0138L90.5479 31.4541V33.786Z\" fill=\"#0052B4\"/>\\n<path d=\"M91.374 30.6279L92.9337 32.1877C93.2858 31.7296 93.5513 31.2015 93.7059 30.6279H91.374Z\" fill=\"#0052B4\"/>\\n<path d=\"M93.8227 28.8735H89.9628H89.9628V25.0135C89.7714 24.9886 89.5762 24.9756 89.3781 24.9756C89.1799 24.9756 88.9848 24.9886 88.7934 25.0135V28.8734V28.8735H84.9335C84.9085 29.0649 84.8955 29.26 84.8955 29.4582C84.8955 29.6564 84.9085 29.8515 84.9335 30.0428H88.7934H88.7934V33.9028C88.9848 33.9277 89.1799 33.9407 89.3781 33.9407C89.5762 33.9407 89.7714 33.9277 89.9628 33.9028V30.0429V30.0429H93.8227C93.8476 29.8515 93.8607 29.6564 93.8607 29.4582C93.8607 29.26 93.8476 29.0649 93.8227 28.8735V28.8735Z\" fill=\"#D80027\"/>\\n<path d=\"M90.5479 30.6279L92.5481 32.6282C92.6401 32.5363 92.7279 32.4401 92.8116 32.3404L91.0991 30.6279H90.5479V30.6279Z\" fill=\"#D80027\"/>\\n<path d=\"M88.2083 30.6279H88.2083L86.208 32.6282C86.3 32.7202 86.3961 32.8079 86.4958 32.8917L88.2083 31.1791V30.6279Z\" fill=\"#D80027\"/>\\n<path d=\"M88.2091 28.2884V28.2884L86.2088 26.2881C86.1168 26.38 86.029 26.4762 85.9453 26.5759L87.6578 28.2884H88.2091V28.2884Z\" fill=\"#D80027\"/>\\n<path d=\"M90.5479 28.2892L92.5481 26.2889C92.4562 26.1969 92.36 26.1091 92.2604 26.0254L90.5479 27.7379V28.2892Z\" fill=\"#D80027\"/>\\n</g>\\n<circle cx=\"89.3781\" cy=\"29.4591\" r=\"5.0429\" stroke=\"white\" stroke-width=\"1.12064\"/>\\n<defs>\\n<clipPath id=\"clip0_3695_11288\">\\n<rect width=\"14.5684\" height=\"13.4477\" fill=\"white\" transform=\"translate(13.6787 15.626)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_3695_11288\">\\n<rect width=\"8.96515\" height=\"8.96515\" fill=\"white\" transform=\"translate(84.8955 24.9766)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed6()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-hsio9r\",\"data-border\":true,\"data-framer-name\":\"visuals/illustration/self/orders/learn-to-protect-2\",layoutDependency:layoutDependency,layoutId:\"epEnCcr_c\",style:{\"--border-bottom-width\":\"0.651700496673584px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.651700496673584px\",\"--border-right-width\":\"0.651700496673584px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.651700496673584px\",backdropFilter:\"blur(9.389434814453125px)\",backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:3.55,borderBottomRightRadius:3.55,borderTopLeftRadius:3.55,borderTopRightRadius:3.55,boxShadow:\"0px 2.1584906578063965px 75.43925476074219px 0px rgba(155, 0, 42, 0.2199999988079071)\",WebkitBackdropFilter:\"blur(9.389434814453125px)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-5lga4c\",\"data-framer-name\":\"Core/Card/Instrument\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:44,intrinsicWidth:111,layoutDependency:layoutDependency,layoutId:\"Mdp7TAnuj\",svg:'<svg width=\"111\" height=\"44\" viewBox=\"0 0 111 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"9.51953\" y=\"10.9062\" width=\"22.4129\" height=\"22.4129\" rx=\"11.2064\" fill=\"#E82127\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M26.5442 18.4176C24.4885 17.5213 22.4804 17.2364 20.726 17.2498H20.7258C18.9714 17.2364 16.9629 17.5213 14.9076 18.4176C14.6627 17.9736 14.5625 17.7043 14.5625 17.7043C16.8094 16.815 18.9137 16.5106 20.7258 16.5029C22.538 16.5106 24.6424 16.8149 26.8896 17.7043C26.8896 17.7043 26.8189 17.9229 26.5442 18.4176ZM22.4514 19.0794L20.7268 28.7815L18.9884 19.078C17.3556 19.0791 16.8378 19.2595 16.7625 19.9955C16.7625 19.9955 15.6593 19.5842 15.1037 18.7489C17.2737 17.7429 19.4544 17.6974 19.4544 17.6974L20.7255 19.2462L21.9964 17.6977C21.9964 17.6977 24.1771 17.7431 26.3474 18.7491C25.7912 19.5844 24.6885 19.9957 24.6885 19.9957C24.6137 19.2597 24.0952 19.0794 22.4514 19.0794Z\" fill=\"white\"/>\\n<path d=\"M40.5389 12.4079H38.7151V11.4498H43.4218V12.4079H41.5979V17.4004H40.5389V12.4079ZM43.9252 15.7362C43.9588 16.0388 44.0764 16.2741 44.2782 16.4422C44.4799 16.6103 44.7236 16.6944 45.0094 16.6944C45.2615 16.6944 45.4716 16.644 45.6397 16.5431C45.8134 16.4366 45.9647 16.305 46.0936 16.1481L46.8164 16.6944C46.5811 16.9858 46.3177 17.1931 46.0264 17.3163C45.735 17.4396 45.4296 17.5012 45.1102 17.5012C44.8077 17.5012 44.5219 17.4508 44.2529 17.35C43.984 17.2491 43.7515 17.1062 43.5553 16.9213C43.3592 16.7364 43.2023 16.5151 43.0847 16.2573C42.9726 15.994 42.9166 15.7026 42.9166 15.3832C42.9166 15.0638 42.9726 14.7753 43.0847 14.5175C43.2023 14.2542 43.3592 14.0301 43.5553 13.8451C43.7515 13.6602 43.984 13.5174 44.2529 13.4165C44.5219 13.3156 44.8077 13.2652 45.1102 13.2652C45.3904 13.2652 45.6453 13.3156 45.8751 13.4165C46.1104 13.5118 46.3093 13.6518 46.4718 13.8367C46.6399 14.0216 46.7688 14.2514 46.8584 14.5259C46.9537 14.7949 47.0013 15.1059 47.0013 15.4589V15.7362H43.9252ZM45.9927 14.9798C45.9871 14.6828 45.8947 14.4503 45.7154 14.2822C45.5361 14.1085 45.2867 14.0216 44.9674 14.0216C44.6648 14.0216 44.4238 14.1085 44.2445 14.2822C44.0708 14.4559 43.9644 14.6884 43.9252 14.9798H45.9927ZM50.0961 14.4839C49.9 14.2094 49.6367 14.0721 49.3061 14.0721C49.1716 14.0721 49.0399 14.1057 48.9111 14.1729C48.7822 14.2402 48.7177 14.3494 48.7177 14.5007C48.7177 14.624 48.771 14.7136 48.8774 14.7697C48.9839 14.8257 49.1184 14.8733 49.2809 14.9126C49.4434 14.9518 49.6171 14.9938 49.802 15.0386C49.9925 15.0779 50.169 15.1423 50.3315 15.2319C50.494 15.316 50.6284 15.4337 50.7349 15.5849C50.8414 15.7362 50.8946 15.9436 50.8946 16.2069C50.8946 16.4478 50.8414 16.6524 50.7349 16.8205C50.6341 16.983 50.4996 17.1146 50.3315 17.2155C50.169 17.3163 49.9841 17.3892 49.7768 17.434C49.5694 17.4788 49.3621 17.5012 49.1548 17.5012C48.841 17.5012 48.5525 17.4564 48.2891 17.3668C48.0258 17.2771 47.7904 17.1146 47.5831 16.8793L48.2555 16.2489C48.3844 16.3946 48.5216 16.5151 48.6673 16.6103C48.8186 16.7 49.0007 16.7448 49.2136 16.7448C49.2865 16.7448 49.3621 16.7364 49.4406 16.7196C49.519 16.7028 49.5919 16.6748 49.6591 16.6356C49.7263 16.5963 49.7796 16.5487 49.8188 16.4927C49.8636 16.431 49.886 16.361 49.886 16.2825C49.886 16.1425 49.8328 16.0388 49.7263 15.9716C49.6199 15.9043 49.4854 15.8511 49.3229 15.8119C49.1604 15.7671 48.9839 15.7278 48.7934 15.6942C48.6085 15.655 48.4348 15.5962 48.2723 15.5177C48.1098 15.4337 47.9753 15.3188 47.8689 15.1731C47.7624 15.0274 47.7092 14.8257 47.7092 14.568C47.7092 14.3438 47.754 14.1505 47.8436 13.988C47.9389 13.8199 48.0622 13.6827 48.2135 13.5762C48.3647 13.4697 48.5384 13.3913 48.7346 13.3409C48.9307 13.2904 49.1296 13.2652 49.3313 13.2652C49.6003 13.2652 49.8664 13.3128 50.1298 13.4081C50.3931 13.4977 50.606 13.6546 50.7685 13.8788L50.0961 14.4839ZM51.6959 11.0463H52.7045V17.4004H51.6959V11.0463ZM56.3838 16.8457H56.3586C56.2129 17.0754 56.028 17.2435 55.8039 17.35C55.5797 17.4508 55.3332 17.5012 55.0642 17.5012C54.8793 17.5012 54.6972 17.476 54.5179 17.4256C54.3442 17.3752 54.1873 17.2995 54.0473 17.1987C53.9128 17.0978 53.8035 16.9717 53.7195 16.8205C53.6354 16.6692 53.5934 16.4927 53.5934 16.291C53.5934 16.0724 53.6326 15.8875 53.7111 15.7362C53.7895 15.5793 53.8932 15.4505 54.0221 15.3496C54.1565 15.2432 54.3106 15.1591 54.4843 15.0975C54.658 15.0358 54.8373 14.991 55.0222 14.963C55.2127 14.9294 55.4032 14.9098 55.5938 14.9042C55.7843 14.8929 55.9636 14.8873 56.1317 14.8873H56.3838V14.7781C56.3838 14.5259 56.297 14.3382 56.1233 14.215C55.9496 14.0861 55.7282 14.0216 55.4593 14.0216C55.2464 14.0216 55.0474 14.0609 54.8625 14.1393C54.6776 14.2122 54.5179 14.313 54.3835 14.4419L53.854 13.9124C54.0781 13.6827 54.3386 13.5174 54.6356 13.4165C54.9382 13.3156 55.2492 13.2652 55.5685 13.2652C55.8543 13.2652 56.0952 13.2988 56.2914 13.3661C56.4875 13.4277 56.65 13.509 56.7788 13.6098C56.9077 13.7107 57.0058 13.8283 57.073 13.9628C57.1458 14.0917 57.1963 14.2234 57.2243 14.3578C57.2579 14.4923 57.2775 14.624 57.2831 14.7529C57.2887 14.8761 57.2915 14.9854 57.2915 15.0807V17.4004H56.3838V16.8457ZM56.325 15.5934H56.1149C55.9748 15.5934 55.8179 15.599 55.6442 15.6102C55.4705 15.6214 55.3052 15.6494 55.1483 15.6942C54.997 15.7334 54.8681 15.7951 54.7617 15.8791C54.6552 15.9576 54.602 16.0696 54.602 16.2153C54.602 16.3106 54.6216 16.3918 54.6608 16.459C54.7056 16.5207 54.7617 16.5739 54.8289 16.6187C54.8962 16.6636 54.9718 16.6972 55.0558 16.7196C55.1399 16.7364 55.2239 16.7448 55.308 16.7448C55.6554 16.7448 55.9103 16.6636 56.0728 16.5011C56.2409 16.333 56.325 16.106 56.325 15.8203V15.5934Z\" fill=\"#415175\"/>\\n<rect x=\"38.6562\" y=\"27.7373\" width=\"36.5226\" height=\"2.96983\" rx=\"1.48492\" fill=\"white\"/>\\n<path d=\"M80.9655 33.2635V27.1H81.4401V33.2635H80.9655Z\" fill=\"#939393\"/>\\n<g clip-path=\"url(#clip0_3695_11301)\">\\n<path d=\"M89.1408 33.7044C91.6164 33.7044 93.6234 31.6975 93.6234 29.2218C93.6234 26.7462 91.6164 24.7393 89.1408 24.7393C86.6651 24.7393 84.6582 26.7462 84.6582 29.2218C84.6582 31.6975 86.6651 33.7044 89.1408 33.7044Z\" fill=\"#F0F0F0\"/>\\n<path d=\"M88.9463 29.2221H93.6237C93.6237 28.8175 93.5698 28.4256 93.4693 28.0527H88.9463V29.2221Z\" fill=\"#D80027\"/>\\n<path d=\"M88.9463 26.8832H92.9658C92.6914 26.4355 92.3406 26.0397 91.9315 25.7139H88.9463V26.8832Z\" fill=\"#D80027\"/>\\n<path d=\"M89.1409 33.704C90.1959 33.704 91.1655 33.3393 91.9313 32.7295H86.3506C87.1163 33.3393 88.086 33.704 89.1409 33.704Z\" fill=\"#D80027\"/>\\n<path d=\"M85.316 31.561H92.9653C93.1856 31.2015 93.3564 30.8086 93.4688 30.3916H84.8125C84.9249 30.8086 85.0957 31.2015 85.316 31.561V31.561Z\" fill=\"#D80027\"/>\\n<path d=\"M86.7346 25.4393H87.1431L86.7631 25.7153L86.9083 26.162L86.5283 25.8859L86.1484 26.162L86.2738 25.7761C85.9392 26.0548 85.646 26.3813 85.4043 26.7451H85.5352L85.2934 26.9208C85.2557 26.9836 85.2195 27.0475 85.1849 27.1123L85.3004 27.4678L85.0849 27.3112C85.0314 27.4247 84.9824 27.5407 84.9383 27.6592L85.0656 28.0509H85.5352L85.1553 28.3269L85.3004 28.7736L84.9205 28.4975L84.6929 28.6629C84.6701 28.846 84.6582 29.0325 84.6582 29.2218H89.1408C89.1408 26.7462 89.1408 26.4543 89.1408 24.7393C88.2553 24.7393 87.4298 24.9961 86.7346 25.4393V25.4393ZM86.9083 28.7736L86.5283 28.4975L86.1484 28.7736L86.2935 28.3269L85.9136 28.0509H86.3832L86.5283 27.6042L86.6735 28.0509H87.1431L86.7631 28.3269L86.9083 28.7736ZM86.7631 27.0211L86.9083 27.4678L86.5283 27.1917L86.1484 27.4678L86.2935 27.0211L85.9136 26.7451H86.3832L86.5283 26.2984L86.6735 26.7451H87.1431L86.7631 27.0211ZM88.5162 28.7736L88.1362 28.4975L87.7563 28.7736L87.9014 28.3269L87.5214 28.0509H87.9911L88.1362 27.6042L88.2813 28.0509H88.751L88.371 28.3269L88.5162 28.7736ZM88.371 27.0211L88.5162 27.4678L88.1362 27.1917L87.7563 27.4678L87.9014 27.0211L87.5214 26.7451H87.9911L88.1362 26.2984L88.2813 26.7451H88.751L88.371 27.0211ZM88.371 25.7153L88.5162 26.162L88.1362 25.8859L87.7563 26.162L87.9014 25.7153L87.5214 25.4393H87.9911L88.1362 24.9926L88.2813 25.4393H88.751L88.371 25.7153Z\" fill=\"#0052B4\"/>\\n</g>\\n<circle cx=\"89.1408\" cy=\"29.2218\" r=\"5.0429\" stroke=\"white\" stroke-width=\"1.12064\"/>\\n<defs>\\n<clipPath id=\"clip0_3695_11301\">\\n<rect width=\"8.96515\" height=\"8.96515\" fill=\"white\" transform=\"translate(84.6582 24.7393)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]}),isDisplayed9()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19h7hlh\",\"data-framer-name\":\"Frame 1000003414\",layoutDependency:layoutDependency,layoutId:\"DNamvqTNy\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||327)*.5076452599388381-146.5)+29),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qIS84cpdlux5kaZ3ldSCX6N7Wgs.png\"},className:\"framer-1q7t50l\",\"data-framer-name\":\"Core/Card/Instrument\",layoutDependency:layoutDependency,layoutId:\"WhWysTSR8\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||327)*.5076452599388381-146.5)+63),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/gSZ9w51eKouxd3Z2tRk3z5qg0I.png\"},className:\"framer-vljz7a\",\"data-framer-name\":\"Core/Card/Instrument\",layoutDependency:layoutDependency,layoutId:\"nB_zpFxBC\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||327)*.5076452599388381-146.5)+293-199),positionX:\"center\",positionY:\"center\",sizes:\"173px\",src:\"https://framerusercontent.com/images/d7MGntAJvnh6414kZuGVLA936ow.png\",srcSet:\"https://framerusercontent.com/images/d7MGntAJvnh6414kZuGVLA936ow.png?scale-down-to=512 512w,https://framerusercontent.com/images/d7MGntAJvnh6414kZuGVLA936ow.png 564w\"},className:\"framer-1rmgz3y\",\"data-framer-name\":\"Core/Card/Instrument\",layoutDependency:layoutDependency,layoutId:\"McPlXFwu4\",style:{backdropFilter:\"blur(2px)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,WebkitBackdropFilter:\"blur(2px)\"}})]}),isDisplayed10()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ry6uby\",\"data-framer-name\":\"Frame 3\",layoutDependency:layoutDependency,layoutId:\"TGyvQ0tck\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wnoaak\",\"data-border\":true,\"data-framer-name\":\"Self/Inspiration/Card\",layoutDependency:layoutDependency,layoutId:\"bLRAh9GU5\",style:{\"--border-bottom-width\":\"2.1133010387420654px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"2.1133010387420654px\",\"--border-right-width\":\"2.1133010387420654px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2.1133010387420654px\",backdropFilter:\"blur(21.27436637878418px)\",backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:16.7,borderBottomRightRadius:16.7,borderTopLeftRadius:16.7,borderTopRightRadius:16.7,rotate:-1,WebkitBackdropFilter:\"blur(21.27436637878418px)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fovovj\",\"data-framer-name\":\"Img\",layoutDependency:layoutDependency,layoutId:\"GQheiB3pV\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"201.1536px\",src:\"https://framerusercontent.com/images/kQWEyDEnaO0h4RjWcV1cjeHrh8.png\",srcSet:\"https://framerusercontent.com/images/kQWEyDEnaO0h4RjWcV1cjeHrh8.png?scale-down-to=512 512w,https://framerusercontent.com/images/kQWEyDEnaO0h4RjWcV1cjeHrh8.png 808w\"},className:\"framer-138cb0s\",\"data-framer-name\":\"ivs7067_httpss.mj.run9CN9f_7jWVs_httpss.mj.runaRWv0NobbvA_htt_a6e3d812-59ea-4662-8dbe-8d63dca944ad_0 6\",layoutDependency:layoutDependency,layoutId:\"oRza7Jg5G\",style:{rotate:1},...addPropertyOverrides({OK5wEketO:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||327)*.5015290519877678-124.7228)+18.736+8.906927108764648+0+0),positionX:\"center\",positionY:\"center\",sizes:\"201.1536px\",src:\"https://framerusercontent.com/images/kQWEyDEnaO0h4RjWcV1cjeHrh8.png\",srcSet:\"https://framerusercontent.com/images/kQWEyDEnaO0h4RjWcV1cjeHrh8.png?scale-down-to=512 512w,https://framerusercontent.com/images/kQWEyDEnaO0h4RjWcV1cjeHrh8.png 808w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jmcdre\",\"data-border\":true,\"data-framer-name\":\"Self/Inspiration/Card\",layoutDependency:layoutDependency,layoutId:\"lG3MBlku1\",style:{\"--border-bottom-width\":\"2.1133010387420654px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"2.1133010387420654px\",\"--border-right-width\":\"2.1133010387420654px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2.1133010387420654px\",backdropFilter:\"blur(5px)\",backgroundColor:\"rgba(255, 255, 255, 0.78)\",borderBottomLeftRadius:16.7,borderBottomRightRadius:16.7,borderTopLeftRadius:16.7,borderTopRightRadius:16.7,rotate:8,WebkitBackdropFilter:\"blur(5px)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t1n29n\",\"data-framer-name\":\"Img\",layoutDependency:layoutDependency,layoutId:\"FnYY5I3j9\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"202.2236px\",src:\"https://framerusercontent.com/images/NLRgTpU2c0rJ9VSHapK17mQvYg.png\",srcSet:\"https://framerusercontent.com/images/NLRgTpU2c0rJ9VSHapK17mQvYg.png?scale-down-to=512 512w,https://framerusercontent.com/images/NLRgTpU2c0rJ9VSHapK17mQvYg.png 812w\"},className:\"framer-1m20ved\",\"data-framer-name\":\"ivs7067_httpss.mj.run9CN9f_7jWVs_httpss.mj.runaRWv0NobbvA_htt_a6e3d812-59ea-4662-8dbe-8d63dca944ad_0 6\",layoutDependency:layoutDependency,layoutId:\"lnqhrVso2\",style:{rotate:1},...addPropertyOverrides({OK5wEketO:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||327)*.5015290519877678-124.7228)+12.8833+8.906927108764648+0+0),positionX:\"center\",positionY:\"center\",sizes:\"202.2236px\",src:\"https://framerusercontent.com/images/NLRgTpU2c0rJ9VSHapK17mQvYg.png\",srcSet:\"https://framerusercontent.com/images/NLRgTpU2c0rJ9VSHapK17mQvYg.png?scale-down-to=512 512w,https://framerusercontent.com/images/NLRgTpU2c0rJ9VSHapK17mQvYg.png 812w\"}}},baseVariant,gestureVariant)})})})]}),isDisplayed11()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"White-Label Banking\",fit:\"fill\",src:\"https://framerusercontent.com/images/5YE3tnkMDtSwjqdADxoOg11yw.png\",srcSet:\"https://framerusercontent.com/images/5YE3tnkMDtSwjqdADxoOg11yw.png?scale-down-to=512 512w,https://framerusercontent.com/images/5YE3tnkMDtSwjqdADxoOg11yw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5YE3tnkMDtSwjqdADxoOg11yw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5YE3tnkMDtSwjqdADxoOg11yw.png 3000w\"},className:\"framer-kr5qtd\",\"data-framer-name\":\"iPhone 15 Pro\",layoutDependency:layoutDependency,layoutId:\"FuHPyCrPu\",...addPropertyOverrides({wib39RjoS:{background:{alt:\"White-Label Banking\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||327)*.522935779816514-151.5)),sizes:\"403px\",src:\"https://framerusercontent.com/images/5YE3tnkMDtSwjqdADxoOg11yw.png\",srcSet:\"https://framerusercontent.com/images/5YE3tnkMDtSwjqdADxoOg11yw.png?scale-down-to=512 512w,https://framerusercontent.com/images/5YE3tnkMDtSwjqdADxoOg11yw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5YE3tnkMDtSwjqdADxoOg11yw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5YE3tnkMDtSwjqdADxoOg11yw.png 3000w\"}}},baseVariant,gestureVariant)}),isDisplayed12()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/TbaMBNLQImwsd5V6tM1CTX2RRI.png\",srcSet:\"https://framerusercontent.com/images/TbaMBNLQImwsd5V6tM1CTX2RRI.png?scale-down-to=512 512w,https://framerusercontent.com/images/TbaMBNLQImwsd5V6tM1CTX2RRI.png 736w\"},className:\"framer-1kdbhd5\",\"data-framer-name\":\"image 9\",layoutDependency:layoutDependency,layoutId:\"YNRidHk9L\",transformTemplate:transformTemplate2,...addPropertyOverrides({Xuf4vM_Uj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||327)*.5474006116207953-100)),sizes:\"368px\",src:\"https://framerusercontent.com/images/TbaMBNLQImwsd5V6tM1CTX2RRI.png\",srcSet:\"https://framerusercontent.com/images/TbaMBNLQImwsd5V6tM1CTX2RRI.png?scale-down-to=512 512w,https://framerusercontent.com/images/TbaMBNLQImwsd5V6tM1CTX2RRI.png 736w\"}}},baseVariant,gestureVariant)}),isDisplayed13()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/UKYn4PDu7VbXPZMrZnVi3u9EMw.png\",srcSet:\"https://framerusercontent.com/images/UKYn4PDu7VbXPZMrZnVi3u9EMw.png?scale-down-to=1024 743w,https://framerusercontent.com/images/UKYn4PDu7VbXPZMrZnVi3u9EMw.png?scale-down-to=2048 1487w,https://framerusercontent.com/images/UKYn4PDu7VbXPZMrZnVi3u9EMw.png 2235w\"},className:\"framer-kwgiqt\",\"data-framer-name\":\"Device Tablet\",layoutDependency:layoutDependency,layoutId:\"A13UfXM7U\",...addPropertyOverrides({wAtgRXJqB:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||327)-281),positionX:\"center\",positionY:\"center\",sizes:\"309px\",src:\"https://framerusercontent.com/images/UKYn4PDu7VbXPZMrZnVi3u9EMw.png\",srcSet:\"https://framerusercontent.com/images/UKYn4PDu7VbXPZMrZnVi3u9EMw.png?scale-down-to=1024 743w,https://framerusercontent.com/images/UKYn4PDu7VbXPZMrZnVi3u9EMw.png?scale-down-to=2048 1487w,https://framerusercontent.com/images/UKYn4PDu7VbXPZMrZnVi3u9EMw.png 2235w\"}}},baseVariant,gestureVariant)}),isDisplayed14()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-17mtfm0\",\"data-framer-name\":\"Frame 1000003389\",layoutDependency:layoutDependency,layoutId:\"wtPxTc2wu\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p713lw\",\"data-border\":true,\"data-framer-name\":\"Core/SelectItem/List\",layoutDependency:layoutDependency,layoutId:\"FBmz84lbz\",style:{\"--border-bottom-width\":\"2.266839027404785px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"2.266839027404785px\",\"--border-right-width\":\"2.266839027404785px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2.266839027404785px\",backdropFilter:\"blur(13.024018287658691px)\",backgroundColor:\"rgba(255, 255, 255, 0.4)\",borderBottomLeftRadius:10.14,borderBottomRightRadius:10.14,borderTopLeftRadius:10.14,borderTopRightRadius:10.14,WebkitBackdropFilter:\"blur(13.024018287658691px)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h8ynny\",\"data-framer-name\":\"Investments\",layoutDependency:layoutDependency,layoutId:\"XHSXxPt1q\",style:{borderBottomLeftRadius:13.47,borderBottomRightRadius:13.47,borderTopLeftRadius:13.47,borderTopRightRadius:13.47},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b7jqkq\",\"data-framer-name\":\"Item 1\",layoutDependency:layoutDependency,layoutId:\"P6r3rc3S1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXZlbmlyLTgwMA==\",\"--framer-font-family\":'\"Avenir\", \"Avenir Placeholder\", sans-serif',\"--framer-font-size\":\"10.43px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"10.26px\"},children:\"Maximum number of instruments\"})}),className:\"framer-ujw22z\",\"data-framer-name\":\"Maximum number of instruments\",fonts:[\"GF;Avenir-800\"],layoutDependency:layoutDependency,layoutId:\"T4FnZuqxp\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sv4gdu\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"GzLwaqdQN\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xy30vt\",\"data-framer-name\":\"1st line\",layoutDependency:layoutDependency,layoutId:\"Vgg9jMR0S\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-171arqu\",\"data-framer-name\":\"Core/Values/Amount or percentage\",layoutDependency:layoutDependency,layoutId:\"blRUmdaH4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgUHJvLTYwMA==\",\"--framer-font-family\":'\"Source Sans Pro\", \"Source Sans Pro Placeholder\", sans-serif',\"--framer-font-size\":\"10.1px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"16.16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(61, 61, 61))\"},children:\"4\"})}),className:\"framer-syw6hp\",\"data-framer-name\":\"Amount\",fonts:[\"GF;Source Sans Pro-600\"],layoutDependency:layoutDependency,layoutId:\"cOPhPmtEP\",style:{\"--extracted-r6o4lv\":\"rgb(61, 61, 61)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gzjw5c\",\"data-framer-name\":\"Slider\",layoutDependency:layoutDependency,layoutId:\"l_TFs3I0c\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tgaheb\",\"data-framer-name\":\"Core/Slider/Date\",layoutDependency:layoutDependency,layoutId:\"GkriJ_aPK\",style:{borderBottomLeftRadius:2.57,borderBottomRightRadius:2.57,borderTopLeftRadius:2.57,borderTopRightRadius:2.57},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16cgltf\",\"data-framer-name\":\"Background\",layoutDependency:layoutDependency,layoutId:\"vnd6PSzE7\",transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-glskhj\",\"data-framer-name\":\"Fill\",layoutDependency:layoutDependency,layoutId:\"t1bG_ivHE\",style:{backgroundColor:\"rgb(255, 255, 255)\"}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-p0oldt\",\"data-framer-name\":\"Fade out\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:27,layoutDependency:layoutDependency,layoutId:\"xvsEMkVUN\",svg:'<svg width=\"27\" height=\"3\" viewBox=\"0 0 27 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_352_27716\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"27\" height=\"3\">\\n<rect width=\"1.8252\" height=\"25.5527\" transform=\"matrix(4.37114e-08 1 1 -4.37114e-08 0.487305 0.501221)\" fill=\"url(#paint0_linear_352_27716)\"/>\\n</mask>\\n<g mask=\"url(#mask0_352_27716)\">\\n<rect width=\"1.8252\" height=\"25.5527\" transform=\"matrix(4.37114e-08 1 1 -4.37114e-08 0.487305 0.501221)\" fill=\"white\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_352_27716\" x1=\"0.912598\" y1=\"0\" x2=\"0.912598\" y2=\"25.5527\" gradientUnits=\"userSpaceOnUse\">\\n<stop/>\\n<stop offset=\"1\" stop-color=\"#737373\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1koblo\",\"data-framer-name\":\"Marker 1\",layoutDependency:layoutDependency,layoutId:\"IGwqe7alX\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rd86br\",\"data-framer-name\":\"Marker 2\",layoutDependency:layoutDependency,layoutId:\"X1SDAGAMY\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lpuvsj\",\"data-framer-name\":\"Slider value\",layoutDependency:layoutDependency,layoutId:\"mUN4qQf2V\",style:{backgroundColor:\"rgb(45, 101, 255)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-5o7h9h\",\"data-framer-name\":\"spacer\",layoutDependency:layoutDependency,layoutId:\"SDlza_Vqs\",style:{backgroundColor:\"rgb(255, 255, 255)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-brd7py\",\"data-framer-name\":\"Knob\",layoutDependency:layoutDependency,layoutId:\"eQU2bo2t7\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ukc0tj\",\"data-framer-name\":\"Knob\",layoutDependency:layoutDependency,layoutId:\"s0mosTUM1\",style:{background:\"linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 100%)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",boxShadow:\"0px 0.45629891753196716px 1.8251956701278687px 0px rgba(0, 0, 0, 0.11999999731779099), 0px 0.45629891753196716px 0.9125978350639343px 0px rgba(0, 0, 0, 0.11999999731779099), 0px 1.8251956701278687px 5.475586891174316px 0px rgba(0, 0, 0, 0.11999999731779099)\"}})})]})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19731pd\",\"data-framer-name\":\"Frame 1000001326\",layoutDependency:layoutDependency,layoutId:\"j9bgLAq1X\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-guhl0r\",\"data-framer-name\":\"Frame 1000001323\",layoutDependency:layoutDependency,layoutId:\"BCj3mppzI\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hd4xt1\",\"data-border\":true,\"data-framer-name\":\"visuals/illustration/self/orders/learn-to-protect-2\",layoutDependency:layoutDependency,layoutId:\"aGk1L_fpd\",style:{\"--border-bottom-width\":\"0.5965650081634521px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.5965650081634521px\",\"--border-right-width\":\"0.5965650081634521px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5965650081634521px\",backdropFilter:\"blur(3.427536964416504px)\",backgroundColor:\"rgba(255, 255, 255, 0.4)\",borderBottomLeftRadius:3.25,borderBottomRightRadius:3.25,borderTopLeftRadius:3.25,borderTopRightRadius:3.25,WebkitBackdropFilter:\"blur(3.427536964416504px)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ryfxqp\",\"data-framer-name\":\"Core/Card/Instrument\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:41,intrinsicWidth:102,layoutDependency:layoutDependency,layoutId:\"SX8q2kYE_\",svg:'<svg width=\"102\" height=\"41\" viewBox=\"0 0 102 41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_352_27732)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.1303 26.1957C18.6742 26.1957 18.4398 25.8994 18.4398 25.8994C18.0649 25.8831 15.1353 25.8913 15.1353 25.8913L14.8501 23.4926C14.8501 23.4926 13.0457 22.2254 12.899 22.0793C12.0328 18.1643 15.1635 14.4321 19.1304 14.4321C23.0973 14.4321 26.228 18.1643 25.3619 22.0793C25.2152 22.2254 23.4108 23.4926 23.4108 23.4926L23.1256 25.8913C23.1256 25.8913 20.1959 25.8831 19.8211 25.8994C19.8211 25.8994 19.5867 26.1957 19.1303 26.1957Z\" fill=\"#ED1C24\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.1348 22.5477L18.858 15.6238C18.5241 15.5559 17.6725 15.6374 17.216 15.9768L18.5446 22.5749L16.7323 16.2483C16.2978 16.243 15.4212 16.9749 15.356 17.1919L17.9995 22.8056L15.029 17.6738C14.736 17.7824 14.0956 18.9568 14.1978 19.0932L17.509 23.1315L14.1024 19.6831C14.1024 19.6831 13.6596 20.3551 13.9484 21.4934L15.8725 22.8779L16.1134 24.7693H18.4726C18.4726 24.7693 18.8585 25.1339 19.1324 25.1339C19.4062 25.1339 19.7922 24.7693 19.7922 24.7693H22.1513L22.3922 22.8779L24.3163 21.4934C24.6051 20.3551 24.1623 19.6831 24.1623 19.6831L20.7557 23.1315L24.0669 19.0932C24.1691 18.9568 23.5287 17.7824 23.2357 17.6738L20.2652 22.8056L22.9087 17.1919C22.8436 16.9749 21.9669 16.243 21.5324 16.2483L19.7202 22.5749L21.0487 15.9768C20.5922 15.6374 19.7406 15.5559 19.4068 15.6238L19.1348 22.5477Z\" fill=\"#FFD500\"/>\\n</g>\\n<path d=\"M38.7941 12.3937C38.6916 12.2449 38.5531 12.1372 38.3787 12.0705C38.2094 11.9987 38.0299 11.9628 37.8401 11.9628C37.7273 11.9628 37.617 11.9756 37.5093 12.0013C37.4067 12.0269 37.3118 12.068 37.2246 12.1244C37.1425 12.1808 37.0759 12.2552 37.0246 12.3475C36.9733 12.4347 36.9476 12.5398 36.9476 12.6629C36.9476 12.8476 37.0118 12.9886 37.14 13.0861C37.2682 13.1835 37.4272 13.2682 37.617 13.34C37.8068 13.4118 38.0145 13.481 38.2402 13.5477C38.4659 13.6144 38.6736 13.7067 38.8634 13.8247C39.0532 13.9427 39.2122 14.0991 39.3404 14.294C39.4686 14.4889 39.5327 14.7479 39.5327 15.0711C39.5327 15.3634 39.4789 15.6199 39.3712 15.8405C39.2635 16.0559 39.1173 16.2354 38.9326 16.379C38.7531 16.5226 38.5428 16.6304 38.3017 16.7022C38.0607 16.774 37.8068 16.8099 37.5401 16.8099C37.2015 16.8099 36.8758 16.7535 36.563 16.6406C36.2501 16.5278 35.9808 16.338 35.7551 16.0713L36.486 15.3634C36.604 15.543 36.7579 15.684 36.9476 15.7866C37.1425 15.8841 37.3477 15.9328 37.5631 15.9328C37.676 15.9328 37.7888 15.9174 37.9017 15.8866C38.0145 15.8558 38.1171 15.8097 38.2094 15.7481C38.3017 15.6866 38.3761 15.6096 38.4325 15.5173C38.489 15.4199 38.5172 15.3096 38.5172 15.1865C38.5172 14.9865 38.4531 14.8326 38.3248 14.7249C38.1966 14.6172 38.0376 14.5274 37.8478 14.4556C37.658 14.3786 37.4503 14.3068 37.2246 14.2402C36.9989 14.1735 36.7912 14.0837 36.6014 13.9709C36.4116 13.8529 36.2526 13.699 36.1244 13.5093C35.9962 13.3143 35.9321 13.0553 35.9321 12.7322C35.9321 12.4501 35.9885 12.2064 36.1013 12.0013C36.2193 11.7961 36.3706 11.6268 36.5553 11.4935C36.745 11.355 36.9605 11.2524 37.2015 11.1857C37.4426 11.1191 37.6888 11.0857 37.9401 11.0857C38.2274 11.0857 38.5043 11.1293 38.7711 11.2165C39.0429 11.3037 39.2865 11.4473 39.502 11.6474L38.7941 12.3937ZM41.3809 13.4939H41.3963C41.4681 13.34 41.5938 13.2015 41.7733 13.0784C41.958 12.9502 42.1939 12.8861 42.4811 12.8861C42.7273 12.8861 42.9351 12.9271 43.1043 13.0092C43.2787 13.0912 43.4198 13.1989 43.5275 13.3323C43.6352 13.4657 43.7121 13.6195 43.7583 13.7939C43.8045 13.9683 43.8275 14.1504 43.8275 14.3402V16.6714H42.9043V14.8018C42.9043 14.6992 42.8992 14.5864 42.8889 14.4633C42.8786 14.335 42.8504 14.2171 42.8043 14.1094C42.7632 13.9965 42.6966 13.9042 42.6042 13.8324C42.5119 13.7555 42.3862 13.717 42.2272 13.717C42.0734 13.717 41.9426 13.7426 41.8349 13.7939C41.7323 13.8452 41.6451 13.9145 41.5733 14.0017C41.5066 14.0888 41.4579 14.1889 41.4271 14.3017C41.3963 14.4146 41.3809 14.5325 41.3809 14.6556V16.6714H40.4577V10.8549H41.3809V13.4939ZM45.6142 15.148C45.645 15.425 45.7527 15.6404 45.9373 15.7943C46.122 15.9482 46.3451 16.0251 46.6067 16.0251C46.8375 16.0251 47.0298 15.9789 47.1837 15.8866C47.3427 15.7892 47.4812 15.6686 47.5992 15.525L48.2608 16.0251C48.0454 16.2918 47.8043 16.4816 47.5376 16.5944C47.2709 16.7073 46.9914 16.7637 46.699 16.7637C46.422 16.7637 46.1604 16.7175 45.9142 16.6252C45.668 16.5329 45.4552 16.4021 45.2757 16.2328C45.0961 16.0636 44.9525 15.861 44.8448 15.625C44.7422 15.384 44.6909 15.1172 44.6909 14.8249C44.6909 14.5325 44.7422 14.2684 44.8448 14.0324C44.9525 13.7914 45.0961 13.5862 45.2757 13.4169C45.4552 13.2477 45.668 13.1169 45.9142 13.0245C46.1604 12.9322 46.422 12.8861 46.699 12.8861C46.9555 12.8861 47.1888 12.9322 47.3991 13.0245C47.6146 13.1117 47.7966 13.24 47.9454 13.4092C48.0993 13.5785 48.2172 13.7888 48.2993 14.0401C48.3865 14.2863 48.4301 14.571 48.4301 14.8941V15.148H45.6142ZM47.5068 14.4556C47.5017 14.1837 47.4171 13.9709 47.253 13.817C47.0888 13.658 46.8606 13.5785 46.5682 13.5785C46.2912 13.5785 46.0707 13.658 45.9065 13.817C45.7475 13.976 45.6501 14.1889 45.6142 14.4556H47.5068ZM49.3089 10.8549H50.2321V16.6714H49.3089V10.8549ZM51.315 10.8549H52.2382V16.6714H51.315V10.8549Z\" fill=\"black\"/>\\n<rect x=\"35.5166\" y=\"25.4722\" width=\"33.4327\" height=\"2.71858\" rx=\"1.35929\" fill=\"white\"/>\\n<path d=\"M74.2463 29.7418V24.0997H74.6807V29.7418H74.2463Z\" fill=\"#939393\"/>\\n<g clip-path=\"url(#clip1_352_27732)\">\\n<path d=\"M81.8992 30.9347C84.1654 30.9347 86.0026 29.0976 86.0026 26.8314C86.0026 24.5652 84.1654 22.728 81.8992 22.728C79.633 22.728 77.7959 24.5652 77.7959 26.8314C77.7959 29.0976 79.633 30.9347 81.8992 30.9347Z\" fill=\"#F0F0F0\"/>\\n<path d=\"M78.6434 24.333C78.3211 24.7524 78.078 25.2357 77.9365 25.7608H80.0712L78.6434 24.333Z\" fill=\"#0052B4\"/>\\n<path d=\"M85.8602 25.7608C85.7187 25.2357 85.4756 24.7524 85.1533 24.333L83.7256 25.7608H85.8602Z\" fill=\"#0052B4\"/>\\n<path d=\"M77.9365 27.9019C78.0781 28.4269 78.3211 28.9103 78.6434 29.3296L80.0711 27.9019H77.9365Z\" fill=\"#0052B4\"/>\\n<path d=\"M84.3965 23.5763C83.9772 23.254 83.4938 23.0109 82.9688 22.8694V25.004L84.3965 23.5763Z\" fill=\"#0052B4\"/>\\n<path d=\"M79.4004 30.0864C79.8197 30.4087 80.3031 30.6518 80.8282 30.7933V28.6587L79.4004 30.0864Z\" fill=\"#0052B4\"/>\\n<path d=\"M80.8281 22.8694C80.3031 23.0109 79.8197 23.254 79.4004 23.5763L80.8281 25.004V22.8694Z\" fill=\"#0052B4\"/>\\n<path d=\"M82.9688 30.7933C83.4938 30.6518 83.9772 30.4087 84.3965 30.0864L82.9688 28.6587V30.7933Z\" fill=\"#0052B4\"/>\\n<path d=\"M83.7256 27.9019L85.1533 29.3296C85.4756 28.9103 85.7187 28.4269 85.8602 27.9019H83.7256Z\" fill=\"#0052B4\"/>\\n<path d=\"M85.9678 26.2962H82.4345H82.4345V22.7628C82.2593 22.74 82.0806 22.728 81.8992 22.728C81.7178 22.728 81.5392 22.74 81.364 22.7628V26.2961V26.2961H77.8306C77.8078 26.4713 77.7959 26.65 77.7959 26.8314C77.7959 27.0128 77.8078 27.1914 77.8306 27.3666H81.364H81.364V30.9C81.5392 30.9228 81.7178 30.9347 81.8992 30.9347C82.0806 30.9347 82.2593 30.9228 82.4344 30.9V27.3666V27.3666H85.9678C85.9906 27.1914 86.0026 27.0128 86.0026 26.8314C86.0026 26.65 85.9906 26.4713 85.9678 26.2962V26.2962Z\" fill=\"#D80027\"/>\\n<path d=\"M82.9697 27.9019L84.8008 29.7329C84.885 29.6487 84.9653 29.5607 85.042 29.4695L83.4743 27.9019H82.9697V27.9019Z\" fill=\"#D80027\"/>\\n<path d=\"M80.8281 27.9019H80.8281L78.9971 29.7329C79.0813 29.8171 79.1693 29.8974 79.2605 29.9741L80.8281 28.4064V27.9019Z\" fill=\"#D80027\"/>\\n<path d=\"M80.8291 25.7608V25.7608L78.998 23.9297C78.9138 24.0139 78.8335 24.1019 78.7568 24.1931L80.3245 25.7608H80.8291V25.7608Z\" fill=\"#D80027\"/>\\n<path d=\"M82.9697 25.761L84.8008 23.9299C84.7166 23.8457 84.6286 23.7654 84.5374 23.6887L82.9697 25.2564V25.761Z\" fill=\"#D80027\"/>\\n</g>\\n<circle cx=\"81.8992\" cy=\"26.8314\" r=\"4.61626\" stroke=\"white\" stroke-width=\"1.02583\"/>\\n<defs>\\n<clipPath id=\"clip0_352_27732\">\\n<rect width=\"13.3358\" height=\"12.31\" fill=\"white\" transform=\"translate(12.4365 14.1606)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_352_27732\">\\n<rect width=\"8.20668\" height=\"8.20668\" fill=\"white\" transform=\"translate(77.7959 22.728)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y5adyl\",\"data-border\":true,\"data-framer-name\":\"visuals/illustration/self/orders/learn-to-protect-2\",layoutDependency:layoutDependency,layoutId:\"OXag2q7tj\",style:{\"--border-bottom-width\":\"0.5965650081634521px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.5965650081634521px\",\"--border-right-width\":\"0.5965650081634521px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5965650081634521px\",backdropFilter:\"blur(3.427536964416504px)\",backgroundColor:\"rgba(255, 255, 255, 0.4)\",borderBottomLeftRadius:3.25,borderBottomRightRadius:3.25,borderTopLeftRadius:3.25,borderTopRightRadius:3.25,WebkitBackdropFilter:\"blur(3.427536964416504px)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-a6xiqa\",\"data-framer-name\":\"Core/Card/Instrument\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:41,intrinsicWidth:102,layoutDependency:layoutDependency,layoutId:\"Py87gqKLX\",svg:'<svg width=\"102\" height=\"41\" viewBox=\"0 0 102 41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"8.7959\" y=\"10.459\" width=\"20.5167\" height=\"20.5167\" rx=\"10.2583\" fill=\"#E82127\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.3801 17.3354C22.4984 16.515 20.6602 16.2542 19.0542 16.2665H19.054C17.448 16.2542 15.6095 16.515 13.7281 17.3354C13.5039 16.929 13.4121 16.6825 13.4121 16.6825C15.4689 15.8684 17.3952 15.5898 19.054 15.5828C20.7128 15.5898 22.6392 15.8684 24.6963 16.6825C24.6963 16.6825 24.6316 16.8826 24.3801 17.3354ZM20.6336 17.9411L19.055 26.8224L17.4636 17.9398C15.969 17.9409 15.4949 18.106 15.426 18.7797C15.426 18.7797 14.4162 18.4032 13.9075 17.6386C15.894 16.7177 17.8902 16.6761 17.8902 16.6761L19.0537 18.0938L20.2172 16.6763C20.2172 16.6763 22.2133 16.7179 24.2 17.6388C23.6909 18.4034 22.6815 18.7799 22.6815 18.7799C22.613 18.1062 22.1383 17.9411 20.6336 17.9411Z\" fill=\"white\"/>\\n<path d=\"M37.1902 12.5029H35.5207V11.6258H39.8292V12.5029H38.1596V17.073H37.1902V12.5029ZM40.2899 15.5496C40.3207 15.8266 40.4284 16.042 40.6131 16.1959C40.7977 16.3498 41.0209 16.4267 41.2824 16.4267C41.5133 16.4267 41.7056 16.3806 41.8595 16.2882C42.0185 16.1908 42.157 16.0702 42.2749 15.9266L42.9366 16.4267C42.7212 16.6934 42.4801 16.8832 42.2134 16.9961C41.9467 17.1089 41.6671 17.1653 41.3748 17.1653C41.0978 17.1653 40.8362 17.1192 40.59 17.0268C40.3438 16.9345 40.1309 16.8037 39.9514 16.6345C39.7719 16.4652 39.6283 16.2626 39.5206 16.0266C39.418 15.7856 39.3667 15.5189 39.3667 15.2265C39.3667 14.9341 39.418 14.67 39.5206 14.434C39.6283 14.193 39.7719 13.9878 39.9514 13.8185C40.1309 13.6493 40.3438 13.5185 40.59 13.4262C40.8362 13.3338 41.0978 13.2877 41.3748 13.2877C41.6312 13.2877 41.8646 13.3338 42.0749 13.4262C42.2903 13.5134 42.4724 13.6416 42.6212 13.8108C42.775 13.9801 42.893 14.1904 42.9751 14.4417C43.0623 14.6879 43.1059 14.9726 43.1059 15.2957V15.5496H40.2899ZM42.1826 14.8572C42.1775 14.5853 42.0928 14.3725 41.9287 14.2186C41.7646 14.0596 41.5363 13.9801 41.244 13.9801C40.967 13.9801 40.7464 14.0596 40.5823 14.2186C40.4233 14.3776 40.3258 14.5905 40.2899 14.8572H42.1826ZM45.9388 14.4033C45.7593 14.1519 45.5183 14.0263 45.2156 14.0263C45.0925 14.0263 44.972 14.057 44.854 14.1186C44.7361 14.1801 44.6771 14.2802 44.6771 14.4187C44.6771 14.5315 44.7258 14.6136 44.8233 14.6649C44.9207 14.7161 45.0438 14.7597 45.1926 14.7956C45.3413 14.8315 45.5003 14.87 45.6696 14.9111C45.844 14.947 46.0055 15.0059 46.1543 15.088C46.303 15.1649 46.4261 15.2727 46.5236 15.4111C46.621 15.5496 46.6698 15.7394 46.6698 15.9805C46.6698 16.201 46.621 16.3883 46.5236 16.5421C46.4312 16.6909 46.3081 16.8114 46.1543 16.9037C46.0055 16.9961 45.8363 17.0627 45.6465 17.1038C45.4567 17.1448 45.2669 17.1653 45.0771 17.1653C44.7899 17.1653 44.5258 17.1243 44.2847 17.0422C44.0436 16.9602 43.8282 16.8114 43.6384 16.596L44.2539 16.019C44.3719 16.1523 44.4975 16.2626 44.6309 16.3498C44.7694 16.4319 44.9361 16.4729 45.131 16.4729C45.1977 16.4729 45.2669 16.4652 45.3387 16.4498C45.4105 16.4344 45.4772 16.4088 45.5388 16.3729C45.6003 16.337 45.649 16.2934 45.685 16.2421C45.726 16.1857 45.7465 16.1215 45.7465 16.0497C45.7465 15.9215 45.6978 15.8266 45.6003 15.7651C45.5029 15.7035 45.3798 15.6548 45.231 15.6189C45.0823 15.5778 44.9207 15.5419 44.7463 15.5112C44.5771 15.4753 44.418 15.4214 44.2693 15.3496C44.1206 15.2727 43.9975 15.1675 43.9 15.0342C43.8025 14.9008 43.7538 14.7161 43.7538 14.4802C43.7538 14.275 43.7949 14.0981 43.8769 13.9493C43.9641 13.7955 44.077 13.6698 44.2154 13.5723C44.3539 13.4749 44.5129 13.4031 44.6925 13.3569C44.872 13.3107 45.0541 13.2877 45.2387 13.2877C45.4849 13.2877 45.7286 13.3313 45.9696 13.4185C46.2107 13.5005 46.4056 13.6441 46.5543 13.8493L45.9388 14.4033ZM47.4032 11.2565H48.3265V17.073H47.4032V11.2565ZM51.6946 16.5652H51.6715C51.5381 16.7755 51.3689 16.9294 51.1637 17.0268C50.9585 17.1192 50.7328 17.1653 50.4866 17.1653C50.3174 17.1653 50.1507 17.1422 49.9865 17.0961C49.8275 17.0499 49.6839 16.9807 49.5557 16.8883C49.4326 16.796 49.3326 16.6806 49.2556 16.5421C49.1787 16.4036 49.1402 16.2421 49.1402 16.0574C49.1402 15.8574 49.1761 15.6881 49.2479 15.5496C49.3198 15.406 49.4146 15.288 49.5326 15.1957C49.6557 15.0983 49.7968 15.0213 49.9558 14.9649C50.1148 14.9085 50.2789 14.8675 50.4482 14.8418C50.6226 14.811 50.797 14.7931 50.9713 14.788C51.1457 14.7777 51.3099 14.7726 51.4637 14.7726H51.6946V14.6725C51.6946 14.4417 51.6151 14.2699 51.4561 14.1571C51.297 14.0391 51.0944 13.9801 50.8482 13.9801C50.6533 13.9801 50.4713 14.016 50.302 14.0878C50.1327 14.1545 49.9865 14.2468 49.8634 14.3648L49.3787 13.8801C49.5839 13.6698 49.8224 13.5185 50.0943 13.4262C50.3712 13.3338 50.6559 13.2877 50.9483 13.2877C51.2099 13.2877 51.4304 13.3184 51.6099 13.38C51.7895 13.4364 51.9382 13.5108 52.0562 13.6031C52.1741 13.6954 52.2639 13.8031 52.3254 13.9262C52.3921 14.0442 52.4383 14.1648 52.4639 14.2879C52.4947 14.411 52.5127 14.5315 52.5178 14.6495C52.5229 14.7623 52.5255 14.8623 52.5255 14.9495V17.073H51.6946V16.5652ZM51.6407 15.4188H51.4484C51.3201 15.4188 51.1765 15.424 51.0175 15.4342C50.8585 15.4445 50.7072 15.4701 50.5636 15.5112C50.4251 15.5471 50.3071 15.6035 50.2097 15.6804C50.1122 15.7522 50.0635 15.8548 50.0635 15.9882C50.0635 16.0754 50.0814 16.1497 50.1173 16.2113C50.1584 16.2677 50.2097 16.3164 50.2712 16.3575C50.3328 16.3985 50.402 16.4293 50.4789 16.4498C50.5559 16.4652 50.6328 16.4729 50.7098 16.4729C51.0278 16.4729 51.2611 16.3985 51.4099 16.2498C51.5638 16.0959 51.6407 15.8882 51.6407 15.6266V15.4188Z\" fill=\"black\"/>\\n<rect x=\"35.4668\" y=\"25.8735\" width=\"33.4327\" height=\"2.71858\" rx=\"1.35929\" fill=\"white\"/>\\n<path d=\"M74.1965 30.1434V24.5013H74.6309V30.1434H74.1965Z\" fill=\"#939393\"/>\\n<g clip-path=\"url(#clip0_352_27745)\">\\n<path d=\"M81.8494 31.3363C84.1156 31.3363 85.9528 29.4992 85.9528 27.233C85.9528 24.9668 84.1156 23.1296 81.8494 23.1296C79.5832 23.1296 77.7461 24.9668 77.7461 27.233C77.7461 29.4992 79.5832 31.3363 81.8494 31.3363Z\" fill=\"#F0F0F0\"/>\\n<path d=\"M81.6709 27.233H85.9526C85.9526 26.8627 85.9033 26.5039 85.8113 26.1626H81.6709V27.233Z\" fill=\"#D80027\"/>\\n<path d=\"M81.6709 25.0922H85.3504C85.0992 24.6823 84.778 24.32 84.4036 24.0217H81.6709V25.0922Z\" fill=\"#D80027\"/>\\n<path d=\"M81.8482 31.3364C82.8139 31.3364 83.7015 31.0026 84.4025 30.4443H79.2939C79.9949 31.0026 80.8825 31.3364 81.8482 31.3364Z\" fill=\"#D80027\"/>\\n<path d=\"M78.3476 29.3739H85.3498C85.5514 29.0449 85.7078 28.6852 85.8107 28.3035H77.8867C77.9896 28.6852 78.146 29.0449 78.3476 29.3739V29.3739Z\" fill=\"#D80027\"/>\\n<path d=\"M79.6468 23.7704H80.0208L79.6729 24.0231L79.8058 24.432L79.458 24.1793L79.1102 24.432L79.225 24.0788C78.9187 24.3339 78.6503 24.6327 78.4291 24.9658H78.5489L78.3275 25.1266C78.293 25.1841 78.2599 25.2426 78.2282 25.3019L78.334 25.6273L78.1367 25.484C78.0877 25.5879 78.0428 25.6941 78.0025 25.8025L78.119 26.1611H78.5489L78.2011 26.4138L78.334 26.8226L77.9862 26.57L77.7778 26.7213C77.757 26.889 77.7461 27.0597 77.7461 27.233H81.8494C81.8494 24.9668 81.8494 24.6996 81.8494 23.1296C81.0388 23.1296 80.2832 23.3648 79.6468 23.7704V23.7704ZM79.8058 26.8226L79.458 26.57L79.1102 26.8226L79.2431 26.4138L78.8952 26.1611H79.3252L79.458 25.7522L79.5908 26.1611H80.0208L79.6729 26.4138L79.8058 26.8226ZM79.6729 25.2184L79.8058 25.6273L79.458 25.3746L79.1102 25.6273L79.2431 25.2184L78.8952 24.9658H79.3252L79.458 24.5569L79.5908 24.9658H80.0208L79.6729 25.2184ZM81.2777 26.8226L80.9299 26.57L80.582 26.8226L80.7149 26.4138L80.3671 26.1611H80.797L80.9299 25.7522L81.0627 26.1611H81.4926L81.1448 26.4138L81.2777 26.8226ZM81.1448 25.2184L81.2777 25.6273L80.9299 25.3746L80.582 25.6273L80.7149 25.2184L80.3671 24.9658H80.797L80.9299 24.5569L81.0627 24.9658H81.4926L81.1448 25.2184ZM81.1448 24.0231L81.2777 24.432L80.9299 24.1793L80.582 24.432L80.7149 24.0231L80.3671 23.7704H80.797L80.9299 23.3616L81.0627 23.7704H81.4926L81.1448 24.0231Z\" fill=\"#0052B4\"/>\\n</g>\\n<circle cx=\"81.8494\" cy=\"27.233\" r=\"4.61626\" stroke=\"white\" stroke-width=\"1.02583\"/>\\n<defs>\\n<clipPath id=\"clip0_352_27745\">\\n<rect width=\"8.20668\" height=\"8.20668\" fill=\"white\" transform=\"translate(77.7461 23.1296)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qpptuq\",\"data-framer-name\":\"Frame 1000001324\",layoutDependency:layoutDependency,layoutId:\"FPUTPc9bq\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-cmsrx5\",\"data-border\":true,\"data-framer-name\":\"visuals/illustration/self/orders/learn-to-protect-2\",layoutDependency:layoutDependency,layoutId:\"V1L2IaRy7\",style:{\"--border-bottom-width\":\"0.5965650081634521px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.5965650081634521px\",\"--border-right-width\":\"0.5965650081634521px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5965650081634521px\",backdropFilter:\"blur(3.427536964416504px)\",backgroundColor:\"rgba(255, 255, 255, 0.4)\",borderBottomLeftRadius:3.25,borderBottomRightRadius:3.25,borderTopLeftRadius:3.25,borderTopRightRadius:3.25,WebkitBackdropFilter:\"blur(3.427536964416504px)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jvih00\",\"data-framer-name\":\"Core/Card/Instrument\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:41,intrinsicWidth:102,layoutDependency:layoutDependency,layoutId:\"Tcno87Ggb\",svg:'<svg width=\"102\" height=\"41\" viewBox=\"0 0 102 41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"8.68555\" y=\"10.5989\" width=\"20.5167\" height=\"20.5167\" rx=\"10.2583\" fill=\"white\"/>\\n<rect x=\"35.3564\" y=\"12.4617\" width=\"26.1596\" height=\"4.50221\" rx=\"2.25111\" fill=\"#A8B3CC\"/>\\n<rect x=\"35.3564\" y=\"26.2561\" width=\"33.4327\" height=\"2.71858\" rx=\"1.35929\" fill=\"white\"/>\\n<path d=\"M74.0861 30.5258V24.8837H74.5206V30.5258H74.0861Z\" fill=\"#939393\"/>\\n<g clip-path=\"url(#clip0_352_27759)\">\\n<path d=\"M81.7391 31.7186C84.0053 31.7186 85.8424 29.8815 85.8424 27.6153C85.8424 25.3491 84.0053 23.512 81.7391 23.512C79.4729 23.512 77.6357 25.3491 77.6357 27.6153C77.6357 29.8815 79.4729 31.7186 81.7391 31.7186Z\" fill=\"#F0F0F0\"/>\\n<path d=\"M85.8421 27.6152C85.8421 25.8509 84.7286 24.3469 83.166 23.7671V31.4633C84.7286 30.8835 85.8421 29.3795 85.8421 27.6152V27.6152Z\" fill=\"#D80027\"/>\\n<path d=\"M77.6357 27.6152C77.6357 29.3795 78.7493 30.8835 80.3118 31.4633V23.7671C78.7493 24.3469 77.6357 25.8509 77.6357 27.6152Z\" fill=\"#0052B4\"/>\\n</g>\\n<circle cx=\"81.7391\" cy=\"27.6153\" r=\"4.61626\" stroke=\"white\" stroke-width=\"1.02583\"/>\\n<defs>\\n<clipPath id=\"clip0_352_27759\">\\n<rect width=\"8.20668\" height=\"8.20668\" fill=\"white\" transform=\"translate(77.6357 23.512)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t1sppe\",\"data-border\":true,\"data-framer-name\":\"visuals/illustration/self/orders/learn-to-protect-2\",layoutDependency:layoutDependency,layoutId:\"bBlR0lWBW\",style:{\"--border-bottom-width\":\"0.5965650081634521px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.5965650081634521px\",\"--border-right-width\":\"0.5965650081634521px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5965650081634521px\",backdropFilter:\"blur(3.427536964416504px)\",backgroundColor:\"rgba(255, 255, 255, 0.4)\",borderBottomLeftRadius:3.25,borderBottomRightRadius:3.25,borderTopLeftRadius:3.25,borderTopRightRadius:3.25,WebkitBackdropFilter:\"blur(3.427536964416504px)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ppihom\",\"data-framer-name\":\"Core/Card/Instrument\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:41,intrinsicWidth:102,layoutDependency:layoutDependency,layoutId:\"xDGv2hERj\",svg:'<svg width=\"102\" height=\"41\" viewBox=\"0 0 102 41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"8.63672\" y=\"9.89014\" width=\"20.5167\" height=\"20.5167\" rx=\"10.2583\" fill=\"white\"/>\\n<rect x=\"35.3076\" y=\"11.7529\" width=\"26.1596\" height=\"4.50221\" rx=\"2.25111\" fill=\"#A8B3CC\"/>\\n<rect x=\"35.3076\" y=\"25.5474\" width=\"33.4327\" height=\"2.71858\" rx=\"1.35929\" fill=\"white\"/>\\n<path d=\"M74.0373 29.817V24.1749H74.4717V29.817H74.0373Z\" fill=\"#939393\"/>\\n<g clip-path=\"url(#clip0_352_27773)\">\\n<path d=\"M83.1175 23.0584C82.673 22.8935 82.1922 22.8032 81.6903 22.8032C81.1884 22.8032 80.7076 22.8935 80.2631 23.0584L79.9062 26.9066L80.2631 30.7547C80.7076 30.9196 81.1884 31.0099 81.6903 31.0099C82.1922 31.0099 82.673 30.9196 83.1175 30.7547L83.4744 26.9066L83.1175 23.0584Z\" fill=\"#FFDA44\"/>\\n<path d=\"M85.7933 26.9064C85.7933 25.1422 84.6797 23.6381 83.1172 23.0583V30.7546C84.6797 30.1748 85.7933 28.6708 85.7933 26.9064V26.9064Z\" fill=\"#D80027\"/>\\n<path d=\"M77.5869 26.9064C77.5869 28.6708 78.7005 30.1748 80.263 30.7546V23.0583C78.7005 23.6381 77.5869 25.1422 77.5869 26.9064V26.9064Z\" fill=\"black\"/>\\n</g>\\n<circle cx=\"81.6903\" cy=\"26.9066\" r=\"4.61626\" stroke=\"white\" stroke-width=\"1.02583\"/>\\n<defs>\\n<clipPath id=\"clip0_352_27773\">\\n<rect width=\"8.20668\" height=\"8.20668\" fill=\"white\" transform=\"translate(77.5869 22.8032)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})]})]})}),isDisplayed15()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/HcxeMKIDFoiwTbEIuy30c6yfv4.png\",srcSet:\"https://framerusercontent.com/images/HcxeMKIDFoiwTbEIuy30c6yfv4.png?scale-down-to=512 512w,https://framerusercontent.com/images/HcxeMKIDFoiwTbEIuy30c6yfv4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HcxeMKIDFoiwTbEIuy30c6yfv4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HcxeMKIDFoiwTbEIuy30c6yfv4.png 2756w\"},className:\"framer-1ubh0kb\",\"data-framer-name\":\"Frame 1000001320\",layoutDependency:layoutDependency,layoutId:\"uK0yhHElp\",...addPropertyOverrides({akPHHey1v:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||327)*.5137614678899085-98)),positionX:\"center\",positionY:\"center\",sizes:\"270px\",src:\"https://framerusercontent.com/images/HcxeMKIDFoiwTbEIuy30c6yfv4.png\",srcSet:\"https://framerusercontent.com/images/HcxeMKIDFoiwTbEIuy30c6yfv4.png?scale-down-to=512 512w,https://framerusercontent.com/images/HcxeMKIDFoiwTbEIuy30c6yfv4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HcxeMKIDFoiwTbEIuy30c6yfv4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HcxeMKIDFoiwTbEIuy30c6yfv4.png 2756w\"}}},baseVariant,gestureVariant)}),isDisplayed13()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-uvatda\",\"data-framer-name\":\"Graph\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:416,intrinsicWidth:850,layoutDependency:layoutDependency,layoutId:\"Z7IU60W5v\",style:{backdropFilter:\"blur(3px)\",WebkitBackdropFilter:\"blur(3px)\"},svg:'<svg width=\"850\" height=\"416\" viewBox=\"-1 -1 850 416\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_d_730_71298)\">\\n<rect x=\"0.917969\" y=\"0.5\" width=\"847\" height=\"413\" rx=\"12\" fill=\"white\" fill-opacity=\"0.5\" shape-rendering=\"crispEdges\"/>\\n<rect x=\"0.114559\" y=\"-0.30341\" width=\"848.607\" height=\"414.607\" rx=\"12.8034\" stroke=\"white\" stroke-width=\"1.60682\" shape-rendering=\"crispEdges\"/>\\n<path opacity=\"0.48\" d=\"M24.6016 245.128L47.8562 211.318H77.453L107.05 194.413L130.304 201.658L153.559 175.093L173.643 194.413L190.555 224.601L213.81 211.318L245.521 245.128L262.433 329.653L276.175 311.54L302.479 389.669H302.818L321.627 358.633L332.197 373.123L361.794 318.785H381.877L401.961 299.465L416.759 311.54L433.672 303.088L452.698 326.03L477.01 286.183L505.55 270.486L529.862 224.601L554.173 238.396L596.454 175.093L621.823 35.9912L638.735 46.8587L671.503 73.6639L689.473 84.5314L726.469 81.215L748.667 101.255L774.035 83.1427L821.602 110.915V389.669H302.818L302.6 390.028L302.479 389.669H24.6016V245.128Z\" fill=\"url(#paint0_linear_730_71298)\" fill-opacity=\"0.7\"/>\\n<path d=\"M24.6016 245.09L47.8562 211.286H77.453L107.05 194.384L130.304 201.627L153.559 175.067L173.643 194.384L190.555 224.566L213.81 211.286L245.521 245.09L262.433 329.6L276.175 311.49L302.6 385.452L321.627 358.575L332.197 373.062L361.794 318.734H381.877L401.961 299.418L416.759 311.49L433.672 303.039L452.698 325.978L477.01 286.137L505.55 270.443L529.862 224.566L554.173 238.359L596.454 175.067L621.823 35.9746L638.736 46.8402L671.503 73.655L689.473 84.5206L726.469 81.2143L748.667 101.242L774.035 83.1322L821.602 110.9\" stroke=\"#DE1F46\" stroke-width=\"2.86691\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_d_730_71298\" x=\"-186.689\" y=\"-181.786\" width=\"1262.61\" height=\"788.216\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"5.32193\"/>\\n<feGaussianBlur stdDeviation=\"93.0007\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.608659 0 0 0 0 0 0 0 0 0 0.168352 0 0 0 0.22 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_730_71298\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_730_71298\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_730_71298\" x1=\"424.769\" y1=\"35.9911\" x2=\"424.769\" y2=\"390.028\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#DE1F46\"/>\\n<stop offset=\"1\" stop-color=\"#DE1F46\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"#DE1F46\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed16()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1no0x9i\",\"data-border\":true,\"data-framer-name\":\"Details [st-emotion-cache-1h9usn1]\",layoutDependency:layoutDependency,layoutId:\"HcFafw4Qe\",style:{\"--border-bottom-width\":\"1.8296010494232178px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1.8296010494232178px\",\"--border-right-width\":\"1.8296010494232178px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.8296010494232178px\",backdropFilter:\"blur(10.51188850402832px)\",backgroundColor:\"rgba(255, 255, 255, 0.4)\",borderBottomLeftRadius:9.15,borderBottomRightRadius:9.15,borderTopLeftRadius:9.15,borderTopRightRadius:9.15,WebkitBackdropFilter:\"blur(10.51188850402832px)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-faht40\",\"data-framer-name\":\"Summary [st-emotion-cache-ujgn1y]\",layoutDependency:layoutDependency,layoutId:\"HmSwPufGk\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-pr4f35\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"prmDtBzfH\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_816_142857)\">\\n<path d=\"M8.16949 5.61646L4.35596 9.42999L5.25214 10.3262L8.16949 7.41517L11.0868 10.3262L11.983 9.42999L8.16949 5.61646Z\" fill=\"#31333F\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_816_142857\">\\n<rect width=\"15.2541\" height=\"15.2541\" fill=\"white\" transform=\"translate(0.54248 0.531738)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgUHJvLTYwMA==\",\"--framer-font-family\":'\"Source Sans Pro\", \"Source Sans Pro Placeholder\", sans-serif',\"--framer-font-size\":\"10.68px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"17.08px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 51, 63))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgUHJvLXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\"},children:\"\uD83C\uDF0D \"}),\"Universe\"]})}),className:\"framer-fg0bqu\",\"data-framer-name\":\"\uD83C\uDF0D Universe\",fonts:[\"GF;Source Sans Pro-600\",\"GF;Source Sans Pro-regular\"],layoutDependency:layoutDependency,layoutId:\"AfVDyUon2\",style:{\"--extracted-r6o4lv\":\"rgb(49, 51, 63)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1krhtjx\",\"data-framer-name\":\"Div [st-emotion-cache-phzz4j]\",layoutDependency:layoutDependency,layoutId:\"tohokcICH\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u3x9qp\",\"data-framer-name\":\"Div [stSelectbox]\",layoutDependency:layoutDependency,layoutId:\"Q2H_Xs_C5\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y7zp4b\",\"data-framer-name\":\"Label [st-emotion-cache-ue6h4q]\",layoutDependency:layoutDependency,layoutId:\"IqrCZpJX7\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-m55urx\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:13,layoutDependency:layoutDependency,layoutId:\"NfhJa_EbP\",svg:'<svg width=\"13\" height=\"14\" viewBox=\"0 0 13 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_816_142864)\">\\n<path d=\"M6.69506 12.0303C9.50327 12.0303 11.7798 9.75376 11.7798 6.94555C11.7798 4.13734 9.50327 1.86084 6.69506 1.86084C3.88686 1.86084 1.61035 4.13734 1.61035 6.94555C1.61035 9.75376 3.88686 12.0303 6.69506 12.0303Z\" stroke=\"#31333F\" stroke-opacity=\"0.6\" stroke-width=\"1.01694\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M5.21533 5.4201C5.33488 5.08027 5.57083 4.79372 5.88141 4.61119C6.19198 4.42866 6.55713 4.36194 6.91219 4.42284C7.26725 4.48374 7.58929 4.66833 7.82129 4.94393C8.05328 5.21952 8.18026 5.56833 8.17972 5.92857C8.17972 6.94551 6.65431 7.45398 6.65431 7.45398\" stroke=\"#31333F\" stroke-opacity=\"0.6\" stroke-width=\"1.01694\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.69482 9.48804H6.70048\" stroke=\"#31333F\" stroke-opacity=\"0.6\" stroke-width=\"1.01694\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_816_142864\">\\n<rect width=\"12.2033\" height=\"12.2033\" fill=\"white\" transform=\"translate(0.593262 0.843994)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o55443\",\"data-framer-name\":\"Paragraph\",layoutDependency:layoutDependency,layoutId:\"c2rStOuR8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Source Sans Pro\", \"Source Sans Pro Placeholder\", sans-serif',\"--framer-font-size\":\"10.68px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"17.08px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 51, 63))\"},children:\"Select the universe of investable \"})}),className:\"framer-1yvuxex\",\"data-framer-name\":\"Select the universe of investable\",fonts:[\"GF;Source Sans Pro-regular\"],layoutDependency:layoutDependency,layoutId:\"X72NBK5qg\",style:{\"--extracted-r6o4lv\":\"rgb(49, 51, 63)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Source Sans Pro\", \"Source Sans Pro Placeholder\", sans-serif',\"--framer-font-size\":\"10.68px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"17.08px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 51, 63))\"},children:\"instruments\"})}),className:\"framer-dkllap\",\"data-framer-name\":\"instruments\",fonts:[\"GF;Source Sans Pro-regular\"],layoutDependency:layoutDependency,layoutId:\"ROcreRuu5\",style:{\"--extracted-r6o4lv\":\"rgb(49, 51, 63)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rpqpn9\",\"data-border\":true,\"data-framer-name\":\"Div [st-av]\",layoutDependency:layoutDependency,layoutId:\"N9uOwVwPT\",style:{\"--border-bottom-width\":\"0.7627068758010864px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.7627068758010864px\",\"--border-right-width\":\"0.7627068758010864px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.7627068758010864px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6.1,borderBottomRightRadius:6.1,borderTopLeftRadius:6.1,borderTopRightRadius:6.1},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-15jpzsv\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:19,layoutDependency:layoutDependency,layoutId:\"vd1auhjby\",svg:'<svg width=\"19\" height=\"19\" viewBox=\"0 0 19 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.77984 11.6248C9.98211 11.6248 10.1761 11.5444 10.3192 11.4014L13.37 8.35053C13.6678 8.05269 13.6678 7.56975 13.37 7.27191C13.0721 6.97407 12.5892 6.97407 12.2914 7.27191L9.77984 9.78343L7.26833 7.27191C6.97047 6.97407 6.48756 6.97407 6.1897 7.27191C5.89185 7.56975 5.89185 8.05269 6.1897 8.35053L9.24053 11.4014C9.38354 11.5444 9.57757 11.6248 9.77984 11.6248Z\" fill=\"#31333F\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kqmtsb\",\"data-framer-name\":\"Div [st-bd]\",layoutDependency:layoutDependency,layoutId:\"PcwmEd02X\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dnr8za\",\"data-framer-name\":\"Div [st-d7]\",layoutDependency:layoutDependency,layoutId:\"gEJ_eJbTd\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Source Sans Pro\", \"Source Sans Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12.2px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"17.08px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 51, 63))\"},children:\"EU STOCKS\"})}),className:\"framer-mttbsh\",\"data-framer-name\":\"EU STOCKS\",fonts:[\"GF;Source Sans Pro-regular\"],layoutDependency:layoutDependency,layoutId:\"vZ79VZm9q\",style:{\"--extracted-r6o4lv\":\"rgb(49, 51, 63)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7923vh\",\"data-framer-name\":\"Div [stMultiSelect]\",layoutDependency:layoutDependency,layoutId:\"agr7Bmtq_\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Source Sans Pro\", \"Source Sans Pro Placeholder\", sans-serif',\"--framer-font-size\":\"10.68px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"17.08px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 51, 63))\"},children:\"ISINs to exclude from the universe:\"})}),className:\"framer-1l7rznx\",\"data-framer-name\":\"ISINs to exclude from the universe:\",fonts:[\"GF;Source Sans Pro-regular\"],layoutDependency:layoutDependency,layoutId:\"Dh90cEULQ\",style:{\"--extracted-r6o4lv\":\"rgb(49, 51, 63)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dn08z\",\"data-border\":true,\"data-framer-name\":\"Div [st-av]\",layoutDependency:layoutDependency,layoutId:\"maxpLgtKy\",style:{\"--border-bottom-width\":\"0.7627068758010864px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.7627068758010864px\",\"--border-right-width\":\"0.7627068758010864px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.7627068758010864px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6.1,borderBottomRightRadius:6.1,borderTopLeftRadius:6.1,borderTopRightRadius:6.1},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1b9av6o\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:19,layoutDependency:layoutDependency,layoutId:\"hJU8ptxyh\",svg:'<svg width=\"19\" height=\"19\" viewBox=\"0 0 19 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.77984 11.6074C9.98211 11.6074 10.1761 11.5271 10.3192 11.384L13.37 8.3332C13.6678 8.03536 13.6678 7.55241 13.37 7.25458C13.0721 6.95674 12.5892 6.95674 12.2914 7.25458L9.77984 9.7661L7.26833 7.25458C6.97047 6.95674 6.48756 6.95674 6.1897 7.25458C5.89185 7.55241 5.89185 8.03536 6.1897 8.3332L9.24053 11.384C9.38354 11.5271 9.57757 11.6074 9.77984 11.6074Z\" fill=\"#31333F\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-91pdew\",\"data-framer-name\":\"Div [st-bd]\",layoutDependency:layoutDependency,layoutId:\"CWm4ELxay\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yywfqr\",\"data-framer-name\":\"Div [st-e0]\",layoutDependency:layoutDependency,layoutId:\"N_lpg3WuN\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Source Sans Pro\", \"Source Sans Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12.2px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"19.53px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(49, 51, 63, 0.6))\"},children:\"Choose an option\"})}),className:\"framer-10xftax\",\"data-framer-name\":\"Choose an option\",fonts:[\"GF;Source Sans Pro-regular\"],layoutDependency:layoutDependency,layoutId:\"qP9eblJ2l\",style:{\"--extracted-r6o4lv\":\"rgba(49, 51, 63, 0.6)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})})]})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lSNzE.framer-h1yi0o, .framer-lSNzE .framer-h1yi0o { display: block; }\",\".framer-lSNzE.framer-1cwug3y { height: 327px; overflow: hidden; position: relative; width: 787px; }\",\".framer-lSNzE .framer-1l0hu8k { bottom: -8px; flex: none; overflow: hidden; position: absolute; right: 0px; top: 0px; width: 324px; }\",\".framer-lSNzE .framer-11zl556 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 749px); left: 118%; overflow: visible; position: absolute; top: 53%; width: 749px; }\",\".framer-lSNzE .framer-qu2kiw, .framer-lSNzE .framer-18dasdb { flex: none; height: 766px; left: -9px; position: absolute; top: -9px; width: 766px; }\",\".framer-lSNzE .framer-1u0yrrn { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 749px); left: 165%; overflow: visible; position: absolute; top: 55%; width: 749px; }\",\".framer-lSNzE .framer-t7mtb5 { flex: none; height: 326px; left: 71px; position: absolute; top: 133px; width: 388px; }\",\".framer-lSNzE .framer-1klce40 { flex: none; height: 221px; left: 77px; position: absolute; top: 76px; width: 288px; }\",\".framer-lSNzE .framer-19g6t2q { align-content: center; align-items: center; bottom: 21px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: 248px; justify-content: flex-start; overflow: hidden; padding: 0px 18.943538665771484px 0px 18.943538665771484px; position: absolute; right: 6px; width: min-content; }\",\".framer-lSNzE .framer-jtsdno, .framer-lSNzE .framer-1p713lw { 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: flex-start; overflow: visible; padding: 13.513503074645996px; position: relative; width: min-content; }\",\".framer-lSNzE .framer-b5bxmp, .framer-lSNzE .framer-1h8ynny { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lSNzE .framer-13fumf7, .framer-lSNzE .framer-1b7jqkq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 1.3468049764633179px 0px 1.3468049764633179px; position: relative; width: 100%; }\",\".framer-lSNzE .framer-1xw9qz0, .framer-lSNzE .framer-ujw22z { flex: none; height: 17px; position: relative; white-space: pre-wrap; width: 193px; word-break: break-word; word-wrap: break-word; }\",\".framer-lSNzE .framer-i2843a, .framer-lSNzE .framer-sv4gdu { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 2.6936099529266357px; position: relative; width: min-content; }\",\".framer-lSNzE .framer-14sioxr, .framer-lSNzE .framer-xy30vt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-lSNzE .framer-gfgikc, .framer-lSNzE .framer-171arqu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-lSNzE .framer-1moup9h, .framer-lSNzE .framer-syw6hp, .framer-lSNzE .framer-1yvuxex, .framer-lSNzE .framer-dkllap, .framer-lSNzE .framer-1l7rznx { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-lSNzE .framer-1r2y7s6, .framer-lSNzE .framer-1gzjw5c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 7.300782680511475px 0px 7.300782680511475px 0px; position: relative; width: 100%; }\",\".framer-lSNzE .framer-lw5frj, .framer-lSNzE .framer-tgaheb { flex: none; height: 2px; overflow: visible; position: relative; width: 210px; }\",\".framer-lSNzE .framer-1czpymn, .framer-lSNzE .framer-16cgltf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 4px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 61%; }\",\".framer-lSNzE .framer-1u6diz7, .framer-lSNzE .framer-glskhj { flex: 1 0 0px; height: 2px; position: relative; width: 1px; }\",\".framer-lSNzE .framer-168zjw, .framer-lSNzE .framer-p0oldt { flex: none; height: 3px; position: relative; width: 27px; }\",\".framer-lSNzE .framer-1930dnt, .framer-lSNzE .framer-1koblo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; left: 3px; min-height: 5px; min-width: 1px; overflow: visible; padding: 0px; position: absolute; top: -1px; width: min-content; }\",\".framer-lSNzE .framer-596702, .framer-lSNzE .framer-rd86br { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; left: 51px; min-height: 5px; min-width: 28px; overflow: visible; padding: 0px 0px 0px 26.921632766723633px; position: absolute; top: -1px; width: min-content; }\",\".framer-lSNzE .framer-6tfk71, .framer-lSNzE .framer-lpuvsj { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 15px; }\",\".framer-lSNzE .framer-1jua7lu, .framer-lSNzE .framer-5o7h9h { flex: none; height: 2px; position: relative; width: 0px; }\",\".framer-lSNzE .framer-4keife, .framer-lSNzE .framer-brd7py { flex: none; height: 13px; overflow: visible; position: relative; width: 13px; }\",\".framer-lSNzE .framer-1rv8ijd, .framer-lSNzE .framer-ukc0tj { aspect-ratio: 1 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 13px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-lSNzE .framer-6ax9mp, .framer-lSNzE .framer-19731pd { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 210px; }\",\".framer-lSNzE .framer-kfroh8, .framer-lSNzE .framer-fza82p, .framer-lSNzE .framer-guhl0r, .framer-lSNzE .framer-1qpptuq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lSNzE .framer-17ye33u, .framer-lSNzE .framer-1b6lp9b, .framer-lSNzE .framer-1k2khbe, .framer-lSNzE .framer-ai5ikc, .framer-lSNzE .framer-1hd4xt1, .framer-lSNzE .framer-1y5adyl, .framer-lSNzE .framer-cmsrx5, .framer-lSNzE .framer-1t1sppe { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 51px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-lSNzE .framer-1cytnlz, .framer-lSNzE .framer-1wgqpxu, .framer-lSNzE .framer-1sam7m, .framer-lSNzE .framer-rjslwy, .framer-lSNzE .framer-ryfxqp, .framer-lSNzE .framer-a6xiqa, .framer-lSNzE .framer-jvih00, .framer-lSNzE .framer-1ppihom { flex: none; height: 41px; position: relative; width: 102px; }\",\".framer-lSNzE .framer-1352cgr { bottom: -35px; flex: none; left: -17px; position: absolute; right: -22px; top: -3px; }\",\".framer-lSNzE .framer-juoc1m { flex: none; height: 15px; left: 0px; overflow: hidden; position: absolute; right: -8px; top: 0px; }\",\".framer-lSNzE .framer-1d5qd8x { bottom: 8px; flex: none; height: 14px; left: -9px; overflow: hidden; position: absolute; right: -7px; }\",\".framer-lSNzE .framer-z8kk0w { flex: none; height: 375px; position: absolute; right: 20px; top: calc(42.50764525993886% - 375px / 2); width: 828px; }\",\".framer-lSNzE .framer-qzh5vb { bottom: -7px; flex: none; overflow: hidden; position: absolute; right: -6px; top: 0px; width: 323px; }\",\".framer-lSNzE .framer-4ttuh2 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 672px); left: 118%; overflow: visible; position: absolute; top: 53%; width: 672px; }\",\".framer-lSNzE .framer-13eserb, .framer-lSNzE .framer-1nysar { flex: none; height: 687px; left: -8px; position: absolute; top: -8px; width: 687px; }\",\".framer-lSNzE .framer-18y9jt0 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 672px); left: 165%; overflow: visible; position: absolute; top: 55%; width: 672px; }\",\".framer-lSNzE .framer-2rxu7r { flex: none; height: 292px; left: 63px; position: absolute; top: 120px; width: 348px; }\",\".framer-lSNzE .framer-fxciry { flex: none; height: 198px; left: 70px; position: absolute; top: 68px; width: 258px; }\",\".framer-lSNzE .framer-zzcesv { flex: none; height: 287px; overflow: visible; position: absolute; right: 26px; top: calc(48.802395209580865% - 287.1587829589844px / 2); width: 221px; }\",\".framer-lSNzE .framer-14clejx { aspect-ratio: 0.7029569613958018 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 263px); left: 18px; position: absolute; top: 12px; width: 185px; }\",\".framer-lSNzE .framer-70l8ts { aspect-ratio: 0.6931188382431251 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 259px); left: 21px; position: absolute; top: 15px; width: 180px; }\",\".framer-lSNzE .framer-17fhufr { bottom: 39px; flex: none; height: 160px; left: 17px; position: absolute; width: 87px; }\",\".framer-lSNzE .framer-143m710 { align-content: flex-start; align-items: flex-start; bottom: -19px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: absolute; right: -54px; width: 347px; }\",\".framer-lSNzE .framer-1ilfpwv { flex: none; height: 355px; overflow: hidden; position: relative; width: 347px; }\",\".framer-lSNzE .framer-1vi1xif { bottom: 17px; flex: none; left: -9px; position: absolute; right: -250px; top: -17px; }\",\".framer-lSNzE .framer-swj304 { bottom: 168px; flex: none; left: -3px; position: absolute; right: 155px; top: 48px; }\",\".framer-lSNzE .framer-1kr77md { bottom: -319px; flex: none; overflow: visible; position: absolute; right: -208px; top: -64px; width: 710px; }\",\".framer-lSNzE .framer-ci8l1w { aspect-ratio: 1 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 710px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-lSNzE .framer-gw4bkk { aspect-ratio: 0.4964330536787188 / 1; bottom: var(--framer-aspect-ratio-supported, 196px); flex: none; height: 384px; left: 255px; position: absolute; right: 264px; top: 130px; }\",\".framer-lSNzE .framer-11rj2io { aspect-ratio: 1.578947311264299 / 1; bottom: var(--framer-aspect-ratio-supported, 397px); flex: none; height: 141px; left: 239px; position: absolute; right: 249px; top: 172px; }\",\".framer-lSNzE .framer-1aucjxr { aspect-ratio: 1.5368848587010744 / 1; bottom: var(--framer-aspect-ratio-supported, 272px); flex: none; height: 123px; left: 256px; position: absolute; right: 265px; top: 316px; }\",\".framer-lSNzE .framer-1c0s2ht { aspect-ratio: 2.180232560669978 / 1; bottom: var(--framer-aspect-ratio-supported, 195px); flex: none; height: 88px; left: 256px; position: absolute; right: 262px; top: 428px; }\",\".framer-lSNzE .framer-8fy8lq { align-content: flex-start; align-items: flex-start; bottom: 376px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; justify-content: center; left: 154px; overflow: hidden; padding: 0px; position: absolute; right: 446px; top: 278px; will-change: var(--framer-will-change-override, transform); }\",\".framer-lSNzE .framer-pewicy { flex: none; height: 45px; position: relative; width: 112px; }\",\".framer-lSNzE .framer-hsio9r { align-content: flex-start; align-items: flex-start; bottom: 292px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; justify-content: center; left: 437px; overflow: hidden; padding: 0px; position: absolute; right: 163px; top: 362px; will-change: var(--framer-will-change-override, transform); }\",\".framer-lSNzE .framer-5lga4c { flex: none; height: 44px; position: relative; width: 111px; }\",\".framer-lSNzE .framer-19h7hlh { flex: none; height: 293px; overflow: visible; position: absolute; right: -8px; top: calc(50.764525993883815% - 293px / 2); width: 285px; }\",\".framer-lSNzE .framer-1q7t50l { flex: none; height: 140px; position: absolute; right: 39px; top: 29px; width: 140px; }\",\".framer-lSNzE .framer-vljz7a { flex: none; height: 94px; left: -30px; position: absolute; top: 63px; width: 93px; }\",\".framer-lSNzE .framer-1rmgz3y { bottom: 26px; flex: none; height: 173px; left: 18px; position: absolute; width: 173px; }\",\".framer-lSNzE .framer-ry6uby { flex: none; height: 249px; overflow: visible; position: absolute; right: 63px; top: calc(50.15290519877678% - 249.4456024169922px / 2); width: 234px; }\",\".framer-lSNzE .framer-1wnoaak { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 14px; overflow: visible; padding: 8.906927108764648px 0px 8.906927108764648px 0px; position: absolute; top: 19px; width: 205px; }\",\".framer-lSNzE .framer-1fovovj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lSNzE .framer-138cb0s { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 201px); position: relative; width: 201px; }\",\".framer-lSNzE .framer-1jmcdre { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 14px; overflow: visible; padding: 8.906927108764648px 0px 8.906927108764648px 0px; position: absolute; top: 13px; width: 205px; }\",\".framer-lSNzE .framer-1t1n29n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lSNzE .framer-1m20ved { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 202px); position: relative; width: 202px; }\",\".framer-lSNzE .framer-kr5qtd { flex: none; height: 303px; position: absolute; right: -14px; top: calc(52.293577981651396% - 303px / 2); width: 403px; }\",\".framer-lSNzE .framer-1kdbhd5 { aspect-ratio: 1.84 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); position: absolute; right: 21px; top: 55%; width: 368px; }\",\".framer-lSNzE .framer-kwgiqt { bottom: -145px; flex: none; height: 426px; position: absolute; right: 171px; width: 309px; }\",\".framer-lSNzE .framer-17mtfm0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: 248px; justify-content: flex-start; overflow: hidden; padding: 0px 18.943538665771484px 0px 18.943538665771484px; position: absolute; right: 16px; top: 53%; width: min-content; }\",\".framer-lSNzE .framer-1ubh0kb { flex: none; height: 196px; position: absolute; right: 78px; top: calc(51.37614678899085% - 196px / 2); width: 270px; }\",\".framer-lSNzE .framer-uvatda { bottom: 86px; flex: none; height: 75px; left: 174px; position: absolute; width: 151px; }\",\".framer-lSNzE .framer-1no0x9i { align-content: flex-start; align-items: flex-start; bottom: 48px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 12.203310012817383px 12.203310012817383px 12.203310012817383px; position: absolute; right: 39px; width: min-content; }\",\".framer-lSNzE .framer-faht40 { flex: none; height: 38px; overflow: visible; position: relative; width: 189px; }\",\".framer-lSNzE .framer-pr4f35 { flex: none; height: 16px; left: 174px; position: absolute; top: 12px; width: 16px; }\",\".framer-lSNzE .framer-fg0bqu { flex: none; height: auto; left: 0px; position: absolute; top: 12px; white-space: pre; width: auto; }\",\".framer-lSNzE .framer-1krhtjx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 132px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 189px; }\",\".framer-lSNzE .framer-u3x9qp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: 68px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 189px; }\",\".framer-lSNzE .framer-1y7zp4b { flex: none; height: 34px; overflow: visible; position: relative; width: 189px; }\",\".framer-lSNzE .framer-m55urx { flex: none; height: 14px; left: 177px; position: absolute; top: 10px; width: 13px; }\",\".framer-lSNzE .framer-1o55443 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 34px; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px 33.78553009033203px 210.80979919433594px 0px; position: absolute; top: 0px; width: 177px; }\",\".framer-lSNzE .framer-1rpqpn9, .framer-lSNzE .framer-dn08z { flex: none; height: 31px; overflow: hidden; position: relative; width: 189px; will-change: var(--framer-will-change-override, transform); }\",\".framer-lSNzE .framer-15jpzsv, .framer-lSNzE .framer-1b9av6o { flex: none; height: 19px; left: 164px; position: absolute; top: 6px; width: 19px; }\",\".framer-lSNzE .framer-kqmtsb, .framer-lSNzE .framer-91pdew { flex: none; height: 29px; left: 1px; overflow: hidden; position: absolute; top: 1px; width: 163px; }\",\".framer-lSNzE .framer-1dnr8za { flex: none; height: 17px; left: 8px; overflow: hidden; position: absolute; top: calc(48.30440752105562% - 17px / 2); width: 74px; }\",\".framer-lSNzE .framer-mttbsh, .framer-lSNzE .framer-10xftax { flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-lSNzE .framer-7923vh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: 52px; justify-content: flex-start; overflow: visible; padding: 0.4552406668663025px 0px 0px 0px; position: relative; width: 189px; }\",\".framer-lSNzE .framer-yywfqr { flex: none; height: 20px; left: 8px; overflow: hidden; position: absolute; top: 5px; width: 156px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lSNzE .framer-19g6t2q, .framer-lSNzE .framer-jtsdno, .framer-lSNzE .framer-b5bxmp, .framer-lSNzE .framer-13fumf7, .framer-lSNzE .framer-i2843a, .framer-lSNzE .framer-14sioxr, .framer-lSNzE .framer-gfgikc, .framer-lSNzE .framer-1r2y7s6, .framer-lSNzE .framer-1czpymn, .framer-lSNzE .framer-1930dnt, .framer-lSNzE .framer-596702, .framer-lSNzE .framer-6tfk71, .framer-lSNzE .framer-6ax9mp, .framer-lSNzE .framer-kfroh8, .framer-lSNzE .framer-17ye33u, .framer-lSNzE .framer-1b6lp9b, .framer-lSNzE .framer-fza82p, .framer-lSNzE .framer-1k2khbe, .framer-lSNzE .framer-ai5ikc, .framer-lSNzE .framer-143m710, .framer-lSNzE .framer-8fy8lq, .framer-lSNzE .framer-hsio9r, .framer-lSNzE .framer-1wnoaak, .framer-lSNzE .framer-1fovovj, .framer-lSNzE .framer-1jmcdre, .framer-lSNzE .framer-1t1n29n, .framer-lSNzE .framer-17mtfm0, .framer-lSNzE .framer-1p713lw, .framer-lSNzE .framer-1h8ynny, .framer-lSNzE .framer-1b7jqkq, .framer-lSNzE .framer-sv4gdu, .framer-lSNzE .framer-xy30vt, .framer-lSNzE .framer-171arqu, .framer-lSNzE .framer-1gzjw5c, .framer-lSNzE .framer-16cgltf, .framer-lSNzE .framer-1koblo, .framer-lSNzE .framer-rd86br, .framer-lSNzE .framer-lpuvsj, .framer-lSNzE .framer-19731pd, .framer-lSNzE .framer-guhl0r, .framer-lSNzE .framer-1hd4xt1, .framer-lSNzE .framer-1y5adyl, .framer-lSNzE .framer-1qpptuq, .framer-lSNzE .framer-cmsrx5, .framer-lSNzE .framer-1t1sppe, .framer-lSNzE .framer-1no0x9i, .framer-lSNzE .framer-1krhtjx, .framer-lSNzE .framer-u3x9qp, .framer-lSNzE .framer-1o55443, .framer-lSNzE .framer-7923vh { gap: 0px; } .framer-lSNzE .framer-19g6t2q > *, .framer-lSNzE .framer-17mtfm0 > * { margin: 0px; margin-left: calc(13.513503074645996px / 2); margin-right: calc(13.513503074645996px / 2); } .framer-lSNzE .framer-19g6t2q > :first-child, .framer-lSNzE .framer-13fumf7 > :first-child, .framer-lSNzE .framer-14sioxr > :first-child, .framer-lSNzE .framer-gfgikc > :first-child, .framer-lSNzE .framer-1czpymn > :first-child, .framer-lSNzE .framer-1930dnt > :first-child, .framer-lSNzE .framer-596702 > :first-child, .framer-lSNzE .framer-6tfk71 > :first-child, .framer-lSNzE .framer-kfroh8 > :first-child, .framer-lSNzE .framer-fza82p > :first-child, .framer-lSNzE .framer-1fovovj > :first-child, .framer-lSNzE .framer-1t1n29n > :first-child, .framer-lSNzE .framer-17mtfm0 > :first-child, .framer-lSNzE .framer-1b7jqkq > :first-child, .framer-lSNzE .framer-xy30vt > :first-child, .framer-lSNzE .framer-171arqu > :first-child, .framer-lSNzE .framer-16cgltf > :first-child, .framer-lSNzE .framer-1koblo > :first-child, .framer-lSNzE .framer-rd86br > :first-child, .framer-lSNzE .framer-lpuvsj > :first-child, .framer-lSNzE .framer-guhl0r > :first-child, .framer-lSNzE .framer-1qpptuq > :first-child { margin-left: 0px; } .framer-lSNzE .framer-19g6t2q > :last-child, .framer-lSNzE .framer-13fumf7 > :last-child, .framer-lSNzE .framer-14sioxr > :last-child, .framer-lSNzE .framer-gfgikc > :last-child, .framer-lSNzE .framer-1czpymn > :last-child, .framer-lSNzE .framer-1930dnt > :last-child, .framer-lSNzE .framer-596702 > :last-child, .framer-lSNzE .framer-6tfk71 > :last-child, .framer-lSNzE .framer-kfroh8 > :last-child, .framer-lSNzE .framer-fza82p > :last-child, .framer-lSNzE .framer-1fovovj > :last-child, .framer-lSNzE .framer-1t1n29n > :last-child, .framer-lSNzE .framer-17mtfm0 > :last-child, .framer-lSNzE .framer-1b7jqkq > :last-child, .framer-lSNzE .framer-xy30vt > :last-child, .framer-lSNzE .framer-171arqu > :last-child, .framer-lSNzE .framer-16cgltf > :last-child, .framer-lSNzE .framer-1koblo > :last-child, .framer-lSNzE .framer-rd86br > :last-child, .framer-lSNzE .framer-lpuvsj > :last-child, .framer-lSNzE .framer-guhl0r > :last-child, .framer-lSNzE .framer-1qpptuq > :last-child { margin-right: 0px; } .framer-lSNzE .framer-jtsdno > *, .framer-lSNzE .framer-1p713lw > * { margin: 0px; margin-bottom: calc(11.924628257751465px / 2); margin-top: calc(11.924628257751465px / 2); } .framer-lSNzE .framer-jtsdno > :first-child, .framer-lSNzE .framer-b5bxmp > :first-child, .framer-lSNzE .framer-i2843a > :first-child, .framer-lSNzE .framer-1r2y7s6 > :first-child, .framer-lSNzE .framer-6ax9mp > :first-child, .framer-lSNzE .framer-17ye33u > :first-child, .framer-lSNzE .framer-1b6lp9b > :first-child, .framer-lSNzE .framer-1k2khbe > :first-child, .framer-lSNzE .framer-ai5ikc > :first-child, .framer-lSNzE .framer-143m710 > :first-child, .framer-lSNzE .framer-8fy8lq > :first-child, .framer-lSNzE .framer-hsio9r > :first-child, .framer-lSNzE .framer-1wnoaak > :first-child, .framer-lSNzE .framer-1jmcdre > :first-child, .framer-lSNzE .framer-1p713lw > :first-child, .framer-lSNzE .framer-1h8ynny > :first-child, .framer-lSNzE .framer-sv4gdu > :first-child, .framer-lSNzE .framer-1gzjw5c > :first-child, .framer-lSNzE .framer-19731pd > :first-child, .framer-lSNzE .framer-1hd4xt1 > :first-child, .framer-lSNzE .framer-1y5adyl > :first-child, .framer-lSNzE .framer-cmsrx5 > :first-child, .framer-lSNzE .framer-1t1sppe > :first-child, .framer-lSNzE .framer-1no0x9i > :first-child, .framer-lSNzE .framer-1krhtjx > :first-child, .framer-lSNzE .framer-u3x9qp > :first-child, .framer-lSNzE .framer-1o55443 > :first-child, .framer-lSNzE .framer-7923vh > :first-child { margin-top: 0px; } .framer-lSNzE .framer-jtsdno > :last-child, .framer-lSNzE .framer-b5bxmp > :last-child, .framer-lSNzE .framer-i2843a > :last-child, .framer-lSNzE .framer-1r2y7s6 > :last-child, .framer-lSNzE .framer-6ax9mp > :last-child, .framer-lSNzE .framer-17ye33u > :last-child, .framer-lSNzE .framer-1b6lp9b > :last-child, .framer-lSNzE .framer-1k2khbe > :last-child, .framer-lSNzE .framer-ai5ikc > :last-child, .framer-lSNzE .framer-143m710 > :last-child, .framer-lSNzE .framer-8fy8lq > :last-child, .framer-lSNzE .framer-hsio9r > :last-child, .framer-lSNzE .framer-1wnoaak > :last-child, .framer-lSNzE .framer-1jmcdre > :last-child, .framer-lSNzE .framer-1p713lw > :last-child, .framer-lSNzE .framer-1h8ynny > :last-child, .framer-lSNzE .framer-sv4gdu > :last-child, .framer-lSNzE .framer-1gzjw5c > :last-child, .framer-lSNzE .framer-19731pd > :last-child, .framer-lSNzE .framer-1hd4xt1 > :last-child, .framer-lSNzE .framer-1y5adyl > :last-child, .framer-lSNzE .framer-cmsrx5 > :last-child, .framer-lSNzE .framer-1t1sppe > :last-child, .framer-lSNzE .framer-1no0x9i > :last-child, .framer-lSNzE .framer-1krhtjx > :last-child, .framer-lSNzE .framer-u3x9qp > :last-child, .framer-lSNzE .framer-1o55443 > :last-child, .framer-lSNzE .framer-7923vh > :last-child { margin-bottom: 0px; } .framer-lSNzE .framer-b5bxmp > *, .framer-lSNzE .framer-1h8ynny > * { margin: 0px; margin-bottom: calc(8.943471908569336px / 2); margin-top: calc(8.943471908569336px / 2); } .framer-lSNzE .framer-13fumf7 > *, .framer-lSNzE .framer-1b7jqkq > * { margin: 0px; margin-left: calc(5.3872199058532715px / 2); margin-right: calc(5.3872199058532715px / 2); } .framer-lSNzE .framer-i2843a > *, .framer-lSNzE .framer-1r2y7s6 > *, .framer-lSNzE .framer-143m710 > *, .framer-lSNzE .framer-1wnoaak > *, .framer-lSNzE .framer-1jmcdre > *, .framer-lSNzE .framer-sv4gdu > *, .framer-lSNzE .framer-1gzjw5c > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-lSNzE .framer-14sioxr > *, .framer-lSNzE .framer-gfgikc > *, .framer-lSNzE .framer-1czpymn > *, .framer-lSNzE .framer-1t1n29n > *, .framer-lSNzE .framer-xy30vt > *, .framer-lSNzE .framer-171arqu > *, .framer-lSNzE .framer-16cgltf > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-lSNzE .framer-1930dnt > *, .framer-lSNzE .framer-596702 > *, .framer-lSNzE .framer-1koblo > *, .framer-lSNzE .framer-rd86br > * { margin: 0px; margin-left: calc(4.562988758087158px / 2); margin-right: calc(4.562988758087158px / 2); } .framer-lSNzE .framer-6tfk71 > *, .framer-lSNzE .framer-lpuvsj > * { margin: 0px; margin-left: calc(9px / 2); margin-right: calc(9px / 2); } .framer-lSNzE .framer-6ax9mp > *, .framer-lSNzE .framer-19731pd > * { margin: 0px; margin-bottom: calc(7.961879730224609px / 2); margin-top: calc(7.961879730224609px / 2); } .framer-lSNzE .framer-kfroh8 > *, .framer-lSNzE .framer-fza82p > *, .framer-lSNzE .framer-guhl0r > *, .framer-lSNzE .framer-1qpptuq > * { margin: 0px; margin-left: calc(7.961879730224609px / 2); margin-right: calc(7.961879730224609px / 2); } .framer-lSNzE .framer-17ye33u > *, .framer-lSNzE .framer-1b6lp9b > *, .framer-lSNzE .framer-1k2khbe > *, .framer-lSNzE .framer-ai5ikc > *, .framer-lSNzE .framer-1hd4xt1 > *, .framer-lSNzE .framer-1y5adyl > *, .framer-lSNzE .framer-cmsrx5 > *, .framer-lSNzE .framer-1t1sppe > * { margin: 0px; margin-bottom: calc(20.435564041137695px / 2); margin-top: calc(20.435564041137695px / 2); } .framer-lSNzE .framer-8fy8lq > *, .framer-lSNzE .framer-hsio9r > * { margin: 0px; margin-bottom: calc(22.324251174926758px / 2); margin-top: calc(22.324251174926758px / 2); } .framer-lSNzE .framer-1fovovj > * { margin: 0px; margin-left: calc(13.03432846069336px / 2); margin-right: calc(13.03432846069336px / 2); } .framer-lSNzE .framer-1no0x9i > * { margin: 0px; margin-bottom: calc(7.627068519592285px / 2); margin-top: calc(7.627068519592285px / 2); } .framer-lSNzE .framer-1krhtjx > * { margin: 0px; margin-bottom: calc(12.203290939331055px / 2); margin-top: calc(12.203290939331055px / 2); } .framer-lSNzE .framer-u3x9qp > * { margin: 0px; margin-bottom: calc(3.0508084297180176px / 2); margin-top: calc(3.0508084297180176px / 2); } .framer-lSNzE .framer-1o55443 > * { margin: 0px; margin-bottom: calc(-0.0011917295632883906px / 2); margin-top: calc(-0.0011917295632883906px / 2); } .framer-lSNzE .framer-7923vh > * { margin: 0px; margin-bottom: calc(3.81591796875px / 2); margin-top: calc(3.81591796875px / 2); } }\",'.framer-lSNzE[data-border=\"true\"]::after, .framer-lSNzE [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 327\n * @framerIntrinsicWidth 787\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZZdG5fHTg\":{\"layout\":[\"fixed\",\"fixed\"]},\"ir5zZ3Jvg\":{\"layout\":[\"fixed\",\"fixed\"]},\"GWkSCzkIP\":{\"layout\":[\"fixed\",\"fixed\"]},\"f2QYPpy9u\":{\"layout\":[\"fixed\",\"fixed\"]},\"OK5wEketO\":{\"layout\":[\"fixed\",\"fixed\"]},\"wib39RjoS\":{\"layout\":[\"fixed\",\"fixed\"]},\"Xuf4vM_Uj\":{\"layout\":[\"fixed\",\"fixed\"]},\"XlhKAP8ux\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZbuhRz0iU\":{\"layout\":[\"fixed\",\"fixed\"]},\"wAtgRXJqB\":{\"layout\":[\"fixed\",\"fixed\"]},\"R6o0mtuBj\":{\"layout\":[\"fixed\",\"fixed\"]},\"akPHHey1v\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ip0Mi_17p\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJCUTktxxM=withCSS(Component,css,\"framer-lSNzE\");export default FramerJCUTktxxM;FramerJCUTktxxM.displayName=\"Content bento box 4\";FramerJCUTktxxM.defaultProps={height:327,width:787};addPropertyControls(FramerJCUTktxxM,{variant:{options:[\"hZuHdgEX2\",\"ZZdG5fHTg\",\"ir5zZ3Jvg\",\"GWkSCzkIP\",\"f2QYPpy9u\",\"OK5wEketO\",\"wib39RjoS\",\"Xuf4vM_Uj\",\"XlhKAP8ux\",\"ZbuhRz0iU\",\"wAtgRXJqB\",\"R6o0mtuBj\",\"akPHHey1v\",\"Ip0Mi_17p\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\",\"Variant 8\",\"Variant 9\",\"Variant 10\",\"Variant 11\",\"Variant 12\",\"Variant 13\",\"Variant 14\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerJCUTktxxM,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJCUTktxxM\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"327\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZZdG5fHTg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ir5zZ3Jvg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GWkSCzkIP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"f2QYPpy9u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OK5wEketO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wib39RjoS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Xuf4vM_Uj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XlhKAP8ux\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZbuhRz0iU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wAtgRXJqB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"R6o0mtuBj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"akPHHey1v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ip0Mi_17p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"787\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JCUTktxxM.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";const MotionDivWithFX=withFX(motion.div);const VideoFonts=getFonts(Video);const cycleOrder=[\"ppIej4wMi\",\"yRembFGVX\",\"PhT_0dRIZ\",\"QJXWpD3jw\",\"iyTdNzvte\",\"Wu7PC6Ufn\",\"wOcwycSOR\",\"JUFrnyu_Z\",\"JsoUCx6Lx\",\"ucYNhNzGr\",\"YAGce65sb\",\"GgP7mqX2Q\",\"KvZnAPQaO\",\"XSE_VafQ9\",\"M5ycnzlRJ\",\"i1Xp8Vz_4\",\"tqZxo_99Y\",\"Df0imjbKi\",\"Abumdszi7\",\"sDqQv1_c5\",\"xAyyHWYoQ\",\"m3P0TTQMG\"];const serializationHash=\"framer-dfeNy\";const variantClassNames={Abumdszi7:\"framer-v-dmyr1a\",Df0imjbKi:\"framer-v-1q5l7\",GgP7mqX2Q:\"framer-v-1ninq6h\",i1Xp8Vz_4:\"framer-v-14almcf\",iyTdNzvte:\"framer-v-1tsm5sx\",JsoUCx6Lx:\"framer-v-1igmauq\",JUFrnyu_Z:\"framer-v-14hg0m4\",KvZnAPQaO:\"framer-v-1uya5j0\",m3P0TTQMG:\"framer-v-14qlj3r\",M5ycnzlRJ:\"framer-v-dnwj9n\",PhT_0dRIZ:\"framer-v-18ukgk2\",ppIej4wMi:\"framer-v-1g05nkr\",QJXWpD3jw:\"framer-v-1md05nk\",sDqQv1_c5:\"framer-v-dlj7dz\",tqZxo_99Y:\"framer-v-vufezy\",ucYNhNzGr:\"framer-v-5sseuv\",wOcwycSOR:\"framer-v-seqm9l\",Wu7PC6Ufn:\"framer-v-1akwfot\",xAyyHWYoQ:\"framer-v-eukgfi\",XSE_VafQ9:\"framer-v-6r73ti\",YAGce65sb:\"framer-v-1wm6633\",yRembFGVX:\"framer-v-pewxls\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:50};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition1,x:0,y:50};const transition2={delay:0,duration:3,ease:[0,0,1,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:6};const transition3={delay:1.2,duration:3,ease:[0,0,1,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-6};const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Robo 2\":\"xAyyHWYoQ\",\"Variant 1\":\"ppIej4wMi\",\"Variant 10\":\"ucYNhNzGr\",\"Variant 11\":\"YAGce65sb\",\"Variant 12\":\"GgP7mqX2Q\",\"Variant 13\":\"KvZnAPQaO\",\"Variant 14\":\"XSE_VafQ9\",\"Variant 15\":\"M5ycnzlRJ\",\"Variant 16\":\"i1Xp8Vz_4\",\"Variant 2\":\"yRembFGVX\",\"Variant 20\":\"sDqQv1_c5\",\"Variant 22\":\"m3P0TTQMG\",\"Variant 3\":\"PhT_0dRIZ\",\"Variant 4\":\"QJXWpD3jw\",\"Variant 5\":\"iyTdNzvte\",\"Variant 6\":\"Wu7PC6Ufn\",\"Variant 7\":\"wOcwycSOR\",\"Variant 8\":\"JUFrnyu_Z\",\"Variant 9\":\"JsoUCx6Lx\",Robo:\"Df0imjbKi\",Self:\"tqZxo_99Y\",ST:\"Abumdszi7\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ppIej4wMi\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ppIej4wMi\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"yRembFGVX\",\"PhT_0dRIZ\",\"QJXWpD3jw\",\"Wu7PC6Ufn\",\"JsoUCx6Lx\",\"ucYNhNzGr\",\"KvZnAPQaO\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"QJXWpD3jw\",\"Wu7PC6Ufn\",\"JsoUCx6Lx\",\"ucYNhNzGr\",\"KvZnAPQaO\",\"Df0imjbKi\",\"Abumdszi7\",\"sDqQv1_c5\",\"xAyyHWYoQ\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"yRembFGVX\",\"PhT_0dRIZ\",\"QJXWpD3jw\",\"Wu7PC6Ufn\",\"JsoUCx6Lx\",\"ucYNhNzGr\",\"KvZnAPQaO\",\"M5ycnzlRJ\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"yRembFGVX\",\"PhT_0dRIZ\",\"QJXWpD3jw\",\"iyTdNzvte\",\"Wu7PC6Ufn\",\"wOcwycSOR\",\"JUFrnyu_Z\",\"JsoUCx6Lx\",\"ucYNhNzGr\",\"YAGce65sb\",\"GgP7mqX2Q\",\"KvZnAPQaO\",\"XSE_VafQ9\",\"M5ycnzlRJ\",\"i1Xp8Vz_4\",\"tqZxo_99Y\",\"Df0imjbKi\",\"Abumdszi7\",\"sDqQv1_c5\",\"xAyyHWYoQ\",\"m3P0TTQMG\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if([\"yRembFGVX\",\"PhT_0dRIZ\",\"QJXWpD3jw\"].includes(baseVariant))return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"QJXWpD3jw\")return false;return true;};const isDisplayed6=()=>{if(baseVariant===\"PhT_0dRIZ\")return false;return true;};const isDisplayed7=()=>{if(baseVariant===\"yRembFGVX\")return false;return true;};const isDisplayed8=()=>{if(baseVariant===\"QJXWpD3jw\")return true;return false;};const isDisplayed9=()=>{if(baseVariant===\"iyTdNzvte\")return true;return false;};const isDisplayed10=()=>{if([\"Wu7PC6Ufn\",\"JsoUCx6Lx\",\"ucYNhNzGr\",\"KvZnAPQaO\"].includes(baseVariant))return true;return false;};const isDisplayed11=()=>{if([\"Wu7PC6Ufn\",\"ucYNhNzGr\",\"KvZnAPQaO\"].includes(baseVariant))return false;return true;};const isDisplayed12=()=>{if([\"JsoUCx6Lx\",\"ucYNhNzGr\",\"KvZnAPQaO\"].includes(baseVariant))return false;return true;};const isDisplayed13=()=>{if(baseVariant===\"wOcwycSOR\")return true;return false;};const isDisplayed14=()=>{if(baseVariant===\"JUFrnyu_Z\")return true;return false;};const isDisplayed15=()=>{if(baseVariant===\"ucYNhNzGr\")return true;return false;};const isDisplayed16=()=>{if(baseVariant===\"YAGce65sb\")return true;return false;};const isDisplayed17=()=>{if(baseVariant===\"GgP7mqX2Q\")return true;return false;};const isDisplayed18=()=>{if(baseVariant===\"KvZnAPQaO\")return true;return false;};const isDisplayed19=()=>{if(baseVariant===\"XSE_VafQ9\")return true;return false;};const isDisplayed20=()=>{if(baseVariant===\"M5ycnzlRJ\")return true;return false;};const isDisplayed21=()=>{if(baseVariant===\"Df0imjbKi\")return true;return false;};const isDisplayed22=()=>{if(baseVariant===\"tqZxo_99Y\")return true;return false;};const isDisplayed23=()=>{if(baseVariant===\"i1Xp8Vz_4\")return true;return false;};const isDisplayed24=()=>{if(baseVariant===\"Abumdszi7\")return true;return false;};const isDisplayed25=()=>{if(baseVariant===\"sDqQv1_c5\")return true;return false;};const isDisplayed26=()=>{if(baseVariant===\"xAyyHWYoQ\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1g05nkr\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ppIej4wMi\",ref:refBinding,style:{...style},...addPropertyOverrides({Abumdszi7:{\"data-framer-name\":\"ST\"},Df0imjbKi:{\"data-framer-name\":\"Robo\"},GgP7mqX2Q:{\"data-framer-name\":\"Variant 12\"},i1Xp8Vz_4:{\"data-framer-name\":\"Variant 16\"},iyTdNzvte:{\"data-framer-name\":\"Variant 5\"},JsoUCx6Lx:{\"data-framer-name\":\"Variant 9\"},JUFrnyu_Z:{\"data-framer-name\":\"Variant 8\"},KvZnAPQaO:{\"data-framer-name\":\"Variant 13\"},m3P0TTQMG:{\"data-framer-name\":\"Variant 22\"},M5ycnzlRJ:{\"data-framer-name\":\"Variant 15\"},PhT_0dRIZ:{\"data-framer-name\":\"Variant 3\"},QJXWpD3jw:{\"data-framer-name\":\"Variant 4\"},sDqQv1_c5:{\"data-framer-name\":\"Variant 20\"},tqZxo_99Y:{\"data-framer-name\":\"Self\"},ucYNhNzGr:{\"data-framer-name\":\"Variant 10\"},wOcwycSOR:{\"data-framer-name\":\"Variant 7\"},Wu7PC6Ufn:{\"data-framer-name\":\"Variant 6\"},xAyyHWYoQ:{\"data-framer-name\":\"Robo 2\"},XSE_VafQ9:{\"data-framer-name\":\"Variant 14\"},YAGce65sb:{\"data-framer-name\":\"Variant 11\"},yRembFGVX:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1plm3ao\",\"data-framer-name\":\"Symbol only\",layoutDependency:layoutDependency,layoutId:\"yyfUnHKiP\",style:{opacity:.03,rotate:-1},transformTemplate:transformTemplate1,...addPropertyOverrides({Abumdszi7:{transformTemplate:undefined},Df0imjbKi:{transformTemplate:undefined},sDqQv1_c5:{transformTemplate:undefined},xAyyHWYoQ:{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15focgq\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"vNbXmRadh\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 705 706\"><path d=\"M 8.172 393.645 L 6.777 329.133 L 313.352 9.004 L 376.598 7.636 L 696.726 314.211 L 698.122 378.724 L 392.786 697.558 L 327.007 698.981 Z\" fill=\"rgb(31,82,222)\"></path></svg>',svgContentId:12875489159,withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nt7su1\",\"data-framer-name\":\"Symbol only\",layoutDependency:layoutDependency,layoutId:\"sDyvqcFjX\",style:{opacity:.3,rotate:-1},transformTemplate:transformTemplate1,...addPropertyOverrides({Abumdszi7:{transformTemplate:undefined},Df0imjbKi:{transformTemplate:undefined},sDqQv1_c5:{transformTemplate:undefined},xAyyHWYoQ:{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1srfota\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:706,intrinsicWidth:706,layoutDependency:layoutDependency,layoutId:\"EaKIXxnTB\",style:{rotate:1},svg:'<svg width=\"706\" height=\"706\" viewBox=\"0 0 706 706\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.72944 393.715L7.3342 329.202L313.909 9.07327L377.155 7.70543L697.284 314.28L698.679 378.793L393.344 697.627L327.564 699.05L8.72944 393.715Z\" fill=\"#1F52DE\" fill-opacity=\"0.1\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-19z4005\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"ApUyjYfM1\",style:{background:\"linear-gradient(180deg, rgba(237, 241, 253, 1) 0%, rgba(237, 241, 253, 0) 100%)\",rotate:180}}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-rwb8q1\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"m_DEtiTb0\",style:{background:\"linear-gradient(180deg, rgba(237, 241, 253, 1) 0%, rgba(237, 241, 253, 0) 100%)\"}}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-4cg1tr\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:300,intrinsicWidth:358,layoutDependency:layoutDependency,layoutId:\"Q9Z3bLUY0\",style:{opacity:.12},svg:'<svg width=\"358\" height=\"300\" viewBox=\"0 0 358 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g style=\"mix-blend-mode:overlay\" filter=\"url(#filter0_f_184_6803)\">\\n<path d=\"M141.047 246.939C219.038 275.323 307.457 241.294 323.603 196.929C339.749 152.564 316.452 89.7718 238.461 61.3882C199.812 47.3228 134.922 21.8289 80.964 27.211C26.0365 32.6897 59.2984 141.219 51.1536 163.6C35.0077 207.965 63.0554 218.556 141.047 246.939Z\" fill=\"#0259FE\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_184_6803\" x=\"-19.9772\" y=\"-40.2646\" width=\"415.155\" height=\"364.347\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"33.3705\" result=\"effect1_foregroundBlur_184_6803\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1rt605l\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:204,intrinsicWidth:265,layoutDependency:layoutDependency,layoutId:\"NyDciJsLu\",style:{opacity:.15},svg:'<svg width=\"265\" height=\"204\" viewBox=\"0 0 265 204\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_f_184_6804)\">\\n<path d=\"M107.953 162.535C167.78 184.308 232.716 166.147 242.908 138.142C253.1 110.136 232.858 68.4847 173.03 46.7117C143.383 35.9221 93.5236 16.591 53.2247 17.7181C12.2018 18.8654 41.9269 90.5507 36.7855 104.678C26.5936 132.683 48.1257 140.762 107.953 162.535Z\" fill=\"#A1CEFF\" fill-opacity=\"0.22\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_184_6804\" x=\"-35.5917\" y=\"-49.0702\" width=\"347.759\" height=\"287.978\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"33.3705\" result=\"effect1_foregroundBlur_184_6804\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1lxwgiv\",\"data-border\":true,\"data-framer-name\":\"visuals/illustration/self/orders/learn-to-protect-2\",layoutDependency:layoutDependency,layoutId:\"UuIhfZGuA\",style:{\"--border-bottom-width\":\"1.1094410419464111px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1.1094410419464111px\",\"--border-right-width\":\"1.1094410419464111px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.1094410419464111px\",backdropFilter:\"blur(6.374243259429932px)\",backgroundColor:\"rgba(255, 255, 255, 0.4)\",borderBottomLeftRadius:6.05,borderBottomRightRadius:6.05,borderTopLeftRadius:6.05,borderTopRightRadius:6.05,WebkitBackdropFilter:\"blur(6.374243259429932px)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13gkh1u\",\"data-framer-name\":\"Core/Card/Instrument\",layoutDependency:layoutDependency,layoutId:\"QB0KxE8U7\",style:{borderBottomLeftRadius:2.86,borderBottomRightRadius:2.86,borderTopLeftRadius:2.86,borderTopRightRadius:2.86},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pubshy\",\"data-framer-name\":\"Company Logo\",layoutDependency:layoutDependency,layoutId:\"bqOiMZBLS\",style:{borderBottomLeftRadius:19.08,borderBottomRightRadius:19.08,borderTopLeftRadius:19.08,borderTopRightRadius:19.08},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+82+-1+(12+((componentViewport?.height||309)-236- -1-24-38.1552)/2)+0),pixelHeight:42,pixelWidth:41,src:\"https://framerusercontent.com/images/QKo7fNOmucmcbR9v7zMmJO75oo.png\"},className:\"framer-yh4gpf\",\"data-framer-name\":\"Company\",layoutDependency:layoutDependency,layoutId:\"kpn41k1iK\",style:{borderBottomLeftRadius:19.08,borderBottomRightRadius:19.08,borderTopLeftRadius:19.08,borderTopRightRadius:19.08}})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-119z9g3\",\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"H7gxQ3Wy2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXZlbmlyLTgwMA==\",\"--framer-font-family\":'\"Avenir\", \"Avenir Placeholder\", sans-serif',\"--framer-font-size\":\"14.31px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"19.08px\"},children:\"S&P 500 ETF\"})}),className:\"framer-zuu6rt\",\"data-framer-name\":\"Name\",fonts:[\"GF;Avenir-800\"],layoutDependency:layoutDependency,layoutId:\"c5MFwcl_7\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xzsxp8\",\"data-framer-name\":\"Ticker + Technology\",layoutDependency:layoutDependency,layoutId:\"Nt3g90Eqo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgUHJvLTYwMA==\",\"--framer-font-family\":'\"Source Sans Pro\", \"Source Sans Pro Placeholder\", sans-serif',\"--framer-font-size\":\"10.49px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"11.45px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(146, 146, 146))\",\"--framer-text-transform\":\"uppercase\"},children:\"Broad Market\"})}),className:\"framer-1slyrwe\",\"data-framer-name\":\"Ticker or Shares\",fonts:[\"GF;Source Sans Pro-600\"],layoutDependency:layoutDependency,layoutId:\"OpzRnrjes\",style:{\"--extracted-r6o4lv\":\"rgb(146, 146, 146)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgUHJvLTYwMA==\",\"--framer-font-family\":'\"Source Sans Pro\", \"Source Sans Pro Placeholder\", sans-serif',\"--framer-font-size\":\"10.49px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"11.45px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(146, 146, 146))\",\"--framer-text-transform\":\"uppercase\"},children:\"|\"})}),className:\"framer-1w8r3o\",\"data-framer-name\":\"divider\",fonts:[\"GF;Source Sans Pro-600\"],layoutDependency:layoutDependency,layoutId:\"bulW9kaDr\",style:{\"--extracted-r6o4lv\":\"rgb(146, 146, 146)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o7xaaj\",\"data-framer-name\":\"Frame 1000001339\",layoutDependency:layoutDependency,layoutId:\"TBtz8isiL\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12nmn19\",\"data-framer-name\":\"\uD83D\uDEE0/Market\",layoutDependency:layoutDependency,layoutId:\"P0oji_Clt\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1y60gif\",\"data-framer-name\":\"Multi market\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,layoutDependency:layoutDependency,layoutId:\"kL81kRpsx\",svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.85744 16.4617C10.2704 14.6155 11.8267 11.706 11.8267 8.43309C11.8267 5.16015 10.2704 2.25071 7.85742 0.404432C8.16516 0.368867 8.47816 0.350586 8.79543 0.350586C13.2593 0.350586 16.8779 3.96924 16.8779 8.43308C16.8779 12.8969 13.2593 16.5156 8.79543 16.5156C8.47817 16.5156 8.16517 16.4973 7.85744 16.4617Z\" fill=\"#C3E0FF\"/>\\n<path d=\"M0.78528 16.4617C3.1982 14.6154 4.75449 11.706 4.75449 8.43308C4.75449 5.16017 3.1982 2.25074 0.785278 0.404462C1.0931 0.368877 1.40619 0.350586 1.72355 0.350586C6.18739 0.350586 9.80605 3.96924 9.80605 8.43308C9.80605 12.8969 6.18739 16.5156 1.72355 16.5156C1.40619 16.5156 1.0931 16.4973 0.78528 16.4617Z\" fill=\"#C3E0FF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ef5y15\",\"data-framer-name\":\"Market 1\",layoutDependency:layoutDependency,layoutId:\"Z4nPGCMZA\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hvy310\",\"data-framer-name\":\"Country Flag\",layoutDependency:layoutDependency,layoutId:\"zugE3Dg5I\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ln4vvo\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,layoutDependency:layoutDependency,layoutId:\"foXE8S2rU\",svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.65135 16.5156C13.1152 16.5156 16.7338 12.8969 16.7338 8.43308C16.7338 3.96924 13.1152 0.350586 8.65135 0.350586C4.18751 0.350586 0.568848 3.96924 0.568848 8.43308C0.568848 12.8969 4.18751 16.5156 8.65135 16.5156Z\" fill=\"#F0F0F0\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18uvecq\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,layoutDependency:layoutDependency,layoutId:\"AerzfypIE\",svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.23954 3.51172C1.60465 4.33774 1.12592 5.28981 0.847168 6.32408H5.0519L2.23954 3.51172Z\" fill=\"#0052B4\"/>\\n<path d=\"M16.4555 6.32454C16.1768 5.2903 15.698 4.33823 15.0632 3.51221L12.2509 6.32454H16.4555Z\" fill=\"#0052B4\"/>\\n<path d=\"M0.847168 10.5415C1.12595 11.5757 1.60468 12.5278 2.23954 13.3538L5.0518 10.5415H0.847168Z\" fill=\"#0052B4\"/>\\n<path d=\"M13.5721 2.02131C12.7461 1.38642 11.794 0.907689 10.7598 0.628906V4.83361L13.5721 2.02131Z\" fill=\"#0052B4\"/>\\n<path d=\"M3.73035 14.8445C4.55637 15.4794 5.50843 15.9581 6.54268 16.2369V12.0322L3.73035 14.8445Z\" fill=\"#0052B4\"/>\\n<path d=\"M6.54265 0.628906C5.5084 0.907689 4.55634 1.38642 3.73035 2.02127L6.54265 4.83357V0.628906Z\" fill=\"#0052B4\"/>\\n<path d=\"M10.7598 16.2369C11.794 15.9581 12.7461 15.4794 13.5721 14.8445L10.7598 12.0322V16.2369Z\" fill=\"#0052B4\"/>\\n<path d=\"M12.2509 10.5415L15.0632 13.3538C15.698 12.5278 16.1768 11.5757 16.4555 10.5415H12.2509Z\" fill=\"#0052B4\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1v60p1g\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,layoutDependency:layoutDependency,layoutId:\"ljYpvK7AE\",svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M16.6654 7.37885H9.70564H9.70561V0.419003C9.36049 0.374076 9.00865 0.350586 8.65135 0.350586C8.29398 0.350586 7.9422 0.374076 7.59712 0.419003V7.37879V7.37882H0.637265C0.592337 7.72394 0.568848 8.07578 0.568848 8.43308C0.568848 8.79045 0.592337 9.14223 0.637265 9.48731H7.59705H7.59709V16.4472C7.9422 16.4921 8.29398 16.5156 8.65135 16.5156C9.00865 16.5156 9.36049 16.4921 9.70558 16.4472V9.48738V9.48735H16.6654C16.7104 9.14223 16.7338 8.79045 16.7338 8.43308C16.7338 8.07578 16.7104 7.72394 16.6654 7.37885V7.37885Z\" fill=\"#D80027\"/>\\n<path d=\"M10.7598 10.5415L14.3665 14.1482C14.5323 13.9824 14.6906 13.809 14.8416 13.6293L11.7537 10.5415H10.7598V10.5415Z\" fill=\"#D80027\"/>\\n<path d=\"M6.54263 10.5415H6.54257L2.93591 14.1482C3.10173 14.314 3.27509 14.4723 3.4548 14.6233L6.54263 11.5354V10.5415Z\" fill=\"#D80027\"/>\\n<path d=\"M6.54297 6.32407V6.32401L2.93628 2.71729C2.7704 2.8831 2.61216 3.05647 2.46118 3.23618L5.54904 6.32404H6.54297V6.32407Z\" fill=\"#D80027\"/>\\n<path d=\"M10.7598 6.32498L14.3665 2.71823C14.2007 2.55235 14.0273 2.39411 13.8476 2.24316L10.7598 5.33103V6.32498Z\" fill=\"#D80027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10diu4y\",\"data-border\":true,\"data-framer-name\":\"Border\",layoutDependency:layoutDependency,layoutId:\"L7RtprAhz\",style:{\"--border-bottom-width\":\"2.0206246376037598px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"2.0206246376037598px\",\"--border-right-width\":\"2.0206246376037598px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2.0206246376037598px\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})]})]})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7f7yfj\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"gE4ZpCuVV\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ceso21\",\"data-framer-name\":\"Amount\",layoutDependency:layoutDependency,layoutId:\"f0NMEvGiB\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXZlbmlyLTgwMA==\",\"--framer-font-family\":'\"Avenir\", \"Avenir Placeholder\", sans-serif',\"--framer-font-size\":\"14.31px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"19.08px\"},children:\"110\"})}),className:\"framer-u4a5b2\",\"data-framer-name\":\"Amount\",fonts:[\"GF;Avenir-800\"],layoutDependency:layoutDependency,layoutId:\"kHw2wk1sq\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jdkpw3\",\"data-framer-name\":\"Decimals & currency\",layoutDependency:layoutDependency,layoutId:\"ruIJwl29p\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-h39jg6\",\"data-framer-name\":\"\uD83D\uDEE0/Superscript\",layoutDependency:layoutDependency,layoutId:\"rzJn5yf9O\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgUHJvLTYwMA==\",\"--framer-font-family\":'\"Source Sans Pro\", \"Source Sans Pro Placeholder\", sans-serif',\"--framer-font-size\":\"11.45px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"15.26px\"},children:\".14 USD\"})}),className:\"framer-1h1k2q9\",\"data-framer-name\":\"Decimals\",fonts:[\"GF;Source Sans Pro-600\"],layoutDependency:layoutDependency,layoutId:\"OJLDApoY9\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1awgna6\",\"data-framer-name\":\"Icon market + percentage\",layoutDependency:layoutDependency,layoutId:\"AtueRt6E6\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yf9zv7\",\"data-framer-name\":\"Percentage\",layoutDependency:layoutDependency,layoutId:\"QIS5QUnld\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-jezux6\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"F3PYzug5N\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-5n4uzq\",\"data-framer-name\":\"Icons/Triangle\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"J2NaNXA47\",svg:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.93414 5.01352C7.30775 4.41576 8.17832 4.41575 8.55192 5.01352L11.6003 9.89091C11.9974 10.5262 11.5406 11.3503 10.7914 11.3503H4.69467C3.94546 11.3503 3.4887 10.5262 3.88578 9.8909L6.93414 5.01352Z\" fill=\"#459B01\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ovtjxb\",\"data-framer-name\":\"Value\",layoutDependency:layoutDependency,layoutId:\"RSs27JmSH\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Source Sans Pro\", \"Source Sans Pro Placeholder\", sans-serif',\"--framer-font-size\":\"14.31px\",\"--framer-line-height\":\"22.89px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(69, 155, 1))\"},children:\"1\"})}),className:\"framer-qtdc5s\",\"data-framer-name\":\"Amount\",fonts:[\"GF;Source Sans Pro-regular\"],layoutDependency:layoutDependency,layoutId:\"hyaj80qiS\",style:{\"--extracted-r6o4lv\":\"rgb(69, 155, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q6hung\",\"data-framer-name\":\"Decimals & currency\",layoutDependency:layoutDependency,layoutId:\"Km98la4r8\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7dr9ac\",\"data-framer-name\":\"\uD83D\uDEE0/Superscript\",layoutDependency:layoutDependency,layoutId:\"XaAjmwwzU\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Source Sans Pro\", \"Source Sans Pro Placeholder\", sans-serif',\"--framer-font-size\":\"11.45px\",\"--framer-line-height\":\"15.26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(69, 155, 1))\"},children:\".27 %\"})}),className:\"framer-1ixegfu\",\"data-framer-name\":\"Decimals\",fonts:[\"GF;Source Sans Pro-regular\"],layoutDependency:layoutDependency,layoutId:\"n9IKtRcJN\",style:{\"--extracted-r6o4lv\":\"rgb(69, 155, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]})})]})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1yp7id5\",\"data-border\":true,\"data-framer-name\":\"visuals/illustration/self/orders/learn-to-protect-2\",layoutDependency:layoutDependency,layoutId:\"TTqZRqzRE\",style:{\"--border-bottom-width\":\"0.8804139494895935px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.8804139494895935px\",\"--border-right-width\":\"0.8804139494895935px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.8804139494895935px\",backdropFilter:\"blur(5.05837869644165px)\",backgroundColor:\"rgba(255, 255, 255, 0.4)\",borderBottomLeftRadius:4.8,borderBottomRightRadius:4.8,borderTopLeftRadius:4.8,borderTopRightRadius:4.8,WebkitBackdropFilter:\"blur(5.05837869644165px)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iwsn8v\",\"data-framer-name\":\"Core/Card/Instrument\",layoutDependency:layoutDependency,layoutId:\"URnPxyiWa\",style:{borderBottomLeftRadius:2.27,borderBottomRightRadius:2.27,borderTopLeftRadius:2.27,borderTopRightRadius:2.27},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-84b51m\",\"data-framer-name\":\"Company Logo\",layoutDependency:layoutDependency,layoutId:\"Jm9xCnSmt\",style:{borderBottomLeftRadius:15.14,borderBottomRightRadius:15.14,borderTopLeftRadius:15.14,borderTopRightRadius:15.14},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||309)-131+58-53.5015+12.1115+0),pixelHeight:96,pixelWidth:95,src:\"https://framerusercontent.com/images/VUsCg4r3kqww6Hlw6WciFKoc.png\"},className:\"framer-1i6l2nt\",\"data-framer-name\":\"Company\",layoutDependency:layoutDependency,layoutId:\"mMckin3bt\",style:{borderBottomLeftRadius:15.14,borderBottomRightRadius:15.14,borderTopLeftRadius:15.14,borderTopRightRadius:15.14}})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n8gsu8\",\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"eF9a5tVXQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXZlbmlyLTgwMA==\",\"--framer-font-family\":'\"Avenir\", \"Avenir Placeholder\", sans-serif',\"--framer-font-size\":\"11.35px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"15.14px\"},children:\"S&P Global ETF\"})}),className:\"framer-108xg98\",\"data-framer-name\":\"Name\",fonts:[\"GF;Avenir-800\"],layoutDependency:layoutDependency,layoutId:\"urGklgfVY\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tjcpf\",\"data-framer-name\":\"Ticker + Technology\",layoutDependency:layoutDependency,layoutId:\"r_C8kxARd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgUHJvLTYwMA==\",\"--framer-font-family\":'\"Source Sans Pro\", \"Source Sans Pro Placeholder\", sans-serif',\"--framer-font-size\":\"8.33px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"9.08px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(146, 146, 146))\",\"--framer-text-transform\":\"uppercase\"},children:\"Broad Market \"})}),className:\"framer-8k84yh\",\"data-framer-name\":\"Ticker or Shares\",fonts:[\"GF;Source Sans Pro-600\"],layoutDependency:layoutDependency,layoutId:\"M7gceEZDc\",style:{\"--extracted-r6o4lv\":\"rgb(146, 146, 146)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgUHJvLTYwMA==\",\"--framer-font-family\":'\"Source Sans Pro\", \"Source Sans Pro Placeholder\", sans-serif',\"--framer-font-size\":\"8.33px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"9.08px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(146, 146, 146))\",\"--framer-text-transform\":\"uppercase\"},children:\"|\"})}),className:\"framer-1aav2g6\",\"data-framer-name\":\"divider\",fonts:[\"GF;Source Sans Pro-600\"],layoutDependency:layoutDependency,layoutId:\"JRXeqMSOM\",style:{\"--extracted-r6o4lv\":\"rgb(146, 146, 146)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wn6hdh\",\"data-framer-name\":\"Frame 1000001339\",layoutDependency:layoutDependency,layoutId:\"ijsVsT5QW\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k861wf\",\"data-framer-name\":\"\uD83D\uDEE0/Market\",layoutDependency:layoutDependency,layoutId:\"FQ2LuV0CT\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-wdg7pa\",\"data-framer-name\":\"Multi market\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,layoutDependency:layoutDependency,layoutId:\"juBa6ujjJ\",svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.85744 16.4617C10.2704 14.6155 11.8267 11.706 11.8267 8.43309C11.8267 5.16015 10.2704 2.25071 7.85742 0.404432C8.16516 0.368867 8.47816 0.350586 8.79543 0.350586C13.2593 0.350586 16.8779 3.96924 16.8779 8.43308C16.8779 12.8969 13.2593 16.5156 8.79543 16.5156C8.47817 16.5156 8.16517 16.4973 7.85744 16.4617Z\" fill=\"#C3E0FF\"/>\\n<path d=\"M0.78528 16.4617C3.1982 14.6154 4.75449 11.706 4.75449 8.43308C4.75449 5.16017 3.1982 2.25074 0.785278 0.404462C1.0931 0.368877 1.40619 0.350586 1.72355 0.350586C6.18739 0.350586 9.80605 3.96924 9.80605 8.43308C9.80605 12.8969 6.18739 16.5156 1.72355 16.5156C1.40619 16.5156 1.0931 16.4973 0.78528 16.4617Z\" fill=\"#C3E0FF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vncjzu\",\"data-framer-name\":\"Market 1\",layoutDependency:layoutDependency,layoutId:\"Pdq3sQ00m\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r1penl\",\"data-framer-name\":\"Country Flag\",layoutDependency:layoutDependency,layoutId:\"R3xNKXUdv\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1u4dgzj\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,layoutDependency:layoutDependency,layoutId:\"I8:12757;245:196\",svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.65135 16.5156C13.1152 16.5156 16.7338 12.8969 16.7338 8.43308C16.7338 3.96924 13.1152 0.350586 8.65135 0.350586C4.18751 0.350586 0.568848 3.96924 0.568848 8.43308C0.568848 12.8969 4.18751 16.5156 8.65135 16.5156Z\" fill=\"#F0F0F0\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-c2ifn\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,layoutDependency:layoutDependency,layoutId:\"I8:12757;245:197\",svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.23954 3.51172C1.60465 4.33774 1.12592 5.28981 0.847168 6.32408H5.0519L2.23954 3.51172Z\" fill=\"#0052B4\"/>\\n<path d=\"M16.4555 6.32454C16.1768 5.2903 15.698 4.33823 15.0632 3.51221L12.2509 6.32454H16.4555Z\" fill=\"#0052B4\"/>\\n<path d=\"M0.847168 10.5415C1.12595 11.5757 1.60468 12.5278 2.23954 13.3538L5.0518 10.5415H0.847168Z\" fill=\"#0052B4\"/>\\n<path d=\"M13.5721 2.02131C12.7461 1.38642 11.794 0.907689 10.7598 0.628906V4.83361L13.5721 2.02131Z\" fill=\"#0052B4\"/>\\n<path d=\"M3.73035 14.8445C4.55637 15.4794 5.50843 15.9581 6.54268 16.2369V12.0322L3.73035 14.8445Z\" fill=\"#0052B4\"/>\\n<path d=\"M6.54265 0.628906C5.5084 0.907689 4.55634 1.38642 3.73035 2.02127L6.54265 4.83357V0.628906Z\" fill=\"#0052B4\"/>\\n<path d=\"M10.7598 16.2369C11.794 15.9581 12.7461 15.4794 13.5721 14.8445L10.7598 12.0322V16.2369Z\" fill=\"#0052B4\"/>\\n<path d=\"M12.2509 10.5415L15.0632 13.3538C15.698 12.5278 16.1768 11.5757 16.4555 10.5415H12.2509Z\" fill=\"#0052B4\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1nxzi90\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,layoutDependency:layoutDependency,layoutId:\"I8:12757;245:206\",svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M16.6654 7.37885H9.70564H9.70561V0.419003C9.36049 0.374076 9.00865 0.350586 8.65135 0.350586C8.29398 0.350586 7.9422 0.374076 7.59712 0.419003V7.37879V7.37882H0.637265C0.592337 7.72394 0.568848 8.07578 0.568848 8.43308C0.568848 8.79045 0.592337 9.14223 0.637265 9.48731H7.59705H7.59709V16.4472C7.9422 16.4921 8.29398 16.5156 8.65135 16.5156C9.00865 16.5156 9.36049 16.4921 9.70558 16.4472V9.48738V9.48735H16.6654C16.7104 9.14223 16.7338 8.79045 16.7338 8.43308C16.7338 8.07578 16.7104 7.72394 16.6654 7.37885V7.37885Z\" fill=\"#D80027\"/>\\n<path d=\"M10.7598 10.5415L14.3665 14.1482C14.5323 13.9824 14.6906 13.809 14.8416 13.6293L11.7537 10.5415H10.7598V10.5415Z\" fill=\"#D80027\"/>\\n<path d=\"M6.54263 10.5415H6.54257L2.93591 14.1482C3.10173 14.314 3.27509 14.4723 3.4548 14.6233L6.54263 11.5354V10.5415Z\" fill=\"#D80027\"/>\\n<path d=\"M6.54297 6.32407V6.32401L2.93628 2.71729C2.7704 2.8831 2.61216 3.05647 2.46118 3.23618L5.54904 6.32404H6.54297V6.32407Z\" fill=\"#D80027\"/>\\n<path d=\"M10.7598 6.32498L14.3665 2.71823C14.2007 2.55235 14.0273 2.39411 13.8476 2.24316L10.7598 5.33103V6.32498Z\" fill=\"#D80027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19s0wtr\",\"data-border\":true,\"data-framer-name\":\"Border\",layoutDependency:layoutDependency,layoutId:\"kXRDHiFW6\",style:{\"--border-bottom-width\":\"2.0206246376037598px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"2.0206246376037598px\",\"--border-right-width\":\"2.0206246376037598px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2.0206246376037598px\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})]})]})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x2mlrl\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"r7i5x7OpJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t56yto\",\"data-framer-name\":\"Amount\",layoutDependency:layoutDependency,layoutId:\"AUP7_ttcr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXZlbmlyLTgwMA==\",\"--framer-font-family\":'\"Avenir\", \"Avenir Placeholder\", sans-serif',\"--framer-font-size\":\"11.35px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"15.14px\"},children:\"501\"})}),className:\"framer-40hq4e\",\"data-framer-name\":\"Amount\",fonts:[\"GF;Avenir-800\"],layoutDependency:layoutDependency,layoutId:\"rhYb8HAMd\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xxx12a\",\"data-framer-name\":\"Decimals & currency\",layoutDependency:layoutDependency,layoutId:\"cDHi1YFAD\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jquc0c\",\"data-framer-name\":\"\uD83D\uDEE0/Superscript\",layoutDependency:layoutDependency,layoutId:\"jy_7GWqnn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgUHJvLTYwMA==\",\"--framer-font-family\":'\"Source Sans Pro\", \"Source Sans Pro Placeholder\", sans-serif',\"--framer-font-size\":\"9.08px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"12.11px\"},children:\".14 USD\"})}),className:\"framer-1cwa2vk\",\"data-framer-name\":\"Decimals\",fonts:[\"GF;Source Sans Pro-600\"],layoutDependency:layoutDependency,layoutId:\"laO7_O6g5\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d4qe8u\",\"data-framer-name\":\"Icon market + percentage\",layoutDependency:layoutDependency,layoutId:\"odHoF5oEJ\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11ce633\",\"data-framer-name\":\"Percentage\",layoutDependency:layoutDependency,layoutId:\"e7I74zFG0\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pn047h\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"KYSY4U_Zy\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9niuhp\",\"data-framer-name\":\"Icons/Triangle\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:13,layoutDependency:layoutDependency,layoutId:\"s4SGFrLyj\",svg:'<svg width=\"13\" height=\"13\" viewBox=\"0 0 13 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.74717 3.91078C6.04365 3.43641 6.73451 3.43641 7.03098 3.91078L9.45006 7.7813C9.76517 8.28548 9.4027 8.93946 8.80816 8.93946H3.97C3.37546 8.93946 3.01299 8.28548 3.3281 7.7813L5.74717 3.91078Z\" fill=\"#459B01\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12km1pl\",\"data-framer-name\":\"Value\",layoutDependency:layoutDependency,layoutId:\"XI1xG8RNx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Source Sans Pro\", \"Source Sans Pro Placeholder\", sans-serif',\"--framer-font-size\":\"11.35px\",\"--framer-line-height\":\"18.17px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(69, 155, 1))\"},children:\"1\"})}),className:\"framer-19gn8u2\",\"data-framer-name\":\"Amount\",fonts:[\"GF;Source Sans Pro-regular\"],layoutDependency:layoutDependency,layoutId:\"gYMhtlTAs\",style:{\"--extracted-r6o4lv\":\"rgb(69, 155, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rffkio\",\"data-framer-name\":\"Decimals & currency\",layoutDependency:layoutDependency,layoutId:\"rfiPIG94D\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kaeexq\",\"data-framer-name\":\"\uD83D\uDEE0/Superscript\",layoutDependency:layoutDependency,layoutId:\"QTVzCHLMM\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Source Sans Pro\", \"Source Sans Pro Placeholder\", sans-serif',\"--framer-font-size\":\"9.08px\",\"--framer-line-height\":\"12.11px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(69, 155, 1))\"},children:\".27 %\"})}),className:\"framer-13wnjmb\",\"data-framer-name\":\"Decimals\",fonts:[\"GF;Source Sans Pro-regular\"],layoutDependency:layoutDependency,layoutId:\"sAE2e9l80\",style:{\"--extracted-r6o4lv\":\"rgb(69, 155, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]})})]})]})}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zzuqzd\",\"data-framer-name\":\"Frame 1000001344\",layoutDependency:layoutDependency,layoutId:\"vh3E9JW7d\",children:[isDisplayed5()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vvrsds\",\"data-framer-name\":\"Symbol only\",layoutDependency:layoutDependency,layoutId:\"OnyOW9Xbf\",style:{opacity:.03,rotate:-1},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15dhoxu\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:706,intrinsicWidth:705,layoutDependency:layoutDependency,layoutId:\"RrReGTelV\",style:{rotate:1},svg:'<svg width=\"705\" height=\"706\" viewBox=\"0 0 705 706\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.17231 393.645L6.77707 329.133L313.352 9.00412L376.598 7.63627L696.726 314.211L698.122 378.724L392.786 697.558L327.007 698.981L8.17231 393.645Z\" fill=\"#1F52DE\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed5()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-18mrfef\",\"data-framer-name\":\"Symbol only\",layoutDependency:layoutDependency,layoutId:\"lwWTU2u4u\",style:{opacity:.3,rotate:-1},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1srwra9\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:706,intrinsicWidth:706,layoutDependency:layoutDependency,layoutId:\"eM9lyWNSL\",style:{rotate:1},svg:'<svg width=\"706\" height=\"706\" viewBox=\"0 0 706 706\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.72944 393.715L7.3342 329.202L313.909 9.07327L377.155 7.70543L697.284 314.28L698.679 378.793L393.344 697.627L327.564 699.05L8.72944 393.715Z\" fill=\"#1F52DE\" fill-opacity=\"0.1\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-snk3v9\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:300,intrinsicWidth:358,layoutDependency:layoutDependency,layoutId:\"XQ1mWTHQ0\",style:{opacity:.12},svg:'<svg width=\"358\" height=\"300\" viewBox=\"0 0 358 300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g style=\"mix-blend-mode:overlay\" filter=\"url(#filter0_f_184_6803)\">\\n<path d=\"M141.047 246.939C219.038 275.323 307.457 241.294 323.603 196.929C339.749 152.564 316.452 89.7718 238.461 61.3882C199.812 47.3228 134.922 21.8289 80.964 27.211C26.0365 32.6897 59.2984 141.219 51.1536 163.6C35.0077 207.965 63.0554 218.556 141.047 246.939Z\" fill=\"#0259FE\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_184_6803\" x=\"-19.9772\" y=\"-40.2646\" width=\"415.155\" height=\"364.347\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"33.3705\" result=\"effect1_foregroundBlur_184_6803\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ptgndi\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:204,intrinsicWidth:265,layoutDependency:layoutDependency,layoutId:\"jJtaORDoq\",style:{opacity:.15},svg:'<svg width=\"265\" height=\"204\" viewBox=\"0 0 265 204\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_f_184_6804)\">\\n<path d=\"M107.953 162.535C167.78 184.308 232.716 166.147 242.908 138.142C253.1 110.136 232.858 68.4847 173.03 46.7117C143.383 35.9221 93.5236 16.591 53.2247 17.7181C12.2018 18.8654 41.9269 90.5507 36.7855 104.678C26.5936 132.683 48.1257 140.762 107.953 162.535Z\" fill=\"#A1CEFF\" fill-opacity=\"0.22\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_184_6804\" x=\"-35.5917\" y=\"-49.0702\" width=\"347.759\" height=\"287.978\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"33.3705\" result=\"effect1_foregroundBlur_184_6804\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-t9qr1o\",\"data-framer-name\":\"visuals/illustration/self/orders/learn-to-protect-2\",layoutDependency:layoutDependency,layoutId:\"Q8tvSxUO5\",style:{borderBottomLeftRadius:6.05,borderBottomRightRadius:6.05,borderTopLeftRadius:6.05,borderTopRightRadius:6.05},transformTemplate:transformTemplate1,children:[isDisplayed6()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-uj7o6c\",\"data-border\":true,\"data-framer-name\":\"Frame 6\",layoutDependency:layoutDependency,layoutId:\"gdyOWhCQp\",style:{\"--border-bottom-width\":\"4.872309684753418px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"4.872309684753418px\",\"--border-right-width\":\"4.872309684753418px\",\"--border-style\":\"solid\",\"--border-top-width\":\"4.872309684753418px\",backdropFilter:\"blur(307.9299621582031px)\",backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:292.34,borderBottomRightRadius:292.34,borderTopLeftRadius:292.34,borderTopRightRadius:292.34,WebkitBackdropFilter:\"blur(307.9299621582031px)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lwgmq2\",\"data-framer-name\":\"Logo Symbol only\",layoutDependency:layoutDependency,layoutId:\"lh5lXWoqi\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1oq7j26\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:33,intrinsicWidth:33,layoutDependency:layoutDependency,layoutId:\"liBKfLCCk\",svg:'<svg width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.2907 32.4945H19.1037L32.5287 19.0695V14.2566L19.1037 0.825195H14.2907L0.859375 14.2566V19.0695L14.2907 32.4945Z\" fill=\"#E7285D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gq1aix\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:33,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"fnJRUagKd\",svg:'<svg width=\"24\" height=\"33\" viewBox=\"0 0 24 33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.1189 32.4945H18.9254L23.1095 28.3169L13.8622 19.0695V14.2566L23.1095 5.00928L18.9254 0.825195H14.1189L0.6875 14.2566V19.0695L14.1189 32.4945Z\" fill=\"#0000FF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18cezwr\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:33,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"kMsDvd99C\",svg:'<svg width=\"23\" height=\"33\" viewBox=\"0 0 23 33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.48534 20.0962L12.8503 31.4677L13.8835 32.4944H15.3403H17.2333H18.6901L19.7233 31.4677L22.8741 28.3168L14.6536 20.0962L13.6268 19.0695V17.6128V15.7132V14.2565L14.6536 13.2297L22.8741 5.0092L19.7233 1.85829L18.6901 0.831543H17.2333H15.3403H13.8835L12.8503 1.85829L1.48534 13.2297L0.452148 14.2565V15.7132V17.6128V19.0695L1.48534 20.0962Z\" fill=\"#F7C0BD\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1w53ylq\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:33,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"PRtEaZlzY\",svg:'<svg width=\"23\" height=\"33\" viewBox=\"0 0 23 33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.49943 20.0962L12.8709 31.4677L13.8976 32.4944H15.3543H17.2539H18.7106L19.7373 31.4677L22.8882 28.3168L14.6741 20.0962L13.6409 19.0695V17.6128V15.7132V14.2565L14.6741 13.2297L22.8882 5.0092L19.7373 1.85829L18.7106 0.831543H17.2539H15.3543H13.8976L12.8709 1.85829L1.49943 13.2297L0.472656 14.2565V15.7132V17.6128V19.0695L1.49943 20.0962Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})}),isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-16yc363\",\"data-framer-name\":\"visuals/illustration/self/orders/learn-to-protect-2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:162,intrinsicWidth:163,layoutDependency:layoutDependency,layoutId:\"sOANduG3G\",svg:'<svg width=\"163\" height=\"162\" viewBox=\"-1 -1 163 162\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_b_8_13058)\">\\n<rect x=\"0.5\" width=\"160\" height=\"160\" rx=\"80\" fill=\"white\" fill-opacity=\"0.4\"/>\\n<rect x=\"-0.18786\" y=\"-0.68786\" width=\"161.376\" height=\"161.376\" rx=\"80.6879\" stroke=\"white\" stroke-width=\"1.37572\"/>\\n<rect x=\"4\" y=\"81\" width=\"1.99984\" height=\"8\" rx=\"0.999921\" transform=\"rotate(-90 4 81)\" fill=\"#A6B4C8\" fill-opacity=\"0.57\"/>\\n<rect x=\"157\" y=\"79\" width=\"1.99984\" height=\"8\" rx=\"0.999921\" transform=\"rotate(90 157 79)\" fill=\"#A6B4C8\" fill-opacity=\"0.57\"/>\\n<rect x=\"79.5\" y=\"3.5\" width=\"1.99984\" height=\"8\" rx=\"0.999921\" fill=\"#A6B4C8\" fill-opacity=\"0.57\"/>\\n<rect x=\"81.4998\" y=\"156.5\" width=\"1.99984\" height=\"8\" rx=\"0.999921\" transform=\"rotate(-180 81.4998 156.5)\" fill=\"#A6B4C8\" fill-opacity=\"0.57\"/>\\n<path d=\"M73.8496 60.5527L101.573 135.944\" stroke=\"#8299C6\" stroke-width=\"3\" stroke-linecap=\"round\"/>\\n<path d=\"M96.9996 91.9999L40.9997 50.9997\" stroke=\"#8299C6\" stroke-width=\"3\" stroke-linecap=\"round\"/>\\n<g filter=\"url(#filter1_d_8_13058)\">\\n<circle cx=\"80.5\" cy=\"80\" r=\"5\" fill=\"#646E82\"/>\\n</g>\\n<g filter=\"url(#filter2_d_8_13058)\">\\n<circle cx=\"80.5\" cy=\"80\" r=\"3\" fill=\"#E7285D\"/>\\n</g>\\n<g filter=\"url(#filter3_d_8_13058)\">\\n<path d=\"M122.315 31.4292L72.5084 89.2528\" stroke=\"#DF3D6B\" stroke-width=\"3\" stroke-linecap=\"round\"/>\\n</g>\\n<g filter=\"url(#filter4_d_8_13058)\">\\n<path d=\"M72.5084 89.2521L61.334 102.353\" stroke=\"url(#paint0_linear_8_13058)\" stroke-width=\"5\" stroke-linecap=\"round\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_b_8_13058\" x=\"-16.684\" y=\"-17.1838\" width=\"194.368\" height=\"194.368\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"7.90413\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_8_13058\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_backgroundBlur_8_13058\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_d_8_13058\" x=\"73.5\" y=\"73\" width=\"16\" height=\"16\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"1\" dy=\"1\"/>\\n<feGaussianBlur stdDeviation=\"1.5\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.286275 0 0 0 0 0.329412 0 0 0 0 0.419608 0 0 0 0.57 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_8_13058\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_8_13058\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter2_d_8_13058\" x=\"75.5\" y=\"75\" width=\"12\" height=\"12\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"1\" dy=\"1\"/>\\n<feGaussianBlur stdDeviation=\"1.5\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.286275 0 0 0 0 0.329412 0 0 0 0 0.419608 0 0 0 1 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_8_13058\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_8_13058\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter3_d_8_13058\" x=\"68.0137\" y=\"28.9238\" width=\"60.7963\" height=\"68.834\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"1\" dy=\"3\"/>\\n<feGaussianBlur stdDeviation=\"2\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.983333 0 0 0 0 0 0 0 0 0 0.475278 0 0 0 0.26 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_8_13058\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_8_13058\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter4_d_8_13058\" x=\"55.8427\" y=\"85.7432\" width=\"24.1571\" height=\"26.1182\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"1\" dy=\"3\"/>\\n<feGaussianBlur stdDeviation=\"2\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.983333 0 0 0 0 0.030867 0 0 0 0 0 0 0 0 0.35 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_8_13058\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_8_13058\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_8_13058\" x1=\"62.1631\" y1=\"101.979\" x2=\"48.2133\" y2=\"80.5363\" gradientUnits=\"userSpaceOnUse\">\\n<stop offset=\"0.130208\" stop-color=\"#FD1E5D\"/>\\n<stop offset=\"1\" stop-color=\"#FE5C8A\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]}),isDisplayed8()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/TxWHxB28Ts1nhU7c3USFLlgXY.png\",srcSet:\"https://framerusercontent.com/images/TxWHxB28Ts1nhU7c3USFLlgXY.png?scale-down-to=1024 990w,https://framerusercontent.com/images/TxWHxB28Ts1nhU7c3USFLlgXY.png 1196w\"},className:\"framer-1m7xhu8\",\"data-framer-name\":\"IVAR\",layoutDependency:layoutDependency,layoutId:\"NHYWnl1cZ\",...addPropertyOverrides({QJXWpD3jw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),positionX:\"center\",positionY:\"center\",sizes:\"299px\",src:\"https://framerusercontent.com/images/TxWHxB28Ts1nhU7c3USFLlgXY.png\",srcSet:\"https://framerusercontent.com/images/TxWHxB28Ts1nhU7c3USFLlgXY.png?scale-down-to=1024 990w,https://framerusercontent.com/images/TxWHxB28Ts1nhU7c3USFLlgXY.png 1196w\"}}},baseVariant,gestureVariant)}),isDisplayed9()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MIKk9RMVMtjHiHyUtqeUUK1sLw.png\",srcSet:\"https://framerusercontent.com/images/MIKk9RMVMtjHiHyUtqeUUK1sLw.png?scale-down-to=512 512w,https://framerusercontent.com/images/MIKk9RMVMtjHiHyUtqeUUK1sLw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MIKk9RMVMtjHiHyUtqeUUK1sLw.png 1368w\"},className:\"framer-c5cno8\",\"data-framer-name\":\"Video AI storyteller\",layoutDependency:layoutDependency,layoutId:\"oLOMpYW3m\",...addPropertyOverrides({iyTdNzvte:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||309)*.5404530744336572-73.5)),positionX:\"center\",positionY:\"center\",sizes:\"253px\",src:\"https://framerusercontent.com/images/MIKk9RMVMtjHiHyUtqeUUK1sLw.png\",srcSet:\"https://framerusercontent.com/images/MIKk9RMVMtjHiHyUtqeUUK1sLw.png?scale-down-to=512 512w,https://framerusercontent.com/images/MIKk9RMVMtjHiHyUtqeUUK1sLw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MIKk9RMVMtjHiHyUtqeUUK1sLw.png 1368w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qyyndm-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"uuuKNhJlL-container\",nodeId:\"uuuKNhJlL\",rendersWithMotion:true,scopeId:\"yzoeN0SQa\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:6,bottomLeftRadius:6,bottomRightRadius:6,controls:false,height:\"100%\",id:\"uuuKNhJlL\",isMixedBorderRadius:false,layoutId:\"uuuKNhJlL\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/2SAlOgxWL1k9ITrmehWfDNptxM.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:6,topRightRadius:6,volume:25,width:\"100%\"})})})}),isDisplayed10()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7p7g8j\",\"data-framer-name\":\"Frame 1000003394\",layoutDependency:layoutDependency,layoutId:\"xL4pbWJYU\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18hbeow\",\"data-framer-name\":\"Symbol only\",layoutDependency:layoutDependency,layoutId:\"Xp_dHPgtR\",style:{opacity:.03,rotate:-1},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-127v18z\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:687,intrinsicWidth:687,layoutDependency:layoutDependency,layoutId:\"I373:27913;18:22\",style:{rotate:1},svg:'<svg width=\"687\" height=\"687\" viewBox=\"0 0 687 687\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.43751 383.125L7.07942 320.331L305.486 8.73058L367.047 7.39917L678.648 305.807L680.006 368.6L382.804 678.941L318.778 680.326L8.43751 383.125Z\" fill=\"#DE1F42\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10dvk1d\",\"data-framer-name\":\"Symbol only\",layoutDependency:layoutDependency,layoutId:\"z5kMiROTr\",style:{opacity:.3,rotate:-1},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1htsae3\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:687,intrinsicWidth:687,layoutDependency:layoutDependency,layoutId:\"I373:27914;18:22\",style:{rotate:1},svg:'<svg width=\"687\" height=\"687\" viewBox=\"0 0 687 687\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.27638 383.059L6.91828 320.265L305.325 8.66466L366.886 7.33325L678.487 305.741L679.845 368.534L382.643 678.875L318.617 680.26L8.27638 383.059Z\" fill=\"#DE1F42\" fill-opacity=\"0.1\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-4jmwbe\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:292,intrinsicWidth:348,layoutDependency:layoutDependency,layoutId:\"pc3KlA3UI\",svg:'<svg width=\"348\" height=\"292\" viewBox=\"0 0 348 292\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g style=\"mix-blend-mode:overlay\" filter=\"url(#filter0_f_373_27915)\">\\n<path d=\"M137.04 240.041C212.954 267.669 299.017 234.547 314.733 191.363C330.449 148.18 307.773 87.061 231.859 59.4336C194.24 45.7429 131.079 20.9282 78.558 26.1669C25.0939 31.4997 57.4697 137.138 49.5418 158.922C33.8261 202.105 61.1266 212.414 137.04 240.041Z\" fill=\"#FE0230\" fill-opacity=\"0.12\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_373_27915\" x=\"-19.694\" y=\"-39.511\" width=\"404.094\" height=\"354.64\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"32.4815\" result=\"effect1_foregroundBlur_373_27915\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1vtayra\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:198,intrinsicWidth:258,layoutDependency:layoutDependency,layoutId:\"EElbMUHvR\",svg:'<svg width=\"258\" height=\"198\" viewBox=\"0 0 258 198\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_f_373_27916)\">\\n<path d=\"M105.642 158.297C163.876 179.49 227.081 161.813 237.002 134.554C246.922 107.295 227.219 66.753 168.986 45.56C140.128 35.0579 91.5971 16.2419 52.3718 17.3389C12.4418 18.4556 41.375 88.2312 36.3706 101.982C26.4502 129.241 47.4087 137.104 105.642 158.297Z\" fill=\"#FFA1B2\" fill-opacity=\"0.22\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_373_27916\" x=\"-34.0783\" y=\"-47.6701\" width=\"338.494\" height=\"280.306\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"32.4815\" result=\"effect1_foregroundBlur_373_27916\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed11()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"254px\",src:\"https://framerusercontent.com/images/lXutRb6Smnsn4GkcKOn6WnNNkf4.png\",srcSet:\"https://framerusercontent.com/images/lXutRb6Smnsn4GkcKOn6WnNNkf4.png?scale-down-to=512 512w,https://framerusercontent.com/images/lXutRb6Smnsn4GkcKOn6WnNNkf4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lXutRb6Smnsn4GkcKOn6WnNNkf4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/lXutRb6Smnsn4GkcKOn6WnNNkf4.png 3276w\"},className:\"framer-15r3oqn\",\"data-framer-name\":\"Stay ahead3  1\",layoutDependency:layoutDependency,layoutId:\"wpIscWs8S\",style:{backdropFilter:\"blur(26.25px)\",WebkitBackdropFilter:\"blur(26.25px)\"},...addPropertyOverrides({JsoUCx6Lx:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||309)-0)-305.5),pixelHeight:1229,pixelWidth:1092,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} + 71px)`,src:\"https://framerusercontent.com/images/nqaauAjmYzqf3kgnjA9qMBt4sEo.png\",srcSet:\"https://framerusercontent.com/images/nqaauAjmYzqf3kgnjA9qMBt4sEo.png?scale-down-to=1024 909w,https://framerusercontent.com/images/nqaauAjmYzqf3kgnjA9qMBt4sEo.png 1092w\"}}},baseVariant,gestureVariant)}),isDisplayed12()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5x2asq\",\"data-border\":true,\"data-framer-name\":\"Self/Inspiration/Card\",layoutDependency:layoutDependency,layoutId:\"cwsKgoclA\",style:{\"--border-bottom-width\":\"0.9933557510375977px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.9933557510375977px\",\"--border-right-width\":\"0.9933557510375977px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.9933557510375977px\",backdropFilter:\"blur(30px)\",backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:7.85,borderBottomRightRadius:7.85,borderTopLeftRadius:7.85,borderTopRightRadius:7.85,rotate:-13,WebkitBackdropFilter:\"blur(30px)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-19pdx60\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"i2rwN0xz7\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-f6iyix\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"eVa4QnEe8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QW50b25pby1yZWd1bGFy\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"14.7px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(26, 32, 93))\"},children:\"6 x Buy-the-Momentum\"})}),className:\"framer-yqtzyf\",\"data-framer-name\":\"Title\",fonts:[\"GF;Antonio-regular\"],layoutDependency:layoutDependency,layoutId:\"SN58tOqOu\",style:{\"--extracted-r6o4lv\":\"rgb(26, 32, 93)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-162hryc\",\"data-framer-name\":\"Img\",layoutDependency:layoutDependency,layoutId:\"lJduA9xse\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hd0fo\",\"data-framer-name\":\"Img front\",layoutDependency:layoutDependency,layoutId:\"njjOL7uGa\",style:{borderBottomLeftRadius:9.8,borderBottomRightRadius:9.8},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-a391tc\",\"data-framer-name\":\"visuals/illustration/self/inspiration/top_picks/buy_the_momentum\",layoutDependency:layoutDependency,layoutId:\"MGhnM4xfS\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"96.8031px\",src:\"https://framerusercontent.com/images/V1tS4XVwjGdrDdOPqBFPKQvWqg.png\",srcSet:\"https://framerusercontent.com/images/V1tS4XVwjGdrDdOPqBFPKQvWqg.png?scale-down-to=512 512w,https://framerusercontent.com/images/V1tS4XVwjGdrDdOPqBFPKQvWqg.png 1024w\"},className:\"framer-1nkmoss\",\"data-framer-name\":\"ivs_Doodle_hand_drawn_sketch_of_Warren_Buffett_rough_outline_ro_e14f1164-e7df-4934-8d72-85e9a9fea1fa 1\",layoutDependency:layoutDependency,layoutId:\"zSEc5Fdg9\",...addPropertyOverrides({Wu7PC6Ufn:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+61.0581+4.186694622039795+107.8057+0+0+-1.4595),sizes:\"96.8031px\",src:\"https://framerusercontent.com/images/V1tS4XVwjGdrDdOPqBFPKQvWqg.png\",srcSet:\"https://framerusercontent.com/images/V1tS4XVwjGdrDdOPqBFPKQvWqg.png?scale-down-to=512 512w,https://framerusercontent.com/images/V1tS4XVwjGdrDdOPqBFPKQvWqg.png 1024w\"}}},baseVariant,gestureVariant)})})})})]}),isDisplayed12()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1usr53v\",\"data-border\":true,\"data-framer-name\":\"Self/Inspiration/Card\",layoutDependency:layoutDependency,layoutId:\"ega_u6wQM\",style:{\"--border-bottom-width\":\"0.9933557510375977px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.9933557510375977px\",\"--border-right-width\":\"0.9933557510375977px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.9933557510375977px\",backdropFilter:\"blur(30px)\",backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:7.85,borderBottomRightRadius:7.85,borderTopLeftRadius:7.85,borderTopRightRadius:7.85,rotate:-6,WebkitBackdropFilter:\"blur(30px)\"},transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-h5zpxw\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"XIaahvMKP\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1880cml\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"P63K5s2eY\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QW50b25pby1yZWd1bGFy\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"14.7px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(26, 32, 93))\"},children:\"12 x Solid Companies\"})}),className:\"framer-4vrglk\",\"data-framer-name\":\"Title\",fonts:[\"GF;Antonio-regular\"],layoutDependency:layoutDependency,layoutId:\"BUGVjUNgG\",style:{\"--extracted-r6o4lv\":\"rgb(26, 32, 93)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1majnht\",\"data-framer-name\":\"Img\",layoutDependency:layoutDependency,layoutId:\"w9B3pmS8x\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qnunak\",\"data-framer-name\":\"Img front\",layoutDependency:layoutDependency,layoutId:\"cp7MqmnwC\",style:{borderBottomLeftRadius:9.8,borderBottomRightRadius:9.8},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qudml5\",\"data-framer-name\":\"visuals/illustration/self/inspiration/top_picks/buy_the_momentum\",layoutDependency:layoutDependency,layoutId:\"zsRwJVeIe\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"96.8031px\",src:\"https://framerusercontent.com/images/NQ2ifXoUH0oS2iFGtLzSEWdkmbY.png\",srcSet:\"https://framerusercontent.com/images/NQ2ifXoUH0oS2iFGtLzSEWdkmbY.png?scale-down-to=512 512w,https://framerusercontent.com/images/NQ2ifXoUH0oS2iFGtLzSEWdkmbY.png 1024w\"},className:\"framer-vt3akd\",\"data-framer-name\":\"ivs_Doodle_hand_drawn_sketch_of_Warren_Buffett_rough_outline_ro_e14f1164-e7df-4934-8d72-85e9a9fea1fa 1\",layoutDependency:layoutDependency,layoutId:\"QqjqnVi66\",...addPropertyOverrides({Wu7PC6Ufn:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+72.0261+4.186694622039795+107.8057+0+0+-1.4595),sizes:\"96.8031px\",src:\"https://framerusercontent.com/images/NQ2ifXoUH0oS2iFGtLzSEWdkmbY.png\",srcSet:\"https://framerusercontent.com/images/NQ2ifXoUH0oS2iFGtLzSEWdkmbY.png?scale-down-to=512 512w,https://framerusercontent.com/images/NQ2ifXoUH0oS2iFGtLzSEWdkmbY.png 1024w\"}}},baseVariant,gestureVariant)})})})})]}),isDisplayed12()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mtau4\",\"data-border\":true,\"data-framer-name\":\"Self/Inspiration/Card\",layoutDependency:layoutDependency,layoutId:\"SznR3URBy\",style:{\"--border-bottom-width\":\"0.9933557510375977px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.9933557510375977px\",\"--border-right-width\":\"0.9933557510375977px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.9933557510375977px\",backdropFilter:\"blur(30px)\",backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:7.85,borderBottomRightRadius:7.85,borderTopLeftRadius:7.85,borderTopRightRadius:7.85,rotate:-1,WebkitBackdropFilter:\"blur(30px)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9r190u\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"M94kgQCEn\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fu3wcm\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"LZWYTIxFo\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QW50b25pby1yZWd1bGFy\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"14.7px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(26, 32, 93))\"},children:\"8 Dividend stars\"})}),className:\"framer-3gr0c2\",\"data-framer-name\":\"Title\",fonts:[\"GF;Antonio-regular\"],layoutDependency:layoutDependency,layoutId:\"CxajNX6QI\",style:{\"--extracted-r6o4lv\":\"rgb(26, 32, 93)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16em7ao\",\"data-framer-name\":\"Img\",layoutDependency:layoutDependency,layoutId:\"k1WifPjiI\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5cd3kx\",\"data-framer-name\":\"Img front\",layoutDependency:layoutDependency,layoutId:\"WIP4evhOA\",style:{borderBottomLeftRadius:9.8,borderBottomRightRadius:9.8},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mfuqio\",\"data-framer-name\":\"visuals/illustration/self/inspiration/top_picks/buy_the_momentum\",layoutDependency:layoutDependency,layoutId:\"hymJICiV_\",children:/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\"},className:\"framer-10ienkp\",\"data-framer-name\":\"ivs_Doodle_hand_drawn_sketch_of_Warren_Buffett_rough_outline_ro_e14f1164-e7df-4934-8d72-85e9a9fea1fa 1\",layoutDependency:layoutDependency,layoutId:\"Ye9fh9m3B\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"86px\",src:\"https://framerusercontent.com/images/bahxD4jrEdEUlqDLFUQTteSj2Q.png\",srcSet:\"https://framerusercontent.com/images/bahxD4jrEdEUlqDLFUQTteSj2Q.png 576w\"},className:\"framer-lauya7\",\"data-framer-name\":\"ivs_Doodle_hand_drawn_sketch_of_Warren_Buffett_rough_outline_ro_e14f1164-e7df-4934-8d72-85e9a9fea1fa 1\",layoutDependency:layoutDependency,layoutId:\"I761:74508;2482:655\",...addPropertyOverrides({Wu7PC6Ufn:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||309)-0)-204.9958+0+85.3676+0+0+-1.4595+-13),positionX:\"center\",positionY:\"center\",sizes:\"86px\",src:\"https://framerusercontent.com/images/bahxD4jrEdEUlqDLFUQTteSj2Q.png\",srcSet:\"https://framerusercontent.com/images/bahxD4jrEdEUlqDLFUQTteSj2Q.png 576w\"}}},baseVariant,gestureVariant)})})})})})]})]}),isDisplayed13()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"B2B investing app\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qWhLcxJOAa4143ZFpuXRXBgKRjg.png\",srcSet:\"https://framerusercontent.com/images/qWhLcxJOAa4143ZFpuXRXBgKRjg.png?scale-down-to=512 512w,https://framerusercontent.com/images/qWhLcxJOAa4143ZFpuXRXBgKRjg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qWhLcxJOAa4143ZFpuXRXBgKRjg.png 1066w\"},className:\"framer-7kr0xw\",\"data-framer-name\":\"Frame 1000003415\",layoutDependency:layoutDependency,layoutId:\"NMMn207Ez\",...addPropertyOverrides({wOcwycSOR:{background:{alt:\"B2B investing app\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||309)*.5016181229773465-127.5)),positionX:\"center\",positionY:\"center\",sizes:\"285px\",src:\"https://framerusercontent.com/images/qWhLcxJOAa4143ZFpuXRXBgKRjg.png\",srcSet:\"https://framerusercontent.com/images/qWhLcxJOAa4143ZFpuXRXBgKRjg.png?scale-down-to=512 512w,https://framerusercontent.com/images/qWhLcxJOAa4143ZFpuXRXBgKRjg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qWhLcxJOAa4143ZFpuXRXBgKRjg.png 1066w\"}}},baseVariant,gestureVariant)}),isDisplayed14()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cUnVrSyaZktcfGhBNo2anGY1Uj4.png\",srcSet:\"https://framerusercontent.com/images/cUnVrSyaZktcfGhBNo2anGY1Uj4.png?scale-down-to=512 512w,https://framerusercontent.com/images/cUnVrSyaZktcfGhBNo2anGY1Uj4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cUnVrSyaZktcfGhBNo2anGY1Uj4.png 1066w\"},className:\"framer-ez74gg\",\"data-framer-name\":\"Frame 1000003415\",layoutDependency:layoutDependency,layoutId:\"TQKbv53Fr\",...addPropertyOverrides({JUFrnyu_Z:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||309)*.5145631067961167-134)),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/cUnVrSyaZktcfGhBNo2anGY1Uj4.png\",srcSet:\"https://framerusercontent.com/images/cUnVrSyaZktcfGhBNo2anGY1Uj4.png?scale-down-to=512 512w,https://framerusercontent.com/images/cUnVrSyaZktcfGhBNo2anGY1Uj4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cUnVrSyaZktcfGhBNo2anGY1Uj4.png 1066w\"}}},baseVariant,gestureVariant)}),isDisplayed15()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-yaw95a\",\"data-border\":true,\"data-framer-name\":\"Core/SelectItem/List\",layoutDependency:layoutDependency,layoutId:\"cQYeEpI34\",style:{\"--border-bottom-width\":\"0.8684766888618469px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.8684766888618469px\",\"--border-right-width\":\"0.8684766888618469px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.8684766888618469px\",backdropFilter:\"blur(4.989792823791504px)\",backgroundColor:\"rgba(255, 255, 255, 0.4)\",borderBottomLeftRadius:3.88,borderBottomRightRadius:3.88,borderTopLeftRadius:3.88,borderTopRightRadius:3.88,WebkitBackdropFilter:\"blur(4.989792823791504px)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y7o9uq\",\"data-framer-name\":\"Frame 1000001326\",layoutDependency:layoutDependency,layoutId:\"VAXzC6OR2\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gel5lz\",\"data-framer-name\":\"Frame 1000001319\",layoutDependency:layoutDependency,layoutId:\"rEjxAn6eI\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"245px\",src:\"https://framerusercontent.com/images/WZ3K4e0cqPWRpAPmVifrWaV4IB8.png\",srcSet:\"https://framerusercontent.com/images/WZ3K4e0cqPWRpAPmVifrWaV4IB8.png?scale-down-to=512 512w,https://framerusercontent.com/images/WZ3K4e0cqPWRpAPmVifrWaV4IB8.png 612w\"},className:\"framer-84mpwr\",\"data-framer-name\":\"image 361\",layoutDependency:layoutDependency,layoutId:\"OR8okiZtI\",...addPropertyOverrides({ucYNhNzGr:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+5.1773247718811035+0+0+4.5193),positionX:\"center\",positionY:\"center\",sizes:\"245px\",src:\"https://framerusercontent.com/images/WZ3K4e0cqPWRpAPmVifrWaV4IB8.png\",srcSet:\"https://framerusercontent.com/images/WZ3K4e0cqPWRpAPmVifrWaV4IB8.png?scale-down-to=512 512w,https://framerusercontent.com/images/WZ3K4e0cqPWRpAPmVifrWaV4IB8.png 612w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2sQTyy6mt0CmkY16Wu0oYf44i4.png\"},className:\"framer-ltkna4\",\"data-framer-name\":\"image 362\",layoutDependency:layoutDependency,layoutId:\"iGd3sNvcS\",...addPropertyOverrides({ucYNhNzGr:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+5.1773247718811035+0+-1),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2sQTyy6mt0CmkY16Wu0oYf44i4.png\"}}},baseVariant,gestureVariant)})]})}),isDisplayed16()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1gs3fy7\",\"data-framer-name\":\"Shape\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:100,intrinsicWidth:99,layoutDependency:layoutDependency,layoutId:\"kA_liwZuo\",style:{opacity:.7},svg:'<svg width=\"99\" height=\"100\" viewBox=\"-1 -1 99 100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<foreignObject x=\"-19.1833\" y=\"-11.2897\" width=\"135.558\" height=\"135.565\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"backdrop-filter:blur(6.9px);clip-path:url(#bgblur_0_542_95325_clip_path);height:100%;width:100%\"></div></foreignObject><g filter=\"url(#filter0_d_542_95325)\" data-figma-bg-blur-radius=\"13.8025\">\\n<path d=\"M87.7912 47.9653C87.7915 47.9652 87.7918 47.9655 87.7918 47.9658C88.4455 69.6133 71.4242 87.6923 49.7743 88.347C28.1336 88.999 10.053 71.978 9.4005 50.3311C8.74345 28.6816 25.763 10.6002 47.4072 9.94716C69.0559 9.29281 87.1359 26.3162 87.7906 47.9649C87.7906 47.9652 87.7909 47.9654 87.7912 47.9653V47.9653Z\" fill=\"white\" fill-opacity=\"0.4\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M49.7924 88.9473L49.7924 88.9473C71.7738 88.2826 89.0558 69.9267 88.3921 47.9476C88.3917 47.9347 88.3909 47.922 88.3897 47.9093C87.7053 25.947 69.3569 8.68286 47.3891 9.34685C25.4132 10.0099 8.13308 28.3683 8.80019 50.3493C9.46269 72.3276 27.8201 89.6093 49.7924 88.9473ZM87.8054 48.5661C87.8054 48.5661 87.8054 48.5662 87.8054 48.5662C87.8542 48.5649 87.904 48.5575 87.954 48.5434C87.9042 48.5574 87.8543 48.5648 87.8054 48.5661Z\" stroke=\"white\" stroke-width=\"1.20117\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_d_542_95325\" x=\"-19.1833\" y=\"-11.2897\" width=\"135.558\" height=\"135.565\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"7.34577\"/>\\n<feGaussianBlur stdDeviation=\"13.6815\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0188266 0 0 0 0 0.360556 0 0 0 0 0.716525 0 0 0 0.06 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_542_95325\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_542_95325\" result=\"shape\"/>\\n</filter>\\n<clipPath id=\"bgblur_0_542_95325_clip_path\"><path transform=\"translate(19.1833 11.2897)\" d=\"M87.7912 47.9653C87.7915 47.9652 87.7918 47.9655 87.7918 47.9658C88.4455 69.6133 71.4242 87.6923 49.7743 88.347C28.1336 88.999 10.053 71.978 9.4005 50.3311C8.74345 28.6816 25.763 10.6002 47.4072 9.94716C69.0559 9.29281 87.1359 26.3162 87.7906 47.9649C87.7906 47.9652 87.7909 47.9654 87.7912 47.9653V47.9653Z\"/>\\n</clipPath></defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed16()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-17j08pb\",\"data-framer-name\":\"Shape\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:100,intrinsicWidth:99,layoutDependency:layoutDependency,layoutId:\"Q9Vq8ttYM\",style:{opacity:.7},svg:'<svg width=\"99\" height=\"100\" viewBox=\"-1 -1 99 100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<foreignObject x=\"-19.1833\" y=\"-11.2897\" width=\"135.558\" height=\"135.565\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"backdrop-filter:blur(6.9px);clip-path:url(#bgblur_0_542_95321_clip_path);height:100%;width:100%\"></div></foreignObject><g filter=\"url(#filter0_d_542_95321)\" data-figma-bg-blur-radius=\"13.8025\">\\n<path d=\"M87.7912 47.9653C87.7915 47.9652 87.7918 47.9655 87.7918 47.9658C88.4455 69.6133 71.4242 87.6923 49.7743 88.347C28.1336 88.999 10.053 71.978 9.4005 50.3311C8.74345 28.6816 25.763 10.6002 47.4072 9.94716C69.0559 9.29281 87.1359 26.3162 87.7906 47.9649C87.7906 47.9652 87.7909 47.9654 87.7912 47.9653V47.9653Z\" fill=\"white\" fill-opacity=\"0.4\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M49.7924 88.9473L49.7924 88.9473C71.7738 88.2826 89.0558 69.9267 88.3921 47.9476C88.3917 47.9347 88.3909 47.922 88.3897 47.9093C87.7053 25.947 69.3569 8.68286 47.3891 9.34685C25.4132 10.0099 8.13308 28.3683 8.80019 50.3493C9.46269 72.3276 27.8201 89.6093 49.7924 88.9473ZM87.8054 48.5661C87.8054 48.5661 87.8054 48.5662 87.8054 48.5662C87.8542 48.5649 87.904 48.5575 87.954 48.5434C87.9042 48.5574 87.8543 48.5648 87.8054 48.5661Z\" stroke=\"white\" stroke-width=\"1.20117\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_d_542_95321\" x=\"-19.1833\" y=\"-11.2897\" width=\"135.558\" height=\"135.565\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"7.34577\"/>\\n<feGaussianBlur stdDeviation=\"13.6815\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0188266 0 0 0 0 0.360556 0 0 0 0 0.716525 0 0 0 0.06 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_542_95321\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_542_95321\" result=\"shape\"/>\\n</filter>\\n<clipPath id=\"bgblur_0_542_95321_clip_path\"><path transform=\"translate(19.1833 11.2897)\" d=\"M87.7912 47.9653C87.7915 47.9652 87.7918 47.9655 87.7918 47.9658C88.4455 69.6133 71.4242 87.6923 49.7743 88.347C28.1336 88.999 10.053 71.978 9.4005 50.3311C8.74345 28.6816 25.763 10.6002 47.4072 9.94716C69.0559 9.29281 87.1359 26.3162 87.7906 47.9649C87.7906 47.9652 87.7909 47.9654 87.7912 47.9653V47.9653Z\"/>\\n</clipPath></defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed16()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-gm9pbv\",\"data-framer-name\":\"Shape\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:178,intrinsicWidth:179,layoutDependency:layoutDependency,layoutId:\"LwpG8CjB7\",svg:'<svg width=\"179\" height=\"178\" viewBox=\"-1 -1 179 178\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<foreignObject x=\"-27.6911\" y=\"-20.9948\" width=\"232.663\" height=\"232.683\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"backdrop-filter:blur(6.9px);clip-path:url(#bgblur_0_542_95313_clip_path);height:100%;width:100%\"></div></foreignObject><g filter=\"url(#filter0_d_542_95313)\" data-figma-bg-blur-radius=\"13.8025\">\\n<path d=\"M173.783 109.235C173.783 109.235 173.784 109.236 173.784 109.237C162.059 156.26 114.43 184.874 67.4016 173.15C20.3945 161.427 -8.22338 113.797 3.50301 66.7763C15.2212 19.7473 62.8482 -8.87332 109.863 2.85033C156.889 14.5739 185.504 62.2083 173.782 109.234C173.781 109.235 173.782 109.235 173.783 109.235V109.235Z\" fill=\"white\" fill-opacity=\"0.4\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M67.2562 173.733L67.3974 173.167L67.2563 173.733C114.607 185.537 162.562 156.727 174.366 109.382C174.371 109.363 174.375 109.345 174.378 109.326C186.146 61.9958 157.339 14.0669 110.009 2.26759C62.6715 -9.53633 14.7186 19.2803 2.92025 66.6311C-8.88632 113.974 19.9273 161.929 67.2562 173.733Z\" stroke=\"white\" stroke-width=\"1.20117\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_d_542_95313\" x=\"-27.6911\" y=\"-20.9948\" width=\"232.663\" height=\"232.683\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"7.34577\"/>\\n<feGaussianBlur stdDeviation=\"13.6815\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0188266 0 0 0 0 0.360556 0 0 0 0 0.716525 0 0 0 0.06 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_542_95313\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_542_95313\" result=\"shape\"/>\\n</filter>\\n<clipPath id=\"bgblur_0_542_95313_clip_path\"><path transform=\"translate(27.6911 20.9948)\" d=\"M173.783 109.235C173.783 109.235 173.784 109.236 173.784 109.237C162.059 156.26 114.43 184.874 67.4016 173.15C20.3945 161.427 -8.22338 113.797 3.50301 66.7763C15.2212 19.7473 62.8482 -8.87332 109.863 2.85033C156.889 14.5739 185.504 62.2083 173.782 109.234C173.781 109.235 173.782 109.235 173.783 109.235V109.235Z\"/>\\n</clipPath></defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed16()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fe3zah\",\"data-framer-name\":\"upc-scan\",layoutDependency:layoutDependency,layoutId:\"so99GF9QG\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17o9swt\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:69,intrinsicWidth:69,layoutDependency:layoutDependency,layoutId:\"qayyUJiHX\",svg:'<svg width=\"69\" height=\"69\" viewBox=\"-1 -1 69 69\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.6806 0.845703C5.62384 0.845703 0.714844 5.75471 0.714844 11.8115V22.7772C0.714844 24.7949 2.3524 26.4325 4.37009 26.4325C6.38779 26.4325 8.02534 24.7949 8.02534 22.7772V11.8115C8.02534 9.79377 9.66289 8.15621 11.6806 8.15621H22.6463C24.664 8.15621 26.3016 6.51866 26.3016 4.50096C26.3016 2.48326 24.664 0.845703 22.6463 0.845703H11.6806ZM44.5778 0.845703C42.5601 0.845703 40.9226 2.48326 40.9226 4.50096C40.9226 6.51866 42.5601 8.15621 44.5778 8.15621H55.5436C57.5613 8.15621 59.1988 9.79377 59.1988 11.8115V22.7772C59.1988 24.7949 60.8364 26.4325 62.8541 26.4325C64.8718 26.4325 66.5093 24.7949 66.5093 22.7772V11.8115C66.5093 5.75471 61.6003 0.845703 55.5436 0.845703H44.5778ZM15.3358 19.122V48.364H18.9911V19.122H15.3358ZM22.6463 19.122V48.364H26.3016V19.122H22.6463ZM29.9568 19.122V48.364H33.6121V19.122H29.9568ZM37.2673 19.122V48.364H44.5778V19.122H37.2673ZM48.2331 19.122V48.364H51.8883V19.122H48.2331ZM4.37009 41.0535C2.3524 41.0535 0.714844 42.6911 0.714844 44.7088V55.6745C0.714844 61.7313 5.62384 66.6403 11.6806 66.6403H22.6463C24.664 66.6403 26.3016 65.0027 26.3016 62.985C26.3016 60.9673 24.664 59.3298 22.6463 59.3298H11.6806C9.66289 59.3298 8.02534 57.6922 8.02534 55.6745V44.7088C8.02534 42.6911 6.38779 41.0535 4.37009 41.0535ZM62.8541 41.0535C60.8364 41.0535 59.1988 42.6911 59.1988 44.7088V55.6745C59.1988 57.6922 57.5613 59.3298 55.5436 59.3298H44.5778C42.5601 59.3298 40.9226 60.9673 40.9226 62.985C40.9226 65.0027 42.5601 66.6403 44.5778 66.6403H55.5436C61.6003 66.6403 66.5093 61.7313 66.5093 55.6745V44.7088C66.5093 42.6911 64.8718 41.0535 62.8541 41.0535Z\" fill=\"#0079F7\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed17()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x81h47\",\"data-border\":true,\"data-framer-name\":\"image 11\",layoutDependency:layoutDependency,layoutId:\"Ieq6fsYEm\",style:{\"--border-bottom-width\":\"2.440497875213623px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"2.440497875213623px\",\"--border-right-width\":\"2.440497875213623px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2.440497875213623px\",backdropFilter:\"blur(48px)\",backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:19.29,borderBottomRightRadius:19.29,borderTopLeftRadius:19.29,borderTopRightRadius:19.29,rotate:90,WebkitBackdropFilter:\"blur(48px)\"}}),isDisplayed17()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2d7ryc-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"H1WAV2b4e-container\",nodeId:\"H1WAV2b4e\",rendersWithMotion:true,scopeId:\"yzoeN0SQa\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,controls:false,height:\"100%\",id:\"H1WAV2b4e\",isMixedBorderRadius:false,layoutId:\"H1WAV2b4e\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/AvjJr76eeyD1daQTSxbcsGIXyE.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:15,topRightRadius:15,volume:25,width:\"100%\"})})}),isDisplayed18()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hqrrx7\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"U9WMY7bm9\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-2yijs6\",\"data-border\":true,\"data-framer-name\":\"Rectangle 347\",layoutDependency:layoutDependency,layoutId:\"EunFAgLWt\",style:{\"--border-bottom-width\":\"2.00236439704895px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"2.00236439704895px\",\"--border-right-width\":\"2.00236439704895px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2.00236439704895px\",backdropFilter:\"blur(11.50449275970459px)\",backgroundColor:\"rgba(255, 255, 255, 0.4)\",borderBottomLeftRadius:10.92,borderBottomRightRadius:10.92,borderTopLeftRadius:10.92,borderTopRightRadius:10.92,WebkitBackdropFilter:\"blur(11.50449275970459px)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/cWPMvSYXnoCntVrPDgS4XPU0.png\",srcSet:\"https://framerusercontent.com/images/cWPMvSYXnoCntVrPDgS4XPU0.png?scale-down-to=512 512w,https://framerusercontent.com/images/cWPMvSYXnoCntVrPDgS4XPU0.png 655w\"},className:\"framer-1kvtknm\",\"data-framer-name\":\"X-Ray@2x 1\",layoutDependency:layoutDependency,layoutId:\"GxrOP22DN\",...addPropertyOverrides({KvZnAPQaO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||309)*.4886731391585763-83.5)+1.1889),sizes:\"201px\",src:\"https://framerusercontent.com/images/cWPMvSYXnoCntVrPDgS4XPU0.png\",srcSet:\"https://framerusercontent.com/images/cWPMvSYXnoCntVrPDgS4XPU0.png?scale-down-to=512 512w,https://framerusercontent.com/images/cWPMvSYXnoCntVrPDgS4XPU0.png 655w\"}}},baseVariant,gestureVariant)})]}),isDisplayed19()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1bm3r66\",\"data-framer-name\":\"Line 22\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:62,layoutDependency:layoutDependency,layoutId:\"tG5z75jeF\",svg:'<svg width=\"62\" height=\"12\" viewBox=\"-3 -3 62 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.97461 2.89417L53.36 2.89417\" stroke=\"white\" stroke-width=\"4.94794\" stroke-linecap=\"round\" stroke-dasharray=\"9.9 9.9\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed19()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-ujrzts\",\"data-framer-name\":\"Subtract\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:150,intrinsicWidth:140,layoutDependency:layoutDependency,layoutId:\"CZa1Am81S\",svg:'<svg width=\"140\" height=\"150\" viewBox=\"-2 -2 140 150\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<foreignObject x=\"-49.7971\" y=\"-36.5182\" width=\"236.216\" height=\"245.573\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"backdrop-filter:blur(12.14px);clip-path:url(#bgblur_0_696_70151_clip_path);height:100%;width:100%\"></div></foreignObject><g filter=\"url(#filter0_d_696_70151)\" data-figma-bg-blur-radius=\"24.2835\">\\n<mask id=\"path-1-outside-1_696_70151\" maskUnits=\"userSpaceOnUse\" x=\"-2.54272\" y=\"-2.18763\" width=\"141\" height=\"151\" fill=\"black\">\\n<rect fill=\"white\" x=\"-2.54272\" y=\"-2.18763\" width=\"141\" height=\"151\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.457279 73.3443C0.457277 33.286 32.9317 0.812377 72.9899 0.812375C99.7153 0.812374 123.065 15.2665 135.648 36.7839C128.749 47.1985 124.731 59.6879 124.731 73.1157C124.731 86.6353 128.804 99.2037 135.79 109.661C123.241 131.313 99.8161 145.876 72.99 145.876C32.9317 145.876 0.45728 113.403 0.457279 73.3443Z\"/>\\n</mask>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.457279 73.3443C0.457277 33.286 32.9317 0.812377 72.9899 0.812375C99.7153 0.812374 123.065 15.2665 135.648 36.7839C128.749 47.1985 124.731 59.6879 124.731 73.1157C124.731 86.6353 128.804 99.2037 135.79 109.661C123.241 131.313 99.8161 145.876 72.99 145.876C32.9317 145.876 0.45728 113.403 0.457279 73.3443Z\" fill=\"white\" fill-opacity=\"0.4\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M135.648 36.7839L137.472 35.7171L138.136 36.8535L137.41 37.951L135.648 36.7839ZM135.79 109.661L137.547 108.487L138.278 109.582L137.618 110.72L135.79 109.661ZM72.9899 2.92566C34.0988 2.92566 2.57056 34.4532 2.57056 73.3443L-1.656 73.3443C-1.656 32.1189 31.7646 -1.3009 72.9899 -1.30091L72.9899 2.92566ZM133.823 37.8507C121.604 16.9547 98.934 2.92565 72.9899 2.92566L72.9899 -1.30091C100.497 -1.30091 124.526 13.5784 137.472 35.7171L133.823 37.8507ZM137.41 37.951C130.733 48.0302 126.844 60.1156 126.844 73.1157L122.618 73.1157C122.618 59.2601 126.765 46.3668 133.886 35.6168L137.41 37.951ZM126.844 73.1157C126.844 86.2046 130.786 98.3664 137.547 108.487L134.032 110.835C126.822 100.041 122.618 87.066 122.618 73.1157L126.844 73.1157ZM72.99 143.763C99.0319 143.763 121.775 129.628 133.961 108.601L137.618 110.72C124.707 132.998 100.6 147.99 72.99 147.99L72.99 143.763ZM2.57056 73.3443C2.57056 112.235 34.0988 143.763 72.99 143.763L72.99 147.99C31.7646 147.99 -1.656 114.57 -1.656 73.3443L2.57056 73.3443Z\" fill=\"white\" mask=\"url(#path-1-outside-1_696_70151)\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_d_696_70151\" x=\"-49.7971\" y=\"-36.5182\" width=\"236.216\" height=\"245.573\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"12.9238\"/>\\n<feGaussianBlur stdDeviation=\"24.0706\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0188266 0 0 0 0 0.360556 0 0 0 0 0.716525 0 0 0 0.06 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_696_70151\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_696_70151\" result=\"shape\"/>\\n</filter>\\n<clipPath id=\"bgblur_0_696_70151_clip_path\" transform=\"translate(49.7971 36.5182)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.457279 73.3443C0.457277 33.286 32.9317 0.812377 72.9899 0.812375C99.7153 0.812374 123.065 15.2665 135.648 36.7839C128.749 47.1985 124.731 59.6879 124.731 73.1157C124.731 86.6353 128.804 99.2037 135.79 109.661C123.241 131.313 99.8161 145.876 72.99 145.876C32.9317 145.876 0.45728 113.403 0.457279 73.3443Z\"/>\\n</clipPath></defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed19()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-j247kf\",\"data-framer-name\":\"Logos/Symbol color\",layoutDependency:layoutDependency,layoutId:\"HDfQPOWPn\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4jqm9f\",\"data-framer-name\":\"change logo here\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:33,intrinsicWidth:82,layoutDependency:layoutDependency,layoutId:\"I696:70154;43:27353\",svg:'<svg width=\"82\" height=\"33\" viewBox=\"0 0 82 33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_696_70156)\">\\n<path d=\"M63.3324 32.4872H68.2343L81.9212 18.7997V13.8977L68.2343 0.210815H63.3324L49.6448 13.8977V18.7997L63.3324 32.4872Z\" fill=\"#D10622\"/>\\n<path d=\"M46.8496 32.4872H51.7515L56.0125 28.2262L46.5853 18.7997V13.8977L56.0125 4.47182L51.7515 0.210815H46.8496L33.162 13.8977V18.7997L46.8496 32.4872Z\" fill=\"#0000FF\"/>\\n<path opacity=\"0.35\" d=\"M17.6651 19.8505L29.2513 31.4367L30.3016 32.4871H31.7876H33.7183H35.2042L36.2546 31.4367L39.4646 28.2267L31.0884 19.8505L30.0381 18.8002V17.3142V15.3835V13.8975L31.0884 12.8472L39.4646 4.47167L36.2546 1.26167L35.2042 0.211304H33.7183H31.7876H30.3016L29.2513 1.26167L17.6651 12.8472L16.6147 13.8975V15.3835V17.3142V18.8002L17.6651 19.8505Z\" fill=\"#D10622\"/>\\n<path d=\"M1.37607 19.8505L12.9622 31.4367L14.0126 32.4871H15.4985H17.4292H18.9152L19.9656 31.4367L23.1756 28.2267L14.7994 19.8505L13.749 18.8002V17.3142V15.3835V13.8975L14.7994 12.8472L23.1756 4.47167L19.9656 1.26167L18.9152 0.211304H17.4292H15.4985H14.0126L12.9622 1.26167L1.37607 12.8472L0.325684 13.8975V15.3835V17.3142V18.8002L1.37607 19.8505Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_696_70156\">\\n<rect width=\"81.5956\" height=\"32.2764\" fill=\"white\" transform=\"translate(0.325684 0.210815)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed19()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-vvrrbo\",\"data-framer-name\":\"Frame 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:64,intrinsicWidth:65,layoutDependency:layoutDependency,layoutId:\"MYDuuV5tA\",svg:'<svg width=\"65\" height=\"64\" viewBox=\"0 0 65 64\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"1.98089\" y=\"1.38189\" width=\"61.0245\" height=\"61.0245\" rx=\"30.5123\" fill=\"white\" fill-opacity=\"0.3\"/>\\n<rect x=\"1.98089\" y=\"1.38189\" width=\"61.0245\" height=\"61.0245\" rx=\"30.5123\" stroke=\"white\" stroke-width=\"2.19908\"/>\\n<g clip-path=\"url(#clip0_696_70177)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M46.1317 23.633V20.7664C46.1317 18.1268 40.1418 15.9889 32.7546 15.9889C25.3673 15.9889 19.3774 18.1268 19.3774 20.7664V23.633C19.3774 26.2726 25.3673 28.4105 32.7546 28.4105C40.1418 28.4105 46.1317 26.2726 46.1317 23.633ZM22.6501 38.3657C21.4079 37.9238 20.2673 37.3624 19.3774 36.6577V41.7876C19.3774 44.4272 25.3673 46.5652 32.7546 46.5652C40.1418 46.5652 46.1317 44.4272 46.1317 41.7876V36.6577C45.2419 37.3565 44.1012 37.9238 42.8591 38.3657C40.1777 39.3212 36.6065 39.8766 32.7546 39.8766C28.9027 39.8766 25.3315 39.3212 22.6501 38.3657Z\" fill=\"#1769F0\"/>\\n<path d=\"M42.8591 28.8106C44.1012 28.3687 45.2419 27.8014 46.1317 27.1027V33.1881C46.1317 35.8276 40.1418 37.9656 32.7546 37.9656C25.3673 37.9656 19.3774 35.8276 19.3774 33.1881V27.1027C20.2673 27.8073 21.4079 28.3687 22.6501 28.8106C25.3315 29.7661 28.9027 30.3215 32.7546 30.3215C36.6065 30.3215 40.1777 29.7661 42.8591 28.8106Z\" fill=\"#1769F0\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_696_70177\">\\n<rect width=\"26.7543\" height=\"30.5763\" fill=\"white\" transform=\"translate(19.3774 15.9889)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed19()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1fj70j\",\"data-framer-name\":\"Line 23\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:66,layoutDependency:layoutDependency,layoutId:\"JDRRl3tK5\",svg:'<svg width=\"66\" height=\"12\" viewBox=\"-3 -3 66 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.80029 2.89417L57.0699 2.89417\" stroke=\"white\" stroke-width=\"4.94794\" stroke-linecap=\"round\" stroke-dasharray=\"9.9 9.9\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed20()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1o4xy56\",\"data-framer-name\":\"Frame 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:261,intrinsicWidth:177,layoutDependency:layoutDependency,layoutId:\"IsZZIz5qW\",svg:'<svg width=\"177\" height=\"261\" viewBox=\"0 0 177 261\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.8966 239.887C22.8966 241.254 24.0043 242.361 25.3706 242.361C26.7369 242.361 27.8446 241.254 27.8446 239.887L22.8966 239.887ZM27.12 159.353C26.1538 158.387 24.5874 158.387 23.6212 159.353L7.87702 175.097C6.91087 176.063 6.91087 177.629 7.87702 178.596C8.84316 179.562 10.4096 179.562 11.3757 178.596L25.3706 164.601L39.3655 178.596C40.3316 179.562 41.8981 179.562 42.8642 178.596C43.8303 177.63 43.8303 176.063 42.8642 175.097L27.12 159.353ZM27.8446 239.887L27.8446 161.102L22.8966 161.102L22.8966 239.887L27.8446 239.887Z\" fill=\"white\"/>\\n<path d=\"M64.8966 239.887C64.8966 241.254 66.0043 242.361 67.3706 242.361C68.7369 242.361 69.8446 241.254 69.8446 239.887L64.8966 239.887ZM69.12 102.112C68.1538 101.145 66.5874 101.145 65.6213 102.112L49.877 117.856C48.9109 118.822 48.9109 120.388 49.877 121.355C50.8432 122.321 52.4096 122.321 53.3757 121.355L67.3706 107.36L81.3655 121.355C82.3316 122.321 83.8981 122.321 84.8642 121.355C85.8303 120.388 85.8303 118.822 84.8642 117.856L69.12 102.112ZM69.8446 239.887L69.8446 103.861L64.8966 103.861L64.8966 239.887L69.8446 239.887Z\" fill=\"#D9929C\"/>\\n<path d=\"M106.897 239.887C106.897 241.254 108.004 242.361 109.371 242.361C110.737 242.361 111.845 241.254 111.845 239.887L106.897 239.887ZM111.12 43.5974C110.154 42.6313 108.587 42.6313 107.621 43.5974L91.877 59.3417C90.9109 60.3078 90.9109 61.8743 91.877 62.8404C92.8432 63.8065 94.4096 63.8065 95.3757 62.8404L109.371 48.8455L123.365 62.8404C124.332 63.8065 125.898 63.8065 126.864 62.8404C127.83 61.8743 127.83 60.3078 126.864 59.3417L111.12 43.5974ZM111.845 239.887L111.845 45.3468L106.897 45.3468L106.897 239.887L111.845 239.887Z\" fill=\"#0000FF\"/>\\n<path d=\"M148.897 239.887C148.897 241.254 150.004 242.361 151.371 242.361C152.737 242.361 153.845 241.254 153.845 239.887L148.897 239.887ZM153.12 16.5768C152.154 15.6107 150.587 15.6107 149.621 16.5768L133.877 32.3211C132.911 33.2872 132.911 34.8536 133.877 35.8198C134.843 36.7859 136.41 36.7859 137.376 35.8198L151.371 21.8249L165.365 35.8198C166.332 36.7859 167.898 36.7859 168.864 35.8198C169.83 34.8536 169.83 33.2872 168.864 32.3211L153.12 16.5768ZM153.845 239.887L153.845 18.3262L148.897 18.3262L148.897 239.887L153.845 239.887Z\" fill=\"#D10622\"/>\\n<path d=\"M25.3706 242.867L151.371 242.867\" stroke=\"white\" stroke-width=\"4.94794\" stroke-linecap=\"round\" stroke-dasharray=\"9.9 9.9\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed21()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6H19D7dPjiVMxbp1N182LIjfpc.png\",srcSet:\"https://framerusercontent.com/images/6H19D7dPjiVMxbp1N182LIjfpc.png?scale-down-to=512 512w,https://framerusercontent.com/images/6H19D7dPjiVMxbp1N182LIjfpc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6H19D7dPjiVMxbp1N182LIjfpc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/6H19D7dPjiVMxbp1N182LIjfpc.png 3001w\"},className:\"framer-ntxmkr\",\"data-framer-name\":\"iPhone 15 Pro\",layoutDependency:layoutDependency,layoutId:\"ENGL__977\",...addPropertyOverrides({Df0imjbKi:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} + 118px)`,src:\"https://framerusercontent.com/images/6H19D7dPjiVMxbp1N182LIjfpc.png\",srcSet:\"https://framerusercontent.com/images/6H19D7dPjiVMxbp1N182LIjfpc.png?scale-down-to=512 512w,https://framerusercontent.com/images/6H19D7dPjiVMxbp1N182LIjfpc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6H19D7dPjiVMxbp1N182LIjfpc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/6H19D7dPjiVMxbp1N182LIjfpc.png 3001w\"}}},baseVariant,gestureVariant)}),isDisplayed22()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mDpV6tVdUUsDOZBZuvXiVh8.png\",srcSet:\"https://framerusercontent.com/images/mDpV6tVdUUsDOZBZuvXiVh8.png?scale-down-to=1024 582w,https://framerusercontent.com/images/mDpV6tVdUUsDOZBZuvXiVh8.png?scale-down-to=2048 1165w,https://framerusercontent.com/images/mDpV6tVdUUsDOZBZuvXiVh8.png 2328w\"},className:\"framer-9nsfvk\",\"data-framer-name\":\"Front\",layoutDependency:layoutDependency,layoutId:\"vAhBMSOba\",...addPropertyOverrides({tqZxo_99Y:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||309)-270),positionX:\"center\",positionY:\"center\",sizes:\"151px\",src:\"https://framerusercontent.com/images/mDpV6tVdUUsDOZBZuvXiVh8.png\",srcSet:\"https://framerusercontent.com/images/mDpV6tVdUUsDOZBZuvXiVh8.png?scale-down-to=1024 582w,https://framerusercontent.com/images/mDpV6tVdUUsDOZBZuvXiVh8.png?scale-down-to=2048 1165w,https://framerusercontent.com/images/mDpV6tVdUUsDOZBZuvXiVh8.png 2328w\"}}},baseVariant,gestureVariant)}),isDisplayed23()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/gsluPq4ET2Zh45dJNi2oRSRMkao.png\",srcSet:\"https://framerusercontent.com/images/gsluPq4ET2Zh45dJNi2oRSRMkao.png?scale-down-to=512 512w,https://framerusercontent.com/images/gsluPq4ET2Zh45dJNi2oRSRMkao.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gsluPq4ET2Zh45dJNi2oRSRMkao.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gsluPq4ET2Zh45dJNi2oRSRMkao.png 2121w\"},className:\"framer-gcrluv\",\"data-framer-name\":\"Frame 1000003394\",layoutDependency:layoutDependency,layoutId:\"BU36ZDVbW\",style:{rotate:30},...addPropertyOverrides({i1Xp8Vz_4:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-55),positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} + 152px)`,src:\"https://framerusercontent.com/images/gsluPq4ET2Zh45dJNi2oRSRMkao.png\",srcSet:\"https://framerusercontent.com/images/gsluPq4ET2Zh45dJNi2oRSRMkao.png?scale-down-to=512 512w,https://framerusercontent.com/images/gsluPq4ET2Zh45dJNi2oRSRMkao.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gsluPq4ET2Zh45dJNi2oRSRMkao.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gsluPq4ET2Zh45dJNi2oRSRMkao.png 2121w\"}}},baseVariant,gestureVariant)}),isDisplayed24()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/UKYn4PDu7VbXPZMrZnVi3u9EMw.png\",srcSet:\"https://framerusercontent.com/images/UKYn4PDu7VbXPZMrZnVi3u9EMw.png?scale-down-to=1024 743w,https://framerusercontent.com/images/UKYn4PDu7VbXPZMrZnVi3u9EMw.png?scale-down-to=2048 1487w,https://framerusercontent.com/images/UKYn4PDu7VbXPZMrZnVi3u9EMw.png 2235w\"},className:\"framer-cnz2ux\",\"data-framer-name\":\"Device Tablet\",layoutDependency:layoutDependency,layoutId:\"vbsWlMr3H\",...addPropertyOverrides({Abumdszi7:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||309)*.4919093851132688-122.5)),positionX:\"center\",positionY:\"center\",sizes:\"178px\",src:\"https://framerusercontent.com/images/UKYn4PDu7VbXPZMrZnVi3u9EMw.png\",srcSet:\"https://framerusercontent.com/images/UKYn4PDu7VbXPZMrZnVi3u9EMw.png?scale-down-to=1024 743w,https://framerusercontent.com/images/UKYn4PDu7VbXPZMrZnVi3u9EMw.png?scale-down-to=2048 1487w,https://framerusercontent.com/images/UKYn4PDu7VbXPZMrZnVi3u9EMw.png 2235w\"}}},baseVariant,gestureVariant)}),isDisplayed25()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/curj196yEhpuOwFLy1s9U03KUk.png\",srcSet:\"https://framerusercontent.com/images/curj196yEhpuOwFLy1s9U03KUk.png?scale-down-to=1024 998w,https://framerusercontent.com/images/curj196yEhpuOwFLy1s9U03KUk.png?scale-down-to=2048 1996w,https://framerusercontent.com/images/curj196yEhpuOwFLy1s9U03KUk.png 2752w\"},className:\"framer-mrp0zy\",\"data-framer-name\":\"Group 2085663401\",layoutDependency:layoutDependency,layoutId:\"dNQ91tg75\",...addPropertyOverrides({sDqQv1_c5:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||309)*.4951456310679614-114)),positionX:\"center\",positionY:\"center\",sizes:\"259px\",src:\"https://framerusercontent.com/images/curj196yEhpuOwFLy1s9U03KUk.png\",srcSet:\"https://framerusercontent.com/images/curj196yEhpuOwFLy1s9U03KUk.png?scale-down-to=1024 998w,https://framerusercontent.com/images/curj196yEhpuOwFLy1s9U03KUk.png?scale-down-to=2048 1996w,https://framerusercontent.com/images/curj196yEhpuOwFLy1s9U03KUk.png 2752w\"}}},baseVariant,gestureVariant)}),isDisplayed26()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/eVCrxfPEzyCOCl1EY9eE51hHW4g.png\",srcSet:\"https://framerusercontent.com/images/eVCrxfPEzyCOCl1EY9eE51hHW4g.png?scale-down-to=2048 1004w,https://framerusercontent.com/images/eVCrxfPEzyCOCl1EY9eE51hHW4g.png 1711w\"},className:\"framer-1mop6n\",\"data-framer-name\":\"0021/White\",layoutDependency:layoutDependency,layoutId:\"LpqKSsQ6P\",...addPropertyOverrides({xAyyHWYoQ:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||309)*.5016181229773465-123.5)),positionX:\"center\",positionY:\"center\",sizes:\"121px\",src:\"https://framerusercontent.com/images/eVCrxfPEzyCOCl1EY9eE51hHW4g.png\",srcSet:\"https://framerusercontent.com/images/eVCrxfPEzyCOCl1EY9eE51hHW4g.png?scale-down-to=2048 1004w,https://framerusercontent.com/images/eVCrxfPEzyCOCl1EY9eE51hHW4g.png 1711w\"}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dfeNy.framer-7r35o7, .framer-dfeNy .framer-7r35o7 { display: block; }\",\".framer-dfeNy.framer-1g05nkr { height: 309px; overflow: hidden; position: relative; width: 299px; }\",\".framer-dfeNy .framer-1plm3ao, .framer-dfeNy .framer-1vvrsds { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 690px); left: 118%; overflow: visible; position: absolute; top: 53%; width: 690px; }\",\".framer-dfeNy .framer-15focgq, .framer-dfeNy .framer-15dhoxu { flex: none; height: 706px; left: -7px; position: absolute; top: -8px; width: 705px; }\",\".framer-dfeNy .framer-1nt7su1, .framer-dfeNy .framer-18mrfef { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 690px); left: 165%; overflow: visible; position: absolute; top: 55%; width: 690px; }\",\".framer-dfeNy .framer-1srfota, .framer-dfeNy .framer-1srwra9 { flex: none; height: 706px; left: -8px; position: absolute; top: -8px; width: 706px; }\",\".framer-dfeNy .framer-19z4005 { bottom: -1px; flex: none; height: 37px; left: -19px; overflow: hidden; position: absolute; right: -31px; }\",\".framer-dfeNy .framer-rwb8q1 { flex: none; height: 32px; left: 0px; overflow: hidden; position: absolute; right: -31px; top: -1px; }\",\".framer-dfeNy .framer-4cg1tr, .framer-dfeNy .framer-snk3v9 { flex: none; height: 300px; left: 65px; position: absolute; top: 123px; width: 358px; }\",\".framer-dfeNy .framer-1rt605l, .framer-dfeNy .framer-1ptgndi { flex: none; height: 204px; left: 72px; position: absolute; top: 70px; width: 265px; }\",\".framer-dfeNy .framer-1lxwgiv { bottom: 154px; flex: none; left: 8px; overflow: hidden; position: absolute; right: 9px; top: 82px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dfeNy .framer-13gkh1u { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 13px; justify-content: flex-start; left: 0px; overflow: visible; padding: 12px; position: absolute; right: 0px; top: -1px; }\",\".framer-dfeNy .framer-1pubshy { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 38px); overflow: visible; position: relative; width: 38px; }\",\".framer-dfeNy .framer-yh4gpf { aspect-ratio: 1 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 38px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-dfeNy .framer-119z9g3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 86%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 126px; }\",\".framer-dfeNy .framer-zuu6rt { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dfeNy .framer-xzsxp8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dfeNy .framer-1slyrwe, .framer-dfeNy .framer-1w8r3o, .framer-dfeNy .framer-u4a5b2, .framer-dfeNy .framer-1h1k2q9, .framer-dfeNy .framer-qtdc5s, .framer-dfeNy .framer-1ixegfu, .framer-dfeNy .framer-8k84yh, .framer-dfeNy .framer-1aav2g6, .framer-dfeNy .framer-40hq4e, .framer-dfeNy .framer-1cwa2vk, .framer-dfeNy .framer-19gn8u2, .framer-dfeNy .framer-13wnjmb { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-dfeNy .framer-o7xaaj, .framer-dfeNy .framer-wn6hdh { flex: none; height: 20px; overflow: visible; position: relative; width: 32px; }\",\".framer-dfeNy .framer-12nmn19, .framer-dfeNy .framer-k861wf { flex: none; height: 20px; left: 2px; overflow: visible; position: absolute; top: 0px; width: 16px; }\",\".framer-dfeNy .framer-1y60gif, .framer-dfeNy .framer-wdg7pa { flex: none; height: 17px; left: 14px; position: absolute; top: 2px; width: 17px; }\",\".framer-dfeNy .framer-ef5y15, .framer-dfeNy .framer-1vncjzu { flex: none; height: 16px; left: 0px; overflow: visible; position: absolute; top: 2px; width: 16px; }\",\".framer-dfeNy .framer-1hvy310, .framer-dfeNy .framer-1r1penl { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); left: 0px; overflow: hidden; position: absolute; top: 0px; width: 16px; }\",\".framer-dfeNy .framer-ln4vvo, .framer-dfeNy .framer-1u4dgzj, .framer-dfeNy .framer-9niuhp { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-dfeNy .framer-18uvecq, .framer-dfeNy .framer-1v60p1g, .framer-dfeNy .framer-c2ifn, .framer-dfeNy .framer-1nxzi90 { flex: none; height: 17px; left: 0px; position: absolute; top: 0px; width: 17px; }\",\".framer-dfeNy .framer-10diu4y { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); left: -1px; position: absolute; right: -2px; top: -1px; }\",\".framer-dfeNy .framer-7f7yfj, .framer-dfeNy .framer-1x2mlrl { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-dfeNy .framer-ceso21, .framer-dfeNy .framer-1ovtjxb, .framer-dfeNy .framer-1t56yto, .framer-dfeNy .framer-12km1pl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-dfeNy .framer-1jdkpw3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-dfeNy .framer-h39jg6, .framer-dfeNy .framer-7dr9ac, .framer-dfeNy .framer-1xxx12a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-dfeNy .framer-1awgna6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-dfeNy .framer-1yf9zv7, .framer-dfeNy .framer-11ce633 { align-content: center; align-items: center; 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: min-content; }\",\".framer-dfeNy .framer-jezux6 { flex: none; height: 15px; overflow: visible; position: relative; width: 15px; }\",\".framer-dfeNy .framer-5n4uzq { bottom: 1px; flex: none; left: 0px; position: absolute; right: 0px; top: -1px; }\",\".framer-dfeNy .framer-1q6hung { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 2.861640214920044px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-dfeNy .framer-1yp7id5 { bottom: 73px; flex: none; height: 58px; left: calc(49.498327759197345% - 250px / 2); overflow: hidden; position: absolute; width: 250px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dfeNy .framer-iwsn8v { align-content: flex-start; align-items: flex-start; bottom: -1px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 12.111458778381348px; position: absolute; right: 0px; }\",\".framer-dfeNy .framer-84b51m { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 30px; }\",\".framer-dfeNy .framer-1i6l2nt { aspect-ratio: 1 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 30px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-dfeNy .framer-1n8gsu8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-dfeNy .framer-108xg98 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 122px; word-break: break-word; word-wrap: break-word; }\",\".framer-dfeNy .framer-tjcpf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 126px; }\",\".framer-dfeNy .framer-19s0wtr { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); left: 0px; position: absolute; right: -1px; top: 0px; }\",\".framer-dfeNy .framer-jquc0c, .framer-dfeNy .framer-kaeexq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-dfeNy .framer-1d4qe8u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-dfeNy .framer-1pn047h { flex: none; height: 12px; overflow: visible; position: relative; width: 12px; }\",\".framer-dfeNy .framer-1rffkio { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 2.2708985805511475px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-dfeNy .framer-zzuqzd { bottom: 0px; flex: none; height: 309px; overflow: hidden; position: absolute; right: 0px; width: 299px; z-index: 1; }\",\".framer-dfeNy .framer-t9qr1o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 51%; overflow: hidden; padding: 0px; position: absolute; top: 53%; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-dfeNy .framer-uj7o6c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 128px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 128px; }\",\".framer-dfeNy .framer-lwgmq2 { flex: none; height: 32px; overflow: visible; position: relative; width: 80px; }\",\".framer-dfeNy .framer-1oq7j26 { bottom: 1px; flex: none; left: 48px; position: absolute; right: 1px; top: -1px; }\",\".framer-dfeNy .framer-1gq1aix { bottom: 1px; flex: none; left: 31px; position: absolute; right: 26px; top: -1px; }\",\".framer-dfeNy .framer-18cezwr { bottom: 1px; flex: none; left: 16px; position: absolute; right: 42px; top: -1px; }\",\".framer-dfeNy .framer-1w53ylq { bottom: 1px; flex: none; left: 0px; position: absolute; right: 58px; top: -1px; }\",\".framer-dfeNy .framer-16yc363 { flex: none; height: 196px; position: relative; width: 197px; }\",\".framer-dfeNy .framer-1m7xhu8 { flex: none; height: 309px; left: 0px; position: absolute; top: 0px; width: 299px; }\",\".framer-dfeNy .framer-c5cno8 { flex: none; height: 147px; left: calc(49.498327759197345% - 253px / 2); position: absolute; top: calc(54.04530744336572% - 147px / 2); width: 253px; }\",\".framer-dfeNy .framer-1qyyndm-container { flex: none; height: 137px; left: calc(50.197628458498045% - 244px / 2); position: absolute; top: calc(49.65986394557825% - 137px / 2); width: 244px; }\",\".framer-dfeNy .framer-7p7g8j { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-dfeNy .framer-18hbeow { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 672px); left: 118%; overflow: visible; position: absolute; top: 53%; width: 672px; }\",\".framer-dfeNy .framer-127v18z, .framer-dfeNy .framer-1htsae3 { flex: none; height: 687px; left: -8px; position: absolute; top: -8px; width: 687px; }\",\".framer-dfeNy .framer-10dvk1d { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 672px); left: 165%; overflow: visible; position: absolute; top: 55%; width: 672px; }\",\".framer-dfeNy .framer-4jmwbe { flex: none; height: 292px; left: 63px; position: absolute; top: 120px; width: 348px; }\",\".framer-dfeNy .framer-1vtayra { flex: none; height: 198px; left: 70px; position: absolute; top: 68px; width: 258px; }\",\".framer-dfeNy .framer-15r3oqn { aspect-ratio: 1.2 / 1; bottom: 1px; flex: none; height: var(--framer-aspect-ratio-supported, 212px); left: -18px; position: absolute; width: 254px; }\",\".framer-dfeNy .framer-5x2asq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 33px; overflow: visible; padding: 4.186694622039795px 0px 4.186694622039795px 0px; position: absolute; top: 61px; width: 96px; }\",\".framer-dfeNy .framer-19pdx60, .framer-dfeNy .framer-h5zpxw, .framer-dfeNy .framer-9r190u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: visible; padding: 9.80284309387207px; position: relative; width: 100%; }\",\".framer-dfeNy .framer-f6iyix, .framer-dfeNy .framer-1880cml, .framer-dfeNy .framer-fu3wcm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 77px; }\",\".framer-dfeNy .framer-yqtzyf, .framer-dfeNy .framer-4vrglk, .framer-dfeNy .framer-3gr0c2 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 77px; word-break: break-word; word-wrap: break-word; }\",\".framer-dfeNy .framer-162hryc, .framer-dfeNy .framer-1majnht, .framer-dfeNy .framer-16em7ao { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dfeNy .framer-1hd0fo, .framer-dfeNy .framer-1qnunak, .framer-dfeNy .framer-5cd3kx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dfeNy .framer-a391tc, .framer-dfeNy .framer-qudml5, .framer-dfeNy .framer-1mfuqio { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: 71px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 97px; }\",\".framer-dfeNy .framer-1nkmoss, .framer-dfeNy .framer-vt3akd, .framer-dfeNy .framer-10ienkp { flex: 1 0 0px; height: 74px; mix-blend-mode: darken; position: relative; width: 1px; }\",\".framer-dfeNy .framer-1usr53v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 49%; overflow: visible; padding: 4.186694622039795px 0px 4.186694622039795px 0px; position: absolute; top: 72px; width: 96px; }\",\".framer-dfeNy .framer-1mtau4 { align-content: center; align-items: center; bottom: 71px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 134px; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 28px; width: 96px; }\",\".framer-dfeNy .framer-lauya7 { bottom: -12px; flex: none; left: calc(51.546391752577335% - 86px / 2); position: absolute; top: -13px; width: 86px; }\",\".framer-dfeNy .framer-7kr0xw { flex: none; height: 255px; position: absolute; right: 0px; top: calc(50.161812297734656% - 255px / 2); width: 285px; }\",\".framer-dfeNy .framer-ez74gg { flex: none; height: 268px; left: 0px; position: absolute; right: 0px; top: calc(51.456310679611676% - 268px / 2); }\",\".framer-dfeNy .framer-yaw95a { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; left: 20px; overflow: hidden; padding: 5.1773247718811035px; position: absolute; top: 100px; width: 257px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dfeNy .framer-y7o9uq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-dfeNy .framer-gel5lz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: center; min-height: 0px; overflow: visible; padding: 0px; position: relative; width: 68px; }\",\".framer-dfeNy .framer-84mpwr { aspect-ratio: 2.3332272641379586 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 105px); position: relative; width: 245px; }\",\".framer-dfeNy .framer-ltkna4 { aspect-ratio: 0.07847502953952923 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); left: 0px; position: absolute; top: -1px; width: 5px; z-index: 1; }\",\".framer-dfeNy .framer-1gs3fy7 { flex: none; height: 100px; position: absolute; right: 5px; top: 54px; width: 99px; }\",\".framer-dfeNy .framer-17j08pb { bottom: 74px; flex: none; height: 100px; left: 0px; position: absolute; width: 99px; }\",\".framer-dfeNy .framer-gm9pbv { flex: none; height: 178px; left: calc(51.17056856187293% - 179px / 2); position: absolute; top: calc(50.161812297734656% - 178px / 2); width: 179px; }\",\".framer-dfeNy .framer-1fe3zah { flex: none; height: 88px; left: calc(51.17056856187293% - 87.72614288330078px / 2); overflow: visible; position: absolute; top: calc(50.161812297734656% - 87.7260971069336px / 2); width: 88px; }\",\".framer-dfeNy .framer-17o9swt { bottom: 13px; flex: none; left: 9px; position: absolute; right: 13px; top: 9px; }\",\".framer-dfeNy .framer-1x81h47 { bottom: 10px; flex: none; height: 251px; left: calc(50.16722408026758% - 161px / 2); position: absolute; width: 161px; }\",\".framer-dfeNy .framer-2d7ryc-container { bottom: 59px; flex: none; height: 152px; left: calc(50.16722408026758% - 243px / 2); position: absolute; width: 243px; }\",\".framer-dfeNy .framer-1hqrrx7 { flex: none; height: 167px; left: calc(48.494983277592% - 201px / 2); overflow: visible; position: absolute; top: calc(48.86731391585763% - 167px / 2); width: 201px; }\",\".framer-dfeNy .framer-2yijs6 { bottom: -11px; flex: none; left: -12px; position: absolute; right: -12px; top: -13px; }\",\".framer-dfeNy .framer-1kvtknm { bottom: 4px; flex: none; left: 0px; position: absolute; right: 0px; top: 1px; }\",\".framer-dfeNy .framer-1bm3r66 { flex: none; height: 12px; position: absolute; right: 100px; top: calc(50.80906148867316% - 12px / 2); width: 50px; }\",\".framer-dfeNy .framer-ujrzts { flex: none; height: 150px; left: 20px; position: absolute; top: calc(50.485436893203904% - 150px / 2); width: 140px; z-index: 0; }\",\".framer-dfeNy .framer-j247kf { flex: none; height: 82px; left: 49px; overflow: visible; position: absolute; top: calc(50.485436893203904% - 81.59556579589844px / 2); width: 82px; }\",\".framer-dfeNy .framer-4jqm9f { flex: none; height: 33px; left: 0px; position: absolute; top: 24px; width: 82px; }\",\".framer-dfeNy .framer-vvrrbo { flex: none; height: 64px; position: absolute; right: 34px; top: calc(50.80906148867316% - 64px / 2); width: 65px; }\",\".framer-dfeNy .framer-1fj70j { flex: none; height: 12px; position: absolute; right: -34px; top: calc(50.80906148867316% - 12px / 2); width: 66px; }\",\".framer-dfeNy .framer-1o4xy56 { flex: none; height: 261px; left: calc(46.15384615384618% - 177px / 2); position: absolute; top: calc(51.77993527508092% - 261px / 2); width: 177px; }\",\".framer-dfeNy .framer-ntxmkr { bottom: -4px; flex: none; left: -19px; position: absolute; right: -99px; top: 0px; }\",\".framer-dfeNy .framer-9nsfvk { bottom: 5px; flex: none; height: 265px; position: absolute; right: 58px; width: 151px; }\",\".framer-dfeNy .framer-gcrluv { bottom: -68px; flex: none; left: -42px; position: absolute; right: -110px; top: -55px; }\",\".framer-dfeNy .framer-cnz2ux { flex: none; height: 245px; left: calc(49.83277591973246% - 178px / 2); position: absolute; top: calc(49.190938511326884% - 245px / 2); width: 178px; }\",\".framer-dfeNy .framer-mrp0zy { flex: none; height: 228px; left: calc(50.836120401337816% - 259px / 2); position: absolute; top: calc(49.51456310679614% - 228px / 2); width: 259px; }\",\".framer-dfeNy .framer-1mop6n { flex: none; height: 247px; left: calc(53.51170568561875% - 121px / 2); position: absolute; top: calc(50.161812297734656% - 247px / 2); width: 121px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dfeNy .framer-13gkh1u, .framer-dfeNy .framer-119z9g3, .framer-dfeNy .framer-xzsxp8, .framer-dfeNy .framer-7f7yfj, .framer-dfeNy .framer-ceso21, .framer-dfeNy .framer-1jdkpw3, .framer-dfeNy .framer-h39jg6, .framer-dfeNy .framer-1awgna6, .framer-dfeNy .framer-1yf9zv7, .framer-dfeNy .framer-1ovtjxb, .framer-dfeNy .framer-1q6hung, .framer-dfeNy .framer-7dr9ac, .framer-dfeNy .framer-iwsn8v, .framer-dfeNy .framer-1n8gsu8, .framer-dfeNy .framer-tjcpf, .framer-dfeNy .framer-1x2mlrl, .framer-dfeNy .framer-1t56yto, .framer-dfeNy .framer-1xxx12a, .framer-dfeNy .framer-jquc0c, .framer-dfeNy .framer-1d4qe8u, .framer-dfeNy .framer-11ce633, .framer-dfeNy .framer-12km1pl, .framer-dfeNy .framer-1rffkio, .framer-dfeNy .framer-kaeexq, .framer-dfeNy .framer-t9qr1o, .framer-dfeNy .framer-uj7o6c, .framer-dfeNy .framer-5x2asq, .framer-dfeNy .framer-19pdx60, .framer-dfeNy .framer-f6iyix, .framer-dfeNy .framer-162hryc, .framer-dfeNy .framer-1hd0fo, .framer-dfeNy .framer-a391tc, .framer-dfeNy .framer-1usr53v, .framer-dfeNy .framer-h5zpxw, .framer-dfeNy .framer-1880cml, .framer-dfeNy .framer-1majnht, .framer-dfeNy .framer-1qnunak, .framer-dfeNy .framer-qudml5, .framer-dfeNy .framer-1mtau4, .framer-dfeNy .framer-9r190u, .framer-dfeNy .framer-fu3wcm, .framer-dfeNy .framer-16em7ao, .framer-dfeNy .framer-5cd3kx, .framer-dfeNy .framer-1mfuqio, .framer-dfeNy .framer-yaw95a, .framer-dfeNy .framer-y7o9uq, .framer-dfeNy .framer-gel5lz { gap: 0px; } .framer-dfeNy .framer-13gkh1u > * { margin: 0px; margin-left: calc(13px / 2); margin-right: calc(13px / 2); } .framer-dfeNy .framer-13gkh1u > :first-child, .framer-dfeNy .framer-xzsxp8 > :first-child, .framer-dfeNy .framer-ceso21 > :first-child, .framer-dfeNy .framer-1jdkpw3 > :first-child, .framer-dfeNy .framer-h39jg6 > :first-child, .framer-dfeNy .framer-1awgna6 > :first-child, .framer-dfeNy .framer-1yf9zv7 > :first-child, .framer-dfeNy .framer-1ovtjxb > :first-child, .framer-dfeNy .framer-1q6hung > :first-child, .framer-dfeNy .framer-7dr9ac > :first-child, .framer-dfeNy .framer-iwsn8v > :first-child, .framer-dfeNy .framer-tjcpf > :first-child, .framer-dfeNy .framer-1t56yto > :first-child, .framer-dfeNy .framer-1xxx12a > :first-child, .framer-dfeNy .framer-jquc0c > :first-child, .framer-dfeNy .framer-1d4qe8u > :first-child, .framer-dfeNy .framer-11ce633 > :first-child, .framer-dfeNy .framer-12km1pl > :first-child, .framer-dfeNy .framer-1rffkio > :first-child, .framer-dfeNy .framer-kaeexq > :first-child, .framer-dfeNy .framer-t9qr1o > :first-child, .framer-dfeNy .framer-f6iyix > :first-child, .framer-dfeNy .framer-162hryc > :first-child, .framer-dfeNy .framer-1hd0fo > :first-child, .framer-dfeNy .framer-a391tc > :first-child, .framer-dfeNy .framer-1880cml > :first-child, .framer-dfeNy .framer-1majnht > :first-child, .framer-dfeNy .framer-1qnunak > :first-child, .framer-dfeNy .framer-qudml5 > :first-child, .framer-dfeNy .framer-fu3wcm > :first-child, .framer-dfeNy .framer-16em7ao > :first-child, .framer-dfeNy .framer-5cd3kx > :first-child, .framer-dfeNy .framer-1mfuqio > :first-child { margin-left: 0px; } .framer-dfeNy .framer-13gkh1u > :last-child, .framer-dfeNy .framer-xzsxp8 > :last-child, .framer-dfeNy .framer-ceso21 > :last-child, .framer-dfeNy .framer-1jdkpw3 > :last-child, .framer-dfeNy .framer-h39jg6 > :last-child, .framer-dfeNy .framer-1awgna6 > :last-child, .framer-dfeNy .framer-1yf9zv7 > :last-child, .framer-dfeNy .framer-1ovtjxb > :last-child, .framer-dfeNy .framer-1q6hung > :last-child, .framer-dfeNy .framer-7dr9ac > :last-child, .framer-dfeNy .framer-iwsn8v > :last-child, .framer-dfeNy .framer-tjcpf > :last-child, .framer-dfeNy .framer-1t56yto > :last-child, .framer-dfeNy .framer-1xxx12a > :last-child, .framer-dfeNy .framer-jquc0c > :last-child, .framer-dfeNy .framer-1d4qe8u > :last-child, .framer-dfeNy .framer-11ce633 > :last-child, .framer-dfeNy .framer-12km1pl > :last-child, .framer-dfeNy .framer-1rffkio > :last-child, .framer-dfeNy .framer-kaeexq > :last-child, .framer-dfeNy .framer-t9qr1o > :last-child, .framer-dfeNy .framer-f6iyix > :last-child, .framer-dfeNy .framer-162hryc > :last-child, .framer-dfeNy .framer-1hd0fo > :last-child, .framer-dfeNy .framer-a391tc > :last-child, .framer-dfeNy .framer-1880cml > :last-child, .framer-dfeNy .framer-1majnht > :last-child, .framer-dfeNy .framer-1qnunak > :last-child, .framer-dfeNy .framer-qudml5 > :last-child, .framer-dfeNy .framer-fu3wcm > :last-child, .framer-dfeNy .framer-16em7ao > :last-child, .framer-dfeNy .framer-5cd3kx > :last-child, .framer-dfeNy .framer-1mfuqio > :last-child { margin-right: 0px; } .framer-dfeNy .framer-119z9g3 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-dfeNy .framer-119z9g3 > :first-child, .framer-dfeNy .framer-7f7yfj > :first-child, .framer-dfeNy .framer-1n8gsu8 > :first-child, .framer-dfeNy .framer-1x2mlrl > :first-child, .framer-dfeNy .framer-uj7o6c > :first-child, .framer-dfeNy .framer-5x2asq > :first-child, .framer-dfeNy .framer-19pdx60 > :first-child, .framer-dfeNy .framer-1usr53v > :first-child, .framer-dfeNy .framer-h5zpxw > :first-child, .framer-dfeNy .framer-1mtau4 > :first-child, .framer-dfeNy .framer-9r190u > :first-child, .framer-dfeNy .framer-yaw95a > :first-child, .framer-dfeNy .framer-y7o9uq > :first-child, .framer-dfeNy .framer-gel5lz > :first-child { margin-top: 0px; } .framer-dfeNy .framer-119z9g3 > :last-child, .framer-dfeNy .framer-7f7yfj > :last-child, .framer-dfeNy .framer-1n8gsu8 > :last-child, .framer-dfeNy .framer-1x2mlrl > :last-child, .framer-dfeNy .framer-uj7o6c > :last-child, .framer-dfeNy .framer-5x2asq > :last-child, .framer-dfeNy .framer-19pdx60 > :last-child, .framer-dfeNy .framer-1usr53v > :last-child, .framer-dfeNy .framer-h5zpxw > :last-child, .framer-dfeNy .framer-1mtau4 > :last-child, .framer-dfeNy .framer-9r190u > :last-child, .framer-dfeNy .framer-yaw95a > :last-child, .framer-dfeNy .framer-y7o9uq > :last-child, .framer-dfeNy .framer-gel5lz > :last-child { margin-bottom: 0px; } .framer-dfeNy .framer-xzsxp8 > * { margin: 0px; margin-left: calc(3.8155202865600586px / 2); margin-right: calc(3.8155202865600586px / 2); } .framer-dfeNy .framer-7f7yfj > *, .framer-dfeNy .framer-1n8gsu8 > *, .framer-dfeNy .framer-1x2mlrl > *, .framer-dfeNy .framer-uj7o6c > *, .framer-dfeNy .framer-5x2asq > *, .framer-dfeNy .framer-1usr53v > *, .framer-dfeNy .framer-1mtau4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-dfeNy .framer-ceso21 > *, .framer-dfeNy .framer-1yf9zv7 > *, .framer-dfeNy .framer-1ovtjxb > *, .framer-dfeNy .framer-1t56yto > *, .framer-dfeNy .framer-11ce633 > *, .framer-dfeNy .framer-12km1pl > *, .framer-dfeNy .framer-t9qr1o > *, .framer-dfeNy .framer-f6iyix > *, .framer-dfeNy .framer-1880cml > *, .framer-dfeNy .framer-fu3wcm > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-dfeNy .framer-1jdkpw3 > *, .framer-dfeNy .framer-1q6hung > * { margin: 0px; margin-left: calc(9.538801193237305px / 2); margin-right: calc(9.538801193237305px / 2); } .framer-dfeNy .framer-h39jg6 > *, .framer-dfeNy .framer-1awgna6 > *, .framer-dfeNy .framer-7dr9ac > * { margin: 0px; margin-left: calc(7.631040573120117px / 2); margin-right: calc(7.631040573120117px / 2); } .framer-dfeNy .framer-iwsn8v > * { margin: 0px; margin-left: calc(9.083593368530273px / 2); margin-right: calc(9.083593368530273px / 2); } .framer-dfeNy .framer-tjcpf > * { margin: 0px; margin-left: calc(3.027864694595337px / 2); margin-right: calc(3.027864694595337px / 2); } .framer-dfeNy .framer-1xxx12a > * { margin: 0px; margin-left: calc(7.569662094116211px / 2); margin-right: calc(7.569662094116211px / 2); } .framer-dfeNy .framer-jquc0c > *, .framer-dfeNy .framer-1d4qe8u > *, .framer-dfeNy .framer-kaeexq > * { margin: 0px; margin-left: calc(6.055729389190674px / 2); margin-right: calc(6.055729389190674px / 2); } .framer-dfeNy .framer-1rffkio > * { margin: 0px; margin-left: calc(7.569661617279053px / 2); margin-right: calc(7.569661617279053px / 2); } .framer-dfeNy .framer-19pdx60 > *, .framer-dfeNy .framer-h5zpxw > *, .framer-dfeNy .framer-9r190u > * { margin: 0px; margin-bottom: calc(7.352132320404053px / 2); margin-top: calc(7.352132320404053px / 2); } .framer-dfeNy .framer-162hryc > *, .framer-dfeNy .framer-1hd0fo > *, .framer-dfeNy .framer-1majnht > *, .framer-dfeNy .framer-1qnunak > *, .framer-dfeNy .framer-16em7ao > *, .framer-dfeNy .framer-5cd3kx > * { margin: 0px; margin-left: calc(6.126776695251465px / 2); margin-right: calc(6.126776695251465px / 2); } .framer-dfeNy .framer-a391tc > *, .framer-dfeNy .framer-qudml5 > *, .framer-dfeNy .framer-1mfuqio > * { margin: 0px; margin-left: calc(7.398961544036865px / 2); margin-right: calc(7.398961544036865px / 2); } .framer-dfeNy .framer-yaw95a > * { margin: 0px; margin-bottom: calc(3.1317291259765625px / 2); margin-top: calc(3.1317291259765625px / 2); } .framer-dfeNy .framer-y7o9uq > * { margin: 0px; margin-bottom: calc(4.519347667694092px / 2); margin-top: calc(4.519347667694092px / 2); } .framer-dfeNy .framer-gel5lz > * { margin: 0px; margin-bottom: calc(6.914625644683838px / 2); margin-top: calc(6.914625644683838px / 2); } }\",\".framer-dfeNy.framer-v-18ukgk2 .framer-t9qr1o { top: 51%; }\",\".framer-dfeNy.framer-v-18ukgk2 .framer-16yc363 { order: 0; }\",\".framer-dfeNy.framer-v-1igmauq .framer-15r3oqn { bottom: -2px; height: var(--framer-aspect-ratio-supported, 309px); left: -38px; right: -33px; width: unset; }\",\".framer-dfeNy.framer-v-1q5l7 .framer-1plm3ao, .framer-dfeNy.framer-v-dmyr1a .framer-1plm3ao, .framer-dfeNy.framer-v-dlj7dz .framer-1plm3ao, .framer-dfeNy.framer-v-eukgfi .framer-1plm3ao { bottom: -201px; height: unset; left: unset; right: -419px; top: -180px; width: var(--framer-aspect-ratio-supported, 690px); }\",\".framer-dfeNy.framer-v-1q5l7 .framer-1nt7su1, .framer-dfeNy.framer-v-dmyr1a .framer-1nt7su1, .framer-dfeNy.framer-v-dlj7dz .framer-1nt7su1, .framer-dfeNy.framer-v-eukgfi .framer-1nt7su1 { bottom: -206px; height: unset; left: unset; right: -558px; top: -175px; width: var(--framer-aspect-ratio-supported, 690px); }\",\".framer-dfeNy.framer-v-1q5l7 .framer-4cg1tr, .framer-dfeNy.framer-v-dmyr1a .framer-4cg1tr, .framer-dfeNy.framer-v-dlj7dz .framer-4cg1tr, .framer-dfeNy.framer-v-eukgfi .framer-4cg1tr { bottom: -114px; left: unset; right: -134px; top: unset; }\",\".framer-dfeNy.framer-v-1q5l7 .framer-1rt605l, .framer-dfeNy.framer-v-dmyr1a .framer-1rt605l, .framer-dfeNy.framer-v-dlj7dz .framer-1rt605l, .framer-dfeNy.framer-v-eukgfi .framer-1rt605l { bottom: 35px; left: unset; right: -48px; top: unset; }\",'.framer-dfeNy[data-border=\"true\"]::after, .framer-dfeNy [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 309\n * @framerIntrinsicWidth 299\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"yRembFGVX\":{\"layout\":[\"fixed\",\"fixed\"]},\"PhT_0dRIZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"QJXWpD3jw\":{\"layout\":[\"fixed\",\"fixed\"]},\"iyTdNzvte\":{\"layout\":[\"fixed\",\"fixed\"]},\"Wu7PC6Ufn\":{\"layout\":[\"fixed\",\"fixed\"]},\"wOcwycSOR\":{\"layout\":[\"fixed\",\"fixed\"]},\"JUFrnyu_Z\":{\"layout\":[\"fixed\",\"fixed\"]},\"JsoUCx6Lx\":{\"layout\":[\"fixed\",\"fixed\"]},\"ucYNhNzGr\":{\"layout\":[\"fixed\",\"fixed\"]},\"YAGce65sb\":{\"layout\":[\"fixed\",\"fixed\"]},\"GgP7mqX2Q\":{\"layout\":[\"fixed\",\"fixed\"]},\"KvZnAPQaO\":{\"layout\":[\"fixed\",\"fixed\"]},\"XSE_VafQ9\":{\"layout\":[\"fixed\",\"fixed\"]},\"M5ycnzlRJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"i1Xp8Vz_4\":{\"layout\":[\"fixed\",\"fixed\"]},\"tqZxo_99Y\":{\"layout\":[\"fixed\",\"fixed\"]},\"Df0imjbKi\":{\"layout\":[\"fixed\",\"fixed\"]},\"Abumdszi7\":{\"layout\":[\"fixed\",\"fixed\"]},\"sDqQv1_c5\":{\"layout\":[\"fixed\",\"fixed\"]},\"xAyyHWYoQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"m3P0TTQMG\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameryzoeN0SQa=withCSS(Component,css,\"framer-dfeNy\");export default FrameryzoeN0SQa;FrameryzoeN0SQa.displayName=\"Content bento box 1\";FrameryzoeN0SQa.defaultProps={height:309,width:299};addPropertyControls(FrameryzoeN0SQa,{variant:{options:[\"ppIej4wMi\",\"yRembFGVX\",\"PhT_0dRIZ\",\"QJXWpD3jw\",\"iyTdNzvte\",\"Wu7PC6Ufn\",\"wOcwycSOR\",\"JUFrnyu_Z\",\"JsoUCx6Lx\",\"ucYNhNzGr\",\"YAGce65sb\",\"GgP7mqX2Q\",\"KvZnAPQaO\",\"XSE_VafQ9\",\"M5ycnzlRJ\",\"i1Xp8Vz_4\",\"tqZxo_99Y\",\"Df0imjbKi\",\"Abumdszi7\",\"sDqQv1_c5\",\"xAyyHWYoQ\",\"m3P0TTQMG\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\",\"Variant 8\",\"Variant 9\",\"Variant 10\",\"Variant 11\",\"Variant 12\",\"Variant 13\",\"Variant 14\",\"Variant 15\",\"Variant 16\",\"Self\",\"Robo\",\"ST\",\"Variant 20\",\"Robo 2\",\"Variant 22\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameryzoeN0SQa,[{explicitInter:true,fonts:[{family:\"Antonio\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/antonio/v19/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8RtNY2DwSXlM.woff2\",weight:\"400\"}]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryzoeN0SQa\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"309\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yRembFGVX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PhT_0dRIZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QJXWpD3jw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"iyTdNzvte\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Wu7PC6Ufn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wOcwycSOR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JUFrnyu_Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JsoUCx6Lx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ucYNhNzGr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YAGce65sb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GgP7mqX2Q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KvZnAPQaO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XSE_VafQ9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"M5ycnzlRJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"i1Xp8Vz_4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tqZxo_99Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Df0imjbKi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Abumdszi7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sDqQv1_c5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xAyyHWYoQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"m3P0TTQMG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"299\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./yzoeN0SQa.map"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "isDisplayed14", "isDisplayed15", "isDisplayed16", "LayoutGroup", "u", "SVG", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerJCUTktxxM", "withCSS", "JCUTktxxM_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFX", "withFX", "motion", "VideoFonts", "getFonts", "Video", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "isDisplayed14", "isDisplayed15", "isDisplayed16", "isDisplayed17", "isDisplayed18", "isDisplayed19", "isDisplayed20", "isDisplayed21", "isDisplayed22", "isDisplayed23", "isDisplayed24", "isDisplayed25", "isDisplayed26", "LayoutGroup", "u", "SVG", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FrameryzoeN0SQa", "withCSS", "yzoeN0SQa_default", "addPropertyControls", "ControlType", "addFonts"]
}
