{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/zEmAposrjympIK2ybAcQ/Video.js", "ssg:https://framerusercontent.com/modules/BUsezZrTZEjKYwTU2Ai4/bYdRA7cvIWHGkUliIKlT/bnHYUXOQM.js", "ssg:https://framerusercontent.com/modules/F7LdaB9XIbbyEP35s76m/3Ovu7eNNSAVxKzEmVbRK/EpjD07AXk.js", "ssg:https://framerusercontent.com/modules/K65U0CxYcm94vcIzdmj2/cTx6S3BEfkCW2ljjVRew/HqEL9yMV6.js", "ssg:https://framerusercontent.com/modules/m7U3FbdtYWp76trart65/8qZsrGnU8Tzwx1WdA2Kd/PcJyMiqgG.js", "ssg:https://framerusercontent.com/modules/4MTnK0I5xA51NhulWu94/YgMWq7lvdZy2Dq3vciuJ/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster=\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\",playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\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 */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",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:0};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\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](http://framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options: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\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (2e3161d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import{Video as Video1}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/zEmAposrjympIK2ybAcQ/Video.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/h2SxYzVu6RKI58fiiRSN/6O1BvigUOa6YgkGuRQSa/DjrDyFYIF.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/fsUzfGoL2H1RGoWYQSoC/Orre1KgOFF3SQ6P7Yys3/E3ig3bWNQ.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/9YG8OAdmxAaCzxpyYqEL/Hk8bKZxZj3v1pgul7WZI/qcg0OEbTe.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/MuhNyqm2ENj8hSawb5Q0/WnJzEdRFu93BK1DqChPf/rm5nScM5K.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/fcgQfvybk4HFLcFCE5Ql/lethDbalJ3fHXJgzmntp/YB12pWJWI.js\";import Button from\"https://framerusercontent.com/modules/vELMSMEVYWdWUXgVm7v0/w7RCgaRVKQ6CPAuin7C2/eoOuuu22q.js\";const FeatherFonts=getFonts(Feather);const VideoFonts=getFonts(Video);const ButtonFonts=getFonts(Button);const Video1Controls=getPropertyControls(Video1);const FeatherControls=getPropertyControls(Feather);const cycleOrder=[\"REE6RNUIB\",\"EJawCEUJB\",\"OAln1hOXV\",\"I6xX9n2Vv\"];const serializationHash=\"framer-HxikJ\";const variantClassNames={EJawCEUJB:\"framer-v-qi0a2m\",I6xX9n2Vv:\"framer-v-8qvm30\",OAln1hOXV:\"framer-v-1r981la\",REE6RNUIB:\"framer-v-1nvppau\"};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 toImageSrc=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value.src;}return typeof value===\"string\"?value:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Alert-circle\":\"alert-circle\",\"Alert-octagon\":\"alert-octagon\",\"Alert-triangle\":\"alert-triangle\",\"Align-center\":\"align-center\",\"Align-justify\":\"align-justify\",\"Align-left\":\"align-left\",\"Align-right\":\"align-right\",\"Arrow-down-circle\":\"arrow-down-circle\",\"Arrow-down-left\":\"arrow-down-left\",\"Arrow-down-right\":\"arrow-down-right\",\"Arrow-down\":\"arrow-down\",\"Arrow-left-circle\":\"arrow-left-circle\",\"Arrow-left\":\"arrow-left\",\"Arrow-right-circle\":\"arrow-right-circle\",\"Arrow-right\":\"arrow-right\",\"Arrow-up-circle\":\"arrow-up-circle\",\"Arrow-up-left\":\"arrow-up-left\",\"Arrow-up-right\":\"arrow-up-right\",\"Arrow-up\":\"arrow-up\",\"At-sign\":\"at-sign\",\"Bar-chart-2\":\"bar-chart-2\",\"Bar-chart\":\"bar-chart\",\"Battery-charging\":\"battery-charging\",\"Bell-off\":\"bell-off\",\"Book-open\":\"book-open\",\"Camera-off\":\"camera-off\",\"Check-circle\":\"check-circle\",\"Check-square\":\"check-square\",\"Chevron-down\":\"chevron-down\",\"Chevron-left\":\"chevron-left\",\"Chevron-right\":\"chevron-right\",\"Chevron-up\":\"chevron-up\",\"Chevrons-down\":\"chevrons-down\",\"Chevrons-left\":\"chevrons-left\",\"Chevrons-right\":\"chevrons-right\",\"Chevrons-up\":\"chevrons-up\",\"Cloud-drizzle\":\"cloud-drizzle\",\"Cloud-lightning\":\"cloud-lightning\",\"Cloud-off\":\"cloud-off\",\"Cloud-rain\":\"cloud-rain\",\"Cloud-snow\":\"cloud-snow\",\"Corner-down-left\":\"corner-down-left\",\"Corner-down-right\":\"corner-down-right\",\"Corner-left-down\":\"corner-left-down\",\"Corner-left-up\":\"corner-left-up\",\"Corner-right-down\":\"corner-right-down\",\"Corner-right-up\":\"corner-right-up\",\"Corner-up-left\":\"corner-up-left\",\"Corner-up-right\":\"corner-up-right\",\"Credit-card\":\"credit-card\",\"Divide-circle\":\"divide-circle\",\"Divide-square\":\"divide-square\",\"Dollar-sign\":\"dollar-sign\",\"Download-cloud\":\"download-cloud\",\"Edit-2\":\"edit-2\",\"Edit-3\":\"edit-3\",\"External-link\":\"external-link\",\"Eye-off\":\"eye-off\",\"Fast-forward\":\"fast-forward\",\"File-minus\":\"file-minus\",\"File-plus\":\"file-plus\",\"File-text\":\"file-text\",\"Folder-minus\":\"folder-minus\",\"Folder-plus\":\"folder-plus\",\"Git-branch\":\"git-branch\",\"Git-commit\":\"git-commit\",\"Git-merge\":\"git-merge\",\"Git-pull-request\":\"git-pull-request\",\"Hard-drive\":\"hard-drive\",\"Help-circle\":\"help-circle\",\"Life-buoy\":\"life-buoy\",\"Link-2\":\"link-2\",\"Log-in\":\"log-in\",\"Log-out\":\"log-out\",\"Map-pin\":\"map-pin\",\"Maximize-2\":\"maximize-2\",\"Message-circle\":\"message-circle\",\"Message-square\":\"message-square\",\"Mic-off\":\"mic-off\",\"Minimize-2\":\"minimize-2\",\"Minus-circle\":\"minus-circle\",\"Minus-square\":\"minus-square\",\"More-horizontal\":\"more-horizontal\",\"More-vertical\":\"more-vertical\",\"Mouse-pointer\":\"mouse-pointer\",\"Navigation-2\":\"navigation-2\",\"Pause-circle\":\"pause-circle\",\"Pen-tool\":\"pen-tool\",\"Phone-call\":\"phone-call\",\"Phone-forwarded\":\"phone-forwarded\",\"Phone-incoming\":\"phone-incoming\",\"Phone-missed\":\"phone-missed\",\"Phone-off\":\"phone-off\",\"Phone-outgoing\":\"phone-outgoing\",\"Pie-chart\":\"pie-chart\",\"Play-circle\":\"play-circle\",\"Plus-circle\":\"plus-circle\",\"Plus-square\":\"plus-square\",\"Refresh-ccw\":\"refresh-ccw\",\"Refresh-cw\":\"refresh-cw\",\"Rotate-ccw\":\"rotate-ccw\",\"Rotate-cw\":\"rotate-cw\",\"Share-2\":\"share-2\",\"Shield-off\":\"shield-off\",\"Shopping-bag\":\"shopping-bag\",\"Shopping-cart\":\"shopping-cart\",\"Skip-back\":\"skip-back\",\"Skip-forward\":\"skip-forward\",\"Stop-circle\":\"stop-circle\",\"Thumbs-down\":\"thumbs-down\",\"Thumbs-up\":\"thumbs-up\",\"Toggle-left\":\"toggle-left\",\"Toggle-right\":\"toggle-right\",\"Trash-2\":\"trash-2\",\"Trending-down\":\"trending-down\",\"Trending-up\":\"trending-up\",\"Upload-cloud\":\"upload-cloud\",\"User-check\":\"user-check\",\"User-minus\":\"user-minus\",\"User-plus\":\"user-plus\",\"User-x\":\"user-x\",\"Video-off\":\"video-off\",\"Volume-1\":\"volume-1\",\"Volume-2\":\"volume-2\",\"Volume-x\":\"volume-x\",\"Wifi-off\":\"wifi-off\",\"X-circle\":\"x-circle\",\"X-octagon\":\"x-octagon\",\"X-square\":\"x-square\",\"Zap-off\":\"zap-off\",\"Zoom-in\":\"zoom-in\",\"Zoom-out\":\"zoom-out\",Activity:\"activity\",Airplay:\"airplay\",Anchor:\"anchor\",Aperture:\"aperture\",Archive:\"archive\",Award:\"award\",Battery:\"battery\",Bell:\"bell\",Bluetooth:\"bluetooth\",Bold:\"bold\",Book:\"book\",Bookmark:\"bookmark\",Box:\"box\",Briefcase:\"briefcase\",Calendar:\"calendar\",Camera:\"camera\",Cast:\"cast\",Check:\"check\",Chrome:\"chrome\",Circle:\"circle\",Clipboard:\"clipboard\",Clock:\"clock\",Cloud:\"cloud\",Code:\"code\",Codepen:\"codepen\",Codesandbox:\"codesandbox\",Coffee:\"coffee\",Columns:\"columns\",Command:\"command\",Compass:\"compass\",Copy:\"copy\",Cpu:\"cpu\",Crop:\"crop\",Crosshair:\"crosshair\",Database:\"database\",Delete:\"delete\",Disc:\"disc\",Divide:\"divide\",Download:\"download\",Dribbble:\"dribbble\",Droplet:\"droplet\",Edit:\"edit\",Eye:\"eye\",Facebook:\"facebook\",Feather:\"feather\",Figma:\"figma\",File:\"file\",Film:\"film\",Filter:\"filter\",Flag:\"flag\",Folder:\"folder\",Framer:\"framer\",Frown:\"frown\",Gift:\"gift\",Github:\"github\",Gitlab:\"gitlab\",Globe:\"globe\",Grid:\"grid\",Hash:\"hash\",Headphones:\"headphones\",Heart:\"heart\",Hexagon:\"hexagon\",Home:\"home\",Image:\"image\",Inbox:\"inbox\",Info:\"info\",Instagram:\"instagram\",Italic:\"italic\",Key:\"key\",Layers:\"layers\",Layout:\"layout\",Link:\"link\",Linkedin:\"linkedin\",List:\"list\",Loader:\"loader\",Lock:\"lock\",Mail:\"mail\",Map:\"map\",Maximize:\"maximize\",Meh:\"meh\",Menu:\"menu\",Mic:\"mic\",Minimize:\"minimize\",Minus:\"minus\",Monitor:\"monitor\",Moon:\"moon\",Move:\"move\",Music:\"music\",Navigation:\"navigation\",Octagon:\"octagon\",Package:\"package\",Paperclip:\"paperclip\",Pause:\"pause\",Percent:\"percent\",Phone:\"phone\",Play:\"play\",Plus:\"plus\",Pocket:\"pocket\",Power:\"power\",Printer:\"printer\",Radio:\"radio\",Repeat:\"repeat\",Rewind:\"rewind\",Rss:\"rss\",Save:\"save\",Scissors:\"scissors\",Search:\"search\",Send:\"send\",Server:\"server\",Settings:\"settings\",Share:\"share\",Shield:\"shield\",Shuffle:\"shuffle\",Sidebar:\"sidebar\",Slack:\"slack\",Slash:\"slash\",Sliders:\"sliders\",Smartphone:\"smartphone\",Smile:\"smile\",Speaker:\"speaker\",Square:\"square\",Star:\"star\",Sun:\"sun\",Sunrise:\"sunrise\",Sunset:\"sunset\",Tablet:\"tablet\",Tag:\"tag\",Target:\"target\",Terminal:\"terminal\",Thermometer:\"thermometer\",Tool:\"tool\",Trash:\"trash\",Trello:\"trello\",Triangle:\"triangle\",Truck:\"truck\",Tv:\"tv\",Twitch:\"twitch\",Twitter:\"twitter\",Type:\"type\",Umbrella:\"umbrella\",Underline:\"underline\",Unlock:\"unlock\",Upload:\"upload\",User:\"user\",Users:\"users\",Video:\"video\",Voicemail:\"voicemail\",Volume:\"volume\",Watch:\"watch\",Wifi:\"wifi\",Wind:\"wind\",X:\"x\",Youtube:\"youtube\",Zap:\"zap\"};const humanReadableVariantMap={\"Left to Right\":\"EJawCEUJB\",\"Right to Left\":\"REE6RNUIB\",Phone:\"I6xX9n2Vv\",Tablet:\"OAln1hOXV\"};const getProps=({color,desc,file,height,id,image,label,labelButton,link,name1,select,source,title,width,...props})=>{return{...props,AQO30j1KA:desc??props.AQO30j1KA??\"Description\",AZLp3iTYL:label??props.AZLp3iTYL??\"BENEFIT\",cP4beJ60V:image??props.cP4beJ60V,DUzfd5Iy7:humanReadableEnumMap[name1]??name1??props.DUzfd5Iy7??\"home\",jXX10BgKB:color??props.jXX10BgKB??\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\",Klunatx_6:select??props.Klunatx_6??true,On2wR2Mo6:source??props.On2wR2Mo6??\"Upload\",ov_WnLTnr:labelButton??props.ov_WnLTnr??\"Explore\",QGB28ngEn:link??props.QGB28ngEn,variant:humanReadableVariantMap[props.variant]??props.variant??\"REE6RNUIB\",vwbdmBWc3:file??props.vwbdmBWc3,zi7Oz1IOj:title??props.zi7Oz1IOj??\"Section Title\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,AZLp3iTYL,zi7Oz1IOj,AQO30j1KA,vwbdmBWc3,On2wR2Mo6,Klunatx_6,DUzfd5Iy7,jXX10BgKB,cP4beJ60V,ov_WnLTnr,QGB28ngEn,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"REE6RNUIB\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"OAln1hOXV\",\"I6xX9n2Vv\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"OAln1hOXV\",\"I6xX9n2Vv\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const componentViewport=useComponentViewport();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(serializationHash,...sharedStyleClassNames,\"framer-1nvppau\",className,classNames),\"data-framer-name\":\"Right to Left\",layoutDependency:layoutDependency,layoutId:\"REE6RNUIB\",ref:ref??ref1,style:{...style},...addPropertyOverrides({EJawCEUJB:{\"data-framer-name\":\"Left to Right\"},I6xX9n2Vv:{\"data-framer-name\":\"Phone\"},OAln1hOXV:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qqdnx8\",layoutDependency:layoutDependency,layoutId:\"jnmJeWWNJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1shxk0e\",layoutDependency:layoutDependency,layoutId:\"gd3rj1uEW\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ercukh-container\",layoutDependency:layoutDependency,layoutId:\"qbBKyxsVC-container\",children:/*#__PURE__*/_jsx(Feather,{color:jXX10BgKB,height:\"100%\",iconSearch:\"Home\",iconSelection:DUzfd5Iy7,id:\"qbBKyxsVC\",layoutId:\"qbBKyxsVC\",mirrored:false,selectByList:Klunatx_6,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mcx7ps\",\"data-styles-preset\":\"E3ig3bWNQ\",children:\"BENEFIT\"})}),className:\"framer-1fl1dgq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"X1sF19zZH\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:AZLp3iTYL,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({I6xX9n2Vv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-154th64\",\"data-styles-preset\":\"rm5nScM5K\",children:\"BENEFIT\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-ehi5dk\",\"data-styles-preset\":\"DjrDyFYIF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255)))\"},children:\"Section Title\"})}),className:\"framer-1e9f9a7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hYWbgw6mN\",style:{\"--extracted-1of0zx5\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:zi7Oz1IOj,variants:{I6xX9n2Vv:{\"--extracted-gdpscs\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({I6xX9n2Vv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1dfozg0\",\"data-styles-preset\":\"YB12pWJWI\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255)))\"},children:\"Section Title\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1p685yq\",\"data-styles-preset\":\"qcg0OEbTe\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255)))\"},children:\"Description\"})}),className:\"framer-1gan7i8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OiQ1vOzEc\",style:{\"--extracted-r6o4lv\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:AQO30j1KA,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1udqot8\",layoutDependency:layoutDependency,layoutId:\"gfL8Cg9rp\",style:{backgroundColor:\"rgb(255, 255, 255)\"},variants:{I6xX9n2Vv:{backgroundColor:\"rgba(0, 0, 0, 0)\"},OAln1hOXV:{backgroundColor:\"rgba(255, 255, 255, 0)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hgq7kj-container\",layoutDependency:layoutDependency,layoutId:\"VESVkqpzb-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"VESVkqpzb\",isMixedBorderRadius:false,layoutId:\"VESVkqpzb\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:vwbdmBWc3,srcType:On2wR2Mo6,srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({I6xX9n2Vv:{backgroundColor:\"rgba(255, 255, 255, 0)\",poster:toImageSrc(cP4beJ60V),style:{width:\"100%\"}},OAln1hOXV:{poster:toImageSrc(cP4beJ60V)}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-15yx9pi\",layoutDependency:layoutDependency,layoutId:\"TQDAQKV3y\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,...addPropertyOverrides({I6xX9n2Vv:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-386)/2+314+20)+20},OAln1hOXV:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-625)/2+553+20)+20}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-msliev-container\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"f_uHNNAhP-container\",name:\"Button\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"f_uHNNAhP\",layoutId:\"f_uHNNAhP\",MvNJev6Df:\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\",name:\"Button\",oWE6eT4Pb:\"https://calendly.com/ospree-meetings/ospree-demo?embed_domain=ospree.io&embed_type=PopupText&background_color=434b59&text_color=ffffff&primary_color=00cacd&month=2024-10\",variant:\"pYV0kI0uP\",vXY6OI5Bc:\"Get started\",width:\"100%\",...addPropertyOverrides({I6xX9n2Vv:{oWE6eT4Pb:undefined,vXY6OI5Bc:\"Explore\"},OAln1hOXV:{oWE6eT4Pb:undefined,vXY6OI5Bc:\"Explore\"}},baseVariant,gestureVariant)})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b3123p\",layoutDependency:layoutDependency,layoutId:\"DZfKEQhqK\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pj5u7t\",layoutDependency:layoutDependency,layoutId:\"TZIM2_4d0\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8vixgu-container\",layoutDependency:layoutDependency,layoutId:\"ULS4n7XPP-container\",children:/*#__PURE__*/_jsx(Feather,{color:jXX10BgKB,height:\"100%\",iconSearch:\"Home\",iconSelection:DUzfd5Iy7,id:\"ULS4n7XPP\",layoutId:\"ULS4n7XPP\",mirrored:false,selectByList:Klunatx_6,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mcx7ps\",\"data-styles-preset\":\"E3ig3bWNQ\",children:\"BENEFIT\"})}),className:\"framer-1olzphl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TQv3r5QBv\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:AZLp3iTYL,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-ehi5dk\",\"data-styles-preset\":\"DjrDyFYIF\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255)))\"},children:\"Section Title\"})}),className:\"framer-1riln3w\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OyxBOfyHd\",style:{\"--extracted-1of0zx5\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:zi7Oz1IOj,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255)))\"},children:\"Description\"})}),className:\"framer-g8fsiv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JsNnJqkeV\",style:{\"--extracted-r6o4lv\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:AQO30j1KA,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-avqvol\",layoutDependency:layoutDependency,layoutId:\"L0Sq1ACYc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(0+((componentViewport?.height||333)-0-298)/2)+0+246+20,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-m5jopw-container\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"vuapB3FCp-container\",name:\"Button\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"vuapB3FCp\",layoutId:\"vuapB3FCp\",MvNJev6Df:\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\",name:\"Button\",oWE6eT4Pb:QGB28ngEn,variant:\"pYV0kI0uP\",vXY6OI5Bc:ov_WnLTnr,width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1igu0l\",layoutDependency:layoutDependency,layoutId:\"egTnB_FOY\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-32u4gt-container\",layoutDependency:layoutDependency,layoutId:\"JWLJUsD7u-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"JWLJUsD7u\",isMixedBorderRadius:false,layoutId:\"JWLJUsD7u\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:toImageSrc(cP4beJ60V),posterEnabled:true,srcFile:vwbdmBWc3,srcType:On2wR2Mo6,srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({EJawCEUJB:{backgroundColor:\"rgba(255, 255, 255, 0)\"}},baseVariant,gestureVariant)})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HxikJ.framer-1tsqt5d, .framer-HxikJ .framer-1tsqt5d { display: block; }\",\".framer-HxikJ.framer-1nvppau { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1000px; }\",\".framer-HxikJ .framer-qqdnx8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 20px 0px; position: relative; width: 545px; }\",\".framer-HxikJ .framer-1shxk0e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HxikJ .framer-1ercukh-container, .framer-HxikJ .framer-8vixgu-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-HxikJ .framer-1fl1dgq, .framer-HxikJ .framer-1olzphl { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HxikJ .framer-1e9f9a7, .framer-HxikJ .framer-1gan7i8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 545px; word-break: break-word; word-wrap: break-word; }\",\".framer-HxikJ .framer-1udqot8, .framer-HxikJ .framer-1igu0l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 333px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 500px; }\",\".framer-HxikJ .framer-1hgq7kj-container, .framer-HxikJ .framer-32u4gt-container { aspect-ratio: 1.5011037527593818 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 333px); position: relative; width: 500px; }\",\".framer-HxikJ .framer-15yx9pi { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-HxikJ .framer-msliev-container, .framer-HxikJ .framer-m5jopw-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-HxikJ .framer-b3123p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 0px 0px; position: relative; width: 486px; }\",\".framer-HxikJ .framer-1pj5u7t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 525px; }\",\".framer-HxikJ .framer-1riln3w { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 470px; word-break: break-word; word-wrap: break-word; }\",\".framer-HxikJ .framer-g8fsiv { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 432px; word-break: break-word; word-wrap: break-word; }\",\".framer-HxikJ .framer-avqvol { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: 525px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HxikJ.framer-1nvppau, .framer-HxikJ .framer-qqdnx8, .framer-HxikJ .framer-1shxk0e, .framer-HxikJ .framer-1udqot8, .framer-HxikJ .framer-15yx9pi, .framer-HxikJ .framer-b3123p, .framer-HxikJ .framer-1pj5u7t, .framer-HxikJ .framer-avqvol, .framer-HxikJ .framer-1igu0l { gap: 0px; } .framer-HxikJ.framer-1nvppau > *, .framer-HxikJ .framer-1shxk0e > *, .framer-HxikJ .framer-1udqot8 > *, .framer-HxikJ .framer-15yx9pi > *, .framer-HxikJ .framer-1pj5u7t > *, .framer-HxikJ .framer-avqvol > *, .framer-HxikJ .framer-1igu0l > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-HxikJ.framer-1nvppau > :first-child, .framer-HxikJ .framer-1shxk0e > :first-child, .framer-HxikJ .framer-1udqot8 > :first-child, .framer-HxikJ .framer-15yx9pi > :first-child, .framer-HxikJ .framer-1pj5u7t > :first-child, .framer-HxikJ .framer-avqvol > :first-child, .framer-HxikJ .framer-1igu0l > :first-child { margin-left: 0px; } .framer-HxikJ.framer-1nvppau > :last-child, .framer-HxikJ .framer-1shxk0e > :last-child, .framer-HxikJ .framer-1udqot8 > :last-child, .framer-HxikJ .framer-15yx9pi > :last-child, .framer-HxikJ .framer-1pj5u7t > :last-child, .framer-HxikJ .framer-avqvol > :last-child, .framer-HxikJ .framer-1igu0l > :last-child { margin-right: 0px; } .framer-HxikJ .framer-qqdnx8 > *, .framer-HxikJ .framer-b3123p > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-HxikJ .framer-qqdnx8 > :first-child, .framer-HxikJ .framer-b3123p > :first-child { margin-top: 0px; } .framer-HxikJ .framer-qqdnx8 > :last-child, .framer-HxikJ .framer-b3123p > :last-child { margin-bottom: 0px; } }\",\".framer-HxikJ.framer-v-qi0a2m.framer-1nvppau { gap: 50px; }\",\".framer-HxikJ.framer-v-qi0a2m .framer-b3123p { order: 4; padding: 0px 0px 0px 20px; }\",\".framer-HxikJ.framer-v-qi0a2m .framer-1pj5u7t, .framer-HxikJ.framer-v-8qvm30 .framer-1shxk0e { width: min-content; }\",\".framer-HxikJ.framer-v-qi0a2m .framer-1riln3w { width: 500px; }\",\".framer-HxikJ.framer-v-qi0a2m .framer-1igu0l { order: 3; }\",\".framer-HxikJ.framer-v-qi0a2m .framer-32u4gt-container { height: 100%; width: var(--framer-aspect-ratio-supported, 500px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HxikJ.framer-v-qi0a2m.framer-1nvppau { gap: 0px; } .framer-HxikJ.framer-v-qi0a2m.framer-1nvppau > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-HxikJ.framer-v-qi0a2m.framer-1nvppau > :first-child { margin-left: 0px; } .framer-HxikJ.framer-v-qi0a2m.framer-1nvppau > :last-child { margin-right: 0px; } }\",\".framer-HxikJ.framer-v-1r981la.framer-1nvppau { flex-direction: column; width: 545px; }\",\".framer-HxikJ.framer-v-1r981la .framer-qqdnx8 { align-content: center; align-items: center; justify-content: center; }\",\".framer-HxikJ.framer-v-1r981la .framer-1e9f9a7, .framer-HxikJ.framer-v-8qvm30 .framer-1e9f9a7 { white-space: pre; width: auto; }\",\".framer-HxikJ.framer-v-1r981la .framer-1gan7i8 { width: 470px; }\",\".framer-HxikJ.framer-v-1r981la .framer-15yx9pi { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HxikJ.framer-v-1r981la.framer-1nvppau { gap: 0px; } .framer-HxikJ.framer-v-1r981la.framer-1nvppau > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-HxikJ.framer-v-1r981la.framer-1nvppau > :first-child { margin-top: 0px; } .framer-HxikJ.framer-v-1r981la.framer-1nvppau > :last-child { margin-bottom: 0px; } }\",\".framer-HxikJ.framer-v-8qvm30.framer-1nvppau { flex-direction: column; width: 300px; }\",\".framer-HxikJ.framer-v-8qvm30 .framer-qqdnx8 { align-content: center; align-items: center; justify-content: center; width: min-content; }\",\".framer-HxikJ.framer-v-8qvm30 .framer-1gan7i8 { width: 270px; }\",\".framer-HxikJ.framer-v-8qvm30 .framer-1udqot8 { height: min-content; width: 300px; }\",\".framer-HxikJ.framer-v-8qvm30 .framer-1hgq7kj-container { aspect-ratio: unset; height: auto; width: 300px; }\",\".framer-HxikJ.framer-v-8qvm30 .framer-15yx9pi { flex: none; width: 300px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HxikJ.framer-v-8qvm30.framer-1nvppau { gap: 0px; } .framer-HxikJ.framer-v-8qvm30.framer-1nvppau > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-HxikJ.framer-v-8qvm30.framer-1nvppau > :first-child { margin-top: 0px; } .framer-HxikJ.framer-v-8qvm30.framer-1nvppau > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 333\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"EJawCEUJB\":{\"layout\":[\"fixed\",\"auto\"]},\"OAln1hOXV\":{\"layout\":[\"fixed\",\"auto\"]},\"I6xX9n2Vv\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"AZLp3iTYL\":\"label\",\"zi7Oz1IOj\":\"title\",\"AQO30j1KA\":\"desc\",\"vwbdmBWc3\":\"file\",\"On2wR2Mo6\":\"source\",\"Klunatx_6\":\"select\",\"DUzfd5Iy7\":\"name1\",\"jXX10BgKB\":\"color\",\"cP4beJ60V\":\"image\",\"ov_WnLTnr\":\"labelButton\",\"QGB28ngEn\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbnHYUXOQM=withCSS(Component,css,\"framer-HxikJ\");export default FramerbnHYUXOQM;FramerbnHYUXOQM.displayName=\"Product GIF Cards - Homepage\";FramerbnHYUXOQM.defaultProps={height:333,width:1e3};addPropertyControls(FramerbnHYUXOQM,{variant:{options:[\"REE6RNUIB\",\"EJawCEUJB\",\"OAln1hOXV\",\"I6xX9n2Vv\"],optionTitles:[\"Right to Left\",\"Left to Right\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},AZLp3iTYL:{defaultValue:\"BENEFIT\",displayTextArea:false,title:\"Label\",type:ControlType.String},zi7Oz1IOj:{defaultValue:\"Section Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},AQO30j1KA:{defaultValue:\"Description\",displayTextArea:true,placeholder:\"Ensure secure, interoperable information transfer across jurisdictions, meeting global standards.\",title:\"Desc\",type:ControlType.String},vwbdmBWc3:Video1Controls?.[\"srcFile\"]&&{...Video1Controls[\"srcFile\"],__defaultAssetReference:\"\",description:undefined,hidden:undefined,title:\"File\"},On2wR2Mo6:Video1Controls?.[\"srcType\"]&&{...Video1Controls[\"srcType\"],defaultValue:\"Upload\",description:undefined,hidden:undefined,title:\"Source\"},Klunatx_6:{defaultValue:true,title:\"Select\",type:ControlType.Boolean},DUzfd5Iy7:FeatherControls?.[\"iconSelection\"]&&{...FeatherControls[\"iconSelection\"],defaultValue:\"home\",description:undefined,hidden:undefined,title:\"Name\"},jXX10BgKB:{defaultValue:'var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255)) /* {\"name\":\"Ospree White\"} */',title:\"Color\",type:ControlType.Color},cP4beJ60V:{title:\"Image\",type:ControlType.ResponsiveImage},ov_WnLTnr:{defaultValue:\"Explore\",displayTextArea:false,title:\"Label Button\",type:ControlType.String},QGB28ngEn:{title:\"Link\",type:ControlType.Link}});addFonts(FramerbnHYUXOQM,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...FeatherFonts,...VideoFonts,...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbnHYUXOQM\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"AZLp3iTYL\\\":\\\"label\\\",\\\"zi7Oz1IOj\\\":\\\"title\\\",\\\"AQO30j1KA\\\":\\\"desc\\\",\\\"vwbdmBWc3\\\":\\\"file\\\",\\\"On2wR2Mo6\\\":\\\"source\\\",\\\"Klunatx_6\\\":\\\"select\\\",\\\"DUzfd5Iy7\\\":\\\"name1\\\",\\\"jXX10BgKB\\\":\\\"color\\\",\\\"cP4beJ60V\\\":\\\"image\\\",\\\"ov_WnLTnr\\\":\\\"labelButton\\\",\\\"QGB28ngEn\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EJawCEUJB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OAln1hOXV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"I6xX9n2Vv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1000\",\"framerIntrinsicHeight\":\"333\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6e8cc59)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/pe2LuDuwn91rKhkZu3NL/TfYIvUa5o43o7itDWSD8/E05RTF7o3.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/dwCqHs4Ca5OeA8XxlmLP/ztxwm40RqslCb4HkxCKL/pFqVFHm6B.js\";const PhosphorFonts=getFonts(Phosphor);const MotionDivWithFX=withFX(motion.div);const enabledGestures={D8TIBYV7f:{hover:true},FfPCw0ToD:{hover:true},R2e2un9YA:{hover:true},SRKkhoxGH:{hover:true},xDHhvGs0y:{hover:true},xRjKOwED1:{hover:true}};const cycleOrder=[\"R2e2un9YA\",\"D8TIBYV7f\",\"xDHhvGs0y\",\"SRKkhoxGH\",\"FfPCw0ToD\",\"xRjKOwED1\"];const serializationHash=\"framer-vZGYh\";const variantClassNames={D8TIBYV7f:\"framer-v-12s8o7g\",FfPCw0ToD:\"framer-v-1orbac6\",R2e2un9YA:\"framer-v-1oiayjg\",SRKkhoxGH:\"framer-v-65378p\",xDHhvGs0y:\"framer-v-61pajd\",xRjKOwED1:\"framer-v-m1dmhy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.3,delay:0,duration:.4,type:\"spring\"};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,x:0,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Asset Managers\":\"xRjKOwED1\",\"Crypto Exchanges\":\"SRKkhoxGH\",\"Liquidity Providers\":\"xDHhvGs0y\",\"Neo Banks\":\"R2e2un9YA\",\"OTC Desks\":\"FfPCw0ToD\",\"Payment Companies\":\"D8TIBYV7f\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"R2e2un9YA\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"R2e2un9YA\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1torb5a=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});overlay.show();});const onClick1wvko5h=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.hide();});const ref1=React.useRef(null);const ref2=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"D8TIBYV7f-hover\")return true;if(baseVariant===\"D8TIBYV7f\")return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"D8TIBYV7f-hover\")return false;if(baseVariant===\"D8TIBYV7f\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1oiayjg\",className,classNames),\"data-framer-name\":\"Neo Banks\",\"data-highlight\":true,id:`${layoutId}-1oiayjg`,layoutDependency:layoutDependency,layoutId:\"R2e2un9YA\",onTap:onTap1torb5a({overlay}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",background:'linear-gradient(90deg, rgba(0, 202, 205, 0) 0%, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)) /* {\"name\":\"Ospree Main Blue Dark\"} */ 100%)',borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 0.3010936508871964px 0.3010936508871964px -1.25px rgba(255, 255, 255, 0.17997), 0px 1.1442666516217286px 1.1442666516217286px -2.5px rgba(255, 255, 255, 0.15889), 0px 5px 5px -3.75px rgba(255, 255, 255, 0.0625)\",...style},variants:{\"D8TIBYV7f-hover\":{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-3b5a0bd5-ce17-492f-86e5-92a93bfc2e0d, rgb(245, 245, 247))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",boxShadow:\"0.39809593676181976px 0.39809593676181976px 0.7881897420518623px -0.5px rgba(255, 255, 255, 0.10199), 1.207253071552259px 1.207253071552259px 2.3902391338080933px -1px rgba(255, 255, 255, 0.10604), 3.1913267607422307px 3.1913267607422307px 6.318504621808203px -1.5px rgba(255, 255, 255, 0.11596), 10px 10px 19.798989873223327px -2px rgba(255, 255, 255, 0.15)\"},\"FfPCw0ToD-hover\":{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-3b5a0bd5-ce17-492f-86e5-92a93bfc2e0d, rgb(245, 245, 247))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",boxShadow:\"0.39809593676181976px 0.39809593676181976px 0.7881897420518623px -0.5px rgba(255, 255, 255, 0.10199), 1.207253071552259px 1.207253071552259px 2.3902391338080933px -1px rgba(255, 255, 255, 0.10604), 3.1913267607422307px 3.1913267607422307px 6.318504621808203px -1.5px rgba(255, 255, 255, 0.11596), 10px 10px 19.798989873223327px -2px rgba(255, 255, 255, 0.15)\"},\"R2e2un9YA-hover\":{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-3b5a0bd5-ce17-492f-86e5-92a93bfc2e0d, rgb(245, 245, 247))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",boxShadow:\"0.39809593676181976px 0.39809593676181976px 0.7881897420518623px -0.5px rgba(255, 255, 255, 0.10199), 1.207253071552259px 1.207253071552259px 2.3902391338080933px -1px rgba(255, 255, 255, 0.10604), 3.1913267607422307px 3.1913267607422307px 6.318504621808203px -1.5px rgba(255, 255, 255, 0.11596), 10px 10px 19.798989873223327px -2px rgba(255, 255, 255, 0.15)\"},\"SRKkhoxGH-hover\":{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-3b5a0bd5-ce17-492f-86e5-92a93bfc2e0d, rgb(245, 245, 247))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"double\",\"--border-top-width\":\"0.5px\",boxShadow:\"0.39809593676181976px 0.39809593676181976px 0.7881897420518623px -0.5px rgba(255, 255, 255, 0.10199), 1.207253071552259px 1.207253071552259px 2.3902391338080933px -1px rgba(255, 255, 255, 0.10604), 3.1913267607422307px 3.1913267607422307px 6.318504621808203px -1.5px rgba(255, 255, 255, 0.11596), 10px 10px 19.798989873223327px -2px rgba(255, 255, 255, 0.15)\"},\"xDHhvGs0y-hover\":{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-3b5a0bd5-ce17-492f-86e5-92a93bfc2e0d, rgb(245, 245, 247))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",boxShadow:\"0.39809593676181976px 0.39809593676181976px 0.7881897420518623px -0.5px rgba(255, 255, 255, 0.10199), 1.207253071552259px 1.207253071552259px 2.3902391338080933px -1px rgba(255, 255, 255, 0.10604), 3.1913267607422307px 3.1913267607422307px 6.318504621808203px -1.5px rgba(255, 255, 255, 0.11596), 10px 10px 19.798989873223327px -2px rgba(255, 255, 255, 0.15)\"},\"xRjKOwED1-hover\":{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-3b5a0bd5-ce17-492f-86e5-92a93bfc2e0d, rgb(245, 245, 247))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",boxShadow:\"0.39809593676181976px 0.39809593676181976px 0.7881897420518623px -0.5px rgba(255, 255, 255, 0.10199), 1.207253071552259px 1.207253071552259px 2.3902391338080933px -1px rgba(255, 255, 255, 0.10604), 3.1913267607422307px 3.1913267607422307px 6.318504621808203px -1.5px rgba(255, 255, 255, 0.11596), 10px 10px 19.798989873223327px -2px rgba(255, 255, 255, 0.15)\"},D8TIBYV7f:{background:'linear-gradient(58deg, rgba(0, 202, 205, 0) 0%, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)) /* {\"name\":\"Ospree Main Blue Dark\"} */ 100%)'}},...addPropertyOverrides({\"D8TIBYV7f-hover\":{\"data-border\":true,\"data-framer-name\":undefined},\"FfPCw0ToD-hover\":{\"data-border\":true,\"data-framer-name\":undefined},\"R2e2un9YA-hover\":{\"data-border\":true,\"data-framer-name\":undefined},\"SRKkhoxGH-hover\":{\"data-border\":true,\"data-framer-name\":undefined},\"xDHhvGs0y-hover\":{\"data-border\":true,\"data-framer-name\":undefined},\"xRjKOwED1-hover\":{\"data-border\":true,\"data-framer-name\":undefined},D8TIBYV7f:{\"data-framer-name\":\"Payment Companies\"},FfPCw0ToD:{\"data-framer-name\":\"OTC Desks\"},SRKkhoxGH:{\"data-framer-name\":\"Crypto Exchanges\"},xDHhvGs0y:{\"data-framer-name\":\"Liquidity Providers\"},xRjKOwED1:{\"data-framer-name\":\"Asset Managers\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c07sf7\",layoutDependency:layoutDependency,layoutId:\"b9BTq38pB\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rezugr\",layoutDependency:layoutDependency,layoutId:\"rncCmOYgC\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r536d\",layoutDependency:layoutDependency,layoutId:\"LdsaisSff\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h4,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",children:[\"Neo\",/*#__PURE__*/_jsx(motion.br,{}),\"banks\"]})}),className:\"framer-s2i1ys\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JeF7KRXp2\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({D8TIBYV7f:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h4,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",children:[\"Payment\",/*#__PURE__*/_jsx(motion.br,{}),\"companies\"]})})},FfPCw0ToD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h4,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",children:[\"OTC\",/*#__PURE__*/_jsx(motion.br,{}),\"desks\"]})})},SRKkhoxGH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h4,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",children:[\"Crypto\",/*#__PURE__*/_jsx(motion.br,{}),\"exchanges\"]})})},xDHhvGs0y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h4,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",children:[\"Liquidity\",/*#__PURE__*/_jsx(motion.br,{}),\"providers\"]})})},xRjKOwED1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h4,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",children:[\"Asset\",/*#__PURE__*/_jsx(motion.br,{}),\"managers\"]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",children:\"Tailored crypto compliance for high-volume transactions.\"})}),className:\"framer-173eo99\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sKpS6PDTa\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({D8TIBYV7f:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",children:\"AML solutions without compromising transaction speed.\"})})},FfPCw0ToD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",children:\"Secure large transactions with risk assessments.\"})})},SRKkhoxGH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",children:\"Tools for regulatory and transaction compliance.\"})})},xDHhvGs0y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",children:\"Real-time compliance for high-volume transactions.\"})})},xRjKOwED1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",children:\"Simplified compliance for digital asset oversight.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s14om7\",layoutDependency:layoutDependency,layoutId:\"k43eg6q94\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o5xe91-container\",layoutDependency:layoutDependency,layoutId:\"FlbSxt1_2-container\",style:{rotate:0},variants:{\"D8TIBYV7f-hover\":{rotate:90},\"FfPCw0ToD-hover\":{rotate:90},\"R2e2un9YA-hover\":{rotate:90},\"SRKkhoxGH-hover\":{rotate:90},\"xDHhvGs0y-hover\":{rotate:90},\"xRjKOwED1-hover\":{rotate:90}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-0b81104d-ef88-4b1c-85b3-197168ad03d2, rgb(211, 240, 8))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"PlusCircle\",id:\"FlbSxt1_2\",layoutId:\"FlbSxt1_2\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"thin\",width:\"100%\",...addPropertyOverrides({\"D8TIBYV7f-hover\":{weight:\"fill\"},\"FfPCw0ToD-hover\":{weight:\"fill\"},\"R2e2un9YA-hover\":{weight:\"fill\"},\"SRKkhoxGH-hover\":{weight:\"fill\"},\"xDHhvGs0y-hover\":{weight:\"fill\"},\"xRjKOwED1-hover\":{weight:\"fill\"}},baseVariant,gestureVariant)})})})})]})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref!==null&&ref!==void 0?ref:ref1,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-1oiayjg`,offsetX:-70.99994644691469,offsetY:-250.99997460079612,onDismiss:overlay.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:false,zIndex:0,...addPropertyOverrides({D8TIBYV7f:{alignment:\"center\",offsetX:-43824780732393265e-21,offsetY:-276.0000191498548},FfPCw0ToD:{offsetX:-71.0001195371151,offsetY:-270.00002214917913},SRKkhoxGH:{offsetX:-71.0000257762149,offsetY:-270.00002214917913,zIndex:11},xDHhvGs0y:{offsetX:-71.00010943412781,offsetY:-270.0000191498548},xRjKOwED1:{offsetX:-70.00001551536843,offsetY:-263.0000191498548}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-cv7s9r\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"y0lOpRSzt\",ref:ref2,role:\"dialog\",style:{background:'linear-gradient(180deg, rgba(255, 255, 255, 0.95) 25%, var(--token-31dc15cb-a49b-4dfc-9ae1-b6d9e5d48ec9, rgb(194, 254, 255)) /* {\"name\":\"Ospree Bright Blue White\"} */ 212%)',borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 5px 10px 0px rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hlztxr\",layoutDependency:layoutDependency,layoutId:\"zZAUKf7Wc\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s6shm3\",layoutDependency:layoutDependency,layoutId:\"SdHglDyc6\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-xb2qr5\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"xr9V7YmUp\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18j3109\",layoutDependency:layoutDependency,layoutId:\"Pwym9vHtb\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Neo banks\"})}),className:\"framer-1rmg3d5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ykHy8jk8r\",style:{\"--extracted-1eung3n\":\"var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({D8TIBYV7f:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Payment companies\"})})},FfPCw0ToD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"OTC desks\"})})},SRKkhoxGH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Crypto exchanges\"})})},xDHhvGs0y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Liquidity providers\"})})},xRjKOwED1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Asset managers\"})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mrzzaw\",\"data-framer-name\":\"Close\",layoutDependency:layoutDependency,layoutId:\"Utad5sJ1_\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tzcuwe-container\",layoutDependency:layoutDependency,layoutId:\"lYmb8zcRR-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"lYmb8zcRR\",layoutId:\"lYmb8zcRR\",mirrored:false,onClick:onClick1wvko5h({overlay}),selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"thin\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12nbtv3\",\"data-framer-name\":\"Checklist\",layoutDependency:layoutDependency,layoutId:\"ffzzyFVZt\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w15okm\",layoutDependency:layoutDependency,layoutId:\"gopTPbDMI\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ql39sv\",layoutDependency:layoutDependency,layoutId:\"M2vk5usrT\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-od84ls-container\",layoutDependency:layoutDependency,layoutId:\"RjyPadHJg-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-1f8d8c24-eee4-4a8d-bfc7-21a0a7d2fbc7, rgb(0, 202, 205))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"RjyPadHJg\",layoutId:\"RjyPadHJg\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"False Positive Reduction\"})}),className:\"framer-14g0p6d\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"V4mGJVGT9\",style:{\"--extracted-r6o4lv\":\"var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({D8TIBYV7f:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"False positive reduction\"})})}},baseVariant,gestureVariant)})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1d4rvsw\",exit:animation3,initial:animation4,layoutDependency:layoutDependency,layoutId:\"odAqLobM9\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ylq06n-container\",layoutDependency:layoutDependency,layoutId:\"gcVwsAfY8-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-1f8d8c24-eee4-4a8d-bfc7-21a0a7d2fbc7, rgb(0, 202, 205))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"gcVwsAfY8\",layoutId:\"gcVwsAfY8\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Risk assesment tools\"})}),className:\"framer-e3apc7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nPg5eJai_\",style:{\"--extracted-r6o4lv\":\"var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FfPCw0ToD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Large transaction monitoring\"})})},SRKkhoxGH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Travel Rule support\"})})},xDHhvGs0y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Real-time transaction monitoring\"})})},xRjKOwED1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Cross-border compliance\"})})}},baseVariant,gestureVariant)})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19amkgf\",layoutDependency:layoutDependency,layoutId:\"UZ1Xknt33\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xaszgz-container\",layoutDependency:layoutDependency,layoutId:\"Jh_tFcHON-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-1f8d8c24-eee4-4a8d-bfc7-21a0a7d2fbc7, rgb(0, 202, 205))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"Jh_tFcHON\",layoutId:\"Jh_tFcHON\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"AML screening\"})}),className:\"framer-1vz3e88\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ee9MnvKb5\",style:{\"--extracted-r6o4lv\":\"var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FfPCw0ToD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Custom risk profiles\"})})},SRKkhoxGH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Blockchain Analytics\"})})},xDHhvGs0y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Rule engine\"})})},xRjKOwED1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"AML risk scoring\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vp3ua3\",layoutDependency:layoutDependency,layoutId:\"vibSTs4xU\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wd60yy-container\",layoutDependency:layoutDependency,layoutId:\"NtsesMYwe-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-1f8d8c24-eee4-4a8d-bfc7-21a0a7d2fbc7, rgb(0, 202, 205))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"NtsesMYwe\",layoutId:\"NtsesMYwe\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Customizablereporting\"})}),className:\"framer-fl2uqp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cT2GMPQvU\",style:{\"--extracted-r6o4lv\":\"var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({D8TIBYV7f:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Automated AML checks\"})})},FfPCw0ToD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Suspicious activity alerts\"})})},SRKkhoxGH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Comprehensive Reporting Hub\"})})},xDHhvGs0y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Multi-source data cross-validation\"})})},xRjKOwED1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Identity verification\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b99vo9\",layoutDependency:layoutDependency,layoutId:\"DhRV78Ckm\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3smh03-container\",layoutDependency:layoutDependency,layoutId:\"cYyTylH7f-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-1f8d8c24-eee4-4a8d-bfc7-21a0a7d2fbc7, rgb(0, 202, 205))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"cYyTylH7f\",layoutId:\"cYyTylH7f\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Transaction tracking\"})}),className:\"framer-yok6zw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"INhqsrHA1\",style:{\"--extracted-r6o4lv\":\"var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({D8TIBYV7f:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Transaction validation engine\"})})},FfPCw0ToD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Detailed audit trail\"})})},SRKkhoxGH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Real-time API integration\"})})},xDHhvGs0y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Travel Rule compliance\"})})},xRjKOwED1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Automated reporting\"})})}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-48ootn\",layoutDependency:layoutDependency,layoutId:\"gYQ9q5v_r\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nu1yjf-container\",layoutDependency:layoutDependency,layoutId:\"Ixi8cDr9R-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-1f8d8c24-eee4-4a8d-bfc7-21a0a7d2fbc7, rgb(0, 202, 205))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"Ixi8cDr9R\",layoutId:\"Ixi8cDr9R\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Customizable Compliance Rules\"})}),className:\"framer-10hi4uw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wKetFkQmJ\",style:{\"--extracted-r6o4lv\":\"var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({D8TIBYV7f:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Customizable compliance rules\"})})}},baseVariant,gestureVariant)})]})]})})]})})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vZGYh.framer-6tpnx5, .framer-vZGYh .framer-6tpnx5 { display: block; }\",\".framer-vZGYh.framer-1oiayjg { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-vZGYh .framer-1c07sf7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 51px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vZGYh .framer-1rezugr { 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-vZGYh .framer-r536d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-vZGYh .framer-s2i1ys, .framer-vZGYh .framer-1rmg3d5, .framer-vZGYh .framer-14g0p6d, .framer-vZGYh .framer-e3apc7, .framer-vZGYh .framer-1vz3e88, .framer-vZGYh .framer-fl2uqp, .framer-vZGYh .framer-yok6zw, .framer-vZGYh .framer-10hi4uw { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-vZGYh .framer-173eo99 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 199px; word-break: break-word; word-wrap: break-word; }\",\".framer-vZGYh .framer-1s14om7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-vZGYh .framer-1o5xe91-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 30px; }\",\".framer-vZGYh .framer-cv7s9r { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 50px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-vZGYh .framer-1hlztxr { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 38px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-vZGYh .framer-s6shm3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vZGYh .framer-xb2qr5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 85px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 300px; }\",\".framer-vZGYh .framer-18j3109 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 300px; }\",\".framer-vZGYh .framer-1mrzzaw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-vZGYh .framer-1tzcuwe-container { flex: none; height: 27px; position: relative; width: 38px; }\",\".framer-vZGYh .framer-12nbtv3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 300px; }\",\".framer-vZGYh .framer-1w15okm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 150px; }\",\".framer-vZGYh .framer-ql39sv, .framer-vZGYh .framer-1d4rvsw, .framer-vZGYh .framer-19amkgf, .framer-vZGYh .framer-vp3ua3, .framer-vZGYh .framer-1b99vo9, .framer-vZGYh .framer-48ootn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vZGYh .framer-od84ls-container, .framer-vZGYh .framer-ylq06n-container, .framer-vZGYh .framer-1xaszgz-container, .framer-vZGYh .framer-wd60yy-container, .framer-vZGYh .framer-3smh03-container, .framer-vZGYh .framer-1nu1yjf-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 30px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vZGYh.framer-1oiayjg, .framer-vZGYh .framer-1c07sf7, .framer-vZGYh .framer-1rezugr, .framer-vZGYh .framer-r536d, .framer-vZGYh .framer-1s14om7, .framer-vZGYh .framer-cv7s9r, .framer-vZGYh .framer-1hlztxr, .framer-vZGYh .framer-s6shm3, .framer-vZGYh .framer-xb2qr5, .framer-vZGYh .framer-18j3109, .framer-vZGYh .framer-1mrzzaw, .framer-vZGYh .framer-12nbtv3, .framer-vZGYh .framer-1w15okm, .framer-vZGYh .framer-ql39sv, .framer-vZGYh .framer-1d4rvsw, .framer-vZGYh .framer-19amkgf, .framer-vZGYh .framer-vp3ua3, .framer-vZGYh .framer-1b99vo9, .framer-vZGYh .framer-48ootn { gap: 0px; } .framer-vZGYh.framer-1oiayjg > *, .framer-vZGYh .framer-cv7s9r > *, .framer-vZGYh .framer-12nbtv3 > *, .framer-vZGYh .framer-1w15okm > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-vZGYh.framer-1oiayjg > :first-child, .framer-vZGYh .framer-1c07sf7 > :first-child, .framer-vZGYh .framer-r536d > :first-child, .framer-vZGYh .framer-cv7s9r > :first-child, .framer-vZGYh .framer-1hlztxr > :first-child, .framer-vZGYh .framer-18j3109 > :first-child, .framer-vZGYh .framer-12nbtv3 > :first-child, .framer-vZGYh .framer-1w15okm > :first-child { margin-top: 0px; } .framer-vZGYh.framer-1oiayjg > :last-child, .framer-vZGYh .framer-1c07sf7 > :last-child, .framer-vZGYh .framer-r536d > :last-child, .framer-vZGYh .framer-cv7s9r > :last-child, .framer-vZGYh .framer-1hlztxr > :last-child, .framer-vZGYh .framer-18j3109 > :last-child, .framer-vZGYh .framer-12nbtv3 > :last-child, .framer-vZGYh .framer-1w15okm > :last-child { margin-bottom: 0px; } .framer-vZGYh .framer-1c07sf7 > * { margin: 0px; margin-bottom: calc(51px / 2); margin-top: calc(51px / 2); } .framer-vZGYh .framer-1rezugr > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-vZGYh .framer-1rezugr > :first-child, .framer-vZGYh .framer-1s14om7 > :first-child, .framer-vZGYh .framer-s6shm3 > :first-child, .framer-vZGYh .framer-xb2qr5 > :first-child, .framer-vZGYh .framer-1mrzzaw > :first-child, .framer-vZGYh .framer-ql39sv > :first-child, .framer-vZGYh .framer-1d4rvsw > :first-child, .framer-vZGYh .framer-19amkgf > :first-child, .framer-vZGYh .framer-vp3ua3 > :first-child, .framer-vZGYh .framer-1b99vo9 > :first-child, .framer-vZGYh .framer-48ootn > :first-child { margin-left: 0px; } .framer-vZGYh .framer-1rezugr > :last-child, .framer-vZGYh .framer-1s14om7 > :last-child, .framer-vZGYh .framer-s6shm3 > :last-child, .framer-vZGYh .framer-xb2qr5 > :last-child, .framer-vZGYh .framer-1mrzzaw > :last-child, .framer-vZGYh .framer-ql39sv > :last-child, .framer-vZGYh .framer-1d4rvsw > :last-child, .framer-vZGYh .framer-19amkgf > :last-child, .framer-vZGYh .framer-vp3ua3 > :last-child, .framer-vZGYh .framer-1b99vo9 > :last-child, .framer-vZGYh .framer-48ootn > :last-child { margin-right: 0px; } .framer-vZGYh .framer-r536d > *, .framer-vZGYh .framer-18j3109 > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-vZGYh .framer-1s14om7 > *, .framer-vZGYh .framer-s6shm3 > *, .framer-vZGYh .framer-1mrzzaw > *, .framer-vZGYh .framer-ql39sv > *, .framer-vZGYh .framer-1d4rvsw > *, .framer-vZGYh .framer-19amkgf > *, .framer-vZGYh .framer-vp3ua3 > *, .framer-vZGYh .framer-1b99vo9 > *, .framer-vZGYh .framer-48ootn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-vZGYh .framer-1hlztxr > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-vZGYh .framer-xb2qr5 > * { margin: 0px; margin-left: calc(85px / 2); margin-right: calc(85px / 2); } }\",\".framer-vZGYh.framer-v-12s8o7g .framer-14g0p6d { white-space: pre-wrap; width: 170px; word-break: break-word; word-wrap: break-word; }\",\".framer-vZGYh.framer-v-12s8o7g .framer-fl2uqp { white-space: pre-wrap; width: 168px; word-break: break-word; word-wrap: break-word; }\",\".framer-vZGYh.framer-v-12s8o7g .framer-yok6zw { white-space: pre-wrap; width: 205px; word-break: break-word; word-wrap: break-word; }\",\".framer-vZGYh.framer-v-12s8o7g .framer-10hi4uw { white-space: pre-wrap; width: 224px; word-break: break-word; word-wrap: break-word; }\",\".framer-vZGYh.framer-v-61pajd .framer-e3apc7, .framer-vZGYh.framer-v-65378p .framer-e3apc7, .framer-vZGYh.framer-v-1orbac6 .framer-e3apc7, .framer-vZGYh.framer-v-m1dmhy .framer-e3apc7 { white-space: pre-wrap; width: 207px; word-break: break-word; word-wrap: break-word; }\",\".framer-vZGYh.framer-v-61pajd .framer-1vz3e88, .framer-vZGYh.framer-v-65378p .framer-1vz3e88, .framer-vZGYh.framer-v-1orbac6 .framer-1vz3e88, .framer-vZGYh.framer-v-m1dmhy .framer-1vz3e88 { white-space: pre-wrap; width: 138px; word-break: break-word; word-wrap: break-word; }\",\".framer-vZGYh.framer-v-61pajd .framer-fl2uqp, .framer-vZGYh.framer-v-65378p .framer-fl2uqp, .framer-vZGYh.framer-v-1orbac6 .framer-fl2uqp, .framer-vZGYh.framer-v-m1dmhy .framer-fl2uqp { white-space: pre-wrap; width: 215px; word-break: break-word; word-wrap: break-word; }\",\".framer-vZGYh.framer-v-61pajd .framer-yok6zw, .framer-vZGYh.framer-v-65378p .framer-yok6zw, .framer-vZGYh.framer-v-1orbac6 .framer-yok6zw, .framer-vZGYh.framer-v-m1dmhy .framer-yok6zw { white-space: pre-wrap; width: 189px; word-break: break-word; word-wrap: break-word; }\",\".framer-vZGYh.framer-v-1oiayjg.hover.framer-1oiayjg { overflow: visible; }\",\".framer-vZGYh.framer-v-61pajd.hover.framer-1oiayjg { overflow: auto; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-vZGYh[data-border=\"true\"]::after, .framer-vZGYh [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 174\n * @framerIntrinsicWidth 269\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"D8TIBYV7f\":{\"layout\":[\"auto\",\"auto\"]},\"xDHhvGs0y\":{\"layout\":[\"auto\",\"auto\"]},\"SRKkhoxGH\":{\"layout\":[\"auto\",\"auto\"]},\"FfPCw0ToD\":{\"layout\":[\"auto\",\"auto\"]},\"xRjKOwED1\":{\"layout\":[\"auto\",\"auto\"]},\"FoeGG53ef\":{\"layout\":[\"auto\",\"auto\"]},\"ZcJk2Js0q\":{\"layout\":[\"auto\",\"auto\"]},\"zrsu10yip\":{\"layout\":[\"auto\",\"auto\"]},\"nRn6IY5TT\":{\"layout\":[\"auto\",\"auto\"]},\"UNIOaPIQQ\":{\"layout\":[\"auto\",\"auto\"]},\"hRl5T4Scd\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEpjD07AXk=withCSS(Component,css,\"framer-vZGYh\");export default FramerEpjD07AXk;FramerEpjD07AXk.displayName=\"Who is Ospree For - Cards\";FramerEpjD07AXk.defaultProps={height:174,width:269};addPropertyControls(FramerEpjD07AXk,{variant:{options:[\"R2e2un9YA\",\"D8TIBYV7f\",\"xDHhvGs0y\",\"SRKkhoxGH\",\"FfPCw0ToD\",\"xRjKOwED1\"],optionTitles:[\"Neo Banks\",\"Payment Companies\",\"Liquidity Providers\",\"Crypto Exchanges\",\"OTC Desks\",\"Asset Managers\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerEpjD07AXk,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEpjD07AXk\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"D8TIBYV7f\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xDHhvGs0y\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SRKkhoxGH\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FfPCw0ToD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xRjKOwED1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FoeGG53ef\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ZcJk2Js0q\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zrsu10yip\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"nRn6IY5TT\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UNIOaPIQQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hRl5T4Scd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"174\",\"framerIntrinsicWidth\":\"269\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EpjD07AXk.map", "// Generated by Framer (6e8cc59)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/dwCqHs4Ca5OeA8XxlmLP/ztxwm40RqslCb4HkxCKL/pFqVFHm6B.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={dSJhrNTt1:{hover:true},wwAkPWrgb:{hover:true},ywvnFsagr:{hover:true}};const cycleOrder=[\"dSJhrNTt1\",\"wwAkPWrgb\",\"ywvnFsagr\"];const serializationHash=\"framer-ZiU15\";const variantClassNames={dSJhrNTt1:\"framer-v-eeam4n\",wwAkPWrgb:\"framer-v-1lrt7an\",ywvnFsagr:\"framer-v-mdvqiu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"dSJhrNTt1\",\"Variant 2\":\"wwAkPWrgb\",\"Variant 3\":\"ywvnFsagr\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"dSJhrNTt1\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dSJhrNTt1\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-eeam4n\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"dSJhrNTt1\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:\"linear-gradient(125deg, rgba(255, 255, 255, 0) 0%, rgba(194, 254, 255, 0.05) 100%)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.6021873017743928px 1.8065619053231785px -1.0833333333333333px rgba(255, 255, 255, 0.18958), 0px 2.288533303243457px 6.8655999097303715px -2.1666666666666665px rgba(255, 255, 255, 0.1744), 0px 10px 30px -3.25px rgba(255, 255, 255, 0.105)\",...style},variants:{\"dSJhrNTt1-hover\":{boxShadow:\"0px 0.6520564323925646px 0.9128790053495903px 0px rgba(211, 240, 8, 0.00296), 0px 1.7757228240632683px 2.4860119536885756px 0px rgba(211, 240, 8, 0.00807), 0px 3.8988446302624657px 5.458382482367451px 0px rgba(211, 240, 8, 0.01772), 0px 8.654544874006534px 12.116362823609148px 0px rgba(211, 240, 8, 0.03934), 0px 22px 30.799999999999997px 0px rgba(211, 240, 8, 0.1)\"},\"wwAkPWrgb-hover\":{boxShadow:\"0px 0.6520564323925646px 0.9128790053495903px 0px rgba(211, 240, 8, 0.00296), 0px 1.7757228240632683px 2.4860119536885756px 0px rgba(211, 240, 8, 0.00807), 0px 3.8988446302624657px 5.458382482367451px 0px rgba(211, 240, 8, 0.01772), 0px 8.654544874006534px 12.116362823609148px 0px rgba(211, 240, 8, 0.03934), 0px 22px 30.799999999999997px 0px rgba(211, 240, 8, 0.1)\"},\"ywvnFsagr-hover\":{boxShadow:\"0px 0.6520564323925646px 0.9128790053495903px 0px rgba(211, 240, 8, 0.00296), 0px 1.7757228240632683px 2.4860119536885756px 0px rgba(211, 240, 8, 0.00807), 0px 3.8988446302624657px 5.458382482367451px 0px rgba(211, 240, 8, 0.01772), 0px 8.654544874006534px 12.116362823609148px 0px rgba(211, 240, 8, 0.03934), 0px 22px 30.799999999999997px 0px rgba(211, 240, 8, 0.1)\"}},...addPropertyOverrides({\"dSJhrNTt1-hover\":{\"data-framer-name\":undefined},\"wwAkPWrgb-hover\":{\"data-framer-name\":undefined},\"ywvnFsagr-hover\":{\"data-framer-name\":undefined},wwAkPWrgb:{\"data-framer-name\":\"Variant 2\"},ywvnFsagr:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8v3lsl\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"sShsdoAGL\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w2nvrx\",layoutDependency:layoutDependency,layoutId:\"Zu36RjXH1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6sxiu7-container\",layoutDependency:layoutDependency,layoutId:\"atixafzHR-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-0b81104d-ef88-4b1c-85b3-197168ad03d2, rgb(211, 240, 8))\",height:\"100%\",iconSearch:\"telegram\",iconSelection:\"Globe\",id:\"atixafzHR\",layoutId:\"atixafzHR\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({wwAkPWrgb:{iconSearch:\"network\",iconSelection:\"Handshake\"},ywvnFsagr:{iconSearch:\"globe\",iconSelection:\"ArrowArcRight\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h3,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Join our \",/*#__PURE__*/_jsx(motion.br,{}),\"Telegram community\"]})}),className:\"framer-xt6b48\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ecMcCl8p5\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({wwAkPWrgb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h4,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Be part of the \",/*#__PURE__*/_jsx(motion.br,{}),\"Ospree network\"]})})},ywvnFsagr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h4,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Access \",/*#__PURE__*/_jsx(motion.br,{}),\"exclusive insights\"]})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255)))\"},children:\"Connect with industry leaders and stay updated on the latest in crypto compliance.\"})}),className:\"framer-1mm5pn5\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"yoXyY4HxN\",style:{\"--extracted-r6o4lv\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({wwAkPWrgb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255)))\"},children:\"Collaborate with forward-thinking companies and shape the future of compliance.\"})})},ywvnFsagr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255)))\"},children:\"Get access to insider tips, regulatory updates, and Ospree's latest innovations.\"})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZiU15.framer-t0fm4m, .framer-ZiU15 .framer-t0fm4m { display: block; }\",\".framer-ZiU15.framer-eeam4n { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZiU15 .framer-8v3lsl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 30px; position: relative; width: 100%; }\",\".framer-ZiU15 .framer-w2nvrx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZiU15 .framer-6sxiu7-container { flex: none; height: 44px; position: relative; width: 35px; }\",\".framer-ZiU15 .framer-xt6b48, .framer-ZiU15 .framer-1mm5pn5 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZiU15.framer-eeam4n, .framer-ZiU15 .framer-8v3lsl, .framer-ZiU15 .framer-w2nvrx { gap: 0px; } .framer-ZiU15.framer-eeam4n > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ZiU15.framer-eeam4n > :first-child, .framer-ZiU15 .framer-8v3lsl > :first-child, .framer-ZiU15 .framer-w2nvrx > :first-child { margin-top: 0px; } .framer-ZiU15.framer-eeam4n > :last-child, .framer-ZiU15 .framer-8v3lsl > :last-child, .framer-ZiU15 .framer-w2nvrx > :last-child { margin-bottom: 0px; } .framer-ZiU15 .framer-8v3lsl > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-ZiU15 .framer-w2nvrx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-ZiU15.framer-v-mdvqiu.framer-eeam4n { height: 265px; }\",\".framer-ZiU15.framer-v-mdvqiu .framer-8v3lsl { flex: 1 0 0px; gap: 10px; height: 1px; }\",\".framer-ZiU15.framer-v-mdvqiu .framer-w2nvrx { height: 128px; }\",\".framer-ZiU15.framer-v-mdvqiu .framer-xt6b48 { flex: 1 0 0px; height: 1px; width: 260px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZiU15.framer-v-mdvqiu .framer-8v3lsl { gap: 0px; } .framer-ZiU15.framer-v-mdvqiu .framer-8v3lsl > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ZiU15.framer-v-mdvqiu .framer-8v3lsl > :first-child { margin-top: 0px; } .framer-ZiU15.framer-v-mdvqiu .framer-8v3lsl > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 264\n * @framerIntrinsicWidth 320\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wwAkPWrgb\":{\"layout\":[\"fixed\",\"auto\"]},\"ywvnFsagr\":{\"layout\":[\"fixed\",\"fixed\"]},\"N7NL3oTgW\":{\"layout\":[\"fixed\",\"auto\"]},\"SyzbW408r\":{\"layout\":[\"fixed\",\"auto\"]},\"JrGgO7TYG\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHqEL9yMV6=withCSS(Component,css,\"framer-ZiU15\");export default FramerHqEL9yMV6;FramerHqEL9yMV6.displayName=\"Card - Why Ospree\";FramerHqEL9yMV6.defaultProps={height:264,width:320};addPropertyControls(FramerHqEL9yMV6,{variant:{options:[\"dSJhrNTt1\",\"wwAkPWrgb\",\"ywvnFsagr\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerHqEL9yMV6,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHqEL9yMV6\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wwAkPWrgb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ywvnFsagr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"N7NL3oTgW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SyzbW408r\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JrGgO7TYG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"264\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"320\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HqEL9yMV6.map", "// Generated by Framer (552ec80)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/pe2LuDuwn91rKhkZu3NL/TfYIvUa5o43o7itDWSD8/E05RTF7o3.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/dwCqHs4Ca5OeA8XxlmLP/ztxwm40RqslCb4HkxCKL/pFqVFHm6B.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"ESQt6pBhJ\",\"tVK7eg_mX\",\"fF20JTA8n\",\"jaUCeVYON\",\"d1ou3Dy41\",\"ZkItnMuDY\"];const serializationHash=\"framer-MPTEh\";const variantClassNames={d1ou3Dy41:\"framer-v-zm5o8e\",ESQt6pBhJ:\"framer-v-13547oa\",fF20JTA8n:\"framer-v-ag882q\",jaUCeVYON:\"framer-v-19bpba1\",tVK7eg_mX:\"framer-v-lt1tsy\",ZkItnMuDY:\"framer-v-1wnwxu5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Cypto Exchanges\":\"jaUCeVYON\",\"Liquidity Providers\":\"fF20JTA8n\",\"Neo Bank\":\"ESQt6pBhJ\",\"OTC Desks\":\"d1ou3Dy41\",\"Payment Companies\":\"tVK7eg_mX\",AssetManagers:\"ZkItnMuDY\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ESQt6pBhJ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ESQt6pBhJ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1torb5a=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});overlay.show();});const onClick1wvko5h=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.hide();});const ref1=React.useRef(null);const ref2=React.useRef(null);const isDisplayed=()=>{if([\"tVK7eg_mX\",\"fF20JTA8n\",\"jaUCeVYON\",\"d1ou3Dy41\",\"ZkItnMuDY\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"tVK7eg_mX\",\"fF20JTA8n\",\"jaUCeVYON\",\"d1ou3Dy41\",\"ZkItnMuDY\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-13547oa\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Neo Bank\",\"data-highlight\":true,id:`${layoutId}-13547oa`,layoutDependency:layoutDependency,layoutId:\"ESQt6pBhJ\",onTap:onTap1torb5a({overlay}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-31dc15cb-a49b-4dfc-9ae1-b6d9e5d48ec9, rgb(194, 254, 255))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:'linear-gradient(90deg, rgba(0, 202, 205, 0) 0%, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)) /* {\"name\":\"Ospree Main Blue Dark\"} */ 100%)',borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 0.3010936508871964px 0.3010936508871964px -1.25px rgba(255, 255, 255, 0.17997), 0px 1.1442666516217286px 1.1442666516217286px -2.5px rgba(255, 255, 255, 0.15889), 0px 5px 5px -3.75px rgba(255, 255, 255, 0.0625)\",...style},...addPropertyOverrides({d1ou3Dy41:{\"data-framer-name\":\"OTC Desks\"},fF20JTA8n:{\"data-framer-name\":\"Liquidity Providers\"},jaUCeVYON:{\"data-framer-name\":\"Cypto Exchanges\"},tVK7eg_mX:{\"data-framer-name\":\"Payment Companies\"},ZkItnMuDY:{\"data-framer-name\":\"AssetManagers\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-uzk1tf\",layoutDependency:layoutDependency,layoutId:\"aXq_jYoAo\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-po8f5a\",layoutDependency:layoutDependency,layoutId:\"ZAXnbxei5\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z1ub39\",layoutDependency:layoutDependency,layoutId:\"fHzX4bci4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h4,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",children:[\"Neo\",/*#__PURE__*/_jsx(motion.br,{}),\"Banks\"]})}),className:\"framer-1k8qfug\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WcxgFnUal\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({d1ou3Dy41:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h4,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",children:[\"OTC\",/*#__PURE__*/_jsx(motion.br,{}),\"Desks\"]})})},fF20JTA8n:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h4,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",children:[\"Liquidity\",/*#__PURE__*/_jsx(motion.br,{}),\"Providers\"]})})},jaUCeVYON:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h4,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",children:[\"Cypto\",/*#__PURE__*/_jsx(motion.br,{}),\"Exchanges\"]})})},tVK7eg_mX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h4,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",children:[\"Payment\",/*#__PURE__*/_jsx(motion.br,{}),\"Companies\"]})})},ZkItnMuDY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h4,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",children:[\"Asset\",/*#__PURE__*/_jsx(motion.br,{}),\"Managers\"]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",children:\"Tailored crypto compliance for high-volume transactions.\"})}),className:\"framer-2dlju4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Zd6Fl9kUP\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({d1ou3Dy41:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",children:\"Secure large transactions with risk assessments.\"})})},fF20JTA8n:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",children:\"Real-time compliance for high-volume transactions.\"})})},jaUCeVYON:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",children:\"Tools for regulatory and transaction compliance.\"})})},tVK7eg_mX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",children:\"AML solutions without compromising transaction speed.\"})})},ZkItnMuDY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",children:\"Simplified compliance for digital asset oversight.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13k8fxc\",layoutDependency:layoutDependency,layoutId:\"g2BWx20TO\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kn4rg9-container\",layoutDependency:layoutDependency,layoutId:\"yJua78zDD-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-0b81104d-ef88-4b1c-85b3-197168ad03d2, rgb(211, 240, 8))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"PlusCircle\",id:\"yJua78zDD\",layoutId:\"yJua78zDD\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"thin\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref!==null&&ref!==void 0?ref:ref1,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-13547oa`,offsetX:30161812901496887e-21,offsetY:-246.00001915730536,onDismiss:overlay.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:false,zIndex:0,...addPropertyOverrides({d1ou3Dy41:{offsetX:-3251992166042328e-20,offsetY:-273.0000184606761},fF20JTA8n:{offsetX:30035153031349182e-21,offsetY:-274.00001994892955},jaUCeVYON:{offsetX:-3692135214805603e-20,offsetY:-269.0000186506659},tVK7eg_mX:{offsetX:-48162415623664856e-21,offsetY:-269.00001915730536},ZkItnMuDY:{offsetX:-424310564994812e-19,offsetY:-259.00001944229007}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-147yen6\",layoutDependency:layoutDependency,layoutId:\"uAwYx9dgl\",ref:ref2,role:\"dialog\",style:{background:'linear-gradient(180deg, rgb(255, 255, 255) 20%, var(--token-31dc15cb-a49b-4dfc-9ae1-b6d9e5d48ec9, rgb(194, 254, 255)) /* {\"name\":\"Ospree Bright Blue White\"} */ 147%)',borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 5px 10px 0px rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pk5l64\",layoutDependency:layoutDependency,layoutId:\"bcjWNi1Ge\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sm65ng\",layoutDependency:layoutDependency,layoutId:\"ghsqsEfkk\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12xmzx2\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"wT2HaKnMW\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19uleyc\",layoutDependency:layoutDependency,layoutId:\"gkghiMTqt\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nxupzg\",layoutDependency:layoutDependency,layoutId:\"Jy0AIHC4t\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Neo Banks\"})}),className:\"framer-1j6iqzc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LJA8O1B16\",style:{\"--extracted-1eung3n\":\"var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({d1ou3Dy41:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h4,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:[\"OTC\",/*#__PURE__*/_jsx(motion.br,{}),\"Desks\"]})})},fF20JTA8n:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h4,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:[\"Liquidity\",/*#__PURE__*/_jsx(motion.br,{}),\"Providers\"]})})},jaUCeVYON:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h4,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:[\"Cypto\",/*#__PURE__*/_jsx(motion.br,{}),\"Exchanges\"]})})},tVK7eg_mX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h4,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:[\"Payment\",/*#__PURE__*/_jsx(motion.br,{}),\"Companies\"]})})},ZkItnMuDY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h4,{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:[\"Remittance\",/*#__PURE__*/_jsx(motion.br,{}),\"Compliance\"]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-aov4sw-container\",layoutDependency:layoutDependency,layoutId:\"Z8FdKHYUK-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"Z8FdKHYUK\",layoutId:\"Z8FdKHYUK\",mirrored:false,onClick:onClick1wvko5h({overlay}),selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"thin\",width:\"100%\"})})})]})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wbz7p1\",\"data-framer-name\":\"Checklist\",layoutDependency:layoutDependency,layoutId:\"UnTQ8M5_E\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a1ub3f\",layoutDependency:layoutDependency,layoutId:\"ZyKqM5pzp\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p6v1ga\",layoutDependency:layoutDependency,layoutId:\"D3SL0XHzY\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lh7yhs-container\",layoutDependency:layoutDependency,layoutId:\"f5bafOa1t-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-1f8d8c24-eee4-4a8d-bfc7-21a0a7d2fbc7, rgb(0, 202, 205))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"f5bafOa1t\",layoutId:\"f5bafOa1t\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Risk Assessment Tools\"})}),className:\"framer-178e53a\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KxvLfuDYc\",style:{\"--extracted-r6o4lv\":\"var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cms984\",layoutDependency:layoutDependency,layoutId:\"HBuB2r7Ib\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mzaa4o-container\",layoutDependency:layoutDependency,layoutId:\"LrFLPbmxs-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-1f8d8c24-eee4-4a8d-bfc7-21a0a7d2fbc7, rgb(0, 202, 205))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"LrFLPbmxs\",layoutId:\"LrFLPbmxs\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"AML Screening\"})}),className:\"framer-1ax6key\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"d44KQvUm0\",style:{\"--extracted-r6o4lv\":\"var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-55xgh6\",layoutDependency:layoutDependency,layoutId:\"KKdRLxh4E\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1db9uw8-container\",layoutDependency:layoutDependency,layoutId:\"YwAGWnajS-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-1f8d8c24-eee4-4a8d-bfc7-21a0a7d2fbc7, rgb(0, 202, 205))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"YwAGWnajS\",layoutId:\"YwAGWnajS\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Customizable Reporting\"})}),className:\"framer-r7ry08\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SdugvtTtV\",style:{\"--extracted-r6o4lv\":\"var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({d1ou3Dy41:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Large Transaction Monitoring\"})})},fF20JTA8n:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Real-Time Transaction Monitoring\"})})},jaUCeVYON:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Travel Rule Support\"})})},tVK7eg_mX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Automated AML Checks\"})})},ZkItnMuDY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Cross-Border Compliance\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-109oy35\",layoutDependency:layoutDependency,layoutId:\"d6B7QQXj3\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k3zmkr-container\",layoutDependency:layoutDependency,layoutId:\"ISzr3luYj-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-1f8d8c24-eee4-4a8d-bfc7-21a0a7d2fbc7, rgb(0, 202, 205))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"ISzr3luYj\",layoutId:\"ISzr3luYj\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Transactions Tracking\"})}),className:\"framer-ec8xa5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MLFtIK42a\",style:{\"--extracted-r6o4lv\":\"var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({d1ou3Dy41:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Custom Risk Profiles\"})})},fF20JTA8n:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Rule Engine\"})})},jaUCeVYON:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Blockchain Analytics\"})})},tVK7eg_mX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"False Positive Reduction\"})})},ZkItnMuDY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"AML Risk Scoring\"})})}},baseVariant,gestureVariant)})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qlliba\",layoutDependency:layoutDependency,layoutId:\"Tc7orlqZ1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13i1kp-container\",layoutDependency:layoutDependency,layoutId:\"oZt2ZUyz5-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-1f8d8c24-eee4-4a8d-bfc7-21a0a7d2fbc7, rgb(0, 202, 205))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"oZt2ZUyz5\",layoutId:\"oZt2ZUyz5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Transaction Validation Engine\"})}),className:\"framer-1jz2enr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Fr676RAsw\",style:{\"--extracted-r6o4lv\":\"var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({d1ou3Dy41:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Suspicious Activity Alerts\"})})},fF20JTA8n:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Multi-Source Data Cross-Validation\"})})},jaUCeVYON:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Comprehensive Reporting Hub\"})})},ZkItnMuDY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Identity Verification\"})})}},baseVariant,gestureVariant)})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c65td9\",layoutDependency:layoutDependency,layoutId:\"Fu4P4kIxC\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-w9lsfo-container\",layoutDependency:layoutDependency,layoutId:\"UyPBxuDo5-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-1f8d8c24-eee4-4a8d-bfc7-21a0a7d2fbc7, rgb(0, 202, 205))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"UyPBxuDo5\",layoutId:\"UyPBxuDo5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Customizable Compliance Rules\"})}),className:\"framer-jqkldk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GIMCCWGIj\",style:{\"--extracted-r6o4lv\":\"var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({d1ou3Dy41:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Detailed Audit Trail\"})})},fF20JTA8n:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Travel Rule Compliance\"})})},jaUCeVYON:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Real-Time API Integration\"})})},ZkItnMuDY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-69947a5f-6b5c-4f22-9ceb-f3f44d36c2cf, rgb(1, 55, 56)))\"},children:\"Automated Reporting\"})})}},baseVariant,gestureVariant)})]})]})})]})})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MPTEh.framer-6scc2r, .framer-MPTEh .framer-6scc2r { display: block; }\",\".framer-MPTEh.framer-13547oa { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-MPTEh .framer-uzk1tf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 51px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-MPTEh .framer-po8f5a { 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-MPTEh .framer-z1ub39 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-MPTEh .framer-1k8qfug, .framer-MPTEh .framer-1j6iqzc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-MPTEh .framer-2dlju4 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 199px; word-break: break-word; word-wrap: break-word; }\",\".framer-MPTEh .framer-13k8fxc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-MPTEh .framer-1kn4rg9-container, .framer-MPTEh .framer-1lh7yhs-container, .framer-MPTEh .framer-1mzaa4o-container, .framer-MPTEh .framer-1db9uw8-container, .framer-MPTEh .framer-1k3zmkr-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); position: relative; width: 30px; }\",\".framer-MPTEh .framer-147yen6 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 318px; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 367px; will-change: var(--framer-will-change-override, transform); }\",\".framer-MPTEh .framer-pk5l64 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 250px; }\",\".framer-MPTEh .framer-1sm65ng { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 250px; }\",\".framer-MPTEh .framer-12xmzx2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 85px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 250px; }\",\".framer-MPTEh .framer-19uleyc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 250px; }\",\".framer-MPTEh .framer-nxupzg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 110px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 250px; }\",\".framer-MPTEh .framer-aov4sw-container { flex: none; height: 27px; position: relative; width: 38px; }\",\".framer-MPTEh .framer-wbz7p1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 250px; }\",\".framer-MPTEh .framer-a1ub3f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 150px; }\",\".framer-MPTEh .framer-1p6v1ga, .framer-MPTEh .framer-cms984, .framer-MPTEh .framer-55xgh6, .framer-MPTEh .framer-109oy35, .framer-MPTEh .framer-qlliba, .framer-MPTEh .framer-c65td9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MPTEh .framer-178e53a { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 161px; word-break: break-word; word-wrap: break-word; }\",\".framer-MPTEh .framer-1ax6key { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 157px; word-break: break-word; word-wrap: break-word; }\",\".framer-MPTEh .framer-r7ry08 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 127px; word-break: break-word; word-wrap: break-word; }\",\".framer-MPTEh .framer-ec8xa5, .framer-MPTEh .framer-1jz2enr, .framer-MPTEh .framer-jqkldk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 173px; word-break: break-word; word-wrap: break-word; }\",\".framer-MPTEh .framer-13i1kp-container, .framer-MPTEh .framer-w9lsfo-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 30px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MPTEh.framer-13547oa, .framer-MPTEh .framer-uzk1tf, .framer-MPTEh .framer-po8f5a, .framer-MPTEh .framer-z1ub39, .framer-MPTEh .framer-13k8fxc, .framer-MPTEh .framer-147yen6, .framer-MPTEh .framer-pk5l64, .framer-MPTEh .framer-1sm65ng, .framer-MPTEh .framer-12xmzx2, .framer-MPTEh .framer-19uleyc, .framer-MPTEh .framer-nxupzg, .framer-MPTEh .framer-wbz7p1, .framer-MPTEh .framer-a1ub3f, .framer-MPTEh .framer-1p6v1ga, .framer-MPTEh .framer-cms984, .framer-MPTEh .framer-55xgh6, .framer-MPTEh .framer-109oy35, .framer-MPTEh .framer-qlliba, .framer-MPTEh .framer-c65td9 { gap: 0px; } .framer-MPTEh.framer-13547oa > *, .framer-MPTEh .framer-wbz7p1 > *, .framer-MPTEh .framer-a1ub3f > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-MPTEh.framer-13547oa > :first-child, .framer-MPTEh .framer-uzk1tf > :first-child, .framer-MPTEh .framer-z1ub39 > :first-child, .framer-MPTEh .framer-pk5l64 > :first-child, .framer-MPTEh .framer-19uleyc > :first-child, .framer-MPTEh .framer-wbz7p1 > :first-child, .framer-MPTEh .framer-a1ub3f > :first-child { margin-top: 0px; } .framer-MPTEh.framer-13547oa > :last-child, .framer-MPTEh .framer-uzk1tf > :last-child, .framer-MPTEh .framer-z1ub39 > :last-child, .framer-MPTEh .framer-pk5l64 > :last-child, .framer-MPTEh .framer-19uleyc > :last-child, .framer-MPTEh .framer-wbz7p1 > :last-child, .framer-MPTEh .framer-a1ub3f > :last-child { margin-bottom: 0px; } .framer-MPTEh .framer-uzk1tf > * { margin: 0px; margin-bottom: calc(51px / 2); margin-top: calc(51px / 2); } .framer-MPTEh .framer-po8f5a > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-MPTEh .framer-po8f5a > :first-child, .framer-MPTEh .framer-13k8fxc > :first-child, .framer-MPTEh .framer-147yen6 > :first-child, .framer-MPTEh .framer-1sm65ng > :first-child, .framer-MPTEh .framer-12xmzx2 > :first-child, .framer-MPTEh .framer-nxupzg > :first-child, .framer-MPTEh .framer-1p6v1ga > :first-child, .framer-MPTEh .framer-cms984 > :first-child, .framer-MPTEh .framer-55xgh6 > :first-child, .framer-MPTEh .framer-109oy35 > :first-child, .framer-MPTEh .framer-qlliba > :first-child, .framer-MPTEh .framer-c65td9 > :first-child { margin-left: 0px; } .framer-MPTEh .framer-po8f5a > :last-child, .framer-MPTEh .framer-13k8fxc > :last-child, .framer-MPTEh .framer-147yen6 > :last-child, .framer-MPTEh .framer-1sm65ng > :last-child, .framer-MPTEh .framer-12xmzx2 > :last-child, .framer-MPTEh .framer-nxupzg > :last-child, .framer-MPTEh .framer-1p6v1ga > :last-child, .framer-MPTEh .framer-cms984 > :last-child, .framer-MPTEh .framer-55xgh6 > :last-child, .framer-MPTEh .framer-109oy35 > :last-child, .framer-MPTEh .framer-qlliba > :last-child, .framer-MPTEh .framer-c65td9 > :last-child { margin-right: 0px; } .framer-MPTEh .framer-z1ub39 > *, .framer-MPTEh .framer-19uleyc > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-MPTEh .framer-13k8fxc > *, .framer-MPTEh .framer-147yen6 > *, .framer-MPTEh .framer-1sm65ng > *, .framer-MPTEh .framer-1p6v1ga > *, .framer-MPTEh .framer-cms984 > *, .framer-MPTEh .framer-55xgh6 > *, .framer-MPTEh .framer-109oy35 > *, .framer-MPTEh .framer-qlliba > *, .framer-MPTEh .framer-c65td9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-MPTEh .framer-pk5l64 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-MPTEh .framer-12xmzx2 > * { margin: 0px; margin-left: calc(85px / 2); margin-right: calc(85px / 2); } .framer-MPTEh .framer-nxupzg > * { margin: 0px; margin-left: calc(110px / 2); margin-right: calc(110px / 2); } }\",\".framer-MPTEh.framer-v-lt1tsy .framer-147yen6 { height: 366px; }\",\".framer-MPTEh.framer-v-lt1tsy .framer-nxupzg, .framer-MPTEh.framer-v-ag882q .framer-nxupzg, .framer-MPTEh.framer-v-19bpba1 .framer-nxupzg { gap: 103px; }\",\".framer-MPTEh.framer-v-lt1tsy .framer-13i1kp-container, .framer-MPTEh.framer-v-lt1tsy .framer-w9lsfo-container, .framer-MPTEh.framer-v-ag882q .framer-13i1kp-container, .framer-MPTEh.framer-v-ag882q .framer-w9lsfo-container, .framer-MPTEh.framer-v-19bpba1 .framer-13i1kp-container, .framer-MPTEh.framer-v-19bpba1 .framer-w9lsfo-container, .framer-MPTEh.framer-v-zm5o8e .framer-13i1kp-container, .framer-MPTEh.framer-v-zm5o8e .framer-w9lsfo-container, .framer-MPTEh.framer-v-1wnwxu5 .framer-13i1kp-container, .framer-MPTEh.framer-v-1wnwxu5 .framer-w9lsfo-container { height: var(--framer-aspect-ratio-supported, 33px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MPTEh.framer-v-lt1tsy .framer-nxupzg { gap: 0px; } .framer-MPTEh.framer-v-lt1tsy .framer-nxupzg > * { margin: 0px; margin-left: calc(103px / 2); margin-right: calc(103px / 2); } .framer-MPTEh.framer-v-lt1tsy .framer-nxupzg > :first-child { margin-left: 0px; } .framer-MPTEh.framer-v-lt1tsy .framer-nxupzg > :last-child { margin-right: 0px; } }\",\".framer-MPTEh.framer-v-ag882q .framer-147yen6 { height: 375px; }\",\".framer-MPTEh.framer-v-ag882q .framer-pk5l64, .framer-MPTEh.framer-v-1wnwxu5 .framer-pk5l64 { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MPTEh.framer-v-ag882q .framer-nxupzg { gap: 0px; } .framer-MPTEh.framer-v-ag882q .framer-nxupzg > * { margin: 0px; margin-left: calc(103px / 2); margin-right: calc(103px / 2); } .framer-MPTEh.framer-v-ag882q .framer-nxupzg > :first-child { margin-left: 0px; } .framer-MPTEh.framer-v-ag882q .framer-nxupzg > :last-child { margin-right: 0px; } }\",\".framer-MPTEh.framer-v-19bpba1 .framer-147yen6 { height: 365px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MPTEh.framer-v-19bpba1 .framer-nxupzg { gap: 0px; } .framer-MPTEh.framer-v-19bpba1 .framer-nxupzg > * { margin: 0px; margin-left: calc(103px / 2); margin-right: calc(103px / 2); } .framer-MPTEh.framer-v-19bpba1 .framer-nxupzg > :first-child { margin-left: 0px; } .framer-MPTEh.framer-v-19bpba1 .framer-nxupzg > :last-child { margin-right: 0px; } }\",\".framer-MPTEh.framer-v-zm5o8e .framer-147yen6 { height: 372px; }\",\".framer-MPTEh.framer-v-zm5o8e .framer-nxupzg { gap: 157px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MPTEh.framer-v-zm5o8e .framer-nxupzg { gap: 0px; } .framer-MPTEh.framer-v-zm5o8e .framer-nxupzg > * { margin: 0px; margin-left: calc(157px / 2); margin-right: calc(157px / 2); } .framer-MPTEh.framer-v-zm5o8e .framer-nxupzg > :first-child { margin-left: 0px; } .framer-MPTEh.framer-v-zm5o8e .framer-nxupzg > :last-child { margin-right: 0px; } }\",\".framer-MPTEh.framer-v-1wnwxu5 .framer-147yen6 { height: 344px; }\",\".framer-MPTEh.framer-v-1wnwxu5 .framer-nxupzg { gap: 95px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MPTEh.framer-v-1wnwxu5 .framer-nxupzg { gap: 0px; } .framer-MPTEh.framer-v-1wnwxu5 .framer-nxupzg > * { margin: 0px; margin-left: calc(95px / 2); margin-right: calc(95px / 2); } .framer-MPTEh.framer-v-1wnwxu5 .framer-nxupzg > :first-child { margin-left: 0px; } .framer-MPTEh.framer-v-1wnwxu5 .framer-nxupzg > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-MPTEh[data-border=\"true\"]::after, .framer-MPTEh [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 174\n * @framerIntrinsicWidth 269\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"tVK7eg_mX\":{\"layout\":[\"auto\",\"auto\"]},\"fF20JTA8n\":{\"layout\":[\"auto\",\"auto\"]},\"jaUCeVYON\":{\"layout\":[\"auto\",\"auto\"]},\"d1ou3Dy41\":{\"layout\":[\"auto\",\"auto\"]},\"ZkItnMuDY\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPcJyMiqgG=withCSS(Component,css,\"framer-MPTEh\");export default FramerPcJyMiqgG;FramerPcJyMiqgG.displayName=\"Who is Ospree For - Cards (Phone)\";FramerPcJyMiqgG.defaultProps={height:174,width:269};addPropertyControls(FramerPcJyMiqgG,{variant:{options:[\"ESQt6pBhJ\",\"tVK7eg_mX\",\"fF20JTA8n\",\"jaUCeVYON\",\"d1ou3Dy41\",\"ZkItnMuDY\"],optionTitles:[\"Neo Bank\",\"Payment Companies\",\"Liquidity Providers\",\"Cypto Exchanges\",\"OTC Desks\",\"AssetManagers\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerPcJyMiqgG,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPcJyMiqgG\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"174\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tVK7eg_mX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fF20JTA8n\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"jaUCeVYON\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"d1ou3Dy41\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ZkItnMuDY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"269\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PcJyMiqgG.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/ALzPzo9ZL7qsyNt6jnNi/Smooth_Scroll.js\";import ProductGIFCardsHomepage from\"#framer/local/canvasComponent/bnHYUXOQM/bnHYUXOQM.js\";import Button from\"#framer/local/canvasComponent/eoOuuu22q/eoOuuu22q.js\";import WhoIsOspreeForCards from\"#framer/local/canvasComponent/EpjD07AXk/EpjD07AXk.js\";import Label from\"#framer/local/canvasComponent/gfgQgKeyT/gfgQgKeyT.js\";import CardWhyOspree from\"#framer/local/canvasComponent/HqEL9yMV6/HqEL9yMV6.js\";import BlogItem from\"#framer/local/canvasComponent/IHqM_WdOk/IHqM_WdOk.js\";import Footer from\"#framer/local/canvasComponent/oqTBonrwi/oqTBonrwi.js\";import WhoIsOspreeForCardsPhone from\"#framer/local/canvasComponent/PcJyMiqgG/PcJyMiqgG.js\";import Navigation from\"#framer/local/canvasComponent/zOO627s_k/zOO627s_k.js\";import Blog from\"#framer/local/collection/nSea5Tt3P/nSea5Tt3P.js\";import*as sharedStyle from\"#framer/local/css/DjrDyFYIF/DjrDyFYIF.js\";import*as sharedStyle7 from\"#framer/local/css/E05RTF7o3/E05RTF7o3.js\";import*as sharedStyle6 from\"#framer/local/css/FYYQTeNHi/FYYQTeNHi.js\";import*as sharedStyle1 from\"#framer/local/css/GCNWwqHYx/GCNWwqHYx.js\";import*as sharedStyle3 from\"#framer/local/css/gPDperEae/gPDperEae.js\";import*as sharedStyle5 from\"#framer/local/css/Lmx9OYR3F/Lmx9OYR3F.js\";import*as sharedStyle4 from\"#framer/local/css/pFqVFHm6B/pFqVFHm6B.js\";import*as sharedStyle2 from\"#framer/local/css/rm5nScM5K/rm5nScM5K.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const NavigationFonts=getFonts(Navigation);const VideoFonts=getFonts(Video);const ButtonFonts=getFonts(Button);const TickerFonts=getFonts(Ticker);const PhosphorFonts=getFonts(Phosphor);const ProductGIFCardsHomepageFonts=getFonts(ProductGIFCardsHomepage);const CardWhyOspreeFonts=getFonts(CardWhyOspree);const WhoIsOspreeForCardsPhoneFonts=getFonts(WhoIsOspreeForCardsPhone);const WhoIsOspreeForCardsFonts=getFonts(WhoIsOspreeForCards);const MotionDivWithFX=withFX(motion.div);const LabelFonts=getFonts(Label);const BlogItemFonts=getFonts(BlogItem);const FooterFonts=getFonts(Footer);const breakpoints={WQLkyLRf1:\"(min-width: 1200px)\",XKHjhdaUg:\"(max-width: 809px)\",yhQV8jqB2:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-waBxm\";const variantClassNames={WQLkyLRf1:\"framer-v-72rtr7\",XKHjhdaUg:\"framer-v-g9ibb2\",yhQV8jqB2:\"framer-v-1omzepj\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition1={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.02,skewX:0,skewY:0,transition:transition1};const transition2={delay:.3,duration:2.6,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:220};const transition3={delay:0,duration:2,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-240};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"XKHjhdaUg\",Tablet:\"yhQV8jqB2\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,OMGQIn5QzQcidX70h1,qNzdo0iw2QcidX70h1,sFZL9dJe4QcidX70h1,idQcidX70h1,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const router=useRouter();const elementId=useRouteElementId(\"z7JdRkE1U\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"c4eioUnuM\");const ref3=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"XKHjhdaUg\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"XKHjhdaUg\")return false;return true;};const elementId2=useRouteElementId(\"pG5__VFGd\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"TrUGD27tw\");const ref5=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-24d55e97-e877-4a01-9fe1-d9d69175d72e, rgb(0, 0, 0)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7wvxz8-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MUXNdCXHj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"MUXNdCXHj\",intensity:20,layoutId:\"MUXNdCXHj\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yhQV8jqB2:{width:\"150vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,width:\"120vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vlidgg-container\",layoutScroll:true,nodeId:\"CwuodNPyK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{variant:\"b8d7uNsjb\"},yhQV8jqB2:{variant:\"bll9Qhd7q\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"CwuodNPyK\",layoutId:\"CwuodNPyK\",style:{width:\"100%\"},variant:\"FEJfqtKz9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-93hrz2\",\"data-framer-name\":\"Hero Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4w0e15\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-234cd0-container\",isModuleExternal:true,nodeId:\"CNXQjUSmU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"CNXQjUSmU\",isMixedBorderRadius:false,layoutId:\"CNXQjUSmU\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/SJeMx3GmLQHrgCrFUcNScPTDFyE.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/r6rt22XDkAh7yfvmcX0V3ONCfCs.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oh2r63\",\"data-framer-name\":\"2 Columns Text Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12ug6ue\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1elni8n\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rxkuus\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-ehi5dk\",\"data-styles-preset\":\"DjrDyFYIF\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Powering compliance for \",/*#__PURE__*/_jsx(\"br\",{}),\"a global digital economy\"]})}),className:\"framer-1rqh9f2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-boli7a\",\"data-styles-preset\":\"GCNWwqHYx\",children:\"The modular and interoperable solution for global compliance. Designed for crypto-asset companies and financial institutions.\"})}),className:\"framer-1fdz6vv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-66ar6a\",\"data-framer-name\":\"Buttons\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"EuEWCiyNT\"},implicitPathVariables:undefined},{href:{webPageId:\"EuEWCiyNT\"},implicitPathVariables:undefined},{href:{webPageId:\"EuEWCiyNT\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{y:(componentViewport?.y||0)+0+200+104+98.40000000000015+0+0+0+0+0+224+0},yhQV8jqB2:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+200+0+107.00000000000017+0+0+0+112+0+224+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14n3fe0-container\",nodeId:\"zyqBpW9bN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{oWE6eT4Pb:resolvedLinks[2]},yhQV8jqB2:{oWE6eT4Pb:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"zyqBpW9bN\",layoutId:\"zyqBpW9bN\",MvNJev6Df:\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\",oWE6eT4Pb:resolvedLinks[0],variant:\"nrYWeep48\",vXY6OI5Bc:\"Get started\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":MvoBZLXjl\",webPageId:\"Ihrisnm8G\"},implicitPathVariables:undefined},{href:{hash:\":MvoBZLXjl\",webPageId:\"Ihrisnm8G\"},implicitPathVariables:undefined},{href:{hash:\":MvoBZLXjl\",webPageId:\"Ihrisnm8G\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{y:(componentViewport?.y||0)+0+200+104+98.40000000000015+0+0+0+0+0+224+0},yhQV8jqB2:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+200+0+107.00000000000017+0+0+0+112+0+224+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1toiiyu-container\",nodeId:\"dc_4UvucT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{oWE6eT4Pb:resolvedLinks1[2]},yhQV8jqB2:{oWE6eT4Pb:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"dc_4UvucT\",layoutId:\"dc_4UvucT\",MvNJev6Df:\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\",oWE6eT4Pb:resolvedLinks1[0],variant:\"LQWyjbNe1\",vXY6OI5Bc:\"Let's talk\",width:\"100%\"})})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-317bhk\",\"data-framer-name\":\"Facts\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15o1zn\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15qjj9s\",\"data-framer-name\":\"Travel Rule\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zb8x2q\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i1ro0j\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v9e24q\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\"},children:\"TRAVEL RULE\"})})},yhQV8jqB2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\"},children:\"TRAVEL RULE\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\"},children:\"TRAVEL RULE\"})}),className:\"framer-174smf0\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-154th64\",\"data-styles-preset\":\"rm5nScM5K\",children:[\"compliance\",/*#__PURE__*/_jsx(\"br\",{}),\"worldwide\"]})}),className:\"framer-126u64f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-odqgfl\",\"data-framer-name\":\"FATF\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1le8d6h\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18hjqjo\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yivoi6\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\"},children:\"FATF\"})})},yhQV8jqB2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\"},children:\"FATF\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\"},children:\"FATF\"})}),className:\"framer-23d3j8\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-154th64\",\"data-styles-preset\":\"rm5nScM5K\",children:[\"framework\",/*#__PURE__*/_jsx(\"br\",{}),\"adherence\"]})}),className:\"framer-oygs0l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-102m1hq\",\"data-framer-name\":\"IVMS101\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ril5k\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1agy4yy\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16sys7l\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\"},children:\"IVMS101\"})})},yhQV8jqB2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\"},children:\"IVMS101\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\"},children:\"IVMS101\"})}),className:\"framer-5qza0s\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-154th64\",\"data-styles-preset\":\"rm5nScM5K\",children:[\"standard-\",/*#__PURE__*/_jsx(\"br\",{}),\"compatible\"]})}),className:\"framer-uwz8dz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zbhgpa\",\"data-framer-name\":\"MULTI-CHAINS\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19xobw9\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-iy6dic\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jbr6tz\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\"},children:\"MULTI-CHAIN\"})})},yhQV8jqB2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\"},children:\"MULTI-CHAIN\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\"},children:\"MULTI-CHAIN\"})}),className:\"framer-y2y926\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-154th64\",\"data-styles-preset\":\"rm5nScM5K\",children:[\"broad \",/*#__PURE__*/_jsx(\"br\",{}),\"compatibility\"]})}),className:\"framer-1jwkmsp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hge0c1\",\"data-framer-name\":\"Brands\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-wptaoh\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-wzwmc2\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jf6cvo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ws0B5n3vk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{gap:30}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:4,fadeWidth:15,overflow:false},gap:60,height:\"100%\",hoverFactor:1,id:\"ws0B5n3vk\",layoutId:\"ws0B5n3vk\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:64,pixelWidth:300,positionX:\"center\",positionY:\"center\",sizes:\"139px\",src:\"https://framerusercontent.com/images/C2kxxfRikvB8U3Jbd8foC0Qz4Vs.svg\",srcSet:\"https://framerusercontent.com/images/C2kxxfRikvB8U3Jbd8foC0Qz4Vs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/C2kxxfRikvB8U3Jbd8foC0Qz4Vs.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/C2kxxfRikvB8U3Jbd8foC0Qz4Vs.svg 1739w\"},className:\"framer-isfe7t\",\"data-framer-name\":\"Crystal\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:85,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GtrsgOtMUVjoiesEXVeej5hc.png\"},className:\"framer-10zvhp9\",\"data-framer-name\":\"Ibanera\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:68,pixelWidth:300,positionX:\"center\",positionY:\"center\",sizes:\"154px\",src:\"https://framerusercontent.com/images/DFKYiYnail9AEJSrYrzyxOVQYE.svg\",srcSet:\"https://framerusercontent.com/images/DFKYiYnail9AEJSrYrzyxOVQYE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/DFKYiYnail9AEJSrYrzyxOVQYE.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DFKYiYnail9AEJSrYrzyxOVQYE.svg 1538w\"},className:\"framer-1hufey8\",\"data-framer-name\":\"Trisa\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:218,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:\"139px\",src:\"https://framerusercontent.com/images/Y0gNOENJdzcCCiuGwd03N4WwPOM.png\",srcSet:\"https://framerusercontent.com/images/Y0gNOENJdzcCCiuGwd03N4WwPOM.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y0gNOENJdzcCCiuGwd03N4WwPOM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Y0gNOENJdzcCCiuGwd03N4WwPOM.png 1280w\"},className:\"framer-17929s1\",\"data-framer-name\":\"Midhcains\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:74,pixelWidth:300,positionX:\"center\",positionY:\"center\",sizes:\"231px\",src:\"https://framerusercontent.com/images/RxUG6oTlIdh0jiWBJVy0B1WsOwM.svg\",srcSet:\"https://framerusercontent.com/images/RxUG6oTlIdh0jiWBJVy0B1WsOwM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/RxUG6oTlIdh0jiWBJVy0B1WsOwM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RxUG6oTlIdh0jiWBJVy0B1WsOwM.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RxUG6oTlIdh0jiWBJVy0B1WsOwM.svg 2101w\"},className:\"framer-19c03bt\",\"data-framer-name\":\"XRP Ledger\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:95,pixelWidth:300,positionX:\"center\",positionY:\"center\",sizes:\"148px\",src:\"https://framerusercontent.com/images/qIoVcyPTP1k7Jef5ycK9cnwkMuk.svg\",srcSet:\"https://framerusercontent.com/images/qIoVcyPTP1k7Jef5ycK9cnwkMuk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/qIoVcyPTP1k7Jef5ycK9cnwkMuk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qIoVcyPTP1k7Jef5ycK9cnwkMuk.svg 1547w\"},className:\"framer-78ak6t\",\"data-framer-name\":\"Summons\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:86,pixelWidth:300,positionX:\"center\",positionY:\"center\",sizes:\"182px\",src:\"https://framerusercontent.com/images/O2KRyfz2M9MwqpbXXWGbdWIaM.svg\",srcSet:\"https://framerusercontent.com/images/O2KRyfz2M9MwqpbXXWGbdWIaM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/O2KRyfz2M9MwqpbXXWGbdWIaM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/O2KRyfz2M9MwqpbXXWGbdWIaM.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/O2KRyfz2M9MwqpbXXWGbdWIaM.svg 2080w\"},className:\"framer-g2iwbh\",\"data-framer-name\":\"Ripple\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:99,pixelWidth:300,positionX:\"center\",positionY:\"center\",sizes:\"146px\",src:\"https://framerusercontent.com/images/MvOdpe5kJU3pV9AsNmWErAaHhE.svg\",srcSet:\"https://framerusercontent.com/images/MvOdpe5kJU3pV9AsNmWErAaHhE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/MvOdpe5kJU3pV9AsNmWErAaHhE.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MvOdpe5kJU3pV9AsNmWErAaHhE.svg 1491w\"},className:\"framer-mu2ew5\",\"data-framer-name\":\"LSW3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:52,pixelWidth:300,positionX:\"center\",positionY:\"center\",sizes:\"154px\",src:\"https://framerusercontent.com/images/zJhwGL6bkbEi73olqPwIMVFck0.svg\",srcSet:\"https://framerusercontent.com/images/zJhwGL6bkbEi73olqPwIMVFck0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/zJhwGL6bkbEi73olqPwIMVFck0.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zJhwGL6bkbEi73olqPwIMVFck0.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zJhwGL6bkbEi73olqPwIMVFck0.svg 2462w\"},className:\"framer-1srf4lf\",\"data-framer-name\":\"Techstars\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:117,pixelWidth:300,positionX:\"center\",positionY:\"center\",sizes:\"130px\",src:\"https://framerusercontent.com/images/TlOM1Yoa7GTA3hlZXltZMKBcNfk.svg\",srcSet:\"https://framerusercontent.com/images/TlOM1Yoa7GTA3hlZXltZMKBcNfk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/TlOM1Yoa7GTA3hlZXltZMKBcNfk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TlOM1Yoa7GTA3hlZXltZMKBcNfk.svg 1605w\"},className:\"framer-x14x43\",\"data-framer-name\":\"Raid \"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:67,pixelWidth:300,positionX:\"center\",positionY:\"center\",sizes:\"154px\",src:\"https://framerusercontent.com/images/D81nsALjLfneF7IfpfGarpHRci0.svg\",srcSet:\"https://framerusercontent.com/images/D81nsALjLfneF7IfpfGarpHRci0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/D81nsALjLfneF7IfpfGarpHRci0.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/D81nsALjLfneF7IfpfGarpHRci0.svg 1660w\"},className:\"framer-t6zs13\",\"data-framer-name\":\"Lukka\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:150,pixelWidth:287,positionX:\"center\",positionY:\"center\",sizes:\"87px\",src:\"https://framerusercontent.com/images/MzoCi3GTI0Ym2mVT2ojeT9ekMMQ.svg\",srcSet:\"https://framerusercontent.com/images/MzoCi3GTI0Ym2mVT2ojeT9ekMMQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/MzoCi3GTI0Ym2mVT2ojeT9ekMMQ.svg 854w\"},className:\"framer-1urfn6v\",\"data-framer-name\":\"aGTM\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gzkd5x\",\"data-framer-name\":\"Bilenex\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-dnjeng\",\"data-framer-name\":\"Bilenex\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 147 63\"><path d=\"M 36.496 42 L 36.496 39.36 L 42.624 39.36 C 43.925 39.36 44.848 39.093 45.392 38.56 C 45.936 38.027 46.208 37.28 46.208 36.32 L 46.208 35.824 C 46.208 34.843 45.931 34.091 45.376 33.568 C 44.821 33.035 43.861 32.768 42.496 32.768 L 36.48 32.768 L 36.48 30.24 L 42.464 30.24 C 43.691 30.24 44.56 29.984 45.072 29.472 C 45.595 28.949 45.856 28.224 45.856 27.296 L 45.856 27.04 C 45.856 26.133 45.606 25.43 45.104 24.928 C 44.603 24.427 43.717 24.176 42.448 24.176 L 36.432 24.176 L 36.432 21.552 L 42.752 21.552 C 45.002 21.552 46.619 21.984 47.6 22.848 C 48.581 23.701 49.072 24.928 49.072 26.528 L 49.072 26.816 C 49.072 28.043 48.789 28.997 48.224 29.68 C 47.659 30.352 46.784 30.768 45.6 30.928 L 45.6 31.088 C 46.955 31.355 47.936 31.872 48.544 32.64 C 49.163 33.408 49.472 34.49 49.472 35.888 L 49.472 36.496 C 49.472 38.246 48.96 39.6 47.936 40.56 C 46.912 41.52 45.253 42 42.96 42 Z M 34.272 42 L 34.272 21.552 L 37.44 21.552 L 37.44 42 Z M 56.285 42 L 53.07 42 L 53.07 21.552 L 56.286 21.552 L 56.286 42 Z M 64.051 42 L 60.835 42 L 60.835 21.552 L 64.051 21.552 Z M 62.594 39.28 L 73.314 39.28 L 73.314 42 L 62.594 42 Z M 76.397 42 L 76.397 21.552 L 79.565 21.552 L 79.565 42 Z M 77.341 42 L 77.341 39.312 L 89.517 39.312 L 89.517 42 Z M 78.221 32.912 L 78.221 30.256 L 89.165 30.256 L 89.165 32.912 Z M 77.325 24.224 L 77.325 21.552 L 89.405 21.552 L 89.405 24.224 Z M 98.072 21.552 L 105.608 38.512 L 105.8 38.512 L 105.672 29.68 L 105.672 21.552 L 108.792 21.552 L 108.792 42 L 104.104 42 L 96.456 24.848 L 96.264 24.848 L 96.392 34.048 L 96.392 42 L 93.272 42 L 93.272 21.552 Z M 113.335 42 L 113.335 21.552 L 116.503 21.552 L 116.503 42 Z M 114.279 42 L 114.279 39.312 L 126.455 39.312 L 126.455 42 Z M 115.159 32.912 L 115.159 30.256 L 126.103 30.256 L 126.103 32.912 Z M 114.263 24.224 L 114.263 21.552 L 126.343 21.552 L 126.343 24.224 Z M 128.658 42 L 134.818 31.04 L 134.818 31.76 L 128.818 21.552 L 132.306 21.552 L 137.026 29.76 L 137.234 29.76 L 141.938 21.552 L 145.426 21.552 L 139.426 31.76 L 139.426 31.04 L 145.569 42 L 142.018 42 L 137.234 33.232 L 137.01 33.232 L 132.21 42 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 0.818 47.934 C 0.366 47.934 0 47.934 0 47.934 L 0 15.833 C 0 15.833 0.366 15.833 0.818 15.833 L 3.854 15.833 C 4.306 15.833 4.672 15.833 4.672 15.833 L 4.672 47.934 C 4.672 47.934 4.306 47.934 3.854 47.934 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 6.871 40.426 C 6.871 35.783 10.705 32.018 15.435 32.018 C 20.165 32.018 24 35.783 24 40.426 C 24 45.069 20.165 48.833 15.435 48.833 C 10.705 48.833 6.871 45.069 6.871 40.426 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 6.87 23.296 C 6.87 19.919 9.659 17.182 13.099 17.182 C 16.539 17.182 19.328 19.919 19.328 23.296 C 19.328 26.673 16.539 29.411 13.099 29.411 C 9.659 29.411 6.87 26.673 6.87 23.296 Z M 13.053 26.623 C 14.95 26.623 16.488 25.114 16.488 23.251 C 16.488 21.389 14.95 19.879 13.053 19.879 C 11.155 19.879 9.617 21.389 9.617 23.251 C 9.617 25.114 11.155 26.623 13.053 26.623 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:10670451591,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7jfv3e\",\"data-framer-name\":\"MKX\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1veubb0\",\"data-framer-name\":\"MKX\",fill:\"black\",intrinsicHeight:65,intrinsicWidth:145,svg:'<svg id=\"Layer_2\" data-name=\"Layer 2\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 144.67 64.83\"><defs><style>.cls-1{fill:#fff}</style></defs><g id=\"Layer_1-2\" data-name=\"Layer 1\"><path class=\"cls-1\" d=\"M100.05 42.88V21.95h-8.69l-3.79 10.97-3.78-10.97h-8.63v20.93h5.9v-8.51l3.02 8.51h6.5l2.93-8.5v8.5h6.54zm22.86 0h7.94l2.98-5.56 2.95 5.56h7.89l-6.45-10.56 6.27-10.37h-7.55l-2.87 5.36-2.56-5.36h-8l6.09 10.44-6.69 10.49zm-.86 0-6.21-10.94 6.25-9.99h-8.01l-4 6.4v-6.4h-6.96v20.93h6.96v-6.74l4.29 6.74h7.68zM16.21 45.67V20.14l15.92 8.85 15.4-8.85v7.83l-15.66 7.91-9.1-5.1v11.57l-6.56 3.32zm31.32-.36v-7.15l-7.34-4.29-5.49 3.27 12.83 8.17z\"/><path class=\"cls-1\" d=\"M32.41 6.7c14.18 0 25.71 11.54 25.71 25.71S46.58 58.12 32.41 58.12 6.7 46.59 6.7 32.41 18.24 6.7 32.41 6.7m0-6.7C14.51 0 0 14.51 0 32.41s14.51 32.41 32.41 32.41 32.41-14.51 32.41-32.41S50.32 0 32.41 0Z\"/></g></svg>',withExternalLayout:true})})],speed:70,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-64gyey\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mnyyps\",\"data-framer-name\":\"Container\",id:elementId,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-56bu71\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8dmm7v\",\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ehi5dk\",\"data-styles-preset\":\"DjrDyFYIF\",style:{\"--framer-text-color\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\"},children:\"Complete suite for compliance\"})}),className:\"framer-skgqjy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18pssdk\",\"data-styles-preset\":\"gPDperEae\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\"},children:\"Experience modular compliance solutions built for reliable, adaptable, and effortless integration.\"})}),className:\"framer-1pn57j1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ToFcLaTNx\"},implicitPathVariables:undefined},{href:{webPageId:\"ToFcLaTNx\"},implicitPathVariables:undefined},{href:{webPageId:\"ToFcLaTNx\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{y:(componentViewport?.y||0)+0+1314+80+0+55+0+208},yhQV8jqB2:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+1115+120+0+210+0+218,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qmyz6i-container\",nodeId:\"tlczOOUcP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{oWE6eT4Pb:resolvedLinks2[2]},yhQV8jqB2:{oWE6eT4Pb:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"tlczOOUcP\",layoutId:\"tlczOOUcP\",MvNJev6Df:\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\",oWE6eT4Pb:resolvedLinks2[0],variant:\"pYV0kI0uP\",vXY6OI5Bc:\"Explore all modules\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":c4eioUnuM\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"eYLgw_tcE\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1d39ta framer-lux5qc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m5i9ez-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GciwGgFri\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowDown\",id:\"GciwGgFri\",layoutId:\"GciwGgFri\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"thin\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p5xixd\",\"data-framer-name\":\"Container\",id:elementId1,ref:ref3,children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"WcdrXVKvq\"},implicitPathVariables:undefined},{href:{webPageId:\"WcdrXVKvq\"},implicitPathVariables:undefined},{href:{webPageId:\"WcdrXVKvq\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{y:(componentViewport?.y||0)+0+1314+80+629+55+0},yhQV8jqB2:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,y:(componentViewport?.y||0)+0+1115+120+541+400+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11ti46s-container\",nodeId:\"pNqnEarTV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{AZLp3iTYL:\"INTEROPERABLE\",QGB28ngEn:resolvedLinks3[2],variant:\"I6xX9n2Vv\"},yhQV8jqB2:{QGB28ngEn:resolvedLinks3[1],variant:\"OAln1hOXV\"}},children:/*#__PURE__*/_jsx(ProductGIFCardsHomepage,{AQO30j1KA:\"Ensure secure, interoperable information transfer across jurisdictions, meeting global standards.\",AZLp3iTYL:\"interoperable\",cP4beJ60V:addImageAlt({src:\"https://framerusercontent.com/images/NTz8HBPo9DvqtGn29plEnyCFWgQ.png\",srcSet:\"https://framerusercontent.com/images/NTz8HBPo9DvqtGn29plEnyCFWgQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/NTz8HBPo9DvqtGn29plEnyCFWgQ.png 1000w\"},\"\"),DUzfd5Iy7:\"git-pull-request\",height:\"100%\",id:\"pNqnEarTV\",jXX10BgKB:\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\",Klunatx_6:true,layoutId:\"pNqnEarTV\",On2wR2Mo6:\"Upload\",ov_WnLTnr:\"Explore\",QGB28ngEn:resolvedLinks3[0],variant:\"REE6RNUIB\",vwbdmBWc3:\"https://framerusercontent.com/assets/JjX2IesviyTcynn9eBCWvxi5g.webm\",width:\"100%\",zi7Oz1IOj:\"Travel Rule\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ETa2LWEf2\"},implicitPathVariables:undefined},{href:{webPageId:\"ETa2LWEf2\"},implicitPathVariables:undefined},{href:{webPageId:\"ETa2LWEf2\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{y:(componentViewport?.y||0)+0+1314+80+629+55+520},yhQV8jqB2:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,y:(componentViewport?.y||0)+0+1115+120+541+400+733,children:/*#__PURE__*/_jsx(Container,{className:\"framer-orn4io-container\",nodeId:\"igchs_PSK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{AZLp3iTYL:\"INTEGRATED\",QGB28ngEn:resolvedLinks4[2],variant:\"I6xX9n2Vv\"},yhQV8jqB2:{QGB28ngEn:resolvedLinks4[1],variant:\"OAln1hOXV\"}},children:/*#__PURE__*/_jsx(ProductGIFCardsHomepage,{AQO30j1KA:\"Pre-validate that information meets the required quality criteria before initiating a Travel Rule transfer. Reduce errors and streamline compliance communication across systems.\",AZLp3iTYL:\"DATA PRE-VALIDATED\",cP4beJ60V:addImageAlt({src:\"https://framerusercontent.com/images/dPpSOcM0s6lqIPqkOVdhwilUk.png\",srcSet:\"https://framerusercontent.com/images/dPpSOcM0s6lqIPqkOVdhwilUk.png?scale-down-to=512 512w,https://framerusercontent.com/images/dPpSOcM0s6lqIPqkOVdhwilUk.png 1000w\"},\"\"),DUzfd5Iy7:\"users\",height:\"100%\",id:\"igchs_PSK\",jXX10BgKB:\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\",Klunatx_6:true,layoutId:\"igchs_PSK\",On2wR2Mo6:\"Upload\",ov_WnLTnr:\"Explore\",QGB28ngEn:resolvedLinks4[0],variant:\"EJawCEUJB\",vwbdmBWc3:\"https://framerusercontent.com/assets/LsQZWml7Pif078FmwClghl6291E.webm\",width:\"100%\",zi7Oz1IOj:\"Accounts Directory\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"iVf5tqTMv\"},implicitPathVariables:undefined},{href:{webPageId:\"iVf5tqTMv\"},implicitPathVariables:undefined},{href:{webPageId:\"iVf5tqTMv\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{y:(componentViewport?.y||0)+0+1314+80+629+55+1040},yhQV8jqB2:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,y:(componentViewport?.y||0)+0+1115+120+541+400+1466,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qcbn2g-container\",nodeId:\"hf2ZKRGSv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{AZLp3iTYL:\"AUDIT-READY\",jXX10BgKB:\"rgb(255, 255, 255)\",QGB28ngEn:resolvedLinks5[2],variant:\"I6xX9n2Vv\"},yhQV8jqB2:{cP4beJ60V:addImageAlt({src:\"https://framerusercontent.com/images/H01AbpdfWYJ8c81ft9r0M8ysSzo.png\",srcSet:\"https://framerusercontent.com/images/H01AbpdfWYJ8c81ft9r0M8ysSzo.png?scale-down-to=512 512w,https://framerusercontent.com/images/H01AbpdfWYJ8c81ft9r0M8ysSzo.png 1000w\"},\"\"),QGB28ngEn:resolvedLinks5[1],variant:\"OAln1hOXV\"}},children:/*#__PURE__*/_jsx(ProductGIFCardsHomepage,{AQO30j1KA:\"Integrate Ospree\u2019s modules securely, ensuring resilience and continuity for your compliance ecosystem.\",AZLp3iTYL:\"SECURE\",cP4beJ60V:addImageAlt({src:\"https://framerusercontent.com/images/i3cbOv2QyTBYFLGzIQKNmuNYfQ.png\",srcSet:\"https://framerusercontent.com/images/i3cbOv2QyTBYFLGzIQKNmuNYfQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/i3cbOv2QyTBYFLGzIQKNmuNYfQ.png 1000w\"},\"\"),DUzfd5Iy7:\"layers\",height:\"100%\",id:\"hf2ZKRGSv\",jXX10BgKB:\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\",Klunatx_6:true,layoutId:\"hf2ZKRGSv\",On2wR2Mo6:\"Upload\",ov_WnLTnr:\"Explore\",QGB28ngEn:resolvedLinks5[0],variant:\"REE6RNUIB\",vwbdmBWc3:\"https://framerusercontent.com/assets/Ev2pHq0WU4GulJ2gCoBOjmtz430.webm\",width:\"100%\",zi7Oz1IOj:\"Compliance API\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dnsX_oyg6\"},implicitPathVariables:undefined},{href:{webPageId:\"dnsX_oyg6\"},implicitPathVariables:undefined},{href:{webPageId:\"dnsX_oyg6\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{y:(componentViewport?.y||0)+0+1314+80+629+55+1560},yhQV8jqB2:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,y:(componentViewport?.y||0)+0+1115+120+541+400+2199,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vq0lnx-container\",nodeId:\"FcKRm_rb5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{QGB28ngEn:resolvedLinks6[2],variant:\"I6xX9n2Vv\"},yhQV8jqB2:{QGB28ngEn:resolvedLinks6[1],variant:\"OAln1hOXV\"}},children:/*#__PURE__*/_jsx(ProductGIFCardsHomepage,{AQO30j1KA:\"Leverage insights from multiple blockchain analytics partners. Seamlessly integrated into the Travel Rule flow to flag AML risks and automate rules for blocking transfers.\",AZLp3iTYL:\"INTEGRATED\",cP4beJ60V:addImageAlt({src:\"https://framerusercontent.com/images/GXD9PsiiEoswUmAF6mYZ5Q2Nic.png\",srcSet:\"https://framerusercontent.com/images/GXD9PsiiEoswUmAF6mYZ5Q2Nic.png?scale-down-to=512 512w,https://framerusercontent.com/images/GXD9PsiiEoswUmAF6mYZ5Q2Nic.png 1000w\"},\"\"),DUzfd5Iy7:\"bar-chart-2\",height:\"100%\",id:\"FcKRm_rb5\",jXX10BgKB:\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\",Klunatx_6:true,layoutId:\"FcKRm_rb5\",On2wR2Mo6:\"Upload\",ov_WnLTnr:\"Explore\",QGB28ngEn:resolvedLinks6[0],variant:\"EJawCEUJB\",vwbdmBWc3:\"https://framerusercontent.com/assets/hQAqyCcoWHxg2JN3j77xbkHGqU.webm\",width:\"100%\",zi7Oz1IOj:\"Blockchain Analytics\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":MvoBZLXjl\",webPageId:\"Ihrisnm8G\"},implicitPathVariables:undefined},{href:{hash:\":MvoBZLXjl\",webPageId:\"Ihrisnm8G\"},implicitPathVariables:undefined},{href:{hash:\":MvoBZLXjl\",webPageId:\"Ihrisnm8G\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{y:(componentViewport?.y||0)+0+1314+80+629+55+2080},yhQV8jqB2:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,y:(componentViewport?.y||0)+0+1115+120+541+400+2932,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wn57bd-container\",nodeId:\"ayT0yfryH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{QGB28ngEn:resolvedLinks7[2],variant:\"I6xX9n2Vv\"},yhQV8jqB2:{QGB28ngEn:resolvedLinks7[1],variant:\"OAln1hOXV\"}},children:/*#__PURE__*/_jsx(ProductGIFCardsHomepage,{AQO30j1KA:\"Generate audit-ready reports by reconciling key cross-module information for comprehensive compliance documentation.\",AZLp3iTYL:\"AUDIT-READY\",cP4beJ60V:addImageAlt({src:\"https://framerusercontent.com/images/MBZ29VwoI5VGFAXkee8eTLQP9w0.png\",srcSet:\"https://framerusercontent.com/images/MBZ29VwoI5VGFAXkee8eTLQP9w0.png?scale-down-to=512 512w,https://framerusercontent.com/images/MBZ29VwoI5VGFAXkee8eTLQP9w0.png 1000w\"},\"\"),DUzfd5Iy7:\"file-plus\",height:\"100%\",id:\"ayT0yfryH\",jXX10BgKB:\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\",Klunatx_6:true,layoutId:\"ayT0yfryH\",On2wR2Mo6:\"Upload\",ov_WnLTnr:\"Book a demo\",QGB28ngEn:resolvedLinks7[0],variant:\"REE6RNUIB\",vwbdmBWc3:\"https://framerusercontent.com/assets/hpCrpKI9sJUpFOZ1eSxxwDd4U.webm\",width:\"100%\",zi7Oz1IOj:\"Reporting Hub\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i7mtdh\",\"data-framer-name\":\"Why Ospree?\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a5fedd\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4bnt06\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n3lpe8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yhQV8jqB2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-13562aa\",\"data-styles-preset\":\"pFqVFHm6B\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\"},children:\"Why Ospree?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ehi5dk\",\"data-styles-preset\":\"DjrDyFYIF\",style:{\"--framer-text-color\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\"},children:\"Why Ospree?\"})}),className:\"framer-xhoumc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\"},children:[\"We believe compliance should be \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-0b81104d-ef88-4b1c-85b3-197168ad03d2, rgb(211, 240, 8))\"},children:\"simple, adaptable, and rooted in trust.\"}),\" Our solutions are designed to make compliance an enabler for companies in the fast-evolving crypto space. Through partnerships and industry collaboration, we're building a more connected, compliant global ecosystem.\"]})})},yhQV8jqB2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\"},children:\"VASPs can now conduct thorough risk assessments, ensuring safe transactions with counterparties.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\"},children:[\"We believe compliance should be \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-0b81104d-ef88-4b1c-85b3-197168ad03d2, rgb(211, 240, 8))\"},children:\"simple, adaptable, and rooted in trust.\"}),\" Our solutions are designed to make compliance an enabler for companies in the fast-evolving crypto space. Through partnerships and industry collaboration, we're building a more connected, compliant global ecosystem.\"]})}),className:\"framer-1e2yfkj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ifyiz3\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:264,width:\"320px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gtpxji-container\",nodeId:\"y56bHoXv_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardWhyOspree,{height:\"100%\",id:\"y56bHoXv_\",layoutId:\"y56bHoXv_\",style:{width:\"100%\"},variant:\"wwAkPWrgb\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:264,width:\"320px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-as97wb-container\",nodeId:\"dfya995_K\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yhQV8jqB2:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(CardWhyOspree,{height:\"100%\",id:\"dfya995_K\",layoutId:\"dfya995_K\",style:{width:\"100%\"},variant:\"ywvnFsagr\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:264,width:\"320px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-k30jcq-container\",nodeId:\"M3a9CE3JH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardWhyOspree,{height:\"100%\",id:\"M3a9CE3JH\",layoutId:\"M3a9CE3JH\",style:{width:\"100%\"},variant:\"dSJhrNTt1\",width:\"100%\"})})})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j3hvrw\",\"data-framer-name\":\"Testimonials 3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1wqg6kg\",\"data-styles-preset\":\"Lmx9OYR3F\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Users in \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-1f8d8c24-eee4-4a8d-bfc7-21a0a7d2fbc7, rgb(0, 202, 205))\"},children:\"25+\"}),\" countries love their Ospree journey\"]})}),className:\"framer-1vlxucr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o8ygog\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16eo7jn\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tji0qq\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iij2pi\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i9ixmf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1f8d8c24-eee4-4a8d-bfc7-21a0a7d2fbc7, rgb(0, 202, 205))\"},children:\"Enrique Palacios Rojo\"})}),className:\"framer-1d4wcwc\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Head of Compliance & Legal\",/*#__PURE__*/_jsx(\"br\",{}),\"@Bit2me Security Token Exchange\"]})}),className:\"framer-1p5kqhn\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItaXRhbGlj\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'\"With Ospree\\'s adaptable compliance platform, navigating complex AML regulations across the EU and Spanish markets has become far more easy. Their solution is essential for any organization committed to meeting high standards in financial compliance.\"'})}),className:\"framer-1vyhms9\",fonts:[\"GF;Inter-italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x0c204\",\"data-border\":true,\"data-framer-name\":\"Card\",whileHover:animation,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-j1swjw\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xlezi9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1f8d8c24-eee4-4a8d-bfc7-21a0a7d2fbc7, rgb(0, 202, 205))\"},children:\"Tiburcio Sanz\"})}),className:\"framer-szojze\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"VP of Growth\",/*#__PURE__*/_jsx(\"br\",{}),\"@Crystal Intelligence\"]})}),className:\"framer-12w5cds\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItaXRhbGlj\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'\"Partnering with Ospree enhances our blockchain analytics with seamless Travel Rule compliance, offering clients a complete, secure compliance solution.\"'})}),className:\"framer-1juu3gi\",fonts:[\"GF;Inter-italic\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v2cveo\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bmdr96\",\"data-border\":true,\"data-framer-name\":\"Card\",whileHover:animation,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c03aw4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rdwt7x\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1f8d8c24-eee4-4a8d-bfc7-21a0a7d2fbc7, rgb(0, 202, 205))\"},children:\"Cara Hennessy\"})}),className:\"framer-dofr6y\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Co-Founder\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"@Provenance Compliance\"})]}),className:\"framer-1s4urjy\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItaXRhbGlj\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u201COspree's expertise in regulatory compliance and depth of experience with solving for travel rule, elevates Provenance's ability to provide comprehensive operational compliance solutions for our VASP clients and their networks.\\\"\"})}),className:\"framer-1atqsjf\",fonts:[\"GF;Inter-italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qqgxpx\",\"data-border\":true,\"data-framer-name\":\"Card\",whileHover:animation,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xsyokt\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zq8i9r\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1f8d8c24-eee4-4a8d-bfc7-21a0a7d2fbc7, rgb(0, 202, 205))\"},children:\"Sebastien Martin\"})}),className:\"framer-iav081\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"CEO\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"@RAID Square\"})]}),className:\"framer-8ehjvc\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItaXRhbGlj\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'\u201COspree\u2019s deep knowledge in MiCA compliance has strengthened our capacity to offer comprehensive solutions tailored to the French digital asset market, ensuring clients stay ahead in an evolving regulatory landscape.\"'})}),className:\"framer-kjob6r\",fonts:[\"GF;Inter-italic\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k2buwl\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-an2lw6\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13gl9b0\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pli2xx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1f8d8c24-eee4-4a8d-bfc7-21a0a7d2fbc7, rgb(0, 202, 205))\"},children:\"Borja Garcia Rato\"})}),className:\"framer-1qtolcy\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Partner\",/*#__PURE__*/_jsx(\"br\",{}),\"@Summons Abogados\"]})}),className:\"framer-13cuwpn\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItaXRhbGlj\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'\"Ospree\u2019s compliance team has developed a tool designed to support MiCA implementation. From a legal perspective, it\u2019s essential to keep Travel Rule requirements in mind to enable a comprehensive transaction framework.\"'})}),className:\"framer-1r0yzet\",fonts:[\"GF;Inter-italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uixcq3\",\"data-border\":true,\"data-framer-name\":\"Card\",whileHover:animation,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bgor4o\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7b7sm5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1f8d8c24-eee4-4a8d-bfc7-21a0a7d2fbc7, rgb(0, 202, 205))\"},children:\"Pete Townsend\"})}),className:\"framer-1dcjhup\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\"},children:[\"Managing Director\",/*#__PURE__*/_jsx(\"br\",{}),\"@Techstars Web3\"]})}),className:\"framer-1wxh820\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItaXRhbGlj\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'\"Ospree is a practical, easy-to-integrate solution that helps crypto companies keep up with evolving regulations, enabling secure growth. With a strong team and a product that delivers, Ospree is driving a resilient future for digital assets.\"'})}),className:\"framer-14k7i6e\",fonts:[\"GF;Inter-italic\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mbok7e\",\"data-framer-name\":\"Who is Ospree for?\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pdl4zl\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wejecw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-ehi5dk\",\"data-styles-preset\":\"DjrDyFYIF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\"},children:[\"Who is\",/*#__PURE__*/_jsx(\"br\",{}),\"Ospree for?\"]})})},yhQV8jqB2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-ehi5dk\",\"data-styles-preset\":\"DjrDyFYIF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\"},children:[\"Who is\",/*#__PURE__*/_jsx(\"br\",{}),\"Ospree for?\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ehi5dk\",\"data-styles-preset\":\"DjrDyFYIF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\"},children:\"Who is Ospree for?\"})}),className:\"framer-1psvzif\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c79noy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gjbtbi\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{height:174,y:(componentViewport?.y||0)+0+8063+180+0+108+0+0+10+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-31fm6b-container hidden-72rtr7 hidden-1omzepj\",nodeId:\"pVgW_Vc8w\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(WhoIsOspreeForCardsPhone,{height:\"100%\",id:\"pVgW_Vc8w\",layoutId:\"pVgW_Vc8w\",variant:\"ESQt6pBhJ\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{height:174,y:(componentViewport?.y||0)+0+8063+180+0+108+0+0+10+206}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wn1ofk-container hidden-72rtr7 hidden-1omzepj\",nodeId:\"PF_E2YWby\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(WhoIsOspreeForCardsPhone,{height:\"100%\",id:\"PF_E2YWby\",layoutId:\"PF_E2YWby\",variant:\"tVK7eg_mX\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yhQV8jqB2:{width:\"303px\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,y:(componentViewport?.y||0)+0+7657+300+0+130+0+0+10,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16s7nuy-container hidden-g9ibb2\",nodeId:\"Se1vqQgmW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yhQV8jqB2:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(WhoIsOspreeForCards,{height:\"100%\",id:\"Se1vqQgmW\",layoutId:\"Se1vqQgmW\",variant:\"R2e2un9YA\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{height:174,y:(componentViewport?.y||0)+0+8063+180+0+108+0+0+10+412}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vrq8ua-container hidden-72rtr7 hidden-1omzepj\",nodeId:\"Zb2_GTZo7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(WhoIsOspreeForCardsPhone,{height:\"100%\",id:\"Zb2_GTZo7\",layoutId:\"Zb2_GTZo7\",variant:\"ZkItnMuDY\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yhQV8jqB2:{width:\"303px\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,y:(componentViewport?.y||0)+0+7657+300+0+130+0+0+10,children:/*#__PURE__*/_jsx(Container,{className:\"framer-188byu7-container hidden-g9ibb2\",nodeId:\"cemxm12NM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yhQV8jqB2:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(WhoIsOspreeForCards,{height:\"100%\",id:\"cemxm12NM\",layoutId:\"cemxm12NM\",variant:\"D8TIBYV7f\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yhQV8jqB2:{width:\"303px\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,y:(componentViewport?.y||0)+0+7657+300+0+130+0+0+10,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4senfx-container hidden-g9ibb2\",nodeId:\"tAH4EAqep\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yhQV8jqB2:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(WhoIsOspreeForCards,{height:\"100%\",id:\"tAH4EAqep\",layoutId:\"tAH4EAqep\",variant:\"xRjKOwED1\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ml7z3h\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{height:174,y:(componentViewport?.y||0)+0+8063+180+0+108+0+626+10+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s5op2o-container hidden-72rtr7 hidden-1omzepj\",nodeId:\"db44dK_3A\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(WhoIsOspreeForCardsPhone,{height:\"100%\",id:\"db44dK_3A\",layoutId:\"db44dK_3A\",variant:\"fF20JTA8n\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{height:174,y:(componentViewport?.y||0)+0+8063+180+0+108+0+626+10+206}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qn06lp-container hidden-72rtr7 hidden-1omzepj\",nodeId:\"d6MnyUmc7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(WhoIsOspreeForCardsPhone,{height:\"100%\",id:\"d6MnyUmc7\",layoutId:\"d6MnyUmc7\",variant:\"jaUCeVYON\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yhQV8jqB2:{width:\"303px\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,y:(componentViewport?.y||0)+0+7657+300+0+130+0+214+10,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eqvhk0-container hidden-g9ibb2\",nodeId:\"UBm3UT9_Z\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yhQV8jqB2:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(WhoIsOspreeForCards,{height:\"100%\",id:\"UBm3UT9_Z\",layoutId:\"UBm3UT9_Z\",variant:\"xDHhvGs0y\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{height:174,y:(componentViewport?.y||0)+0+8063+180+0+108+0+626+10+412}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m58qy8-container hidden-72rtr7 hidden-1omzepj\",nodeId:\"MmEFbZzuu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(WhoIsOspreeForCardsPhone,{height:\"100%\",id:\"MmEFbZzuu\",layoutId:\"MmEFbZzuu\",variant:\"d1ou3Dy41\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yhQV8jqB2:{width:\"303px\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,y:(componentViewport?.y||0)+0+7657+300+0+130+0+214+10,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ucf6oy-container hidden-g9ibb2\",nodeId:\"km6ab8DZv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yhQV8jqB2:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(WhoIsOspreeForCards,{height:\"100%\",id:\"km6ab8DZv\",layoutId:\"km6ab8DZv\",variant:\"SRKkhoxGH\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yhQV8jqB2:{width:\"303px\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,y:(componentViewport?.y||0)+0+7657+300+0+130+0+214+10,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dkz8mg-container hidden-g9ibb2\",nodeId:\"czbe8xJbf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yhQV8jqB2:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(WhoIsOspreeForCards,{height:\"100%\",id:\"czbe8xJbf\",layoutId:\"czbe8xJbf\",variant:\"FfPCw0ToD\",width:\"100%\"})})})})})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-10kyq8w\",\"data-framer-name\":\"Call To Action Remix\",id:elementId2,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i6riyk\",\"data-framer-name\":\"Variant 1\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8qp9mt\",\"data-framer-name\":\"Blur_1\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition3,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6jd571\",\"data-framer-name\":\"Blur_2\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition3,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cl7hi2\",\"data-framer-name\":\"Blur_2\"}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":MvoBZLXjl\",webPageId:\"Ihrisnm8G\"},implicitPathVariables:undefined},{href:{hash:\":MvoBZLXjl\",webPageId:\"Ihrisnm8G\"},implicitPathVariables:undefined},{href:{hash:\":MvoBZLXjl\",webPageId:\"Ihrisnm8G\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{y:(componentViewport?.y||0)+0+9778+100+0+391-97},yhQV8jqB2:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+8810+300+391-107,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mw44vy-container\",nodeId:\"sshjss_Q8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{oWE6eT4Pb:resolvedLinks8[2]},yhQV8jqB2:{oWE6eT4Pb:resolvedLinks8[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"sshjss_Q8\",layoutId:\"sshjss_Q8\",MvNJev6Df:\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\",oWE6eT4Pb:resolvedLinks8[0],variant:\"iWmzE9sIR\",vXY6OI5Bc:\"Get started\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-173v0xl\",\"data-styles-preset\":\"FYYQTeNHi\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f6385f1f-c41c-41a5-bd2a-ac292ffe3c7b, rgb(0, 47, 48))\"},children:[\"Elevate your\",/*#__PURE__*/_jsx(\"br\",{}),\"compliance now\"]})}),fonts:[\"Inter\"]},yhQV8jqB2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f6385f1f-c41c-41a5-bd2a-ac292ffe3c7b, rgb(0, 47, 48))\"},children:[\"Elevate your\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"compliance now\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 47, 48)\"},children:\"Start your compliance journey today\"})}),className:\"framer-kvmh73\",fonts:[\"Inter-SemiBold\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hcsc76\",\"data-styles-preset\":\"E05RTF7o3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 47, 48)\"},children:\"Explore Ospree\u2019s comprehensive platform and discover how it simplifies compliance for your organization.\"})}),className:\"framer-18barqe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-d9owsm\",\"data-framer-name\":\"Blog\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eyuak7\",\"data-framer-name\":\"Container\",id:elementId3,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ohdass\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d2xm2p\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{y:(componentViewport?.y||0)+0+10369+80+0+0+0+0+0+0+0},yhQV8jqB2:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,y:(componentViewport?.y||0)+0+9801+180+0+0+0+0+0+-5.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hdxa7-container\",nodeId:\"h0cEZaTTy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Label,{fpIYKhi7I:\"From Our Blog\",height:\"100%\",id:\"h0cEZaTTy\",layoutId:\"h0cEZaTTy\",variant:\"D0b2Zo1HB\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ehi5dk\",\"data-styles-preset\":\"DjrDyFYIF\",children:\"Ospree chronicles\"})}),className:\"framer-1u9x0y1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ahjxok\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{query:{from:{alias:\"QcidX70h1\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"QcidX70h1\",name:\"OMGQIn5Qz\",type:\"Identifier\"},{collection:\"QcidX70h1\",name:\"qNzdo0iw2\",type:\"Identifier\"},{collection:\"QcidX70h1\",name:\"sFZL9dJe4\",type:\"Identifier\"},{collection:\"QcidX70h1\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"QcidX70h1\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"QcidX70h1\",name:\"OMGQIn5Qz\",type:\"Identifier\"},{collection:\"QcidX70h1\",name:\"qNzdo0iw2\",type:\"Identifier\"},{collection:\"QcidX70h1\",name:\"sFZL9dJe4\",type:\"Identifier\"},{collection:\"QcidX70h1\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idQcidX70h1,OMGQIn5Qz:OMGQIn5QzQcidX70h1,qNzdo0iw2:qNzdo0iw2QcidX70h1,sFZL9dJe4:sFZL9dJe4QcidX70h1},index)=>{qNzdo0iw2QcidX70h1??=\"\";sFZL9dJe4QcidX70h1??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`QcidX70h1-${idQcidX70h1}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{sFZL9dJe4:sFZL9dJe4QcidX70h1},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{sFZL9dJe4:sFZL9dJe4QcidX70h1},webPageId:\"lZGckjbxW\"},implicitPathVariables:undefined},{href:{pathVariables:{sFZL9dJe4:sFZL9dJe4QcidX70h1},webPageId:\"lZGckjbxW\"},implicitPathVariables:undefined},{href:{pathVariables:{sFZL9dJe4:sFZL9dJe4QcidX70h1},webPageId:\"lZGckjbxW\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{height:377,width:\"346px\",y:(componentViewport?.y||0)+0+10369+80+0+0+0+0+89+32+0},yhQV8jqB2:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:314,width:\"338.5px\",y:(componentViewport?.y||0)+0+9801+180+0+0+0+82+32+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ar925y-container\",nodeId:\"SToHmVsM7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{gSpUY6m2u:resolvedLinks9[2]},yhQV8jqB2:{gSpUY6m2u:resolvedLinks9[1]}},children:/*#__PURE__*/_jsx(BlogItem,{bOTr7KIWY:qNzdo0iw2QcidX70h1,gSpUY6m2u:resolvedLinks9[0],height:\"100%\",id:\"SToHmVsM7\",layoutId:\"SToHmVsM7\",MpnBTZ1BN:toResponsiveImage(OMGQIn5QzQcidX70h1),style:{width:\"100%\"},variant:\"lzAqM4rLW\",width:\"100%\"})})})})})})})},idQcidX70h1);})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ae3k9e\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"AbIVU6QDT\"},implicitPathVariables:undefined},{href:{webPageId:\"AbIVU6QDT\"},implicitPathVariables:undefined},{href:{webPageId:\"AbIVU6QDT\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{y:(componentViewport?.y||0)+0+10369+80+0+0+0+0+498+20},yhQV8jqB2:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+9801+180+0+0+0+814+20,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pwvrr6-container\",nodeId:\"XxaWdRVqb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{oWE6eT4Pb:resolvedLinks10[2]},yhQV8jqB2:{oWE6eT4Pb:resolvedLinks10[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"XxaWdRVqb\",layoutId:\"XxaWdRVqb\",MvNJev6Df:\"var(--token-47ef7e86-9ea6-47bf-9a30-889f143a325f, rgb(255, 255, 255))\",oWE6eT4Pb:resolvedLinks10[0],variant:\"lBVQH3Q4m\",vXY6OI5Bc:\"Read more\",width:\"100%\"})})})})})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{y:(componentViewport?.y||0)+0+11079},yhQV8jqB2:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:553,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+11027,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wckvk6-container\",nodeId:\"awlUr7ZmS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XKHjhdaUg:{variant:\"UVYTNhgpi\"},yhQV8jqB2:{variant:\"rk8n09JhE\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"awlUr7ZmS\",layoutId:\"awlUr7ZmS\",style:{width:\"100%\"},variant:\"RoUQqqVu0\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-waBxm.framer-lux5qc, .framer-waBxm .framer-lux5qc { display: block; }\",\".framer-waBxm.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-24d55e97-e877-4a01-9fe1-d9d69175d72e, #000000); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-waBxm .framer-7wvxz8-container, .framer-waBxm .framer-14n3fe0-container, .framer-waBxm .framer-1toiiyu-container, .framer-waBxm .framer-1qmyz6i-container, .framer-waBxm .framer-11ti46s-container, .framer-waBxm .framer-orn4io-container, .framer-waBxm .framer-qcbn2g-container, .framer-waBxm .framer-1vq0lnx-container, .framer-waBxm .framer-wn57bd-container, .framer-waBxm .framer-31fm6b-container, .framer-waBxm .framer-1wn1ofk-container, .framer-waBxm .framer-16s7nuy-container, .framer-waBxm .framer-vrq8ua-container, .framer-waBxm .framer-188byu7-container, .framer-waBxm .framer-4senfx-container, .framer-waBxm .framer-1s5op2o-container, .framer-waBxm .framer-1qn06lp-container, .framer-waBxm .framer-1eqvhk0-container, .framer-waBxm .framer-1m58qy8-container, .framer-waBxm .framer-1ucf6oy-container, .framer-waBxm .framer-1dkz8mg-container, .framer-waBxm .framer-1hdxa7-container, .framer-waBxm .framer-1pwvrr6-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-waBxm .framer-vlidgg-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 120%; z-index: 1; }\",\".framer-waBxm .framer-93hrz2 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 800px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-waBxm .framer-4w0e15 { background-color: var(--token-24d55e97-e877-4a01-9fe1-d9d69175d72e, #000000); flex: none; height: 800px; overflow: hidden; position: relative; width: 1200px; }\",\".framer-waBxm .framer-234cd0-container { flex: none; height: 130%; left: calc(89.25000000000001% - 129.83333333333334% / 2); position: absolute; top: calc(50.00000000000002% - 129.875% / 2); width: 130%; z-index: 0; }\",\".framer-waBxm .framer-1oh2r63 { 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: 50%; overflow: hidden; padding: 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 1000px; }\",\".framer-waBxm .framer-12ug6ue { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-waBxm .framer-1elni8n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 480px; justify-content: flex-start; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-waBxm .framer-1rxkuus { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 400px; }\",\".framer-waBxm .framer-1rqh9f2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-waBxm .framer-1fdz6vv, .framer-waBxm .framer-1vyhms9, .framer-waBxm .framer-1juu3gi, .framer-waBxm .framer-1atqsjf, .framer-waBxm .framer-kjob6r, .framer-waBxm .framer-1r0yzet, .framer-waBxm .framer-14k7i6e { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-waBxm .framer-66ar6a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-waBxm .framer-317bhk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 96px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-waBxm .framer-15o1zn { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 148px; height: 1px; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-waBxm .framer-15qjj9s, .framer-waBxm .framer-odqgfl, .framer-waBxm .framer-102m1hq, .framer-waBxm .framer-zbhgpa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-waBxm .framer-zb8x2q { background-color: var(--token-a9cde8d4-4650-40af-bcf9-a934a1a22f30, #26ecf0); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 23px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-waBxm .framer-1i1ro0j, .framer-waBxm .framer-18hjqjo, .framer-waBxm .framer-1agy4yy, .framer-waBxm .framer-iy6dic { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-waBxm .framer-v9e24q, .framer-waBxm .framer-1yivoi6, .framer-waBxm .framer-16sys7l, .framer-waBxm .framer-jbr6tz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-waBxm .framer-174smf0, .framer-waBxm .framer-23d3j8, .framer-waBxm .framer-5qza0s, .framer-waBxm .framer-y2y926, .framer-waBxm .framer-1d4wcwc, .framer-waBxm .framer-1p5kqhn, .framer-waBxm .framer-szojze, .framer-waBxm .framer-12w5cds, .framer-waBxm .framer-dofr6y, .framer-waBxm .framer-1s4urjy, .framer-waBxm .framer-iav081, .framer-waBxm .framer-8ehjvc, .framer-waBxm .framer-1qtolcy, .framer-waBxm .framer-13cuwpn, .framer-waBxm .framer-1dcjhup, .framer-waBxm .framer-1wxh820, .framer-waBxm .framer-1psvzif { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-waBxm .framer-126u64f, .framer-waBxm .framer-oygs0l, .framer-waBxm .framer-uwz8dz, .framer-waBxm .framer-1jwkmsp { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-waBxm .framer-1le8d6h, .framer-waBxm .framer-ril5k, .framer-waBxm .framer-19xobw9 { background-color: var(--token-a9cde8d4-4650-40af-bcf9-a934a1a22f30, #26ecf0); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 21px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-waBxm .framer-1hge0c1 { align-content: center; align-items: center; background-color: var(--token-24d55e97-e877-4a01-9fe1-d9d69175d72e, #000000); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 5px 0px; position: relative; width: 100%; }\",\".framer-waBxm .framer-wptaoh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 60px 20px 60px; position: relative; width: 100%; }\",\".framer-waBxm .framer-wzwmc2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1228px; overflow: hidden; padding: 10px 0px 10px 0px; position: relative; width: 1080px; }\",\".framer-waBxm .framer-jf6cvo-container { flex: none; height: 50px; position: relative; width: 100%; }\",\".framer-waBxm .framer-isfe7t, .framer-waBxm .framer-10zvhp9, .framer-waBxm .framer-17929s1 { aspect-ratio: 3.6578947368421053 / 1; height: var(--framer-aspect-ratio-supported, 38px); overflow: hidden; position: relative; width: 139px; }\",\".framer-waBxm .framer-1hufey8, .framer-waBxm .framer-1srf4lf, .framer-waBxm .framer-t6zs13 { aspect-ratio: 4.052631578947368 / 1; height: var(--framer-aspect-ratio-supported, 38px); overflow: hidden; position: relative; width: 154px; }\",\".framer-waBxm .framer-19c03bt { aspect-ratio: 4.052631578947368 / 1; height: var(--framer-aspect-ratio-supported, 57px); overflow: hidden; position: relative; width: 231px; }\",\".framer-waBxm .framer-78ak6t { aspect-ratio: 3.8947368421052633 / 1; height: var(--framer-aspect-ratio-supported, 38px); overflow: hidden; position: relative; width: 148px; }\",\".framer-waBxm .framer-g2iwbh { aspect-ratio: 4.052631578947368 / 1; height: var(--framer-aspect-ratio-supported, 45px); overflow: hidden; position: relative; width: 182px; }\",\".framer-waBxm .framer-mu2ew5 { aspect-ratio: 3.8421052631578947 / 1; height: var(--framer-aspect-ratio-supported, 38px); overflow: hidden; position: relative; width: 146px; }\",\".framer-waBxm .framer-x14x43 { aspect-ratio: 3.4210526315789473 / 1; height: var(--framer-aspect-ratio-supported, 38px); overflow: hidden; position: relative; width: 130px; }\",\".framer-waBxm .framer-1urfn6v { height: 45px; overflow: hidden; position: relative; width: 87px; }\",\".framer-waBxm .framer-1gzkd5x, .framer-waBxm .framer-7jfv3e { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-waBxm .framer-dnjeng { flex: none; height: 63px; position: relative; width: 147px; }\",\".framer-waBxm .framer-1veubb0 { aspect-ratio: 2.230769230769231 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 49px); position: relative; width: 109px; }\",'.framer-waBxm .framer-64gyey { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(0, 155, 157, 0.3) 0%, rgb(0, 0, 0) 22%, var(--token-24d55e97-e877-4a01-9fe1-d9d69175d72e, rgb(0, 0, 0)) /* {\"name\":\"Ospree Black\"} */ 101%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 400px 0px; position: relative; width: 100%; }',\".framer-waBxm .framer-mnyyps { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 210px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-waBxm .framer-56bu71 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-waBxm .framer-8dmm7v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-waBxm .framer-skgqjy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 41%; word-break: break-word; word-wrap: break-word; }\",\".framer-waBxm .framer-1pn57j1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 670px; position: relative; white-space: pre-wrap; width: 34%; word-break: break-word; word-wrap: break-word; }\",\".framer-waBxm .framer-1d39ta { flex: none; height: 61px; overflow: hidden; position: relative; text-decoration: none; width: 60px; }\",\".framer-waBxm .framer-1m5i9ez-container { flex: none; height: 60px; left: 0px; position: absolute; right: 0px; top: calc(49.18032786885248% - 60px / 2); }\",\".framer-waBxm .framer-p5xixd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 400px; height: min-content; justify-content: center; overflow: hidden; padding: 400px 60px 0px 60px; position: relative; width: 100%; }\",'.framer-waBxm .framer-1i7mtdh { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(194, 254, 255, 0.1) 0%, var(--token-24d55e97-e877-4a01-9fe1-d9d69175d72e, rgb(0, 0, 0)) /* {\"name\":\"Ospree Black\"} */ 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 924px; justify-content: center; overflow: hidden; padding: 200px 40px 200px 40px; position: relative; width: 100%; }',\".framer-waBxm .framer-1a5fedd, .framer-waBxm .framer-ifyiz3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-waBxm .framer-4bnt06 { align-content: center; align-items: center; background: linear-gradient(246deg, rgba(255, 255, 255, 0) 0%, rgba(171, 171, 171, 0) 100%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 69px; height: min-content; justify-content: flex-start; padding: 78px 30px 78px 30px; position: relative; width: min-content; }\",\".framer-waBxm .framer-1n3lpe8 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-waBxm .framer-xhoumc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 864px; word-break: break-word; word-wrap: break-word; }\",\".framer-waBxm .framer-1e2yfkj { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 752px; word-break: break-word; word-wrap: break-word; }\",\".framer-waBxm .framer-1gtpxji-container, .framer-waBxm .framer-as97wb-container, .framer-waBxm .framer-k30jcq-container { flex: none; height: auto; position: relative; width: 320px; }\",\".framer-waBxm .framer-1j3hvrw { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(38, 236, 240, 0.1) 0%, rgb(0, 0, 0) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-waBxm .framer-1vlxucr, .framer-waBxm .framer-1u9x0y1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-waBxm .framer-1o8ygog { align-content: flex-start; align-items: flex-start; background-color: rgba(255, 255, 255, 0); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-waBxm .framer-16eo7jn, .framer-waBxm .framer-v2cveo, .framer-waBxm .framer-k2buwl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-waBxm .framer-1tji0qq, .framer-waBxm .framer-x0c204, .framer-waBxm .framer-an2lw6, .framer-waBxm .framer-uixcq3 { --border-bottom-width: 1px; --border-color: #353539; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.09); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 30px; position: relative; width: 100%; }\",\".framer-waBxm .framer-1iij2pi, .framer-waBxm .framer-j1swjw, .framer-waBxm .framer-1c03aw4, .framer-waBxm .framer-1xsyokt, .framer-waBxm .framer-13gl9b0, .framer-waBxm .framer-bgor4o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-waBxm .framer-1i9ixmf, .framer-waBxm .framer-xlezi9, .framer-waBxm .framer-rdwt7x, .framer-waBxm .framer-zq8i9r, .framer-waBxm .framer-pli2xx, .framer-waBxm .framer-7b7sm5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-waBxm .framer-bmdr96, .framer-waBxm .framer-qqgxpx { --border-bottom-width: 1px; --border-color: #353539; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.09); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; padding: 30px; position: relative; width: 100%; }\",\".framer-waBxm .framer-mbok7e { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(1, 55, 56, 0.5) 0%, rgb(0, 0, 0) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 300px 200px 300px 200px; position: relative; width: 100%; }\",\".framer-waBxm .framer-1pdl4zl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1000px; }\",\".framer-waBxm .framer-1wejecw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 50px 0px; position: relative; width: min-content; }\",\".framer-waBxm .framer-c79noy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-waBxm .framer-1gjbtbi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 10px 20px 10px; position: relative; width: 100%; }\",\".framer-waBxm .framer-ml7z3h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 10px 25px 10px; position: relative; width: 100%; }\",\".framer-waBxm .framer-10kyq8w { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(194, 254, 255, 0.1) 0%, rgb(0, 0, 0) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 300px 60px 300px 60px; position: relative; width: 100%; }\",\".framer-waBxm .framer-1i6riyk { background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 391px; overflow: hidden; position: relative; width: 1000px; will-change: var(--framer-will-change-override, transform); }\",\".framer-waBxm .framer-8qp9mt { -webkit-filter: blur(100px); aspect-ratio: 0.986013986013986 / 1; background-color: rgba(38, 236, 240, 0.2); filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 286px); overflow: visible; position: absolute; right: -94px; top: -43px; width: 282px; }\",\".framer-waBxm .framer-6jd571 { -webkit-filter: blur(100px); aspect-ratio: 0.9952830188679246 / 1; background-color: rgba(0, 202, 205, 0.6); filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 424px); left: 107px; overflow: visible; position: absolute; top: 288px; width: 422px; }\",\".framer-waBxm .framer-cl7hi2 { -webkit-filter: blur(100px); aspect-ratio: 0.9952830188679246 / 1; background-color: rgba(211, 240, 8, 0.3); filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 288px); left: -122px; overflow: visible; position: absolute; top: 342px; width: 287px; }\",\".framer-waBxm .framer-1mw44vy-container { bottom: 75px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); width: auto; }\",\".framer-waBxm .framer-kvmh73 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; max-width: 648px; position: absolute; top: 75px; transform: translateX(-50%); white-space: pre-wrap; width: 521px; word-break: break-word; word-wrap: break-word; }\",\".framer-waBxm .framer-18barqe { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 129px; flex: none; height: 54px; left: calc(50.00000000000002% - min(709px, 526px) / 2); max-width: 709px; position: absolute; white-space: pre-wrap; width: 526px; word-break: break-word; word-wrap: break-word; }\",\".framer-waBxm .framer-d9owsm { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(18, 61, 95, 0.5) 0%, rgb(0, 0, 0) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 180px 60px 180px 60px; position: relative; width: 100%; }\",\".framer-waBxm .framer-1eyuak7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1228px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-waBxm .framer-1ohdass { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-waBxm .framer-1d2xm2p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: 82px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-waBxm .framer-ahjxok { display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); height: 732px; justify-content: center; padding: 32px 0px 32px 0px; position: relative; width: 717px; z-index: 0; }\",\".framer-waBxm .framer-1ar925y-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-waBxm .framer-ae3k9e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-waBxm .framer-1wckvk6-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-waBxm.framer-72rtr7, .framer-waBxm .framer-93hrz2, .framer-waBxm .framer-1oh2r63, .framer-waBxm .framer-12ug6ue, .framer-waBxm .framer-1elni8n, .framer-waBxm .framer-1rxkuus, .framer-waBxm .framer-66ar6a, .framer-waBxm .framer-317bhk, .framer-waBxm .framer-15o1zn, .framer-waBxm .framer-15qjj9s, .framer-waBxm .framer-1i1ro0j, .framer-waBxm .framer-v9e24q, .framer-waBxm .framer-odqgfl, .framer-waBxm .framer-18hjqjo, .framer-waBxm .framer-1yivoi6, .framer-waBxm .framer-102m1hq, .framer-waBxm .framer-1agy4yy, .framer-waBxm .framer-16sys7l, .framer-waBxm .framer-zbhgpa, .framer-waBxm .framer-iy6dic, .framer-waBxm .framer-jbr6tz, .framer-waBxm .framer-1hge0c1, .framer-waBxm .framer-wptaoh, .framer-waBxm .framer-wzwmc2, .framer-waBxm .framer-1gzkd5x, .framer-waBxm .framer-7jfv3e, .framer-waBxm .framer-64gyey, .framer-waBxm .framer-mnyyps, .framer-waBxm .framer-56bu71, .framer-waBxm .framer-8dmm7v, .framer-waBxm .framer-p5xixd, .framer-waBxm .framer-1i7mtdh, .framer-waBxm .framer-1a5fedd, .framer-waBxm .framer-4bnt06, .framer-waBxm .framer-1n3lpe8, .framer-waBxm .framer-ifyiz3, .framer-waBxm .framer-1j3hvrw, .framer-waBxm .framer-1o8ygog, .framer-waBxm .framer-16eo7jn, .framer-waBxm .framer-1tji0qq, .framer-waBxm .framer-1iij2pi, .framer-waBxm .framer-1i9ixmf, .framer-waBxm .framer-x0c204, .framer-waBxm .framer-j1swjw, .framer-waBxm .framer-xlezi9, .framer-waBxm .framer-v2cveo, .framer-waBxm .framer-bmdr96, .framer-waBxm .framer-1c03aw4, .framer-waBxm .framer-rdwt7x, .framer-waBxm .framer-qqgxpx, .framer-waBxm .framer-1xsyokt, .framer-waBxm .framer-zq8i9r, .framer-waBxm .framer-k2buwl, .framer-waBxm .framer-an2lw6, .framer-waBxm .framer-13gl9b0, .framer-waBxm .framer-pli2xx, .framer-waBxm .framer-uixcq3, .framer-waBxm .framer-bgor4o, .framer-waBxm .framer-7b7sm5, .framer-waBxm .framer-mbok7e, .framer-waBxm .framer-1pdl4zl, .framer-waBxm .framer-1wejecw, .framer-waBxm .framer-c79noy, .framer-waBxm .framer-1gjbtbi, .framer-waBxm .framer-ml7z3h, .framer-waBxm .framer-10kyq8w, .framer-waBxm .framer-d9owsm, .framer-waBxm .framer-1eyuak7, .framer-waBxm .framer-1ohdass, .framer-waBxm .framer-1d2xm2p, .framer-waBxm .framer-ae3k9e { gap: 0px; } .framer-waBxm.framer-72rtr7 > *, .framer-waBxm .framer-64gyey > *, .framer-waBxm .framer-1i9ixmf > *, .framer-waBxm .framer-xlezi9 > *, .framer-waBxm .framer-rdwt7x > *, .framer-waBxm .framer-zq8i9r > *, .framer-waBxm .framer-pli2xx > *, .framer-waBxm .framer-7b7sm5 > *, .framer-waBxm .framer-1eyuak7 > *, .framer-waBxm .framer-1ohdass > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-waBxm.framer-72rtr7 > :first-child, .framer-waBxm .framer-12ug6ue > :first-child, .framer-waBxm .framer-1rxkuus > :first-child, .framer-waBxm .framer-317bhk > :first-child, .framer-waBxm .framer-1i1ro0j > :first-child, .framer-waBxm .framer-v9e24q > :first-child, .framer-waBxm .framer-18hjqjo > :first-child, .framer-waBxm .framer-1yivoi6 > :first-child, .framer-waBxm .framer-1agy4yy > :first-child, .framer-waBxm .framer-16sys7l > :first-child, .framer-waBxm .framer-iy6dic > :first-child, .framer-waBxm .framer-jbr6tz > :first-child, .framer-waBxm .framer-1hge0c1 > :first-child, .framer-waBxm .framer-64gyey > :first-child, .framer-waBxm .framer-56bu71 > :first-child, .framer-waBxm .framer-8dmm7v > :first-child, .framer-waBxm .framer-p5xixd > :first-child, .framer-waBxm .framer-1i7mtdh > :first-child, .framer-waBxm .framer-4bnt06 > :first-child, .framer-waBxm .framer-1n3lpe8 > :first-child, .framer-waBxm .framer-1j3hvrw > :first-child, .framer-waBxm .framer-16eo7jn > :first-child, .framer-waBxm .framer-1tji0qq > :first-child, .framer-waBxm .framer-1i9ixmf > :first-child, .framer-waBxm .framer-x0c204 > :first-child, .framer-waBxm .framer-xlezi9 > :first-child, .framer-waBxm .framer-v2cveo > :first-child, .framer-waBxm .framer-bmdr96 > :first-child, .framer-waBxm .framer-rdwt7x > :first-child, .framer-waBxm .framer-qqgxpx > :first-child, .framer-waBxm .framer-zq8i9r > :first-child, .framer-waBxm .framer-k2buwl > :first-child, .framer-waBxm .framer-an2lw6 > :first-child, .framer-waBxm .framer-pli2xx > :first-child, .framer-waBxm .framer-uixcq3 > :first-child, .framer-waBxm .framer-7b7sm5 > :first-child, .framer-waBxm .framer-1pdl4zl > :first-child, .framer-waBxm .framer-c79noy > :first-child, .framer-waBxm .framer-1eyuak7 > :first-child, .framer-waBxm .framer-1ohdass > :first-child, .framer-waBxm .framer-1d2xm2p > :first-child { margin-top: 0px; } .framer-waBxm.framer-72rtr7 > :last-child, .framer-waBxm .framer-12ug6ue > :last-child, .framer-waBxm .framer-1rxkuus > :last-child, .framer-waBxm .framer-317bhk > :last-child, .framer-waBxm .framer-1i1ro0j > :last-child, .framer-waBxm .framer-v9e24q > :last-child, .framer-waBxm .framer-18hjqjo > :last-child, .framer-waBxm .framer-1yivoi6 > :last-child, .framer-waBxm .framer-1agy4yy > :last-child, .framer-waBxm .framer-16sys7l > :last-child, .framer-waBxm .framer-iy6dic > :last-child, .framer-waBxm .framer-jbr6tz > :last-child, .framer-waBxm .framer-1hge0c1 > :last-child, .framer-waBxm .framer-64gyey > :last-child, .framer-waBxm .framer-56bu71 > :last-child, .framer-waBxm .framer-8dmm7v > :last-child, .framer-waBxm .framer-p5xixd > :last-child, .framer-waBxm .framer-1i7mtdh > :last-child, .framer-waBxm .framer-4bnt06 > :last-child, .framer-waBxm .framer-1n3lpe8 > :last-child, .framer-waBxm .framer-1j3hvrw > :last-child, .framer-waBxm .framer-16eo7jn > :last-child, .framer-waBxm .framer-1tji0qq > :last-child, .framer-waBxm .framer-1i9ixmf > :last-child, .framer-waBxm .framer-x0c204 > :last-child, .framer-waBxm .framer-xlezi9 > :last-child, .framer-waBxm .framer-v2cveo > :last-child, .framer-waBxm .framer-bmdr96 > :last-child, .framer-waBxm .framer-rdwt7x > :last-child, .framer-waBxm .framer-qqgxpx > :last-child, .framer-waBxm .framer-zq8i9r > :last-child, .framer-waBxm .framer-k2buwl > :last-child, .framer-waBxm .framer-an2lw6 > :last-child, .framer-waBxm .framer-pli2xx > :last-child, .framer-waBxm .framer-uixcq3 > :last-child, .framer-waBxm .framer-7b7sm5 > :last-child, .framer-waBxm .framer-1pdl4zl > :last-child, .framer-waBxm .framer-c79noy > :last-child, .framer-waBxm .framer-1eyuak7 > :last-child, .framer-waBxm .framer-1ohdass > :last-child, .framer-waBxm .framer-1d2xm2p > :last-child { margin-bottom: 0px; } .framer-waBxm .framer-93hrz2 > *, .framer-waBxm .framer-66ar6a > *, .framer-waBxm .framer-wptaoh > *, .framer-waBxm .framer-wzwmc2 > *, .framer-waBxm .framer-1gzkd5x > *, .framer-waBxm .framer-7jfv3e > *, .framer-waBxm .framer-mnyyps > *, .framer-waBxm .framer-mbok7e > *, .framer-waBxm .framer-1wejecw > *, .framer-waBxm .framer-10kyq8w > *, .framer-waBxm .framer-d9owsm > *, .framer-waBxm .framer-ae3k9e > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-waBxm .framer-93hrz2 > :first-child, .framer-waBxm .framer-1oh2r63 > :first-child, .framer-waBxm .framer-1elni8n > :first-child, .framer-waBxm .framer-66ar6a > :first-child, .framer-waBxm .framer-15o1zn > :first-child, .framer-waBxm .framer-15qjj9s > :first-child, .framer-waBxm .framer-odqgfl > :first-child, .framer-waBxm .framer-102m1hq > :first-child, .framer-waBxm .framer-zbhgpa > :first-child, .framer-waBxm .framer-wptaoh > :first-child, .framer-waBxm .framer-wzwmc2 > :first-child, .framer-waBxm .framer-1gzkd5x > :first-child, .framer-waBxm .framer-7jfv3e > :first-child, .framer-waBxm .framer-mnyyps > :first-child, .framer-waBxm .framer-1a5fedd > :first-child, .framer-waBxm .framer-ifyiz3 > :first-child, .framer-waBxm .framer-1o8ygog > :first-child, .framer-waBxm .framer-1iij2pi > :first-child, .framer-waBxm .framer-j1swjw > :first-child, .framer-waBxm .framer-1c03aw4 > :first-child, .framer-waBxm .framer-1xsyokt > :first-child, .framer-waBxm .framer-13gl9b0 > :first-child, .framer-waBxm .framer-bgor4o > :first-child, .framer-waBxm .framer-mbok7e > :first-child, .framer-waBxm .framer-1wejecw > :first-child, .framer-waBxm .framer-1gjbtbi > :first-child, .framer-waBxm .framer-ml7z3h > :first-child, .framer-waBxm .framer-10kyq8w > :first-child, .framer-waBxm .framer-d9owsm > :first-child, .framer-waBxm .framer-ae3k9e > :first-child { margin-left: 0px; } .framer-waBxm .framer-93hrz2 > :last-child, .framer-waBxm .framer-1oh2r63 > :last-child, .framer-waBxm .framer-1elni8n > :last-child, .framer-waBxm .framer-66ar6a > :last-child, .framer-waBxm .framer-15o1zn > :last-child, .framer-waBxm .framer-15qjj9s > :last-child, .framer-waBxm .framer-odqgfl > :last-child, .framer-waBxm .framer-102m1hq > :last-child, .framer-waBxm .framer-zbhgpa > :last-child, .framer-waBxm .framer-wptaoh > :last-child, .framer-waBxm .framer-wzwmc2 > :last-child, .framer-waBxm .framer-1gzkd5x > :last-child, .framer-waBxm .framer-7jfv3e > :last-child, .framer-waBxm .framer-mnyyps > :last-child, .framer-waBxm .framer-1a5fedd > :last-child, .framer-waBxm .framer-ifyiz3 > :last-child, .framer-waBxm .framer-1o8ygog > :last-child, .framer-waBxm .framer-1iij2pi > :last-child, .framer-waBxm .framer-j1swjw > :last-child, .framer-waBxm .framer-1c03aw4 > :last-child, .framer-waBxm .framer-1xsyokt > :last-child, .framer-waBxm .framer-13gl9b0 > :last-child, .framer-waBxm .framer-bgor4o > :last-child, .framer-waBxm .framer-mbok7e > :last-child, .framer-waBxm .framer-1wejecw > :last-child, .framer-waBxm .framer-1gjbtbi > :last-child, .framer-waBxm .framer-ml7z3h > :last-child, .framer-waBxm .framer-10kyq8w > :last-child, .framer-waBxm .framer-d9owsm > :last-child, .framer-waBxm .framer-ae3k9e > :last-child { margin-right: 0px; } .framer-waBxm .framer-1oh2r63 > *, .framer-waBxm .framer-1elni8n > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-waBxm .framer-12ug6ue > *, .framer-waBxm .framer-1hge0c1 > *, .framer-waBxm .framer-c79noy > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-waBxm .framer-1rxkuus > *, .framer-waBxm .framer-56bu71 > *, .framer-waBxm .framer-16eo7jn > *, .framer-waBxm .framer-1tji0qq > *, .framer-waBxm .framer-x0c204 > *, .framer-waBxm .framer-v2cveo > *, .framer-waBxm .framer-k2buwl > *, .framer-waBxm .framer-an2lw6 > *, .framer-waBxm .framer-uixcq3 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-waBxm .framer-317bhk > *, .framer-waBxm .framer-1i7mtdh > *, .framer-waBxm .framer-1j3hvrw > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-waBxm .framer-15o1zn > * { margin: 0px; margin-left: calc(148px / 2); margin-right: calc(148px / 2); } .framer-waBxm .framer-15qjj9s > *, .framer-waBxm .framer-odqgfl > *, .framer-waBxm .framer-102m1hq > *, .framer-waBxm .framer-zbhgpa > * { margin: 0px; margin-left: calc(9px / 2); margin-right: calc(9px / 2); } .framer-waBxm .framer-1i1ro0j > *, .framer-waBxm .framer-18hjqjo > *, .framer-waBxm .framer-1agy4yy > *, .framer-waBxm .framer-iy6dic > *, .framer-waBxm .framer-8dmm7v > *, .framer-waBxm .framer-bmdr96 > *, .framer-waBxm .framer-qqgxpx > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-waBxm .framer-v9e24q > *, .framer-waBxm .framer-1yivoi6 > *, .framer-waBxm .framer-16sys7l > *, .framer-waBxm .framer-jbr6tz > *, .framer-waBxm .framer-1d2xm2p > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-waBxm .framer-p5xixd > * { margin: 0px; margin-bottom: calc(400px / 2); margin-top: calc(400px / 2); } .framer-waBxm .framer-1a5fedd > *, .framer-waBxm .framer-ifyiz3 > *, .framer-waBxm .framer-1o8ygog > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-waBxm .framer-4bnt06 > * { margin: 0px; margin-bottom: calc(69px / 2); margin-top: calc(69px / 2); } .framer-waBxm .framer-1n3lpe8 > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-waBxm .framer-1iij2pi > *, .framer-waBxm .framer-j1swjw > *, .framer-waBxm .framer-1c03aw4 > *, .framer-waBxm .framer-1xsyokt > *, .framer-waBxm .framer-13gl9b0 > *, .framer-waBxm .framer-bgor4o > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-waBxm .framer-1pdl4zl > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-waBxm .framer-1gjbtbi > *, .framer-waBxm .framer-ml7z3h > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-waBxm[data-border=\"true\"]::after, .framer-waBxm [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; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-waBxm.framer-72rtr7 { width: 810px; } .framer-waBxm .framer-7wvxz8-container { order: 10; } .framer-waBxm .framer-vlidgg-container { order: 0; width: 150%; } .framer-waBxm .framer-93hrz2 { order: 1; width: 810px; } .framer-waBxm .framer-4w0e15 { order: 0; width: 810px; } .framer-waBxm .framer-234cd0-container { left: calc(115.8024691358025% - 129.83333333333334% / 2); } .framer-waBxm .framer-1oh2r63 { width: min-content; } .framer-waBxm .framer-12ug6ue { flex: none; width: 810px; } .framer-waBxm .framer-1elni8n { order: 0; width: 770px; } .framer-waBxm .framer-317bhk { gap: 67px; order: 1; width: 770px; } .framer-waBxm .framer-15o1zn { gap: 79px; max-width: 770px; width: 770px; } .framer-waBxm .framer-1hge0c1 { order: 2; padding: 50px 0px 70px 0px; } .framer-waBxm .framer-wptaoh { padding: 20px 30px 20px 30px; } .framer-waBxm .framer-64gyey { gap: 200px; order: 3; padding: 110px 0px 110px 0px; } .framer-waBxm .framer-mnyyps { padding: 55px 30px 45px 30px; } .framer-waBxm .framer-56bu71 { gap: 15px; } .framer-waBxm .framer-8dmm7v { gap: 25px; } .framer-waBxm .framer-skgqjy { width: 42%; } .framer-waBxm .framer-1pn57j1 { width: 44%; } .framer-waBxm .framer-p5xixd { gap: 200px; padding: 55px 30px 45px 30px; } .framer-waBxm .framer-1i7mtdh { height: min-content; order: 4; } .framer-waBxm .framer-4bnt06 { flex: 1 0 0px; height: 920px; width: 1px; } .framer-waBxm .framer-1n3lpe8 { align-self: unset; order: 0; width: 730px; } .framer-waBxm .framer-xhoumc { width: 686px; } .framer-waBxm .framer-1e2yfkj { width: 505px; } .framer-waBxm .framer-ifyiz3 { flex: 1 0 0px; height: 1px; order: 1; } .framer-waBxm .framer-1gtpxji-container { order: 1; } .framer-waBxm .framer-as97wb-container { height: 264px; order: 2; } .framer-waBxm .framer-k30jcq-container { order: 0; } .framer-waBxm .framer-1j3hvrw { order: 5; } .framer-waBxm .framer-mbok7e { order: 6; } .framer-waBxm .framer-1pdl4zl { gap: 32px; } .framer-waBxm .framer-c79noy { flex-direction: row; } .framer-waBxm .framer-1gjbtbi, .framer-waBxm .framer-ml7z3h { flex-direction: column; width: min-content; } .framer-waBxm .framer-16s7nuy-container, .framer-waBxm .framer-188byu7-container, .framer-waBxm .framer-4senfx-container, .framer-waBxm .framer-1eqvhk0-container, .framer-waBxm .framer-1ucf6oy-container, .framer-waBxm .framer-1dkz8mg-container { width: 303px; } .framer-waBxm .framer-10kyq8w { order: 7; padding: 150px 30px 150px 30px; } .framer-waBxm .framer-1i6riyk { width: 770px; } .framer-waBxm .framer-cl7hi2 { height: var(--framer-aspect-ratio-supported, 289px); } .framer-waBxm .framer-1mw44vy-container { bottom: 78px; } .framer-waBxm .framer-kvmh73 { top: 78px; } .framer-waBxm .framer-18barqe { bottom: 148px; left: calc(50.00000000000002% - min(709px, 380px) / 2); width: 380px; } .framer-waBxm .framer-d9owsm { order: 8; padding: 100px 30px 100px 30px; } .framer-waBxm .framer-1d2xm2p { gap: 6px; height: 94px; } .framer-waBxm .framer-1wckvk6-container { order: 9; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-waBxm .framer-317bhk, .framer-waBxm .framer-15o1zn, .framer-waBxm .framer-64gyey, .framer-waBxm .framer-56bu71, .framer-waBxm .framer-8dmm7v, .framer-waBxm .framer-p5xixd, .framer-waBxm .framer-1pdl4zl, .framer-waBxm .framer-c79noy, .framer-waBxm .framer-1gjbtbi, .framer-waBxm .framer-ml7z3h, .framer-waBxm .framer-1d2xm2p { gap: 0px; } .framer-waBxm .framer-317bhk > * { margin: 0px; margin-bottom: calc(67px / 2); margin-top: calc(67px / 2); } .framer-waBxm .framer-317bhk > :first-child, .framer-waBxm .framer-64gyey > :first-child, .framer-waBxm .framer-56bu71 > :first-child, .framer-waBxm .framer-8dmm7v > :first-child, .framer-waBxm .framer-p5xixd > :first-child, .framer-waBxm .framer-1pdl4zl > :first-child, .framer-waBxm .framer-1gjbtbi > :first-child, .framer-waBxm .framer-ml7z3h > :first-child, .framer-waBxm .framer-1d2xm2p > :first-child { margin-top: 0px; } .framer-waBxm .framer-317bhk > :last-child, .framer-waBxm .framer-64gyey > :last-child, .framer-waBxm .framer-56bu71 > :last-child, .framer-waBxm .framer-8dmm7v > :last-child, .framer-waBxm .framer-p5xixd > :last-child, .framer-waBxm .framer-1pdl4zl > :last-child, .framer-waBxm .framer-1gjbtbi > :last-child, .framer-waBxm .framer-ml7z3h > :last-child, .framer-waBxm .framer-1d2xm2p > :last-child { margin-bottom: 0px; } .framer-waBxm .framer-15o1zn > * { margin: 0px; margin-left: calc(79px / 2); margin-right: calc(79px / 2); } .framer-waBxm .framer-15o1zn > :first-child, .framer-waBxm .framer-c79noy > :first-child { margin-left: 0px; } .framer-waBxm .framer-15o1zn > :last-child, .framer-waBxm .framer-c79noy > :last-child { margin-right: 0px; } .framer-waBxm .framer-64gyey > *, .framer-waBxm .framer-p5xixd > * { margin: 0px; margin-bottom: calc(200px / 2); margin-top: calc(200px / 2); } .framer-waBxm .framer-56bu71 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-waBxm .framer-8dmm7v > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-waBxm .framer-1pdl4zl > *, .framer-waBxm .framer-1gjbtbi > *, .framer-waBxm .framer-ml7z3h > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-waBxm .framer-c79noy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-waBxm .framer-1d2xm2p > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }}\",\"@media (max-width: 809px) { .framer-waBxm.framer-72rtr7 { width: 390px; } .framer-waBxm .framer-93hrz2 { background-color: unset; gap: 0px; height: min-content; padding: 104px 0px 0px 0px; width: 390px; } .framer-waBxm .framer-4w0e15 { flex: 1 0 0px; width: 1px; } .framer-waBxm .framer-234cd0-container { left: calc(171.02564102564105% - 391.28205128205127% / 2); top: calc(49.75000000000002% - 129.875% / 2); width: 391%; } .framer-waBxm .framer-1oh2r63 { width: 334px; } .framer-waBxm .framer-12ug6ue { flex: none; width: 334px; } .framer-waBxm .framer-1elni8n { height: min-content; width: 332px; } .framer-waBxm .framer-1rxkuus { max-width: 505%; width: 334px; } .framer-waBxm .framer-1rqh9f2 { order: 0; width: 312px; } .framer-waBxm .framer-1fdz6vv { order: 1; width: 298px; } .framer-waBxm .framer-66ar6a, .framer-waBxm .framer-ae3k9e { order: 2; } .framer-waBxm .framer-317bhk { gap: 0px; height: min-content; padding: 50px 0px 0px 0px; width: min-content; } .framer-waBxm .framer-15o1zn { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; gap: 34px; height: min-content; width: 334px; } .framer-waBxm .framer-1hge0c1 { padding: 40px 0px 60px 0px; } .framer-waBxm .framer-wptaoh { padding: 20px; } .framer-waBxm .framer-64gyey { gap: 158px; padding: 80px 0px 100px 0px; } .framer-waBxm .framer-mnyyps { padding: 55px 20px 100px 20px; } .framer-waBxm .framer-56bu71 { gap: 15px; } .framer-waBxm .framer-8dmm7v { gap: 20px; } .framer-waBxm .framer-skgqjy, .framer-waBxm .framer-1pn57j1 { width: 73%; } .framer-waBxm .framer-p5xixd { gap: 187px; padding: 55px 20px 100px 20px; } .framer-waBxm .framer-1i7mtdh { height: 1372px; } .framer-waBxm .framer-1n3lpe8 { align-self: unset; width: 350px; } .framer-waBxm .framer-xhoumc { order: 0; width: 338px; } .framer-waBxm .framer-1e2yfkj { order: 1; width: 100%; } .framer-waBxm .framer-ifyiz3, .framer-waBxm .framer-1o8ygog { flex-direction: column; } .framer-waBxm .framer-16eo7jn, .framer-waBxm .framer-v2cveo, .framer-waBxm .framer-k2buwl { flex: none; width: 100%; } .framer-waBxm .framer-mbok7e { padding: 180px 200px 180px 200px; } .framer-waBxm .framer-1pdl4zl { gap: 0px; width: min-content; } .framer-waBxm .framer-c79noy { align-self: stretch; width: auto; } .framer-waBxm .framer-1gjbtbi, .framer-waBxm .framer-ml7z3h { flex-direction: column; width: min-content; } .framer-waBxm .framer-10kyq8w { flex-direction: column; padding: 100px 20px 100px 20px; } .framer-waBxm .framer-1i6riyk { width: 326px; } .framer-waBxm .framer-cl7hi2 { height: var(--framer-aspect-ratio-supported, 289px); } .framer-waBxm .framer-1mw44vy-container { bottom: 65px; } .framer-waBxm .framer-18barqe { bottom: 135px; height: 81px; left: calc(50.00000000000002% - min(709px, 280px) / 2); width: 280px; } .framer-waBxm .framer-d9owsm { flex-direction: column; padding: 80px 20px 80px 20px; } .framer-waBxm .framer-1d2xm2p { gap: 0px; height: min-content; order: 0; } .framer-waBxm .framer-1u9x0y1 { width: 80%; } .framer-waBxm .framer-ahjxok { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; order: 1; padding: 32px 0px 0px 0px; width: 334px; } .framer-waBxm .framer-1ar925y-container { align-self: unset; height: auto; width: 346px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-waBxm .framer-93hrz2, .framer-waBxm .framer-317bhk, .framer-waBxm .framer-15o1zn, .framer-waBxm .framer-64gyey, .framer-waBxm .framer-56bu71, .framer-waBxm .framer-8dmm7v, .framer-waBxm .framer-p5xixd, .framer-waBxm .framer-ifyiz3, .framer-waBxm .framer-1o8ygog, .framer-waBxm .framer-1pdl4zl, .framer-waBxm .framer-1gjbtbi, .framer-waBxm .framer-ml7z3h, .framer-waBxm .framer-10kyq8w, .framer-waBxm .framer-d9owsm, .framer-waBxm .framer-1d2xm2p, .framer-waBxm .framer-ahjxok { gap: 0px; } .framer-waBxm .framer-93hrz2 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-waBxm .framer-93hrz2 > :first-child { margin-left: 0px; } .framer-waBxm .framer-93hrz2 > :last-child { margin-right: 0px; } .framer-waBxm .framer-317bhk > *, .framer-waBxm .framer-1pdl4zl > *, .framer-waBxm .framer-1d2xm2p > *, .framer-waBxm .framer-ahjxok > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-waBxm .framer-317bhk > :first-child, .framer-waBxm .framer-15o1zn > :first-child, .framer-waBxm .framer-64gyey > :first-child, .framer-waBxm .framer-56bu71 > :first-child, .framer-waBxm .framer-8dmm7v > :first-child, .framer-waBxm .framer-p5xixd > :first-child, .framer-waBxm .framer-ifyiz3 > :first-child, .framer-waBxm .framer-1o8ygog > :first-child, .framer-waBxm .framer-1pdl4zl > :first-child, .framer-waBxm .framer-1gjbtbi > :first-child, .framer-waBxm .framer-ml7z3h > :first-child, .framer-waBxm .framer-10kyq8w > :first-child, .framer-waBxm .framer-d9owsm > :first-child, .framer-waBxm .framer-1d2xm2p > :first-child, .framer-waBxm .framer-ahjxok > :first-child { margin-top: 0px; } .framer-waBxm .framer-317bhk > :last-child, .framer-waBxm .framer-15o1zn > :last-child, .framer-waBxm .framer-64gyey > :last-child, .framer-waBxm .framer-56bu71 > :last-child, .framer-waBxm .framer-8dmm7v > :last-child, .framer-waBxm .framer-p5xixd > :last-child, .framer-waBxm .framer-ifyiz3 > :last-child, .framer-waBxm .framer-1o8ygog > :last-child, .framer-waBxm .framer-1pdl4zl > :last-child, .framer-waBxm .framer-1gjbtbi > :last-child, .framer-waBxm .framer-ml7z3h > :last-child, .framer-waBxm .framer-10kyq8w > :last-child, .framer-waBxm .framer-d9owsm > :last-child, .framer-waBxm .framer-1d2xm2p > :last-child, .framer-waBxm .framer-ahjxok > :last-child { margin-bottom: 0px; } .framer-waBxm .framer-15o1zn > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-waBxm .framer-64gyey > * { margin: 0px; margin-bottom: calc(158px / 2); margin-top: calc(158px / 2); } .framer-waBxm .framer-56bu71 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-waBxm .framer-8dmm7v > *, .framer-waBxm .framer-ifyiz3 > *, .framer-waBxm .framer-1o8ygog > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-waBxm .framer-p5xixd > * { margin: 0px; margin-bottom: calc(187px / 2); margin-top: calc(187px / 2); } .framer-waBxm .framer-1gjbtbi > *, .framer-waBxm .framer-ml7z3h > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-waBxm .framer-10kyq8w > *, .framer-waBxm .framer-d9owsm > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 11523\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"yhQV8jqB2\":{\"layout\":[\"fixed\",\"auto\"]},\"XKHjhdaUg\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"z7JdRkE1U\":{\"pattern\":\":z7JdRkE1U\",\"name\":\"explore-benefits\"},\"c4eioUnuM\":{\"pattern\":\":c4eioUnuM\",\"name\":\"modules\"},\"pG5__VFGd\":{\"pattern\":\":pG5__VFGd\",\"name\":\"cta-remix\"},\"TrUGD27tw\":{\"pattern\":\":TrUGD27tw\",\"name\":\"blog\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-waBxm\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:11523,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTc2dthiJ-Ek-7MeA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]},...SmoothScrollFonts,...NavigationFonts,...VideoFonts,...ButtonFonts,...TickerFonts,...PhosphorFonts,...ProductGIFCardsHomepageFonts,...CardWhyOspreeFonts,...WhoIsOspreeForCardsPhoneFonts,...WhoIsOspreeForCardsFonts,...LabelFonts,...BlogItemFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yhQV8jqB2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XKHjhdaUg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"z7JdRkE1U\\\":{\\\"pattern\\\":\\\":z7JdRkE1U\\\",\\\"name\\\":\\\"explore-benefits\\\"},\\\"c4eioUnuM\\\":{\\\"pattern\\\":\\\":c4eioUnuM\\\",\\\"name\\\":\\\"modules\\\"},\\\"pG5__VFGd\\\":{\\\"pattern\\\":\\\":pG5__VFGd\\\",\\\"name\\\":\\\"cta-remix\\\"},\\\"TrUGD27tw\\\":{\\\"pattern\\\":\\\":TrUGD27tw\\\",\\\"name\\\":\\\"blog\\\"}}\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"11523\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "FeatherFonts", "getFonts", "Icon", "VideoFonts", "Video", "ButtonFonts", "eoOuuu22q_default", "Video1Controls", "getPropertyControls", "FeatherControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toImageSrc", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "color", "desc", "file", "height", "id", "image", "label", "labelButton", "link", "name1", "select", "source", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "AZLp3iTYL", "zi7Oz1IOj", "AQO30j1KA", "vwbdmBWc3", "On2wR2Mo6", "Klunatx_6", "DUzfd5Iy7", "jXX10BgKB", "cP4beJ60V", "ov_WnLTnr", "QGB28ngEn", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerbnHYUXOQM", "withCSS", "bnHYUXOQM_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "animation3", "animation4", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1torb5a", "overlay", "paginationInfo", "args", "onClick1wvko5h", "ref1", "pe", "ref2", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "l", "u", "cx", "RichText2", "ComponentViewportProvider", "AnimatePresence", "Floating", "css", "FramerEpjD07AXk", "withCSS", "EpjD07AXk_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "ComponentViewportProvider", "RichText2", "css", "FramerHqEL9yMV6", "withCSS", "HqEL9yMV6_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1torb5a", "overlay", "paginationInfo", "args", "onClick1wvko5h", "ref1", "pe", "ref2", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "l", "u", "cx", "RichText2", "ComponentViewportProvider", "AnimatePresence", "Floating", "css", "FramerPcJyMiqgG", "withCSS", "PcJyMiqgG_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SmoothScrollFonts", "getFonts", "SmoothScroll", "NavigationFonts", "zOO627s_k_default", "VideoFonts", "Video", "ButtonFonts", "eoOuuu22q_default", "TickerFonts", "Ticker", "PhosphorFonts", "Icon", "ProductGIFCardsHomepageFonts", "bnHYUXOQM_default", "CardWhyOspreeFonts", "HqEL9yMV6_default", "WhoIsOspreeForCardsPhoneFonts", "PcJyMiqgG_default", "WhoIsOspreeForCardsFonts", "EpjD07AXk_default", "MotionDivWithFX", "withFX", "motion", "LabelFonts", "gfgQgKeyT_default", "BlogItemFonts", "IHqM_WdOk_default", "FooterFonts", "oqTBonrwi_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "transition1", "animation", "transition2", "animation1", "transition3", "animation2", "transformTemplate1", "_", "t", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "OMGQIn5QzQcidX70h1", "qNzdo0iw2QcidX70h1", "sFZL9dJe4QcidX70h1", "idQcidX70h1", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "router", "useRouter", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "isDisplayed", "isDisplayed1", "elementId2", "ref4", "elementId3", "ref5", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "RichText2", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "Image2", "SVG", "resolvedLinks2", "Link", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "ChildrenCanSuspend", "nSea5Tt3P_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks9", "resolvedLinks10", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
