{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js", "ssg:https://ga.jspm.io/npm:react-type-animation@3.1.0/dist/esm/index.es.js", "ssg:https://framerusercontent.com/modules/pxR06Sm95WNJFq1zfoCG/1Og7hkxn5irtumkXyUIv/TypingAnimation.js", "ssg:https://framerusercontent.com/modules/l8VKn0J1mImoaiBpUspg/w9iqKl9Nqz0c0tiRiwEL/lBkR422hM.js", "ssg:https://framerusercontent.com/modules/YWUaELx07IDYOaE6w1Mb/e7Zeldx2noBPHvFpC6rZ/ProgressAnimation_1.js", "ssg:https://framerusercontent.com/modules/whTo7aXtW4j2Nq15JR5Y/WOA43DNcgpna8hsMoSDL/o8zyYkQCp.js", "ssg:https://framerusercontent.com/modules/gXaMobfZyGHde3TXptZb/yShd1FNdhJ4xfjBi5rEG/ProgressAnimation.js", "ssg:https://framerusercontent.com/modules/l7rbpsUBYY7PKJTK9R4Q/GMvl4LmOioa2DRddvSht/PwWlR1xyp.js", "ssg:https://framerusercontent.com/modules/nSq81WhZonDjTAwzQ6Gq/2x2GdPLaFp7oKMBmsrte/xGFFAD6Ys.js", "ssg:https://framerusercontent.com/modules/gsT3SQ9O4RhcvRn6QAoZ/yfN8YtOn2jQFuoTxrb8Z/rUvYMft0h.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={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const 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:\"0px 0px 100px 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(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport)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:isPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isOnCanvas&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted: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\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import e,{memo as t,forwardRef as n,useRef as r,useEffect as o,useState as a}from\"react\";function i(e,t,n,r){return new(n||(n=Promise))((function(o,a){function i(e){try{u(r.next(e))}catch(e){a(e)}}function c(e){try{u(r.throw(e))}catch(e){a(e)}}function u(e){var t;e.done?o(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(i,c)}u((r=r.apply(e,t||[])).next())}))}function c(e,t){var n,r,o,a,b={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:c(0),throw:c(1),return:c(2)},\"function\"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function c(a){return function(m){return function(a){if(n)throw new TypeError(\"Generator is already executing.\");for(;b;)try{if(n=1,r&&(o=2&a[0]?r.return:a[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,a[1])).done)return o;switch(r=0,o&&(a=[2&a[0],o.value]),a[0]){case 0:case 1:o=a;break;case 4:return b.label++,{value:a[1],done:!1};case 5:b.label++,r=a[1],a=[0];continue;case 7:a=b.ops.pop(),b.trys.pop();continue;default:if(!(o=b.trys,(o=o.length>0&&o[o.length-1])||6!==a[0]&&2!==a[0])){b=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){b.label=a[1];break}if(6===a[0]&&b.label<o[1]){b.label=o[1],o=a;break}if(o&&b.label<o[2]){b.label=o[2],b.ops.push(a);break}o[2]&&b.ops.pop(),b.trys.pop();continue}a=t.call(e,b)}catch(e){a=[6,e],r=0}finally{n=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}([a,m])}}}function u(e){var t=\"function\"==typeof Symbol&&Symbol.iterator,n=t&&e[t],r=0;if(n)return n.call(e);if(e&&\"number\"==typeof e.length)return{next:function(){return e&&r>=e.length&&(e=void 0),{value:e&&e[r++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function l(e,t){var n=\"function\"==typeof Symbol&&e[Symbol.iterator];if(!n)return e;var r,o,a=n.call(e),b=[];try{for(;(void 0===t||t-- >0)&&!(r=a.next()).done;)b.push(r.value)}catch(e){o={error:e}}finally{try{r&&!r.done&&(n=a.return)&&n.call(a)}finally{if(o)throw o.error}}return b}function s(e,t,n){if(n||2===arguments.length)for(var r,o=0,a=t.length;o<a;o++)!r&&o in t||(r||(r=Array.prototype.slice.call(t,0,o)),r[o]=t[o]);return e.concat(r||Array.prototype.slice.call(t))}function f(e,t,n,r){for(var o=[],a=4;a<arguments.length;a++)o[a-4]=arguments[a];return i(this,void 0,void 0,(function(){var a,b,m,w,x,g;return c(this,(function(S){switch(S.label){case 0:S.trys.push([0,12,13,14]),a=u(o),b=a.next(),S.label=1;case 1:if(b.done)return[3,11];switch(m=b.value,typeof m){case\"string\":return[3,2];case\"number\":return[3,4];case\"function\":return[3,6]}return[3,8];case 2:return[4,d(e,m,t,n,r)];case 3:return S.sent(),[3,10];case 4:return[4,p(m)];case 5:return S.sent(),[3,10];case 6:return[4,m.apply(void 0,s([e,t,n,r],l(o),!1))];case 7:return S.sent(),[3,10];case 8:return[4,m];case 9:S.sent(),S.label=10;case 10:return b=a.next(),[3,1];case 11:return[3,14];case 12:return w=S.sent(),x={error:w},[3,14];case 13:try{b&&!b.done&&(g=a.return)&&g.call(a)}finally{if(x)throw x.error}return[7];case 14:return[2]}}))}))}function d(e,t,n,r,o){return i(this,void 0,void 0,(function(){var a;return c(this,(function(b){switch(b.label){case 0:return a=function(e,t){var n=l(t).slice(0);return s(s([],l(e),!1),[NaN],!1).findIndex((function(e,t){return n[t]!==e}))}(e.textContent,t),[4,h(e,s(s([],l(v(e.textContent,a)),!1),l(y(t,a)),!1),n,r,o)];case 1:return b.sent(),[2]}}))}))}function p(e){return i(this,void 0,void 0,(function(){return c(this,(function(t){switch(t.label){case 0:return[4,new Promise((function(t){return setTimeout(t,e)}))];case 1:return t.sent(),[2]}}))}))}function h(e,t,n,r,o){return i(this,void 0,void 0,(function(){var a,b,m,w,x,g,S,E,_,k,C,O,T;return c(this,(function(A){switch(A.label){case 0:if(a=t,o){for(b=0,m=1;m<t.length;m++)if(w=l([t[m-1],t[m]],2),x=w[0],(g=w[1]).length>x.length||\"\"===g){b=m;break}a=t.slice(b,t.length)}A.label=1;case 1:A.trys.push([1,6,7,8]),S=u(function(e){var t,n,r,o,a,b,m;return c(this,(function(w){switch(w.label){case 0:t=function(e){return c(this,(function(t){switch(t.label){case 0:return[4,{op:function(t){return requestAnimationFrame((function(){return t.textContent=e}))},opCode:function(t){return\"\"===e||t.textContent.length>e.length?\"DELETE\":\"WRITING\"}}];case 1:return t.sent(),[2]}}))},w.label=1;case 1:w.trys.push([1,6,7,8]),n=u(e),r=n.next(),w.label=2;case 2:return r.done?[3,5]:(o=r.value,[5,t(o)]);case 3:w.sent(),w.label=4;case 4:return r=n.next(),[3,2];case 5:return[3,8];case 6:return a=w.sent(),b={error:a},[3,8];case 7:try{r&&!r.done&&(m=n.return)&&m.call(n)}finally{if(b)throw b.error}return[7];case 8:return[2]}}))}(a)),E=S.next(),A.label=2;case 2:return E.done?[3,5]:(_=E.value,k=\"WRITING\"===_.opCode(e)?n+n*(Math.random()-.5):r+r*(Math.random()-.5),_.op(e),[4,p(k)]);case 3:A.sent(),A.label=4;case 4:return E=S.next(),[3,2];case 5:return[3,8];case 6:return C=A.sent(),O={error:C},[3,8];case 7:try{E&&!E.done&&(T=S.return)&&T.call(S)}finally{if(O)throw O.error}return[7];case 8:return[2]}}))}))}function y(e,t,n){var r=l(e).slice(0);return void 0===t&&(t=0),void 0===n&&(n=r.length),c(this,(function(e){switch(e.label){case 0:return t<n?[4,r.slice(0,++t).join(\"\")]:[3,2];case 1:return e.sent(),[3,0];case 2:return[2]}}))}function v(e,t,n){var r=l(e).slice(0);return void 0===t&&(t=0),void 0===n&&(n=r.length),c(this,(function(e){switch(e.label){case 0:return n>t?[4,r.slice(0,--n).join(\"\")]:[3,2];case 1:return e.sent(),[3,0];case 2:return[2]}}))}var b=\"index-module_type__E-SaG\";!function(e,t){void 0===t&&(t={});var n=t.insertAt;if(e&&\"undefined\"!=typeof document){var r=document.head||document.getElementsByTagName(\"head\")[0],o=document.createElement(\"style\");o.type=\"text/css\",\"top\"===n&&r.firstChild?r.insertBefore(o,r.firstChild):r.appendChild(o),o.styleSheet?o.styleSheet.cssText=e:o.appendChild(document.createTextNode(e))}}(\".index-module_type__E-SaG::after {\\n  content: '|';\\n  animation: index-module_cursor__PQg0P 1.1s infinite step-start;\\n}\\n\\n@keyframes index-module_cursor__PQg0P {\\n  50% {\\n    opacity: 0;\\n  }\\n}\\n\");var m=t(n((function(t,n){var m=t.sequence,w=t.repeat,x=t.className,g=t.speed,S=void 0===g?40:g,E=t.deletionSpeed,_=t.omitDeletionAnimation,k=void 0!==_&&_,C=t.preRenderFirstString,O=void 0!==C&&C,T=t.wrapper,A=void 0===T?\"span\":T,N=t.cursor,P=void 0===N||N,j=t.style,I=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&\"function\"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o<r.length;o++)t.indexOf(r[o])<0&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]])}return n}(t,[\"sequence\",\"repeat\",\"className\",\"speed\",\"deletionSpeed\",\"omitDeletionAnimation\",\"preRenderFirstString\",\"wrapper\",\"cursor\",\"style\"]),G=I[\"aria-label\"],D=I[\"aria-hidden\"];E||(E=S);var M=new Array(2).fill(40);[S,E].forEach((function(e,t){switch(typeof e){case\"number\":M[t]=Math.abs(e-100);break;case\"object\":var n=e,r=n.type,o=n.value;if(\"number\"!=typeof o)break;\"keyStrokeDelayInMs\"===r&&(M[t]=o)}}));var R,q,F,B,Q,W,L=M[0],z=M[1],H=function(e,t){void 0===t&&(t=null);var n=r(t);return o((function(){e&&(\"function\"==typeof e?e(n.current):e.current=n.current)}),[e]),n}(n),J=b;R=x?\"\".concat(P?J+\" \":\"\").concat(x):P?J:\"\",q=r((function(){var e,t=m;return w===1/0?e=f:\"number\"==typeof w&&(t=Array(1+w).fill(m).flat()),f.apply(void 0,s(s([H.current,L,z,k],l(t),!1),[e],!1)),function(){H.current}})),F=r(),B=r(!1),Q=r(!1),W=l(a(0),2)[1],B.current&&(Q.current=!0),o((function(){return B.current||(F.current=q.current(),B.current=!0),W((function(e){return e+1})),function(){Q.current&&F.current&&F.current()}}),[]);var K=A,U=O?m.find((function(e){return\"string\"==typeof e}))||\"\":null;return e.createElement(K,{\"aria-hidden\":D,\"aria-label\":G,style:j,className:R,children:G?e.createElement(\"span\",{\"aria-hidden\":\"true\",ref:H,children:U}):U,ref:G?void 0:H})})),(function(e,t){return!0}));export{m as TypeAnimation};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{TypeAnimation}from\"react-type-animation\";import{addPropertyControls,ControlType}from\"framer\";/*\n * Typing Animation\n * By Kanishak M\n * Library Used : React type Animation\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function TypingAnimation({speed,options,font,RepeatType,RepeatValue}){const sequenceArr=[];for(let i=0;i<options.length;i++){sequenceArr.push(options[i].text);sequenceArr.push(options[i].duration);}return /*#__PURE__*/_jsx(TypeAnimation,{sequence:sequenceArr,wrapper:\"span\",speed:speed,style:{...font.font,color:font.color,display:\"flex\",alignItems:font.alignItems,justifyContent:font.justifyContent,margin:0,padding:0,width:\"100%\",height:\"100%\",position:\"relative\"},repeat:RepeatType?Infinity:RepeatValue,cursor:false});}addPropertyControls(TypingAnimation,{options:{type:ControlType.Array,control:{type:ControlType.Object,controls:{text:{type:ControlType.String,defaultValue:\"Typing String\"},duration:{type:ControlType.Number,displayStepper:true,defaultValue:1e3}}},defaultValue:[{text:\"I am a developer.\",duration:1e3},{text:\"I am a designer.\",duration:1e3}]},RepeatType:{type:ControlType.Boolean,title:\"RepeatType\",enabledTitle:\"Infinite\",disabledTitle:\"Specific\",defaultValue:true},RepeatValue:{type:ControlType.Number,displayStepper:true,hidden(props){return props.RepeatType===true;},defaultValue:2},speed:{type:ControlType.Number,displayStepper:true,defaultValue:50},font:{type:ControlType.Object,controls:{font:{type:\"font\",controls:\"extended\"},color:{type:ControlType.Color,defaultValue:\"#ffffff\"},alignItems:{type:ControlType.Enum,displaySegmentedControl:true,title:\"alignItems\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\"},justifyContent:{type:ControlType.Enum,displaySegmentedControl:true,title:\"justifyContent\",options:[\"left\",\"center\",\"right\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\"}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TypingAnimation\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TypingAnimation.map", "// Generated by Framer (cbb0119)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";const VideoFonts=getFonts(Video);const VideoControls=getPropertyControls(Video);const cycleOrder=[\"ZJdTzhHee\",\"UnDA7Hh9h\"];const serializationHash=\"framer-EZmIa\";const variantClassNames={UnDA7Hh9h:\"framer-v-lxuxhp\",ZJdTzhHee:\"framer-v-10q35ie\"};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={Paused:\"ZJdTzhHee\",Play:\"UnDA7Hh9h\"};const getProps=({file,height,id,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,tL6nsEiZY:(_ref=file!==null&&file!==void 0?file:props.tL6nsEiZY)!==null&&_ref!==void 0?_ref:\"https://framerusercontent.com/assets/D1ARUWczwPn6m5pUsgNh1c.mp4\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"ZJdTzhHee\"};};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,tL6nsEiZY,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZJdTzhHee\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-10q35ie\",className,classNames),\"data-framer-name\":\"Paused\",layoutDependency:layoutDependency,layoutId:\"ZJdTzhHee\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({UnDA7Hh9h:{\"data-framer-name\":\"Play\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1227pk6-container\",\"data-framer-name\":\"Image1\",layoutDependency:layoutDependency,layoutId:\"wytJ4Xlhw-container\",name:\"Image1\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"wytJ4Xlhw\",isMixedBorderRadius:false,layoutId:\"wytJ4Xlhw\",loop:true,muted:true,name:\"Image1\",objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:tL6nsEiZY,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({UnDA7Hh9h:{playing:true}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-EZmIa.framer-np43q4, .framer-EZmIa .framer-np43q4 { display: block; }\",\".framer-EZmIa.framer-10q35ie { height: 470px; overflow: visible; position: relative; width: 470px; }\",\".framer-EZmIa .framer-1227pk6-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 470px); left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 470\n * @framerIntrinsicWidth 470\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"UnDA7Hh9h\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"tL6nsEiZY\":\"file\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerlBkR422hM=withCSS(Component,css,\"framer-EZmIa\");export default FramerlBkR422hM;FramerlBkR422hM.displayName=\"Video Delay\";FramerlBkR422hM.defaultProps={height:470,width:470};addPropertyControls(FramerlBkR422hM,{variant:{options:[\"ZJdTzhHee\",\"UnDA7Hh9h\"],optionTitles:[\"Paused\",\"Play\"],title:\"Variant\",type:ControlType.Enum},tL6nsEiZY:(VideoControls===null||VideoControls===void 0?void 0:VideoControls[\"srcFile\"])&&{...VideoControls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,D1ARUWczwPn6m5pUsgNh1c.mp4?originalFilename=gif+2+final.mp4\",description:undefined,hidden:undefined,title:\"File\"}});addFonts(FramerlBkR422hM,[{explicitInter:true,fonts:[]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlBkR422hM\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"tL6nsEiZY\\\":\\\"file\\\"}\",\"framerIntrinsicHeight\":\"470\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"470\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UnDA7Hh9h\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./lBkR422hM.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useState,useRef}from\"react\";import{addPropertyControls,ControlType}from\"framer\";export default function ProgressAnimation(props){const{backgroundColor,progressColor,timeAnimation}=props;const[width,setWidth]=useState(0);const[isVisible,setIsVisible]=useState(false);const[hasAnimated,setHasAnimated]=useState(false);const containerRef=useRef(null);// Intersection Observer to detect visibility\nuseEffect(()=>{const observer=new IntersectionObserver(([entry])=>{if(entry.isIntersecting&&!hasAnimated){setIsVisible(true);setHasAnimated(true);}},{threshold:.1,rootMargin:\"0px\"});if(containerRef.current){observer.observe(containerRef.current);}return()=>{if(containerRef.current){observer.unobserve(containerRef.current);}};},[hasAnimated]);// Progress bar animation\nuseEffect(()=>{if(!isVisible)return;let animationFrame;let startTime;const animate=timestamp=>{if(!startTime)startTime=timestamp;const progress=timestamp-startTime;const duration=timeAnimation*100// Total duration for 0-100%\n;const progressPercent=Math.min(progress/duration*100,100);setWidth(progressPercent);if(progressPercent<100){animationFrame=requestAnimationFrame(animate);}};animationFrame=requestAnimationFrame(animate);return()=>{if(animationFrame){cancelAnimationFrame(animationFrame);}};},[isVisible,timeAnimation]);const styles={container:{width:\"100%\",height:\"100%\",position:\"relative\",overflow:\"hidden\"},background:{position:\"absolute\",top:0,left:0,width:\"100%\",height:\"100%\",background:backgroundColor},progress:{position:\"absolute\",top:0,left:0,height:\"100%\",width:`${width}%`,background:progressColor}};return /*#__PURE__*/_jsxs(\"div\",{ref:containerRef,style:styles.container,children:[/*#__PURE__*/_jsx(\"div\",{style:styles.background}),/*#__PURE__*/_jsx(\"div\",{style:styles.progress})]});}// Framer property controls\naddPropertyControls(ProgressAnimation,{backgroundColor:{title:\"Background Color\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.12)\"},progressColor:{title:\"Progress Color\",type:ControlType.Color,defaultValue:\"black\"},timeAnimation:{title:\"Animation Time (ms)\",type:ControlType.Number,defaultValue:90,min:10,max:1e3,step:10}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ProgressAnimation\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ProgressAnimation_1.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ProgressAnimation from\"https://framerusercontent.com/modules/YWUaELx07IDYOaE6w1Mb/e7Zeldx2noBPHvFpC6rZ/ProgressAnimation_1.js\";const ProgressAnimationFonts=getFonts(ProgressAnimation);const cycleOrder=[\"MlA1idCUT\",\"tmLKGBGDZ\",\"KUSAx2KPW\"];const serializationHash=\"framer-fLABN\";const variantClassNames={KUSAx2KPW:\"framer-v-nxwxej\",MlA1idCUT:\"framer-v-jyevbk\",tmLKGBGDZ:\"framer-v-14xioyc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Active:\"MlA1idCUT\",Default:\"KUSAx2KPW\",Inactive:\"tmLKGBGDZ\"};const getProps=({height,id,tap,text,title,width,...props})=>{return{...props,J7o8fdE7e:text??props.J7o8fdE7e??\"As own, all own, a the a ago. Myself and that everyone in it walls. Reclined scale, on various of the me what him who I its a might who it scent but first writer's tone she immune person, problem proposal employed the a did his most maybe as and.\",okc_6dBcT:title??props.okc_6dBcT??\"Higher approval rate\",QFynIJaYH:tap??props.QFynIJaYH,variant:humanReadableVariantMap[props.variant]??props.variant??\"MlA1idCUT\"};};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,okc_6dBcT,J7o8fdE7e,QFynIJaYH,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MlA1idCUT\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap12s1o1s=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(QFynIJaYH){const res=await QFynIJaYH(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"KUSAx2KPW\")return true;return false;};const isDisplayed1=()=>{if([\"tmLKGBGDZ\",\"KUSAx2KPW\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"tmLKGBGDZ\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"tmLKGBGDZ\")return false;return true;};const defaultLayoutId=React.useId();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(scopingClassNames,\"framer-jyevbk\",className,classNames),\"data-framer-name\":\"Active\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"MlA1idCUT\",onTap:onTap12s1o1s,ref:ref??ref1,style:{...style},...addPropertyOverrides({KUSAx2KPW:{\"data-framer-name\":\"Default\"},tmLKGBGDZ:{\"data-framer-name\":\"Inactive\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13napsh\",\"data-framer-name\":\"Columns\",layoutDependency:layoutDependency,layoutId:\"tY_hcmOxK\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1Cb2xkIA==\",\"--framer-font-family\":'\"Gilroy-Bold \", \"Gilroy-Bold  Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 7, 70))\"},children:\"Higher approval rate\"})}),className:\"framer-11zz89c\",\"data-framer-name\":\"10 anos de opera\\xe7\\xe3o\",fonts:[\"CUSTOM;Gilroy-Bold \"],layoutDependency:layoutDependency,layoutId:\"TBT25gyfd\",style:{\"--extracted-r6o4lv\":\"rgb(0, 7, 70)\",\"--framer-paragraph-spacing\":\"20px\"},text:okc_6dBcT,variants:{tmLKGBGDZ:{\"--extracted-r6o4lv\":\"rgb(109, 119, 142)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({KUSAx2KPW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 7, 70))\"},children:\"Higher approval rate\"})}),fonts:[\"FS;Poppins-regular\"]},tmLKGBGDZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1Cb2xkIA==\",\"--framer-font-family\":'\"Gilroy-Bold \", \"Gilroy-Bold  Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(109, 119, 142))\"},children:\"Higher approval rate\"})})}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-82tilu\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"MYeBChMlJ\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3d7q0e\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"rujdw5x42\",style:{backgroundColor:\"rgba(0, 0, 0, 0.12)\"}})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10q8iee-container\",layoutDependency:layoutDependency,layoutId:\"bQ5_GRQq2-container\",children:/*#__PURE__*/_jsx(ProgressAnimation,{backgroundColor:\"rgba(0, 0, 0, 0.12)\",height:\"100%\",id:\"bQ5_GRQq2\",layoutId:\"bQ5_GRQq2\",progressColor:\"rgb(0, 0, 0)\",style:{height:\"100%\",width:\"100%\"},timeAnimation:180,width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-139ugsh\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"p1t8HddG4\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-az1wg3\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"WcQ59tjAZ\",style:{backgroundColor:\"rgba(0, 0, 0, 0.12)\"}})}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-q880sn\",\"data-framer-name\":\"Columns\",layoutDependency:layoutDependency,layoutId:\"M6LXx6pFZ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1Cb2xkIA==\",\"--framer-font-family\":'\"Gilroy-Bold \", \"Gilroy-Bold  Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(109, 119, 142))\"},children:\"As own, all own, a the a ago. Myself and that everyone in it walls. Reclined scale, on various of the me what him who I its a might who it scent but first writer's tone she immune person, problem proposal employed the a did his most maybe as and.\"})}),className:\"framer-hva36h\",\"data-framer-name\":\"Koin es la mejor soluci\\xf3n de medios de pago y financiaci\\xf3n digitales que permite a empresas y consumidores conectarse y realizar transacciones de forma pr\\xe1ctica y segura.\",fonts:[\"CUSTOM;Gilroy-Bold \"],layoutDependency:layoutDependency,layoutId:\"tArchZESH\",style:{\"--extracted-r6o4lv\":\"rgb(109, 119, 142)\",\"--framer-paragraph-spacing\":\"16px\"},text:J7o8fdE7e,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({KUSAx2KPW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(109, 119, 142))\"},children:\"As own, all own, a the a ago. Myself and that everyone in it walls. Reclined scale, on various of the me what him who I its a might who it scent but first writer's tone she immune person, problem proposal employed the a did his most maybe as and.\"})}),fonts:[\"FS;Poppins-regular\"]}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fLABN.framer-1x5x151, .framer-fLABN .framer-1x5x151 { display: block; }\",\".framer-fLABN.framer-jyevbk { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 48px 0px 8px 0px; position: relative; width: 482px; }\",\".framer-fLABN .framer-13napsh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fLABN .framer-11zz89c, .framer-fLABN .framer-hva36h { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-fLABN .framer-82tilu, .framer-fLABN .framer-139ugsh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fLABN .framer-3d7q0e, .framer-fLABN .framer-az1wg3 { flex: none; height: 1px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-fLABN .framer-10q8iee-container { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-fLABN .framer-q880sn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 41px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fLABN.framer-jyevbk, .framer-fLABN .framer-13napsh, .framer-fLABN .framer-82tilu, .framer-fLABN .framer-139ugsh, .framer-fLABN .framer-q880sn { gap: 0px; } .framer-fLABN.framer-jyevbk > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-fLABN.framer-jyevbk > :first-child, .framer-fLABN .framer-82tilu > :first-child, .framer-fLABN .framer-139ugsh > :first-child { margin-top: 0px; } .framer-fLABN.framer-jyevbk > :last-child, .framer-fLABN .framer-82tilu > :last-child, .framer-fLABN .framer-139ugsh > :last-child { margin-bottom: 0px; } .framer-fLABN .framer-13napsh > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-fLABN .framer-13napsh > :first-child, .framer-fLABN .framer-q880sn > :first-child { margin-left: 0px; } .framer-fLABN .framer-13napsh > :last-child, .framer-fLABN .framer-q880sn > :last-child { margin-right: 0px; } .framer-fLABN .framer-82tilu > *, .framer-fLABN .framer-139ugsh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-fLABN .framer-q880sn > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",\".framer-fLABN.framer-v-nxwxej .framer-13napsh { order: 0; }\",\".framer-fLABN.framer-v-nxwxej .framer-82tilu { order: 1; }\",\".framer-fLABN.framer-v-nxwxej .framer-q880sn { order: 4; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 277.5\n * @framerIntrinsicWidth 482\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"tmLKGBGDZ\":{\"layout\":[\"fixed\",\"auto\"]},\"KUSAx2KPW\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"okc_6dBcT\":\"title\",\"J7o8fdE7e\":\"text\",\"QFynIJaYH\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framero8zyYkQCp=withCSS(Component,css,\"framer-fLABN\");export default Framero8zyYkQCp;Framero8zyYkQCp.displayName=\"Collapsible Block 8\";Framero8zyYkQCp.defaultProps={height:277.5,width:482};addPropertyControls(Framero8zyYkQCp,{variant:{options:[\"MlA1idCUT\",\"tmLKGBGDZ\",\"KUSAx2KPW\"],optionTitles:[\"Active\",\"Inactive\",\"Default\"],title:\"Variant\",type:ControlType.Enum},okc_6dBcT:{defaultValue:\"Higher approval rate\",displayTextArea:false,title:\"Title\",type:ControlType.String},J7o8fdE7e:{defaultValue:\"As own, all own, a the a ago. Myself and that everyone in it walls. Reclined scale, on various of the me what him who I its a might who it scent but first writer's tone she immune person, problem proposal employed the a did his most maybe as and.\",displayTextArea:true,title:\"Text\",type:ControlType.String},QFynIJaYH:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(Framero8zyYkQCp,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"}]},...ProgressAnimationFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framero8zyYkQCp\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"482\",\"framerVariables\":\"{\\\"okc_6dBcT\\\":\\\"title\\\",\\\"J7o8fdE7e\\\":\\\"text\\\",\\\"QFynIJaYH\\\":\\\"tap\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tmLKGBGDZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KUSAx2KPW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"277.5\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./o8zyYkQCp.map", "import{jsx as t,jsxs as e}from\"react/jsx-runtime\";import{useEffect as o,useState as r}from\"react\";import{addPropertyControls as i,ControlType as n}from\"framer\";export default function l(i){let{backgroundColor:n,progressColor:l,timeAnimation:a}=i,[s,u]=r(0);o(function(){let t=setInterval(function(){u(t=>t>=100?0:t+1);},a);return function(){clearInterval(t);};},[a]);let d={container:{width:\"100%\",height:\"100%\",position:\"relative\",overflow:\"hidden\"},background:{position:\"absolute\",top:0,left:0,width:\"100%\",height:\"100%\",background:n},progress:{position:\"absolute\",top:0,left:0,height:\"100%\",width:`${s}%`,background:l,transition:`width ${a}ms linear`}};return /*#__PURE__*/e(\"div\",{style:d.container,children:[/*#__PURE__*/t(\"div\",{style:d.background}),/*#__PURE__*/t(\"div\",{style:d.progress})]});}i(l,{backgroundColor:{title:\"Background Color\",type:n.Color,defaultValue:\"rgba(0, 0, 0, 0.12)\"},progressColor:{title:\"Progress Color\",type:n.Color,defaultValue:\"black\"},timeAnimation:{title:\"Animation Time (ms)\",type:n.Number,defaultValue:90,min:10,max:1e3,step:10}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ProgressAnimation\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ProgressAnimation.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ProgressAnimation from\"https://framerusercontent.com/modules/gXaMobfZyGHde3TXptZb/yShd1FNdhJ4xfjBi5rEG/ProgressAnimation.js\";const ProgressAnimationFonts=getFonts(ProgressAnimation);const cycleOrder=[\"okLNQwVs0\",\"hOna09WVq\",\"dGjldn_RT\"];const serializationHash=\"framer-t2gjJ\";const variantClassNames={dGjldn_RT:\"framer-v-1rlxik0\",hOna09WVq:\"framer-v-sbpy69\",okLNQwVs0:\"framer-v-xpci8g\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Active:\"okLNQwVs0\",Default:\"dGjldn_RT\",Inactive:\"hOna09WVq\"};const getProps=({height,id,tap,text,title,width,...props})=>{return{...props,J7o8fdE7e:text??props.J7o8fdE7e??\"As own, all own, a the a ago. Myself and that everyone in it walls. Reclined scale, on various of the me what him who I its a might who it scent but first writer's tone she immune person, problem proposal employed the a did his most maybe as and.\",okc_6dBcT:title??props.okc_6dBcT??\"Higher approval rate\",QFynIJaYH:tap??props.QFynIJaYH,variant:humanReadableVariantMap[props.variant]??props.variant??\"okLNQwVs0\"};};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,okc_6dBcT,J7o8fdE7e,QFynIJaYH,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"okLNQwVs0\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap12s1o1s=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(QFynIJaYH){const res=await QFynIJaYH(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"dGjldn_RT\")return true;return false;};const isDisplayed1=()=>{if([\"hOna09WVq\",\"dGjldn_RT\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"hOna09WVq\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"hOna09WVq\")return false;return true;};const defaultLayoutId=React.useId();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(scopingClassNames,\"framer-xpci8g\",className,classNames),\"data-framer-name\":\"Active\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"okLNQwVs0\",onTap:onTap12s1o1s,ref:ref??ref1,style:{...style},...addPropertyOverrides({dGjldn_RT:{\"data-framer-name\":\"Default\"},hOna09WVq:{\"data-framer-name\":\"Inactive\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dzzzjo\",\"data-framer-name\":\"Columns\",layoutDependency:layoutDependency,layoutId:\"Ze3g218cK\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1Cb2xkIA==\",\"--framer-font-family\":'\"Gilroy-Bold \", \"Gilroy-Bold  Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 7, 70))\"},children:\"Higher approval rate\"})}),className:\"framer-db5mhy\",\"data-framer-name\":\"10 anos de opera\\xe7\\xe3o\",fonts:[\"CUSTOM;Gilroy-Bold \"],layoutDependency:layoutDependency,layoutId:\"Ku0KDkiqz\",style:{\"--extracted-r6o4lv\":\"rgb(0, 7, 70)\",\"--framer-paragraph-spacing\":\"20px\"},text:okc_6dBcT,variants:{hOna09WVq:{\"--extracted-r6o4lv\":\"rgb(109, 119, 142)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({hOna09WVq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(109, 119, 142))\"},children:\"Higher approval rate\"})}),fonts:[\"FS;Poppins-regular\"]}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-hs7unw\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"CBN1uFFg_\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y496z0\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"l8yLHkDjh\",style:{backgroundColor:\"rgba(0, 0, 0, 0.12)\"}})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vvtqu2-container\",layoutDependency:layoutDependency,layoutId:\"KeoRcBNxn-container\",children:/*#__PURE__*/_jsx(ProgressAnimation,{backgroundColor:\"rgba(0, 0, 0, 0.12)\",height:\"100%\",id:\"KeoRcBNxn\",layoutId:\"KeoRcBNxn\",progressColor:\"rgb(0, 0, 0)\",style:{height:\"100%\",width:\"100%\"},timeAnimation:90,width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-70tncr\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"dmJlHXtTK\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-542a7j\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"F3cGkPxlu\",style:{backgroundColor:\"rgba(0, 0, 0, 0.12)\"}})}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ewmvhy\",\"data-framer-name\":\"Columns\",layoutDependency:layoutDependency,layoutId:\"gMpg7JteM\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1Cb2xkIA==\",\"--framer-font-family\":'\"Gilroy-Bold \", \"Gilroy-Bold  Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(109, 119, 142))\"},children:\"As own, all own, a the a ago. Myself and that everyone in it walls. Reclined scale, on various of the me what him who I its a might who it scent but first writer's tone she immune person, problem proposal employed the a did his most maybe as and.\"})}),className:\"framer-6ynx4b\",\"data-framer-name\":\"Koin es la mejor soluci\\xf3n de medios de pago y financiaci\\xf3n digitales que permite a empresas y consumidores conectarse y realizar transacciones de forma pr\\xe1ctica y segura.\",fonts:[\"CUSTOM;Gilroy-Bold \"],layoutDependency:layoutDependency,layoutId:\"v2MeejJLf\",style:{\"--extracted-r6o4lv\":\"rgb(109, 119, 142)\",\"--framer-paragraph-spacing\":\"16px\"},text:J7o8fdE7e,verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-t2gjJ.framer-lqge2p, .framer-t2gjJ .framer-lqge2p { display: block; }\",\".framer-t2gjJ.framer-xpci8g { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 48px 0px 8px 0px; position: relative; width: 482px; }\",\".framer-t2gjJ .framer-1dzzzjo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t2gjJ .framer-db5mhy, .framer-t2gjJ .framer-6ynx4b { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-t2gjJ .framer-hs7unw, .framer-t2gjJ .framer-70tncr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t2gjJ .framer-y496z0, .framer-t2gjJ .framer-542a7j { flex: none; height: 1px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-t2gjJ .framer-vvtqu2-container { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-t2gjJ .framer-ewmvhy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 41px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-t2gjJ.framer-xpci8g, .framer-t2gjJ .framer-1dzzzjo, .framer-t2gjJ .framer-hs7unw, .framer-t2gjJ .framer-70tncr, .framer-t2gjJ .framer-ewmvhy { gap: 0px; } .framer-t2gjJ.framer-xpci8g > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-t2gjJ.framer-xpci8g > :first-child, .framer-t2gjJ .framer-hs7unw > :first-child, .framer-t2gjJ .framer-70tncr > :first-child { margin-top: 0px; } .framer-t2gjJ.framer-xpci8g > :last-child, .framer-t2gjJ .framer-hs7unw > :last-child, .framer-t2gjJ .framer-70tncr > :last-child { margin-bottom: 0px; } .framer-t2gjJ .framer-1dzzzjo > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-t2gjJ .framer-1dzzzjo > :first-child, .framer-t2gjJ .framer-ewmvhy > :first-child { margin-left: 0px; } .framer-t2gjJ .framer-1dzzzjo > :last-child, .framer-t2gjJ .framer-ewmvhy > :last-child { margin-right: 0px; } .framer-t2gjJ .framer-hs7unw > *, .framer-t2gjJ .framer-70tncr > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-t2gjJ .framer-ewmvhy > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",\".framer-t2gjJ.framer-v-1rlxik0 .framer-1dzzzjo { order: 0; }\",\".framer-t2gjJ.framer-v-1rlxik0 .framer-hs7unw { order: 1; }\",\".framer-t2gjJ.framer-v-1rlxik0 .framer-ewmvhy { order: 4; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 277.5\n * @framerIntrinsicWidth 482\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hOna09WVq\":{\"layout\":[\"fixed\",\"auto\"]},\"dGjldn_RT\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"okc_6dBcT\":\"title\",\"J7o8fdE7e\":\"text\",\"QFynIJaYH\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPwWlR1xyp=withCSS(Component,css,\"framer-t2gjJ\");export default FramerPwWlR1xyp;FramerPwWlR1xyp.displayName=\"Collapsible Block 5\";FramerPwWlR1xyp.defaultProps={height:277.5,width:482};addPropertyControls(FramerPwWlR1xyp,{variant:{options:[\"okLNQwVs0\",\"hOna09WVq\",\"dGjldn_RT\"],optionTitles:[\"Active\",\"Inactive\",\"Default\"],title:\"Variant\",type:ControlType.Enum},okc_6dBcT:{defaultValue:\"Higher approval rate\",displayTextArea:false,title:\"Title\",type:ControlType.String},J7o8fdE7e:{defaultValue:\"As own, all own, a the a ago. Myself and that everyone in it walls. Reclined scale, on various of the me what him who I its a might who it scent but first writer's tone she immune person, problem proposal employed the a did his most maybe as and.\",displayTextArea:true,title:\"Text\",type:ControlType.String},QFynIJaYH:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerPwWlR1xyp,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"}]},...ProgressAnimationFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPwWlR1xyp\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hOna09WVq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dGjldn_RT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"okc_6dBcT\\\":\\\"title\\\",\\\"J7o8fdE7e\\\":\\\"text\\\",\\\"QFynIJaYH\\\":\\\"tap\\\"}\",\"framerIntrinsicHeight\":\"277.5\",\"framerIntrinsicWidth\":\"482\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PwWlR1xyp.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ProgressAnimation from\"https://framerusercontent.com/modules/gXaMobfZyGHde3TXptZb/yShd1FNdhJ4xfjBi5rEG/ProgressAnimation.js\";const ProgressAnimationFonts=getFonts(ProgressAnimation);const cycleOrder=[\"J20Tw1bro\",\"cIqTmc41m\",\"o8Nw5bdOk\"];const serializationHash=\"framer-wJ6TM\";const variantClassNames={cIqTmc41m:\"framer-v-1r25a2a\",J20Tw1bro:\"framer-v-12rsrpr\",o8Nw5bdOk:\"framer-v-k2tbad\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Active:\"J20Tw1bro\",Default:\"o8Nw5bdOk\",Inactive:\"cIqTmc41m\"};const getProps=({height,id,tap,text,title,width,...props})=>{return{...props,J7o8fdE7e:text??props.J7o8fdE7e??\"As own, all own, a the a ago. Myself and that everyone in it walls. Reclined scale, on various of the me what him who I its a might who it scent but first writer's tone she immune person, problem proposal employed the a did his most maybe as and.\",okc_6dBcT:title??props.okc_6dBcT??\"Higher approval rate\",QFynIJaYH:tap??props.QFynIJaYH,variant:humanReadableVariantMap[props.variant]??props.variant??\"J20Tw1bro\"};};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,okc_6dBcT,J7o8fdE7e,QFynIJaYH,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"J20Tw1bro\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap12s1o1s=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(QFynIJaYH){const res=await QFynIJaYH(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"o8Nw5bdOk\")return true;return false;};const isDisplayed1=()=>{if([\"cIqTmc41m\",\"o8Nw5bdOk\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"cIqTmc41m\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"cIqTmc41m\")return false;return true;};const defaultLayoutId=React.useId();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(scopingClassNames,\"framer-12rsrpr\",className,classNames),\"data-framer-name\":\"Active\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"J20Tw1bro\",onTap:onTap12s1o1s,ref:ref??ref1,style:{...style},...addPropertyOverrides({cIqTmc41m:{\"data-framer-name\":\"Inactive\"},o8Nw5bdOk:{\"data-framer-name\":\"Default\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ak1l2a\",\"data-framer-name\":\"Columns\",layoutDependency:layoutDependency,layoutId:\"Z4ciMbFc6\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1Cb2xkIA==\",\"--framer-font-family\":'\"Gilroy-Bold \", \"Gilroy-Bold  Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 7, 70))\"},children:\"Higher approval rate\"})}),className:\"framer-utkhrd\",\"data-framer-name\":\"10 anos de opera\\xe7\\xe3o\",fonts:[\"CUSTOM;Gilroy-Bold \"],layoutDependency:layoutDependency,layoutId:\"hNnjPpDfM\",style:{\"--extracted-r6o4lv\":\"rgb(0, 7, 70)\",\"--framer-paragraph-spacing\":\"20px\"},text:okc_6dBcT,variants:{cIqTmc41m:{\"--extracted-r6o4lv\":\"rgb(109, 119, 142)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cIqTmc41m:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(109, 119, 142))\"},children:\"Higher approval rate\"})}),fonts:[\"FS;Poppins-regular\"]}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v56ovx\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"gg22m_rS9\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s2la2p\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"xyOYQDlYf\",style:{backgroundColor:\"rgba(0, 0, 0, 0.12)\"}})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14ypvde-container\",layoutDependency:layoutDependency,layoutId:\"fQ8gtDil3-container\",children:/*#__PURE__*/_jsx(ProgressAnimation,{backgroundColor:\"rgba(0, 0, 0, 0.12)\",height:\"100%\",id:\"fQ8gtDil3\",layoutId:\"fQ8gtDil3\",progressColor:\"rgb(0, 0, 0)\",style:{height:\"100%\",width:\"100%\"},timeAnimation:180,width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-nci2di\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"q_TkmJG_x\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e4em2l\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"KjMzXhG7y\",style:{backgroundColor:\"rgba(0, 0, 0, 0.12)\"}})}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-14vilg0\",\"data-framer-name\":\"Columns\",layoutDependency:layoutDependency,layoutId:\"rwAHUyIss\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1Cb2xkIA==\",\"--framer-font-family\":'\"Gilroy-Bold \", \"Gilroy-Bold  Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(109, 119, 142))\"},children:\"As own, all own, a the a ago. Myself and that everyone in it walls. Reclined scale, on various of the me what him who I its a might who it scent but first writer's tone she immune person, problem proposal employed the a did his most maybe as and.\"})}),className:\"framer-1kdbaj5\",\"data-framer-name\":\"Koin es la mejor soluci\\xf3n de medios de pago y financiaci\\xf3n digitales que permite a empresas y consumidores conectarse y realizar transacciones de forma pr\\xe1ctica y segura.\",fonts:[\"CUSTOM;Gilroy-Bold \"],layoutDependency:layoutDependency,layoutId:\"lAawWY24V\",style:{\"--extracted-r6o4lv\":\"rgb(109, 119, 142)\",\"--framer-paragraph-spacing\":\"16px\"},text:J7o8fdE7e,verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wJ6TM.framer-1z09in3, .framer-wJ6TM .framer-1z09in3 { display: block; }\",\".framer-wJ6TM.framer-12rsrpr { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 48px 0px 8px 0px; position: relative; width: 482px; }\",\".framer-wJ6TM .framer-ak1l2a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-wJ6TM .framer-utkhrd, .framer-wJ6TM .framer-1kdbaj5 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-wJ6TM .framer-1v56ovx, .framer-wJ6TM .framer-nci2di { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-wJ6TM .framer-1s2la2p, .framer-wJ6TM .framer-1e4em2l { flex: none; height: 1px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-wJ6TM .framer-14ypvde-container { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-wJ6TM .framer-14vilg0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 41px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wJ6TM.framer-12rsrpr, .framer-wJ6TM .framer-ak1l2a, .framer-wJ6TM .framer-1v56ovx, .framer-wJ6TM .framer-nci2di, .framer-wJ6TM .framer-14vilg0 { gap: 0px; } .framer-wJ6TM.framer-12rsrpr > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-wJ6TM.framer-12rsrpr > :first-child, .framer-wJ6TM .framer-1v56ovx > :first-child, .framer-wJ6TM .framer-nci2di > :first-child { margin-top: 0px; } .framer-wJ6TM.framer-12rsrpr > :last-child, .framer-wJ6TM .framer-1v56ovx > :last-child, .framer-wJ6TM .framer-nci2di > :last-child { margin-bottom: 0px; } .framer-wJ6TM .framer-ak1l2a > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-wJ6TM .framer-ak1l2a > :first-child, .framer-wJ6TM .framer-14vilg0 > :first-child { margin-left: 0px; } .framer-wJ6TM .framer-ak1l2a > :last-child, .framer-wJ6TM .framer-14vilg0 > :last-child { margin-right: 0px; } .framer-wJ6TM .framer-1v56ovx > *, .framer-wJ6TM .framer-nci2di > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-wJ6TM .framer-14vilg0 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",\".framer-wJ6TM.framer-v-k2tbad .framer-ak1l2a { order: 0; }\",\".framer-wJ6TM.framer-v-k2tbad .framer-1v56ovx { order: 1; }\",\".framer-wJ6TM.framer-v-k2tbad .framer-14vilg0 { order: 4; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 277.5\n * @framerIntrinsicWidth 482\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"cIqTmc41m\":{\"layout\":[\"fixed\",\"auto\"]},\"o8Nw5bdOk\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"okc_6dBcT\":\"title\",\"J7o8fdE7e\":\"text\",\"QFynIJaYH\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxGFFAD6Ys=withCSS(Component,css,\"framer-wJ6TM\");export default FramerxGFFAD6Ys;FramerxGFFAD6Ys.displayName=\"Collapsible Block 9\";FramerxGFFAD6Ys.defaultProps={height:277.5,width:482};addPropertyControls(FramerxGFFAD6Ys,{variant:{options:[\"J20Tw1bro\",\"cIqTmc41m\",\"o8Nw5bdOk\"],optionTitles:[\"Active\",\"Inactive\",\"Default\"],title:\"Variant\",type:ControlType.Enum},okc_6dBcT:{defaultValue:\"Higher approval rate\",displayTextArea:false,title:\"Title\",type:ControlType.String},J7o8fdE7e:{defaultValue:\"As own, all own, a the a ago. Myself and that everyone in it walls. Reclined scale, on various of the me what him who I its a might who it scent but first writer's tone she immune person, problem proposal employed the a did his most maybe as and.\",displayTextArea:true,title:\"Text\",type:ControlType.String},QFynIJaYH:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerxGFFAD6Ys,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"}]},...ProgressAnimationFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxGFFAD6Ys\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"277.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cIqTmc41m\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"o8Nw5bdOk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"okc_6dBcT\\\":\\\"title\\\",\\\"J7o8fdE7e\\\":\\\"text\\\",\\\"QFynIJaYH\\\":\\\"tap\\\"}\",\"framerIntrinsicWidth\":\"482\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xGFFAD6Ys.map", "// Generated by Framer (6f76210)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import VideoDelay from\"https://framerusercontent.com/modules/l8VKn0J1mImoaiBpUspg/w9iqKl9Nqz0c0tiRiwEL/lBkR422hM.js\";import CollapsibleBlock8 from\"https://framerusercontent.com/modules/whTo7aXtW4j2Nq15JR5Y/WOA43DNcgpna8hsMoSDL/o8zyYkQCp.js\";import CollapsibleBlock5 from\"https://framerusercontent.com/modules/l7rbpsUBYY7PKJTK9R4Q/GMvl4LmOioa2DRddvSht/PwWlR1xyp.js\";import CollapsibleBlock9 from\"https://framerusercontent.com/modules/nSq81WhZonDjTAwzQ6Gq/2x2GdPLaFp7oKMBmsrte/xGFFAD6Ys.js\";const CollapsibleBlock8Fonts=getFonts(CollapsibleBlock8);const CollapsibleBlock5Fonts=getFonts(CollapsibleBlock5);const CollapsibleBlock9Fonts=getFonts(CollapsibleBlock9);const VideoDelayFonts=getFonts(VideoDelay);const VideoDelayWithVariantAppearEffect=withVariantAppearEffect(VideoDelay);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"URdTDasT_\",\"NSM6wUhiy\",\"MxuhECVRW\",\"YuxbAla0d\"];const serializationHash=\"framer-SIXLP\";const variantClassNames={MxuhECVRW:\"framer-v-1g6a8zd\",NSM6wUhiy:\"framer-v-1v3js3i\",URdTDasT_:\"framer-v-1kbhkmc\",YuxbAla0d:\"framer-v-1p7x9md\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"URdTDasT_\",\"Variant 2\":\"NSM6wUhiy\",\"Variant 3\":\"MxuhECVRW\",\"Variant 4\":\"YuxbAla0d\"};const getProps=({height,id,imageVisible,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"URdTDasT_\",W45sRgybq:imageVisible??props.W45sRgybq??true};};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,W45sRgybq,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"URdTDasT_\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1kkzugo=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"NSM6wUhiy\"),18e3);});const onAppearg14rg6=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"MxuhECVRW\"),9e3);});const onAppearaeiw0u=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"URdTDasT_\"),18e3);});const QFynIJaYHvkls2q=activeVariantCallback(async(...args)=>{setVariant(\"URdTDasT_\");});const QFynIJaYH16m32bt=activeVariantCallback(async(...args)=>{setVariant(\"NSM6wUhiy\");});const QFynIJaYH19vs7xv=activeVariantCallback(async(...args)=>{setVariant(\"MxuhECVRW\");});useOnVariantChange(baseVariant,{default:onAppear1kkzugo,MxuhECVRW:onAppearaeiw0u,NSM6wUhiy:onAppearg14rg6,YuxbAla0d:undefined});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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(MotionDivWithFX,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1kbhkmc\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"URdTDasT_\",ref:ref??ref1,style:{...style},...addPropertyOverrides({MxuhECVRW:{\"data-framer-name\":\"Variant 3\"},NSM6wUhiy:{\"data-framer-name\":\"Variant 2\"},YuxbAla0d:{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,\"data-framer-name\":\"Variant 4\",\"data-highlight\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x7hc3\",\"data-framer-name\":\"Texts\",layoutDependency:layoutDependency,layoutId:\"vs2XWXYoA\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:277,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+((componentViewport?.height||500)-0-832)+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17pnh2w-container\",layoutDependency:layoutDependency,layoutId:\"FY1k1sGtq-container\",children:/*#__PURE__*/_jsx(CollapsibleBlock8,{height:\"100%\",id:\"FY1k1sGtq\",J7o8fdE7e:\"Create repositories, extract data and draw trends.\",layoutId:\"FY1k1sGtq\",okc_6dBcT:\"Analyze Repositories\",style:{width:\"100%\"},variant:\"MlA1idCUT\",width:\"100%\",...addPropertyOverrides({MxuhECVRW:{QFynIJaYH:QFynIJaYHvkls2q,variant:\"tmLKGBGDZ\"},NSM6wUhiy:{QFynIJaYH:QFynIJaYHvkls2q,variant:\"tmLKGBGDZ\"},YuxbAla0d:{variant:\"KUSAx2KPW\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:278,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+((componentViewport?.height||500)-0-832)+0+277,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m9oarr-container\",layoutDependency:layoutDependency,layoutId:\"bR51vPqj1-container\",children:/*#__PURE__*/_jsx(CollapsibleBlock5,{height:\"100%\",id:\"bR51vPqj1\",J7o8fdE7e:\"Attain first insights into any point of law.\",layoutId:\"bR51vPqj1\",okc_6dBcT:\"Conduct Research\",QFynIJaYH:QFynIJaYH16m32bt,style:{width:\"100%\"},variant:\"hOna09WVq\",width:\"100%\",...addPropertyOverrides({NSM6wUhiy:{variant:\"okLNQwVs0\"},YuxbAla0d:{J7o8fdE7e:\"Attain first insights into any point of law\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:277,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+((componentViewport?.height||500)-0-832)+0+555,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1367ikk-container\",layoutDependency:layoutDependency,layoutId:\"GUoI2XYWL-container\",children:/*#__PURE__*/_jsx(CollapsibleBlock9,{height:\"100%\",id:\"GUoI2XYWL\",J7o8fdE7e:\"Classify 1000s of documents by jurisdiction, document type, or custom issues.\",layoutId:\"GUoI2XYWL\",okc_6dBcT:\"Sort Documents\",QFynIJaYH:QFynIJaYH19vs7xv,style:{width:\"100%\"},variant:\"cIqTmc41m\",width:\"100%\",...addPropertyOverrides({MxuhECVRW:{variant:\"J20Tw1bro\"}},baseVariant,gestureVariant)})})})]}),W45sRgybq&&/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||500)-0-500)),sizes:\"500px\",src:\"https://framerusercontent.com/images/KaHbcQQrTCyOPWCQ4e1OxWUkgw.png\",srcSet:\"https://framerusercontent.com/images/KaHbcQQrTCyOPWCQ4e1OxWUkgw.png?scale-down-to=512 512w,https://framerusercontent.com/images/KaHbcQQrTCyOPWCQ4e1OxWUkgw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KaHbcQQrTCyOPWCQ4e1OxWUkgw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/KaHbcQQrTCyOPWCQ4e1OxWUkgw.png 4096w\"},className:\"framer-zbws8w\",\"data-framer-name\":\"Images\",layoutDependency:layoutDependency,layoutId:\"ITQ0bTct7\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:470,width:\"470px\",y:(componentViewport?.y||0)+0+((componentViewport?.height||500)-0-500)+10+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m3u0fp-container\",layoutDependency:layoutDependency,layoutId:\"cRntGtJgz-container\",children:/*#__PURE__*/_jsx(VideoDelayWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"ZJdTzhHee\",__framer__threshold:0,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"UnDA7Hh9h\",height:\"100%\",id:\"cRntGtJgz\",layoutId:\"cRntGtJgz\",style:{height:\"100%\",width:\"100%\"},tL6nsEiZY:\"https://framerusercontent.com/assets/BcWz1RwGI5qIhenfxFHe0XhFMU.mp4\",variant:\"ZJdTzhHee\",width:\"100%\",...addPropertyOverrides({MxuhECVRW:{tL6nsEiZY:\"https://framerusercontent.com/assets/rZjLslgZf4bLsJdyzzgZl5H8iI.mp4\"},NSM6wUhiy:{tL6nsEiZY:\"https://framerusercontent.com/assets/vctTnARrUbv3oxgMHu1uslOJ0.mp4\"}},baseVariant,gestureVariant)})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SIXLP.framer-1kse9ek, .framer-SIXLP .framer-1kse9ek { display: block; }\",\".framer-SIXLP.framer-1kbhkmc { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1216px; overflow: hidden; padding: 0px; position: relative; width: 1104px; }\",\".framer-SIXLP .framer-1x7hc3 { 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: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-SIXLP .framer-17pnh2w-container, .framer-SIXLP .framer-1m9oarr-container, .framer-SIXLP .framer-1367ikk-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-SIXLP .framer-zbws8w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 500px; justify-content: flex-start; overflow: hidden; padding: 10px; position: relative; width: 500px; }\",\".framer-SIXLP .framer-1m3u0fp-container { flex: none; height: 470px; position: relative; width: 470px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SIXLP.framer-1kbhkmc, .framer-SIXLP .framer-1x7hc3, .framer-SIXLP .framer-zbws8w { gap: 0px; } .framer-SIXLP.framer-1kbhkmc > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-SIXLP.framer-1kbhkmc > :first-child { margin-left: 0px; } .framer-SIXLP.framer-1kbhkmc > :last-child { margin-right: 0px; } .framer-SIXLP .framer-1x7hc3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-SIXLP .framer-1x7hc3 > :first-child, .framer-SIXLP .framer-zbws8w > :first-child { margin-top: 0px; } .framer-SIXLP .framer-1x7hc3 > :last-child, .framer-SIXLP .framer-zbws8w > :last-child { margin-bottom: 0px; } .framer-SIXLP .framer-zbws8w > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-SIXLP.framer-v-1p7x9md .framer-1x7hc3 { order: 0; }\",\".framer-SIXLP.framer-v-1p7x9md .framer-zbws8w { order: 1; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 500\n * @framerIntrinsicWidth 1104\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1216px\",null,null]},\"NSM6wUhiy\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1216px\",null,null]},\"MxuhECVRW\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1216px\",null,null]},\"YuxbAla0d\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1216px\",null,null]}}}\n * @framerVariables {\"W45sRgybq\":\"imageVisible\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrUvYMft0h=withCSS(Component,css,\"framer-SIXLP\");export default FramerrUvYMft0h;FramerrUvYMft0h.displayName=\"Featured Work 6\";FramerrUvYMft0h.defaultProps={height:500,width:1104};addPropertyControls(FramerrUvYMft0h,{variant:{options:[\"URdTDasT_\",\"NSM6wUhiy\",\"MxuhECVRW\",\"YuxbAla0d\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},W45sRgybq:{defaultValue:true,title:\"Image Visible\",type:ControlType.Boolean}});addFonts(FramerrUvYMft0h,[{explicitInter:true,fonts:[]},...CollapsibleBlock8Fonts,...CollapsibleBlock5Fonts,...CollapsibleBlock9Fonts,...VideoDelayFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrUvYMft0h\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1104\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1216px\\\",null,null]},\\\"NSM6wUhiy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1216px\\\",null,null]},\\\"MxuhECVRW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1216px\\\",null,null]},\\\"YuxbAla0d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1216px\\\",null,null]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"W45sRgybq\\\":\\\"imageVisible\\\"}\",\"framerIntrinsicHeight\":\"500\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "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", "i", "r", "o", "a", "e", "t", "c", "b", "m", "u", "l", "s", "f", "w", "x", "S", "d", "p", "n", "h", "v", "y", "g", "E", "_", "k", "C", "O", "T", "A", "X", "Y", "N", "j", "I", "G", "D", "M", "R", "q", "F", "B", "Q", "W", "L", "z", "H", "pe", "ue", "J", "ye", "K", "U", "TypingAnimation", "speed", "options", "font", "RepeatType", "RepeatValue", "sequenceArr", "p", "m", "addPropertyControls", "ControlType", "props", "VideoFonts", "getFonts", "Video", "VideoControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "file", "height", "id", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "tL6nsEiZY", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "FramerlBkR422hM", "withCSS", "lBkR422hM_default", "addPropertyControls", "ControlType", "addFonts", "ProgressAnimation", "props", "backgroundColor", "progressColor", "timeAnimation", "width", "setWidth", "ye", "isVisible", "setIsVisible", "hasAnimated", "setHasAnimated", "containerRef", "pe", "ue", "observer", "entry", "animationFrame", "startTime", "animate", "timestamp", "progress", "duration", "progressPercent", "styles", "u", "p", "addPropertyControls", "ControlType", "ProgressAnimationFonts", "getFonts", "ProgressAnimation", "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", "tap", "text", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "okc_6dBcT", "J7o8fdE7e", "QFynIJaYH", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap12s1o1s", "args", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "css", "Framero8zyYkQCp", "withCSS", "o8zyYkQCp_default", "addPropertyControls", "ControlType", "addFonts", "l", "i", "n", "s", "u", "ye", "ue", "t", "d", "p", "addPropertyControls", "ControlType", "ProgressAnimationFonts", "getFonts", "l", "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", "tap", "text", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "okc_6dBcT", "J7o8fdE7e", "QFynIJaYH", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap12s1o1s", "args", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "css", "FramerPwWlR1xyp", "withCSS", "PwWlR1xyp_default", "addPropertyControls", "ControlType", "addFonts", "ProgressAnimationFonts", "getFonts", "l", "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", "tap", "text", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "okc_6dBcT", "J7o8fdE7e", "QFynIJaYH", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap12s1o1s", "args", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "css", "FramerxGFFAD6Ys", "withCSS", "xGFFAD6Ys_default", "addPropertyControls", "ControlType", "addFonts", "CollapsibleBlock8Fonts", "getFonts", "o8zyYkQCp_default", "CollapsibleBlock5Fonts", "PwWlR1xyp_default", "CollapsibleBlock9Fonts", "xGFFAD6Ys_default", "VideoDelayFonts", "lBkR422hM_default", "VideoDelayWithVariantAppearEffect", "withVariantAppearEffect", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "imageVisible", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W45sRgybq", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1kkzugo", "args", "onAppearg14rg6", "onAppearaeiw0u", "QFynIJaYHvkls2q", "QFynIJaYH16m32bt", "QFynIJaYH19vs7xv", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "css", "FramerrUvYMft0h", "withCSS", "rUvYMft0h_default", "addPropertyControls", "ControlType", "addFonts"]
}
