{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framer.com/m/hero-icons/Home.js@0.0.28", "ssg:https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js", "ssg:https://framerusercontent.com/modules/BRMAMVv3vBblxLc7QuFc/GIPSRuJoea21zy1aWo46/CoYL1qWdh.js", "ssg:https://framerusercontent.com/modules/e9gIejci01IvsS8VbXMS/b2kHMa8tO9fadDUdvktO/KIQaLMw52.js", "ssg:https://framerusercontent.com/modules/QjnWfnfASAm6vfIPCZPg/eoShdMhU0Vx9PMXVmaBp/BoSDKnbIu.js", "ssg:https://framerusercontent.com/modules/rmCk63miTHlfnmi1laNv/B9ul5BWEkEjrZnnsQDEt/FVubQNArz.js", "ssg:https://framerusercontent.com/modules/aZBqx39si4oKgfqUq1A8/zbeCSI6O2B5Ob2AjSyCP/KOuY8BlhQ.js", "ssg:https://framerusercontent.com/modules/f8eXtjBlTm62T1WvdFr4/IQ4OIyUKOCJFoMZKA06C/DUlFvND5j.js", "ssg:https://framerusercontent.com/modules/PwB9L2rsVV6J9QFMHm4I/uVLSVdX9krtXWxOUstO5/dyGX1kn2s.js", "ssg:https://framerusercontent.com/modules/TFVabtAnyEVA8YiYaMQb/dgI62Dfa155W39Wy7PFO/UdPuD1X3B.js", "ssg:https://framerusercontent.com/modules/96jeQC0ggcWBJwkLvVyg/PtA8BvzL8zkFnxywxKrW/PXT_8Wkmb.js", "ssg:https://framerusercontent.com/modules/ILjCJBiNCQodjs39cqId/XTSVzVyVZt8tUS9dDIaC/OlbR6PHBH.js", "ssg:https://framerusercontent.com/modules/rB5zqPMV1lx7dqidIYzq/gmPgOkXPkAhiuZDoL8bF/qZ1Ebqrot.js", "ssg:https://framerusercontent.com/modules/cwpAbJIuWkr0l9g3Y4ms/UrQqfi6rBSoT2R6B8JoF/Kl3OKkWep.js", "ssg:https://framerusercontent.com/modules/HcrjfxZ6cw9M4gtVNuTs/eo6nyD5NVa1VAKD9tSQd/XgjpFutW_.js", "ssg:https://framerusercontent.com/modules/bKux5uX5bxdx9C4GOwd1/FbLnjEclXyR21GnsHH9E/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster=\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\",playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "let Component;\nvar Home_default = (React) => {\n  if (!Component) {\n    const HomeIcon = React.forwardRef(function HomeIcon2({\n      title,\n      titleId,\n      ...props\n    }, svgRef) {\n      return /* @__PURE__ */ React.createElement(\"svg\", Object.assign({\n        xmlns: \"http://www.w3.org/2000/svg\",\n        viewBox: \"0 0 24 24\",\n        fill: \"currentColor\",\n        \"aria-hidden\": \"true\",\n        \"data-slot\": \"icon\",\n        ref: svgRef,\n        \"aria-labelledby\": titleId\n      }, props), title ? /* @__PURE__ */ React.createElement(\"title\", {\n        id: titleId\n      }, title) : null, /* @__PURE__ */ React.createElement(\"path\", {\n        d: \"M11.47 3.841a.75.75 0 0 1 1.06 0l8.69 8.69a.75.75 0 1 0 1.06-1.061l-8.689-8.69a2.25 2.25 0 0 0-3.182 0l-8.69 8.69a.75.75 0 1 0 1.061 1.06l8.69-8.689Z\"\n      }), /* @__PURE__ */ React.createElement(\"path\", {\n        d: \"m12 5.432 8.159 8.159c.03.03.06.058.091.086v6.198c0 1.035-.84 1.875-1.875 1.875H15a.75.75 0 0 1-.75-.75v-4.5a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0-.75.75V21a.75.75 0 0 1-.75.75H5.625a1.875 1.875 0 0 1-1.875-1.875v-6.198a2.29 2.29 0 0 0 .091-.086L12 5.432Z\"\n      }));\n    });\n    Component = HomeIcon;\n  }\n  return Component;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nexport {\n  __FramerMetadata__,\n  Home_default as default\n};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/hero-icons/Home.js@0.0.28\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"AcademicCap\",\"AdjustmentsVertical\",\"ArchiveBox\",\"ArchiveBoxArrowDown\",\"ArchiveBoxXMark\",\"ArrowDown\",\"ArrowDownCircle\",\"ArrowDownLeft\",\"ArrowDownOnSquare\",\"ArrowDownRight\",\"ArrowDownTray\",\"ArrowLeft\",\"ArrowLeftCircle\",\"ArrowLeftOnRectangle\",\"ArrowLongDown\",\"ArrowLongLeft\",\"ArrowLongRight\",\"ArrowLongUp\",\"ArrowPath\",\"ArrowRight\",\"ArrowRightCircle\",\"ArrowSmallDown\",\"ArrowSmallLeft\",\"ArrowSmallRight\",\"ArrowSmallUp\",\"ArrowTrendingDown\",\"ArrowTrendingUp\",\"ArrowUp\",\"ArrowUpCircle\",\"ArrowUpLeft\",\"ArrowUpOnSquare\",\"ArrowUpOnSquareStack\",\"ArrowUpRight\",\"ArrowUpTray\",\"ArrowUturnDown\",\"ArrowUturnLeft\",\"ArrowUturnRight\",\"ArrowUturnUp\",\"ArrowsPointingIn\",\"ArrowsPointingOut\",\"ArrowsRightLeft\",\"ArrowsUpDown\",\"AtSymbol\",\"Backspace\",\"Backward\",\"Banknotes\",\"Bars2\",\"Bars3\",\"Bars3BottomLeft\",\"Bars3BottomRight\",\"Bars3CenterLeft\",\"Bars4\",\"BarsArrowDown\",\"BarsArrowUp\",\"Battery0\",\"Battery100\",\"Battery50\",\"Beaker\",\"Bell\",\"BellAlert\",\"BellSlash\",\"BellSnooze\",\"Bolt\",\"BoltSlash\",\"BookOpen\",\"Bookmark\",\"BookmarkSlash\",\"BookmarkSquare\",\"Briefcase\",\"BugAnt\",\"BuildingLibrary\",\"BuildingOffice\",\"BuildingOffice2\",\"BuildingStorefront\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarDays\",\"Camera\",\"ChartBar\",\"ChartBarSquare\",\"ChartPie\",\"ChatBubbleLeft\",\"ChatBubbleLeftRight\",\"ChatBubbleOvalLeft\",\"Check\",\"CheckBadge\",\"CheckCircle\",\"ChevronDoubleDown\",\"ChevronDoubleLeft\",\"ChevronDoubleRight\",\"ChevronDoubleUp\",\"ChevronDown\",\"ChevronLeft\",\"ChevronRight\",\"ChevronUp\",\"ChevronUpDown\",\"CircleStack\",\"Clipboard\",\"ClipboardDocument\",\"Clock\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CodeBracket\",\"CodeBracketSquare\",\"Cog\",\"Cog6Tooth\",\"Cog8Tooth\",\"CommandLine\",\"ComputerDesktop\",\"CpuChip\",\"CreditCard\",\"Cube\",\"CubeTransparent\",\"CurrencyBangladeshi\",\"CurrencyDollar\",\"CurrencyEuro\",\"CurrencyPound\",\"CurrencyRupee\",\"CurrencyYen\",\"CursorArrowRays\",\"CursorArrowRipple\",\"DevicePhoneMobile\",\"DeviceTablet\",\"Document\",\"DocumentArrowDown\",\"DocumentArrowUp\",\"DocumentChartBar\",\"DocumentCheck\",\"DocumentDuplicate\",\"DocumentMinus\",\"DocumentPlus\",\"DocumentText\",\"EllipsisHorizontal\",\"EllipsisVertical\",\"Envelope\",\"EnvelopeOpen\",\"ExclamationCircle\",\"ExclamationTriangle\",\"Eye\",\"EyeDropper\",\"EyeSlash\",\"FaceFrown\",\"FaceSmile\",\"Film\",\"FingerPrint\",\"Fire\",\"Flag\",\"Folder\",\"FolderArrowDown\",\"FolderMinus\",\"FolderOpen\",\"FolderPlus\",\"Forward\",\"Funnel\",\"Gif\",\"Gift\",\"GiftTop\",\"GlobeAlt\",\"GlobeAmericas\",\"GlobeAsiaAustralia\",\"GlobeEuropeAfrica\",\"HandRaised\",\"HandThumbDown\",\"HandThumbUp\",\"Hashtag\",\"Heart\",\"Home\",\"HomeModern\",\"Identification\",\"Inbox\",\"InboxArrowDown\",\"InboxStack\",\"InformationCircle\",\"Key\",\"Language\",\"Lifebuoy\",\"LightBulb\",\"Link\",\"ListBullet\",\"LockClosed\",\"LockOpen\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"Map\",\"MapPin\",\"Megaphone\",\"Microphone\",\"Minus\",\"MinusCircle\",\"MinusSmall\",\"Moon\",\"MusicalNote\",\"Newspaper\",\"NoSymbol\",\"PaintBrush\",\"PaperAirplane\",\"PaperClip\",\"Pause\",\"PauseCircle\",\"Pencil\",\"PencilSquare\",\"Phone\",\"PhoneArrowDownLeft\",\"PhoneArrowUpRight\",\"PhoneXMark\",\"Photo\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Plus\",\"PlusCircle\",\"PlusSmall\",\"Power\",\"PresentationChartBar\",\"Printer\",\"PuzzlePiece\",\"QrCode\",\"QuestionMarkCircle\",\"QueueList\",\"Radio\",\"ReceiptPercent\",\"ReceiptRefund\",\"RectangleGroup\",\"RectangleStack\",\"RocketLaunch\",\"Rss\",\"Scale\",\"Scissors\",\"Server\",\"ServerStack\",\"Share\",\"ShieldCheck\",\"ShieldExclamation\",\"ShoppingBag\",\"ShoppingCart\",\"Signal\",\"SignalSlash\",\"Sparkles\",\"SpeakerWave\",\"SpeakerXMark\",\"Square2Stack\",\"Square3Stack3D\",\"Squares2X2\",\"SquaresPlus\",\"Star\",\"Stop\",\"StopCircle\",\"Sun\",\"Swatch\",\"TableCells\",\"Tag\",\"Ticket\",\"Trash\",\"Trophy\",\"Truck\",\"Tv\",\"User\",\"UserCircle\",\"UserGroup\",\"UserMinus\",\"UserPlus\",\"Users\",\"Variable\",\"VideoCamera\",\"VideoCameraSlash\",\"ViewColumns\",\"ViewfinderCircle\",\"Wallet\",\"Wifi\",\"Window\",\"Wrench\",\"WrenchScrewdriver\",\"XCircle\",\"XMark\",\"index\"];const moduleBaseUrl=\"https://framer.com/m/hero-icons/\";const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * HERO\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.28`;const module=await import(/* webpackIgnore: true */iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch{if(isMounted.current)setSelectedIcon(null);}}// Import module when new style or icon is selected\nuseEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/_jsx(NullState,{}):null;return /*#__PURE__*/_jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/_jsx(SelectedIcon,{style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Hero\";Icon.defaultProps={width:24,height:24,iconSelection:\"Home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Hero site](https://heroicons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerIntrinsicWidth\":\"24\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"iconKeys\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Hero.map", "// Generated by Framer (83b8097)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";const HeroFonts=getFonts(Hero);const HeroControls=getPropertyControls(Hero);const cycleOrder=[\"vKEjIq8kv\",\"gDJAG5LB3\",\"XSyPUZVfq\"];const serializationHash=\"framer-GHC8g\";const variantClassNames={gDJAG5LB3:\"framer-v-1tghmyj\",vKEjIq8kv:\"framer-v-wuqhbw\",XSyPUZVfq:\"framer-v-qafah4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"vKEjIq8kv\",\"Variant 2\":\"gDJAG5LB3\",\"Variant 3\":\"XSyPUZVfq\"};const getProps=({description,height,icon,id,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,bee07MbGZ:(_ref=description!==null&&description!==void 0?description:props.bee07MbGZ)!==null&&_ref!==void 0?_ref:\"Enjoy a fast and responsive calendar experience, ensuring you can quickly navigate and manage your schedule.\",mdRy55VrV:(_ref1=title!==null&&title!==void 0?title:props.mdRy55VrV)!==null&&_ref1!==void 0?_ref1:\"Lightning Speed\",pbh9ZnBRX:(_ref2=icon!==null&&icon!==void 0?icon:props.pbh9ZnBRX)!==null&&_ref2!==void 0?_ref2:\"Bolt\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"vKEjIq8kv\"};};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,pbh9ZnBRX,mdRy55VrV,bee07MbGZ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vKEjIq8kv\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"gDJAG5LB3\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-wuqhbw\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"vKEjIq8kv\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({gDJAG5LB3:{\"data-framer-name\":\"Variant 2\"},XSyPUZVfq:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-26cw7p\",layoutDependency:layoutDependency,layoutId:\"Ez9q65x14\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1abjg2n-container\",layoutDependency:layoutDependency,layoutId:\"WV8wp8DR2-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",height:\"100%\",iconSearch:\"Home\",iconSelection:pbh9ZnBRX,id:\"WV8wp8DR2\",layoutId:\"WV8wp8DR2\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11)))\"},children:\"Lightning Speed\"})}),className:\"framer-1yfyepq\",fonts:[\"GF;Instrument Sans-500\"],layoutDependency:layoutDependency,layoutId:\"BAqg5Beb3\",style:{\"--extracted-1w1cjl5\":\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:mdRy55VrV,variants:{gDJAG5LB3:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.9)\"},XSyPUZVfq:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.9)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gDJAG5LB3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.9))\"},children:\"Lightning Speed\"})}),fonts:[\"GF;Instrument Sans-regular\"]},XSyPUZVfq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.9))\"},children:\"Lightning Speed\"})}),fonts:[\"GF;Instrument Sans-regular\"]}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11)))\"},children:\"Enjoy a fast and responsive calendar experience, ensuring you can quickly navigate and manage your schedule.\"})}),className:\"framer-12o7vl0\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"XunozYDj6\",style:{\"--extracted-r6o4lv\":\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:bee07MbGZ,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GHC8g.framer-z8vusi, .framer-GHC8g .framer-z8vusi { display: block; }\",\".framer-GHC8g.framer-wuqhbw { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 300px; }\",\".framer-GHC8g .framer-26cw7p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GHC8g .framer-1abjg2n-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-GHC8g .framer-1yfyepq { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-GHC8g .framer-12o7vl0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GHC8g.framer-wuqhbw, .framer-GHC8g .framer-26cw7p { gap: 0px; } .framer-GHC8g.framer-wuqhbw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-GHC8g.framer-wuqhbw > :first-child { margin-top: 0px; } .framer-GHC8g.framer-wuqhbw > :last-child { margin-bottom: 0px; } .framer-GHC8g .framer-26cw7p > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-GHC8g .framer-26cw7p > :first-child { margin-left: 0px; } .framer-GHC8g .framer-26cw7p > :last-child { margin-right: 0px; } }\",\".framer-GHC8g.framer-v-1tghmyj.framer-wuqhbw, .framer-GHC8g.framer-v-qafah4.framer-wuqhbw { gap: 20px; padding: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GHC8g.framer-v-1tghmyj.framer-wuqhbw { gap: 0px; } .framer-GHC8g.framer-v-1tghmyj.framer-wuqhbw > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-GHC8g.framer-v-1tghmyj.framer-wuqhbw > :first-child { margin-top: 0px; } .framer-GHC8g.framer-v-1tghmyj.framer-wuqhbw > :last-child { margin-bottom: 0px; } }\",\".framer-GHC8g.framer-v-qafah4 .framer-1abjg2n-container { height: 16px; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GHC8g.framer-v-qafah4.framer-wuqhbw { gap: 0px; } .framer-GHC8g.framer-v-qafah4.framer-wuqhbw > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-GHC8g.framer-v-qafah4.framer-wuqhbw > :first-child { margin-top: 0px; } .framer-GHC8g.framer-v-qafah4.framer-wuqhbw > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 155.5\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gDJAG5LB3\":{\"layout\":[\"fixed\",\"auto\"]},\"XSyPUZVfq\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"pbh9ZnBRX\":\"icon\",\"mdRy55VrV\":\"title\",\"bee07MbGZ\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCoYL1qWdh=withCSS(Component,css,\"framer-GHC8g\");export default FramerCoYL1qWdh;FramerCoYL1qWdh.displayName=\"Cards/Feature highlight 2\";FramerCoYL1qWdh.defaultProps={height:155.5,width:300};addPropertyControls(FramerCoYL1qWdh,{variant:{options:[\"vKEjIq8kv\",\"gDJAG5LB3\",\"XSyPUZVfq\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},pbh9ZnBRX:(HeroControls===null||HeroControls===void 0?void 0:HeroControls[\"iconSelection\"])&&{...HeroControls[\"iconSelection\"],defaultValue:\"Bolt\",description:undefined,hidden:undefined,title:\"Icon\"},mdRy55VrV:{defaultValue:\"Lightning Speed\",displayTextArea:false,title:\"Title\",type:ControlType.String},bee07MbGZ:{defaultValue:\"Enjoy a fast and responsive calendar experience, ensuring you can quickly navigate and manage your schedule.\",displayTextArea:false,title:\"Description\",type:ControlType.String}});addFonts(FramerCoYL1qWdh,[{explicitInter:true,fonts:[{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npST3-QfwmS0v3_7Y.woff2\",weight:\"500\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-QfwmS0v3_7Y.woff2\",weight:\"400\"}]},...HeroFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCoYL1qWdh\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"pbh9ZnBRX\\\":\\\"icon\\\",\\\"mdRy55VrV\\\":\\\"title\\\",\\\"bee07MbGZ\\\":\\\"description\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gDJAG5LB3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XSyPUZVfq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"155.5\",\"framerIntrinsicWidth\":\"300\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CoYL1qWdh.map", "// Generated by Framer (af04cc1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-bold\",\"FS;Satoshi-black\",\"FS;Satoshi-black italic\",\"FS;Satoshi-bold italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NHPGVFYUXYXE33DZ75OIT4JFGHITX5PE/PSUTMASCDJTVPERDYJZPN23BVUFUCQIF/J64QX5IPOHK56I2KYUNBQ5M2XWZEYKYX.woff2\",weight:\"900\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/5ICO57VJIN252OT5L2KLEIPW754DTLAO/ZU64SLR2IEO66N27IVY5Z6JJJRTJECJK/TCTRLNEXANFIGSFCZTGQL7PZ5362GYK6.woff2\",weight:\"900\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CDEBEFT2R7XKNGXSBBLZGMY4MMHZG75P/HEVKDGQCYDZ7Z6CDVR2ZQGBCTUD6ZARH/BKWEE3VKGTFABE37K2DTH625VUSN2N35.woff2\",weight:\"700\"}]}];export const css=['.framer-RPaKy .framer-styles-preset-1iw6pu4:not(.rich-text-wrapper), .framer-RPaKy .framer-styles-preset-1iw6pu4.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-16859c7d-1a37-4c0b-8cfe-b6f58e9d38df, #1a1d21); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-RPaKy\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (af04cc1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/e9gIejci01IvsS8VbXMS/b2kHMa8tO9fadDUdvktO/KIQaLMw52.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const cycleOrder=[\"iPv_a8bNq\",\"X_u4AGZQs\"];const serializationHash=\"framer-wIF2F\";const variantClassNames={iPv_a8bNq:\"framer-v-168a1wx\",X_u4AGZQs:\"framer-v-1azi2yq\"};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={Only:\"X_u4AGZQs\",Withicon:\"iPv_a8bNq\"};const getProps=({color,height,icon,id,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,Jh10lTWIl:(_ref=icon!==null&&icon!==void 0?icon:props.Jh10lTWIl)!==null&&_ref!==void 0?_ref:\"MagicWand\",tehYgz0M0:(_ref1=title!==null&&title!==void 0?title:props.tehYgz0M0)!==null&&_ref1!==void 0?_ref1:\"Generate\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"iPv_a8bNq\",XuXIdDx0B:(_ref3=color!==null&&color!==void 0?color:props.XuXIdDx0B)!==null&&_ref3!==void 0?_ref3:\"var(--token-82c171b9-bd6f-4ae6-804b-e2ed453c267d, rgb(0, 0, 0))\"};};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,XuXIdDx0B,tehYgz0M0,Jh10lTWIl,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"iPv_a8bNq\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"X_u4AGZQs\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-168a1wx\",className,classNames),\"data-framer-name\":\"Withicon\",layoutDependency:layoutDependency,layoutId:\"iPv_a8bNq\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},variants:{X_u4AGZQs:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6}},...addPropertyOverrides({X_u4AGZQs:{\"data-framer-name\":\"Only\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g5ja20-container\",layoutDependency:layoutDependency,layoutId:\"jT_jKBVSW-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:XuXIdDx0B,height:\"100%\",iconSearch:\"House\",iconSelection:Jh10lTWIl,id:\"jT_jKBVSW\",layoutId:\"jT_jKBVSW\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1iw6pu4\",\"data-styles-preset\":\"KIQaLMw52\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-XuXIdDx0B-BoSDKnbIu))\"},children:\"Generate\"})}),className:\"framer-3tnehp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FTDzyVy6U\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-XuXIdDx0B-BoSDKnbIu)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-XuXIdDx0B-BoSDKnbIu\":XuXIdDx0B},text:tehYgz0M0,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iuef3o\",\"data-framer-name\":\"BG\",layoutDependency:layoutDependency,layoutId:\"qe_6o58sI\",style:{backgroundColor:XuXIdDx0B,borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,opacity:.1},variants:{X_u4AGZQs:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wIF2F.framer-1mbkuy6, .framer-wIF2F .framer-1mbkuy6 { display: block; }\",\".framer-wIF2F.framer-168a1wx { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 6px 8px 6px 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-wIF2F .framer-1g5ja20-container { flex: none; height: 20px; position: relative; width: 20px; z-index: 2; }\",\".framer-wIF2F .framer-3tnehp { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 2; }\",\".framer-wIF2F .framer-1iuef3o { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wIF2F.framer-168a1wx { gap: 0px; } .framer-wIF2F.framer-168a1wx > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-wIF2F.framer-168a1wx > :first-child { margin-left: 0px; } .framer-wIF2F.framer-168a1wx > :last-child { margin-right: 0px; } }\",\".framer-wIF2F.framer-v-1azi2yq.framer-168a1wx { padding: 6px 12px 6px 12px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 104\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"X_u4AGZQs\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"XuXIdDx0B\":\"color\",\"tehYgz0M0\":\"title\",\"Jh10lTWIl\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBoSDKnbIu=withCSS(Component,css,\"framer-wIF2F\");export default FramerBoSDKnbIu;FramerBoSDKnbIu.displayName=\"Badge\";FramerBoSDKnbIu.defaultProps={height:32,width:104};addPropertyControls(FramerBoSDKnbIu,{variant:{options:[\"iPv_a8bNq\",\"X_u4AGZQs\"],optionTitles:[\"Withicon\",\"Only\"],title:\"Variant\",type:ControlType.Enum},XuXIdDx0B:{defaultValue:\"var(--token-82c171b9-bd6f-4ae6-804b-e2ed453c267d, rgb(0, 0, 0))\",title:\"Color\",type:ControlType.Color},tehYgz0M0:{defaultValue:\"Generate\",displayTextArea:false,title:\"Title\",type:ControlType.String},Jh10lTWIl:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"MagicWand\",description:undefined,hidden:undefined,title:\"Icon\"}});addFonts(FramerBoSDKnbIu,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBoSDKnbIu\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"32\",\"framerVariables\":\"{\\\"XuXIdDx0B\\\":\\\"color\\\",\\\"tehYgz0M0\\\":\\\"title\\\",\\\"Jh10lTWIl\\\":\\\"icon\\\"}\",\"framerIntrinsicWidth\":\"104\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"X_u4AGZQs\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BoSDKnbIu.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Badge from\"https://framerusercontent.com/modules/QjnWfnfASAm6vfIPCZPg/eoShdMhU0Vx9PMXVmaBp/BoSDKnbIu.js\";import*as componentPresets from\"https://framerusercontent.com/modules/jnTFLLEyco5ku77bXNOl/SNUWcle13bTExU2ciscE/componentPresets.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/wClSWuLp4n1ohFSiTyby/TTMLwiPFGjkil6u0BfVO/dRgG77f47.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/qme825Y6GFfk4AdEIrDj/7snqVtwWM1AJpqx9SKos/dtOoAAwB_.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/vuuardI7dISFDfX9rEBC/VLuX7EGhEGkGEYrDWp9c/KCyUlehY9.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/hsUREAxunBedXLuKxpe5/NkJGgu3ytEEUERZ30FpZ/lKnSTH4YS.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/xNi3hxqBAyBTtAQZPPg1/RjxqF3vc6HvxBCZxlirv/Tsh95XLwX.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/L6oBJsUWtLmDu4My5Zyv/EyTy9MtOrCJeYemPut06/vzM83DDw4.js\";const BadgeFonts=getFonts(Badge);const MotionDivWithFX=withFX(motion.div);const serializationHash=\"framer-q93SO\";const variantClassNames={t38880V9H:\"framer-v-1jpe2fe\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition1={delay:0,duration:.8,ease:[.56,.02,.26,.99],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:30};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 getProps=({badge,color,content,height,id,title,width,...props})=>{return{...props,H1HFYSjmC:content??props.H1HFYSjmC??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Boost in task automation efficiency, optimizing workflows for all users.\"})}),K_LhrIcAU:color??props.K_LhrIcAU??\"var(--token-84e28cc2-e57f-44a3-a600-9443fa4c8032, rgb(91, 73, 233))\",PwvAiBAMs:badge??props.PwvAiBAMs??\"Performance Increase:\",sBHE7WWF9:title??props.sBHE7WWF9??\"700%\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,PwvAiBAMs,sBHE7WWF9,K_LhrIcAU,H1HFYSjmC,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"t38880V9H\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-1jpe2fe\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"t38880V9H\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(244, 244, 245))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+32+(((componentViewport?.height||224.5)-64-202)/2+0+0),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1o391ux-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ksAxcGYgg-container\",nodeId:\"ksAxcGYgg\",rendersWithMotion:true,scopeId:\"FVubQNArz\",children:/*#__PURE__*/_jsx(Badge,{height:\"100%\",id:\"ksAxcGYgg\",Jh10lTWIl:\"MagicWand\",layoutId:\"ksAxcGYgg\",tehYgz0M0:PwvAiBAMs,variant:\"X_u4AGZQs\",width:\"100%\",XuXIdDx0B:K_LhrIcAU})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-ai6hvh\",\"data-styles-preset\":\"Tsh95XLwX\",children:\"700%\"})}),className:\"framer-10w7wzt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qWcrLQoHK\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:sBHE7WWF9,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"WGQMwDLnq\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:H1HFYSjmC,className:\"framer-1efwn0a\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VK4ZGjK9v\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},stylesPresetsClassNames:{a:\"framer-styles-preset-tawneo\",blockquote:\"framer-styles-preset-1n960mc\",h6:\"framer-styles-preset-ntfn9g\",img:\"framer-styles-preset-1w4zmzw\",p:\"framer-styles-preset-1btcpgd\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-q93SO.framer-1j1nvpt, .framer-q93SO .framer-1j1nvpt { display: block; }\",\".framer-q93SO.framer-1jpe2fe { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 384px; will-change: var(--framer-will-change-override, transform); }\",\".framer-q93SO .framer-1o391ux-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-q93SO .framer-10w7wzt, .framer-q93SO .framer-1efwn0a { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-q93SO[data-border=\"true\"]::after, .framer-q93SO [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 224.5\n * @framerIntrinsicWidth 384\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"PwvAiBAMs\":\"badge\",\"sBHE7WWF9\":\"title\",\"K_LhrIcAU\":\"color\",\"H1HFYSjmC\":\"content\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerFVubQNArz=withCSS(Component,css,\"framer-q93SO\");export default FramerFVubQNArz;FramerFVubQNArz.displayName=\"Stat item\";FramerFVubQNArz.defaultProps={height:224.5,width:384};addPropertyControls(FramerFVubQNArz,{PwvAiBAMs:{defaultValue:\"Performance Increase:\",displayTextArea:false,title:\"Badge\",type:ControlType.String},sBHE7WWF9:{defaultValue:\"700%\",displayTextArea:false,title:\"Title\",type:ControlType.String},K_LhrIcAU:{defaultValue:'var(--token-84e28cc2-e57f-44a3-a600-9443fa4c8032, rgb(91, 73, 233)) /* {\"name\":\"Purple Dark\"} */',title:\"Color\",type:ControlType.Color},H1HFYSjmC:{defaultValue:\"<p>Boost in task automation efficiency, optimizing workflows for all users.</p>\",title:\"Content\",type:ControlType.RichText}});addFonts(FramerFVubQNArz,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...BadgeFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...componentPresets.fonts?.[\"WGQMwDLnq\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"WGQMwDLnq\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFVubQNArz\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"384\",\"framerVariables\":\"{\\\"PwvAiBAMs\\\":\\\"badge\\\",\\\"sBHE7WWF9\\\":\\\"title\\\",\\\"K_LhrIcAU\\\":\\\"color\\\",\\\"H1HFYSjmC\\\":\\\"content\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"224.5\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FVubQNArz.map", "// Generated by Framer (83b8097)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";const HeroFonts=getFonts(Hero);const HeroControls=getPropertyControls(Hero);const cycleOrder=[\"qW92r6J20\",\"McYfkqc2j\",\"mKVDpoI1S\"];const serializationHash=\"framer-D4Y45\";const variantClassNames={McYfkqc2j:\"framer-v-1arhrp7\",mKVDpoI1S:\"framer-v-1sya7bk\",qW92r6J20:\"framer-v-1qqniam\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"qW92r6J20\",\"Variant 2\":\"McYfkqc2j\",\"Variant 3\":\"mKVDpoI1S\"};const getProps=({description,height,icon,id,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,bee07MbGZ:(_ref=description!==null&&description!==void 0?description:props.bee07MbGZ)!==null&&_ref!==void 0?_ref:\"Enjoy a fast and responsive calendar experience, ensuring you can quickly navigate and manage your schedule.\",mdRy55VrV:(_ref1=title!==null&&title!==void 0?title:props.mdRy55VrV)!==null&&_ref1!==void 0?_ref1:\"Lightning Speed\",pbh9ZnBRX:(_ref2=icon!==null&&icon!==void 0?icon:props.pbh9ZnBRX)!==null&&_ref2!==void 0?_ref2:\"Bolt\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"qW92r6J20\"};};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,pbh9ZnBRX,mdRy55VrV,bee07MbGZ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qW92r6J20\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"McYfkqc2j\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1qqniam\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"qW92r6J20\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({McYfkqc2j:{\"data-framer-name\":\"Variant 2\"},mKVDpoI1S:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sonyjr\",layoutDependency:layoutDependency,layoutId:\"VBISDO38v\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15jartw-container\",layoutDependency:layoutDependency,layoutId:\"eZ9A68IpB-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",height:\"100%\",iconSearch:\"Home\",iconSelection:pbh9ZnBRX,id:\"eZ9A68IpB\",layoutId:\"eZ9A68IpB\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11)))\"},children:\"Lightning Speed\"})}),className:\"framer-1a0w9pr\",fonts:[\"GF;Instrument Sans-500\"],layoutDependency:layoutDependency,layoutId:\"boG_pHsW0\",style:{\"--extracted-1w1cjl5\":\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:mdRy55VrV,variants:{McYfkqc2j:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.9)\"},mKVDpoI1S:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.9)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({McYfkqc2j:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.9))\"},children:\"Lightning Speed\"})}),fonts:[\"GF;Instrument Sans-regular\"]},mKVDpoI1S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.9))\"},children:\"Lightning Speed\"})}),fonts:[\"GF;Instrument Sans-regular\"]}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11)))\"},children:\"Enjoy a fast and responsive calendar experience, ensuring you can quickly navigate and manage your schedule.\"})}),className:\"framer-1eeloa\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"yQa9OAreU\",style:{\"--extracted-r6o4lv\":\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:bee07MbGZ,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-D4Y45.framer-1j7ghog, .framer-D4Y45 .framer-1j7ghog { display: block; }\",\".framer-D4Y45.framer-1qqniam { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 300px; }\",\".framer-D4Y45 .framer-1sonyjr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-D4Y45 .framer-15jartw-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-D4Y45 .framer-1a0w9pr { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-D4Y45 .framer-1eeloa { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-D4Y45.framer-1qqniam, .framer-D4Y45 .framer-1sonyjr { gap: 0px; } .framer-D4Y45.framer-1qqniam > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-D4Y45.framer-1qqniam > :first-child { margin-top: 0px; } .framer-D4Y45.framer-1qqniam > :last-child { margin-bottom: 0px; } .framer-D4Y45 .framer-1sonyjr > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-D4Y45 .framer-1sonyjr > :first-child { margin-left: 0px; } .framer-D4Y45 .framer-1sonyjr > :last-child { margin-right: 0px; } }\",\".framer-D4Y45.framer-v-1arhrp7.framer-1qqniam, .framer-D4Y45.framer-v-1sya7bk.framer-1qqniam { gap: 20px; padding: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-D4Y45.framer-v-1arhrp7.framer-1qqniam { gap: 0px; } .framer-D4Y45.framer-v-1arhrp7.framer-1qqniam > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-D4Y45.framer-v-1arhrp7.framer-1qqniam > :first-child { margin-top: 0px; } .framer-D4Y45.framer-v-1arhrp7.framer-1qqniam > :last-child { margin-bottom: 0px; } }\",\".framer-D4Y45.framer-v-1sya7bk .framer-15jartw-container { height: 16px; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-D4Y45.framer-v-1sya7bk.framer-1qqniam { gap: 0px; } .framer-D4Y45.framer-v-1sya7bk.framer-1qqniam > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-D4Y45.framer-v-1sya7bk.framer-1qqniam > :first-child { margin-top: 0px; } .framer-D4Y45.framer-v-1sya7bk.framer-1qqniam > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 155.5\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"McYfkqc2j\":{\"layout\":[\"fixed\",\"auto\"]},\"mKVDpoI1S\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"pbh9ZnBRX\":\"icon\",\"mdRy55VrV\":\"title\",\"bee07MbGZ\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKOuY8BlhQ=withCSS(Component,css,\"framer-D4Y45\");export default FramerKOuY8BlhQ;FramerKOuY8BlhQ.displayName=\"Cards/Feature highlight\";FramerKOuY8BlhQ.defaultProps={height:155.5,width:300};addPropertyControls(FramerKOuY8BlhQ,{variant:{options:[\"qW92r6J20\",\"McYfkqc2j\",\"mKVDpoI1S\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},pbh9ZnBRX:(HeroControls===null||HeroControls===void 0?void 0:HeroControls[\"iconSelection\"])&&{...HeroControls[\"iconSelection\"],defaultValue:\"Bolt\",description:undefined,hidden:undefined,title:\"Icon\"},mdRy55VrV:{defaultValue:\"Lightning Speed\",displayTextArea:false,title:\"Title\",type:ControlType.String},bee07MbGZ:{defaultValue:\"Enjoy a fast and responsive calendar experience, ensuring you can quickly navigate and manage your schedule.\",displayTextArea:false,title:\"Description\",type:ControlType.String}});addFonts(FramerKOuY8BlhQ,[{explicitInter:true,fonts:[{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npST3-QfwmS0v3_7Y.woff2\",weight:\"500\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-QfwmS0v3_7Y.woff2\",weight:\"400\"}]},...HeroFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKOuY8BlhQ\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"pbh9ZnBRX\\\":\\\"icon\\\",\\\"mdRy55VrV\\\":\\\"title\\\",\\\"bee07MbGZ\\\":\\\"description\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"McYfkqc2j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mKVDpoI1S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"300\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"155.5\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KOuY8BlhQ.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"T9O5n_wQn\",\"Nd1NxKIIV\",\"CPDbofMH3\",\"peObttf35\"];const serializationHash=\"framer-Ec033\";const variantClassNames={CPDbofMH3:\"framer-v-1eddmp\",Nd1NxKIIV:\"framer-v-f78i7e\",peObttf35:\"framer-v-1lc3oa\",T9O5n_wQn:\"framer-v-81x0x2\"};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={\"mobile closed\":\"CPDbofMH3\",\"mobile open\":\"peObttf35\",Closed:\"T9O5n_wQn\",Open:\"Nd1NxKIIV\"};const getProps=({content,height,id,title,width,...props})=>{return{...props,aU1_lXl6h:content??props.aU1_lXl6h??\"A waitlist template is a pre-designed webpage where users can sign up to join a waitlist for your product or service.\",pNqA5B2sU:title??props.pNqA5B2sU??\"What is a waitlist template?\",variant:humanReadableVariantMap[props.variant]??props.variant??\"T9O5n_wQn\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,pNqA5B2sU,aU1_lXl6h,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"T9O5n_wQn\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap154cw9p=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"Nd1NxKIIV\");});const onTap1pq907v=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"T9O5n_wQn\");});const onTap1tlvu6=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"peObttf35\");});const onTapaxq1l8=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"CPDbofMH3\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"CPDbofMH3\")return false;return true;};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-81x0x2\",className,classNames),\"data-framer-name\":\"Closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"T9O5n_wQn\",onTap:onTap154cw9p,ref:refBinding,style:{backgroundColor:\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(244, 244, 245))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},variants:{Nd1NxKIIV:{backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\"}},...addPropertyOverrides({CPDbofMH3:{\"data-framer-name\":\"mobile closed\",onTap:onTap1tlvu6},Nd1NxKIIV:{\"data-framer-name\":\"Open\",onTap:onTap1pq907v},peObttf35:{\"data-framer-name\":\"mobile open\",onTap:onTapaxq1l8}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4lhm8e\",\"data-framer-name\":\"question\",layoutDependency:layoutDependency,layoutId:\"uxB0o32tH\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e4701bb6-83f6-41e5-b0c8-9b95b4510e3a, rgb(63, 63, 70)))\"},children:\"What is a waitlist template?\"})}),className:\"framer-1hmw3ii\",\"data-framer-name\":\"Title\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"NXRptAnfD\",style:{\"--extracted-r6o4lv\":\"var(--token-e4701bb6-83f6-41e5-b0c8-9b95b4510e3a, rgb(63, 63, 70))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:pNqA5B2sU,variants:{CPDbofMH3:{\"--extracted-r6o4lv\":\"var(--token-e6a1425f-5cc8-4e16-87a5-8615ab8b8fe1, rgb(82, 82, 91))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CPDbofMH3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e6a1425f-5cc8-4e16-87a5-8615ab8b8fe1, rgb(82, 82, 91)))\"},children:\"What is a waitlist template?\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13wcecp\",\"data-framer-name\":\"Close\",layoutDependency:layoutDependency,layoutId:\"zBa9PKhTf\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11e1dr0\",\"data-framer-name\":\"container\",layoutDependency:layoutDependency,layoutId:\"OcW8pJTk7\",style:{rotate:0},variants:{CPDbofMH3:{rotate:0},Nd1NxKIIV:{rotate:-180},peObttf35:{rotate:-180}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18al0-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"f9oHGxCmO-container\",nodeId:\"f9oHGxCmO\",rendersWithMotion:true,scopeId:\"DUlFvND5j\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-b459e046-718c-4dbb-8c34-b5d5869d1e57, rgb(39, 39, 42))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretDown\",id:\"f9oHGxCmO\",layoutId:\"f9oHGxCmO\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({CPDbofMH3:{color:\"var(--token-e6a1425f-5cc8-4e16-87a5-8615ab8b8fe1, rgb(82, 82, 91))\"}},baseVariant,gestureVariant)})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e4701bb6-83f6-41e5-b0c8-9b95b4510e3a, rgb(63, 63, 70)))\"},children:\"A waitlist template is a pre-designed webpage where users can sign up to join a waitlist for your product or service.\"})}),className:\"framer-1w1penv\",\"data-framer-name\":\"Content\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"KzVEjDR2D\",style:{\"--extracted-r6o4lv\":\"var(--token-e4701bb6-83f6-41e5-b0c8-9b95b4510e3a, rgb(63, 63, 70))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",filter:\"blur(5px)\",opacity:0,WebkitFilter:\"blur(5px)\"},text:aU1_lXl6h,variants:{Nd1NxKIIV:{\"--extracted-r6o4lv\":\"var(--token-e6a1425f-5cc8-4e16-87a5-8615ab8b8fe1, rgb(82, 82, 91))\",filter:\"blur(0px)\",opacity:.6,WebkitFilter:\"blur(0px)\"},peObttf35:{\"--extracted-r6o4lv\":\"var(--token-e6a1425f-5cc8-4e16-87a5-8615ab8b8fe1, rgb(82, 82, 91))\",filter:\"blur(0px)\",opacity:.6,WebkitFilter:\"blur(0px)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Nd1NxKIIV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e6a1425f-5cc8-4e16-87a5-8615ab8b8fe1, rgb(82, 82, 91)))\"},children:\"A waitlist template is a pre-designed webpage where users can sign up to join a waitlist for your product or service.\"})})},peObttf35:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e6a1425f-5cc8-4e16-87a5-8615ab8b8fe1, rgb(82, 82, 91)))\"},children:\"A waitlist template is a pre-designed webpage where users can sign up to join a waitlist for your product or service.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2pix49\",\"data-framer-name\":\"Light\",layoutDependency:layoutDependency,layoutId:\"ELfb8Rz3a\",style:{background:\"radial-gradient(50% 50% at 7.199999999999999% 6.1%, var(--token-5e357ad1-f56a-4886-be0b-ea13c633f85c, rgba(184, 199, 217, 0.5)) 0%, rgba(4, 7, 13, 0) 100%)\",opacity:.1}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ec033.framer-sew9yl, .framer-Ec033 .framer-sew9yl { display: block; }\",\".framer-Ec033.framer-81x0x2 { cursor: pointer; gap: 8px; height: 48px; overflow: hidden; position: relative; width: 467px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Ec033 .framer-4lhm8e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 16px; overflow: hidden; padding: 0px; position: absolute; right: 16px; top: 12px; }\",\".framer-Ec033 .framer-1hmw3ii { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Ec033 .framer-13wcecp { flex: none; height: 20px; overflow: hidden; position: relative; width: 20px; }\",\".framer-Ec033 .framer-11e1dr0 { flex: none; height: 20px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 20px; }\",\".framer-Ec033 .framer-18al0-container { flex: none; height: 20px; left: calc(50.00000000000002% - 20px / 2); position: absolute; top: calc(50.00000000000002% - 20px / 2); width: 20px; }\",\".framer-Ec033 .framer-1w1penv { -webkit-user-select: none; flex: none; height: auto; left: 16px; position: absolute; right: 16px; top: 44px; user-select: none; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-Ec033 .framer-2pix49 { -webkit-user-select: none; flex: none; height: 306px; left: 0px; overflow: hidden; pointer-events: none; position: absolute; top: 0px; user-select: none; width: 437px; z-index: 1; }\",\".framer-Ec033.framer-v-f78i7e.framer-81x0x2 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: center; padding: 12px 16px 12px 16px; }\",\".framer-Ec033.framer-v-f78i7e .framer-4lhm8e, .framer-Ec033.framer-v-f78i7e .framer-1w1penv, .framer-Ec033.framer-v-1eddmp .framer-4lhm8e, .framer-Ec033.framer-v-1lc3oa .framer-4lhm8e, .framer-Ec033.framer-v-1lc3oa .framer-1w1penv { left: unset; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-Ec033.framer-v-1eddmp.framer-81x0x2, .framer-Ec033.framer-v-1lc3oa.framer-81x0x2 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: center; padding: 12px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 467\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Nd1NxKIIV\":{\"layout\":[\"fixed\",\"auto\"]},\"CPDbofMH3\":{\"layout\":[\"fixed\",\"auto\"]},\"peObttf35\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"pNqA5B2sU\":\"title\",\"aU1_lXl6h\":\"content\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerDUlFvND5j=withCSS(Component,css,\"framer-Ec033\");export default FramerDUlFvND5j;FramerDUlFvND5j.displayName=\"Elements/FAQ Item\";FramerDUlFvND5j.defaultProps={height:48,width:467};addPropertyControls(FramerDUlFvND5j,{variant:{options:[\"T9O5n_wQn\",\"Nd1NxKIIV\",\"CPDbofMH3\",\"peObttf35\"],optionTitles:[\"Closed\",\"Open\",\"mobile closed\",\"mobile open\"],title:\"Variant\",type:ControlType.Enum},pNqA5B2sU:{defaultValue:\"What is a waitlist template?\",displayTextArea:false,title:\"Title\",type:ControlType.String},aU1_lXl6h:{defaultValue:\"A waitlist template is a pre-designed webpage where users can sign up to join a waitlist for your product or service.\",displayTextArea:true,title:\"Content\",type:ControlType.String}});addFonts(FramerDUlFvND5j,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDUlFvND5j\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"467\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"pNqA5B2sU\\\":\\\"title\\\",\\\"aU1_lXl6h\\\":\\\"content\\\"}\",\"framerIntrinsicHeight\":\"48\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Nd1NxKIIV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CPDbofMH3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"peObttf35\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DUlFvND5j.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ElementsFAQItem from\"https://framerusercontent.com/modules/f8eXtjBlTm62T1WvdFr4/IQ4OIyUKOCJFoMZKA06C/DUlFvND5j.js\";const ElementsFAQItemFonts=getFonts(ElementsFAQItem);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"OkXIL1oue\",\"z1En_L8Cd\"];const serializationHash=\"framer-W9OBf\";const variantClassNames={OkXIL1oue:\"framer-v-1kpvu6o\",z1En_L8Cd:\"framer-v-37ptfa\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:60};const transition1={damping:60,delay:.7,mass:1,stiffness:320,type:\"spring\"};const transition2={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={mobile:\"z1En_L8Cd\",primary:\"OkXIL1oue\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"OkXIL1oue\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OkXIL1oue\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-1kpvu6o\",className,classNames),\"data-framer-name\":\"primary\",layoutDependency:layoutDependency,layoutId:\"OkXIL1oue\",ref:refBinding,style:{...style},...addPropertyOverrides({z1En_L8Cd:{\"data-framer-name\":\"mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||697.5)-0-560)/2+0+0),...addPropertyOverrides({z1En_L8Cd:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||561.5)-0-560)/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1t4c8l7-container\",layoutDependency:layoutDependency,layoutId:\"ZhSc_Tsf4-container\",nodeId:\"ZhSc_Tsf4\",rendersWithMotion:true,scopeId:\"dyGX1kn2s\",children:/*#__PURE__*/_jsx(ElementsFAQItem,{aU1_lXl6h:\"To be taken seriously. Whether it\u2019s for funding, websites, freelance projects,  festivals, or clients \u2014 a clean, professional website makes your work visible, credible, and memorable.\\n\\n\",height:\"100%\",id:\"ZhSc_Tsf4\",layoutId:\"ZhSc_Tsf4\",pNqA5B2sU:\"Who is Digisell for?\",style:{width:\"100%\"},variant:\"Nd1NxKIIV\",width:\"100%\",...addPropertyOverrides({z1En_L8Cd:{variant:\"CPDbofMH3\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||697.5)-0-560)/2+48+16),...addPropertyOverrides({z1En_L8Cd:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||561.5)-0-560)/2+48+16)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1q871js-container\",layoutDependency:layoutDependency,layoutId:\"cAanTJN9v-container\",nodeId:\"cAanTJN9v\",rendersWithMotion:true,scopeId:\"dyGX1kn2s\",children:/*#__PURE__*/_jsx(ElementsFAQItem,{aU1_lXl6h:\"Not at all. If you can write a Google Doc, you can build a website with Digisell.\\n\\n\",height:\"100%\",id:\"cAanTJN9v\",layoutId:\"cAanTJN9v\",pNqA5B2sU:\"Do I need to know how to code to use Digisell?\",style:{width:\"100%\"},variant:\"T9O5n_wQn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||697.5)-0-560)/2+96+32),...addPropertyOverrides({z1En_L8Cd:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||561.5)-0-560)/2+96+32)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qrd963-container\",layoutDependency:layoutDependency,layoutId:\"rp59r6q9V-container\",nodeId:\"rp59r6q9V\",rendersWithMotion:true,scopeId:\"dyGX1kn2s\",children:/*#__PURE__*/_jsx(ElementsFAQItem,{aU1_lXl6h:\"You can launch a fully functional portfolio in under 5 hours \u2014 many filmmakers do it in under 1.\\n\\n\",height:\"100%\",id:\"rp59r6q9V\",layoutId:\"rp59r6q9V\",pNqA5B2sU:\"How long does it take to launch a site?\",style:{width:\"100%\"},variant:\"T9O5n_wQn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||697.5)-0-560)/2+144+48),...addPropertyOverrides({z1En_L8Cd:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||561.5)-0-560)/2+144+48)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kys761-container\",layoutDependency:layoutDependency,layoutId:\"myqWe0EGr-container\",nodeId:\"myqWe0EGr\",rendersWithMotion:true,scopeId:\"dyGX1kn2s\",children:/*#__PURE__*/_jsx(ElementsFAQItem,{aU1_lXl6h:\"Nope. You can also create landing pages for your films and photography, sell digital products, showcase your process, or build a client services site.\\n\\n\",height:\"100%\",id:\"myqWe0EGr\",layoutId:\"myqWe0EGr\",pNqA5B2sU:\"Is Digisell just for portfolios?\",style:{width:\"100%\"},variant:\"T9O5n_wQn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||697.5)-0-560)/2+192+64),...addPropertyOverrides({z1En_L8Cd:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||561.5)-0-560)/2+192+64)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1w82dmm-container\",layoutDependency:layoutDependency,layoutId:\"B0wNq4ZyF-container\",nodeId:\"B0wNq4ZyF\",rendersWithMotion:true,scopeId:\"dyGX1kn2s\",children:/*#__PURE__*/_jsx(ElementsFAQItem,{aU1_lXl6h:\"Yes! Connect your custom domain in just a few clicks.\\n\\n\",height:\"100%\",id:\"B0wNq4ZyF\",layoutId:\"B0wNq4ZyF\",pNqA5B2sU:\"Can I use my own domain name?\",style:{width:\"100%\"},variant:\"T9O5n_wQn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||697.5)-0-560)/2+240+80),...addPropertyOverrides({z1En_L8Cd:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||561.5)-0-560)/2+240+80)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-147tg3y-container\",layoutDependency:layoutDependency,layoutId:\"uHOgHOuth-container\",nodeId:\"uHOgHOuth\",rendersWithMotion:true,scopeId:\"dyGX1kn2s\",children:/*#__PURE__*/_jsx(ElementsFAQItem,{aU1_lXl6h:\"Digisell is built specifically for creatives. It\u2019s faster to use, cheaper long-term, and tailored to help you get work \u2014 not just build pages.\\n\\n\",height:\"100%\",id:\"uHOgHOuth\",layoutId:\"uHOgHOuth\",pNqA5B2sU:\"How is Digisell different from Squarespace or Wix?\",style:{width:\"100%\"},variant:\"T9O5n_wQn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||697.5)-0-560)/2+288+96),...addPropertyOverrides({z1En_L8Cd:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||561.5)-0-560)/2+288+96)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ckfgd3-container\",layoutDependency:layoutDependency,layoutId:\"FwbwW36GE-container\",nodeId:\"FwbwW36GE\",rendersWithMotion:true,scopeId:\"dyGX1kn2s\",children:/*#__PURE__*/_jsx(ElementsFAQItem,{aU1_lXl6h:\"Absolutely. Add a shop section and start selling digital downloads, services, or events within minutes. Connect your checkout from Lemonsqueezy and you're set.\",height:\"100%\",id:\"FwbwW36GE\",layoutId:\"FwbwW36GE\",pNqA5B2sU:\"Can I sell through Digisell?\",style:{width:\"100%\"},variant:\"T9O5n_wQn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||697.5)-0-560)/2+336+112),...addPropertyOverrides({z1En_L8Cd:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||561.5)-0-560)/2+336+112)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1b062sz-container\",layoutDependency:layoutDependency,layoutId:\"QpgDFaVAi-container\",nodeId:\"QpgDFaVAi\",rendersWithMotion:true,scopeId:\"dyGX1kn2s\",children:/*#__PURE__*/_jsx(ElementsFAQItem,{aU1_lXl6h:\"Personal portfolios, film project showcases, wedding showcases, client galleries, webshop,  digital product site, blog and more.\",height:\"100%\",id:\"QpgDFaVAi\",layoutId:\"QpgDFaVAi\",pNqA5B2sU:\"What can I build?\",style:{width:\"100%\"},variant:\"T9O5n_wQn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||697.5)-0-560)/2+384+128),...addPropertyOverrides({z1En_L8Cd:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||561.5)-0-560)/2+384+128)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1arseln-container\",layoutDependency:layoutDependency,layoutId:\"QkEbM7lzi-container\",nodeId:\"QkEbM7lzi\",rendersWithMotion:true,scopeId:\"dyGX1kn2s\",children:/*#__PURE__*/_jsx(ElementsFAQItem,{aU1_lXl6h:\"Our help center and creative-focused support team are here to guide you \u2014 or you can request a walkthrough anytime.\\n\\n\",height:\"100%\",id:\"QkEbM7lzi\",layoutId:\"QkEbM7lzi\",pNqA5B2sU:\"What if I get stuck?\",style:{width:\"100%\"},variant:\"T9O5n_wQn\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-W9OBf.framer-18xbbkx, .framer-W9OBf .framer-18xbbkx { display: block; }\",\".framer-W9OBf.framer-1kpvu6o { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 467px; }\",\".framer-W9OBf .framer-1t4c8l7-container, .framer-W9OBf .framer-1q871js-container, .framer-W9OBf .framer-1qrd963-container, .framer-W9OBf .framer-1kys761-container, .framer-W9OBf .framer-1w82dmm-container, .framer-W9OBf .framer-147tg3y-container, .framer-W9OBf .framer-1ckfgd3-container, .framer-W9OBf .framer-1b062sz-container, .framer-W9OBf .framer-1arseln-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-W9OBf.framer-v-37ptfa .framer-1t4c8l7-container { order: 0; }\",\".framer-W9OBf.framer-v-37ptfa .framer-1q871js-container { order: 1; }\",\".framer-W9OBf.framer-v-37ptfa .framer-1qrd963-container { order: 2; }\",\".framer-W9OBf.framer-v-37ptfa .framer-1kys761-container { order: 3; }\",\".framer-W9OBf.framer-v-37ptfa .framer-1w82dmm-container { order: 4; }\",\".framer-W9OBf.framer-v-37ptfa .framer-147tg3y-container { order: 5; }\",\".framer-W9OBf.framer-v-37ptfa .framer-1ckfgd3-container { order: 6; }\",\".framer-W9OBf.framer-v-37ptfa .framer-1b062sz-container { order: 7; }\",\".framer-W9OBf.framer-v-37ptfa .framer-1arseln-container { order: 8; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 697.5\n * @framerIntrinsicWidth 467\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"z1En_L8Cd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerdyGX1kn2s=withCSS(Component,css,\"framer-W9OBf\");export default FramerdyGX1kn2s;FramerdyGX1kn2s.displayName=\"Cards/FAQ\";FramerdyGX1kn2s.defaultProps={height:697.5,width:467};addPropertyControls(FramerdyGX1kn2s,{variant:{options:[\"OkXIL1oue\",\"z1En_L8Cd\"],optionTitles:[\"primary\",\"mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerdyGX1kn2s,[{explicitInter:true,fonts:[]},...ElementsFAQItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdyGX1kn2s\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"z1En_L8Cd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"697.5\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"467\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dyGX1kn2s.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const enabledGestures={KmYmRTi3n:{hover:true},wobaQfctw:{hover:true}};const cycleOrder=[\"KmYmRTi3n\",\"wobaQfctw\",\"v9tLoCLW4\",\"uDms5lGKe\"];const serializationHash=\"framer-yvxJn\";const variantClassNames={KmYmRTi3n:\"framer-v-wxztvl\",uDms5lGKe:\"framer-v-xbf8f3\",v9tLoCLW4:\"framer-v-1il7c9\",wobaQfctw:\"framer-v-2d0rc9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"desktop icon left\":\"KmYmRTi3n\",\"desktop icon right\":\"wobaQfctw\",\"mobile with icon\":\"v9tLoCLW4\",\"mobile without icon\":\"uDms5lGKe\"};const getProps=({height,icon,id,link,newTab,text,width,...props})=>{return{...props,Ou2Q7KKjz:newTab??props.Ou2Q7KKjz??true,QLeYG_zlf:icon??props.QLeYG_zlf??\"XLogo\",tIpm2Fclc:text??props.tIpm2Fclc??\"Remix for free\",vabCwIWAm:link??props.vabCwIWAm,variant:humanReadableVariantMap[props.variant]??props.variant??\"KmYmRTi3n\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,vabCwIWAm,QLeYG_zlf,tIpm2Fclc,Ou2Q7KKjz,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KmYmRTi3n\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"uDms5lGKe\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:vabCwIWAm,motionChild:true,nodeId:\"KmYmRTi3n\",openInNewTab:Ou2Q7KKjz,scopeId:\"UdPuD1X3B\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-wxztvl\",className,classNames)} framer-cwu74n`,\"data-border\":true,\"data-framer-name\":\"desktop icon left\",layoutDependency:layoutDependency,layoutId:\"KmYmRTi3n\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-5970a3c6-0f13-482e-8fb6-b8cb7d627b04, rgba(216, 231, 242, 0.07))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(5px)\",backgroundColor:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,WebkitBackdropFilter:\"blur(5px)\",...style},...addPropertyOverrides({\"KmYmRTi3n-hover\":{\"data-framer-name\":undefined},\"wobaQfctw-hover\":{\"data-framer-name\":undefined},uDms5lGKe:{\"data-framer-name\":\"mobile without icon\"},v9tLoCLW4:{\"data-framer-name\":\"mobile with icon\"},wobaQfctw:{\"data-framer-name\":\"desktop icon right\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2mviph-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"pQnYclkg8-container\",nodeId:\"pQnYclkg8\",rendersWithMotion:true,scopeId:\"UdPuD1X3B\",style:{opacity:.8},variants:{\"KmYmRTi3n-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-60b32788-cdeb-41df-ba14-e212d5e544dd, rgb(161, 161, 170))\",height:\"100%\",iconSearch:\"House\",iconSelection:QLeYG_zlf,id:\"pQnYclkg8\",layoutId:\"pQnYclkg8\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250)))\"},children:\"Remix for free\"})}),className:\"framer-6xr6cd\",\"data-framer-name\":\"Label\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"fFNzIfpGG\",style:{\"--extracted-r6o4lv\":\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.8},text:tIpm2Fclc,variants:{\"KmYmRTi3n-hover\":{opacity:1},\"wobaQfctw-hover\":{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yvxJn.framer-cwu74n, .framer-yvxJn .framer-cwu74n { display: block; }\",\".framer-yvxJn.framer-wxztvl { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 20px 8px 20px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-yvxJn .framer-2mviph-container { flex: none; height: 20px; position: relative; width: 18px; }\",\".framer-yvxJn .framer-6xr6cd { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-yvxJn.framer-v-2d0rc9 .framer-2mviph-container { order: 1; }\",\".framer-yvxJn.framer-v-2d0rc9 .framer-6xr6cd { order: 0; }\",'.framer-yvxJn[data-border=\"true\"]::after, .framer-yvxJn [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 38\n * @framerIntrinsicWidth 156\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"wobaQfctw\":{\"layout\":[\"auto\",\"auto\"]},\"v9tLoCLW4\":{\"layout\":[\"auto\",\"auto\"]},\"uDms5lGKe\":{\"layout\":[\"auto\",\"auto\"]},\"D2CqJLFzR\":{\"layout\":[\"auto\",\"auto\"]},\"NcLySg_7N\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"vabCwIWAm\":\"link\",\"QLeYG_zlf\":\"icon\",\"tIpm2Fclc\":\"text\",\"Ou2Q7KKjz\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerUdPuD1X3B=withCSS(Component,css,\"framer-yvxJn\");export default FramerUdPuD1X3B;FramerUdPuD1X3B.displayName=\"secondary button\";FramerUdPuD1X3B.defaultProps={height:38,width:156};addPropertyControls(FramerUdPuD1X3B,{variant:{options:[\"KmYmRTi3n\",\"wobaQfctw\",\"v9tLoCLW4\",\"uDms5lGKe\"],optionTitles:[\"desktop icon left\",\"desktop icon right\",\"mobile with icon\",\"mobile without icon\"],title:\"Variant\",type:ControlType.Enum},vabCwIWAm:{title:\"Link\",type:ControlType.Link},QLeYG_zlf:PhosphorControls?.[\"iconSelection\"]&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"XLogo\",description:undefined,hidden:undefined,title:\"icon\"},tIpm2Fclc:{defaultValue:\"Remix for free\",displayTextArea:false,title:\"text\",type:ControlType.String},Ou2Q7KKjz:{defaultValue:true,title:\"New Tab\",type:ControlType.Boolean}});addFonts(FramerUdPuD1X3B,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUdPuD1X3B\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"wobaQfctw\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"v9tLoCLW4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uDms5lGKe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"D2CqJLFzR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"NcLySg_7N\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"vabCwIWAm\\\":\\\"link\\\",\\\"QLeYG_zlf\\\":\\\"icon\\\",\\\"tIpm2Fclc\\\":\\\"text\\\",\\\"Ou2Q7KKjz\\\":\\\"newTab\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"156\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"38\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UdPuD1X3B.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/6vfJpOjlt9Av0jHpc5Mq/8QdMeYFWKsbYj8KCbnqK/vlUd825be.js\";import CardsFAQ from\"https://framerusercontent.com/modules/PwB9L2rsVV6J9QFMHm4I/uVLSVdX9krtXWxOUstO5/dyGX1kn2s.js\";import SecondaryButton from\"https://framerusercontent.com/modules/TFVabtAnyEVA8YiYaMQb/dgI62Dfa155W39Wy7PFO/UdPuD1X3B.js\";const RichTextWithFX=withFX(RichText);const PhosphorFonts=getFonts(Phosphor);const SecondaryButtonFonts=getFonts(SecondaryButton);const MotionDivWithFX=withFX(motion.div);const CardsFAQFonts=getFonts(CardsFAQ);const cycleOrder=[\"VhcnYpIAX\",\"QDwIPHy6j\",\"mpCktCLFW\"];const serializationHash=\"framer-dC7h6\";const variantClassNames={mpCktCLFW:\"framer-v-mw7ivn\",QDwIPHy6j:\"framer-v-7s5lkq\",VhcnYpIAX:\"framer-v-an7q85\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:60};const transition2={damping:60,delay:.4,mass:1,stiffness:320,type:\"spring\"};const transition3={damping:60,delay:.5,mass:1,stiffness:320,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:60};const transition4={damping:60,delay:.6,mass:1,stiffness:320,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={Desktop:\"VhcnYpIAX\",Phone:\"mpCktCLFW\",Tablet:\"QDwIPHy6j\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"VhcnYpIAX\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"VhcnYpIAX\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.section,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-an7q85\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"VhcnYpIAX\",ref:refBinding,style:{backgroundColor:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",...style},...addPropertyOverrides({mpCktCLFW:{\"data-framer-name\":\"Phone\"},QDwIPHy6j:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2txm1g\",\"data-framer-name\":\"container\",layoutDependency:layoutDependency,layoutId:\"uDxdO1not\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vhxpxw\",\"data-framer-name\":\"heading\",layoutDependency:layoutDependency,layoutId:\"sO8mxA0wW\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1nqpcik\",\"data-styles-preset\":\"vlUd825be\",style:{\"--framer-text-alignment\":\"center\"},children:\"Still Wondering?\"})}),className:\"framer-1ctwpfd\",\"data-framer-name\":\"An Exclusive Community for lead generation experts\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"c2cwcMZvI\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mpCktCLFW:{__framer__styleAppearEffectEnabled:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f195ea74-7512-4096-8d91-0e7c7e10d0ab, rgba(255, 255, 255, 0.6)))\"},children:\"Find quick answers to the most common questions about our platform\"})}),className:\"framer-si9dyn\",\"data-framer-name\":\"Lead Academy is an academy & community dedicated for lead generation experts & students to share information & grow through collaborative efforts.\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"Vfs4ikWMR\",style:{\"--extracted-r6o4lv\":\"var(--token-f195ea74-7512-4096-8d91-0e7c7e10d0ab, rgba(255, 255, 255, 0.6))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mpCktCLFW:{__framer__styleAppearEffectEnabled:undefined}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uad2rb\",\"data-framer-name\":\"section\",layoutDependency:layoutDependency,layoutId:\"Pf6EljP68\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1iq5u0j\",\"data-border\":true,\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"v6vqcLfE9\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,transformPerspective:1200},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mbx0hv\",\"data-framer-name\":\"Icon container\",layoutDependency:layoutDependency,layoutId:\"Q2ovF8J41\",style:{backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"inset 0px 1px 1px 0px rgba(207, 231, 255, 0.2)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dusd6g-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"bx29FBJbk-container\",nodeId:\"bx29FBJbk\",rendersWithMotion:true,scopeId:\"PXT_8Wkmb\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Question\",id:\"bx29FBJbk\",layoutId:\"bx29FBJbk\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gafcu9\",\"data-framer-name\":\"Text Container\",layoutDependency:layoutDependency,layoutId:\"dGfKIDy9o\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11)))\"},children:\"Still Have Questions?\"})}),className:\"framer-qaqmbh\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"MBgWwZvAP\",style:{\"--extracted-r6o4lv\":\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e4701bb6-83f6-41e5-b0c8-9b95b4510e3a, rgb(63, 63, 70)))\"},children:\"Still have questions? Feel free to get in touch with us today!\"})}),className:\"framer-15z3qex\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"YMVmObl8X\",style:{\"--extracted-r6o4lv\":\"var(--token-e4701bb6-83f6-41e5-b0c8-9b95b4510e3a, rgb(63, 63, 70))\",opacity:.6},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,y:(componentViewport?.y||0)+100+(((componentViewport?.height||1019)-200-946.2)/2+0+0)+0+249.2+0+20+346,...addPropertyOverrides({mpCktCLFW:{y:(componentViewport?.y||0)+80+(((componentViewport?.height||1216)-160-1402.2)/2+0+0)+0+249.2+0+0+20+346},QDwIPHy6j:{y:(componentViewport?.y||0)+100+(((componentViewport?.height||1044.5)-200-946.2)/2+0+0)+0+249.2+0+20+346}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qqxsgn-container\",layoutDependency:layoutDependency,layoutId:\"EuXTi7HOS-container\",nodeId:\"EuXTi7HOS\",rendersWithMotion:true,scopeId:\"PXT_8Wkmb\",children:/*#__PURE__*/_jsx(SecondaryButton,{height:\"100%\",id:\"EuXTi7HOS\",layoutId:\"EuXTi7HOS\",Ou2Q7KKjz:true,QLeYG_zlf:\"ArrowUpRight\",tIpm2Fclc:\"Join our discord\",vabCwIWAm:\"https://discord.gg/pCMZdyVQ\",variant:\"KmYmRTi3n\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nk9wk3\",\"data-framer-name\":\"Light\",layoutDependency:layoutDependency,layoutId:\"kmoSbGHam\",style:{background:\"radial-gradient(50% 50% at 93.7% 8.1%, var(--token-5e357ad1-f56a-4886-be0b-ea13c633f85c, rgba(184, 199, 217, 0.5)) 0%, rgba(4, 7, 13, 0) 100%)\",opacity:.1}})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:697,width:`min(max((min(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px), 1000px) - 32px) / 1.5, 1px), 600px)`,y:(componentViewport?.y||0)+100+(((componentViewport?.height||1019)-200-946.2)/2+0+0)+0+249.2+0,...addPropertyOverrides({mpCktCLFW:{width:`min(min(min(${componentViewport?.width||\"100vw\"} - 36px, 1200px), 1000px), 600px)`,y:(componentViewport?.y||0)+80+(((componentViewport?.height||1216)-160-1402.2)/2+0+0)+0+249.2+0+456},QDwIPHy6j:{y:(componentViewport?.y||0)+100+(((componentViewport?.height||1044.5)-200-946.2)/2+0+0)+0+249.2+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-o05iv5-container\",\"data-framer-name\":\"FAQs\",layoutDependency:layoutDependency,layoutId:\"WPa3thVyE-container\",name:\"FAQs\",nodeId:\"WPa3thVyE\",rendersWithMotion:true,scopeId:\"PXT_8Wkmb\",children:/*#__PURE__*/_jsx(CardsFAQ,{height:\"100%\",id:\"WPa3thVyE\",layoutId:\"WPa3thVyE\",name:\"FAQs\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"OkXIL1oue\",width:\"100%\",...addPropertyOverrides({mpCktCLFW:{variant:\"z1En_L8Cd\"}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hhpxok\",\"data-framer-name\":\"bg shape\",layoutDependency:layoutDependency,layoutId:\"U3aLOJcnG\",style:{background:\"radial-gradient(50% 50% at 50% 50%, var(--token-98e77689-c0ed-4bec-a0a3-e86d11b001fb, rgba(213, 219, 230, 0.7)) 0%, rgba(4, 7, 13, 0) 100%)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:.1,rotate:-13}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dC7h6.framer-1atwyjw, .framer-dC7h6 .framer-1atwyjw { display: block; }\",\".framer-dC7h6.framer-an7q85 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 1200px; }\",\".framer-dC7h6 .framer-2txm1g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-dC7h6 .framer-1vhxpxw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 640px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-dC7h6 .framer-1ctwpfd { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-dC7h6 .framer-si9dyn, .framer-dC7h6 .framer-qaqmbh, .framer-dC7h6 .framer-15z3qex { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dC7h6 .framer-1uad2rb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dC7h6 .framer-1iq5u0j { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 600px; overflow: hidden; padding: 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-dC7h6 .framer-1mbx0hv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 12px; position: relative; width: min-content; }\",\".framer-dC7h6 .framer-1dusd6g-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-dC7h6 .framer-gafcu9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dC7h6 .framer-1qqxsgn-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-dC7h6 .framer-nk9wk3 { -webkit-user-select: none; flex: none; height: 306px; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 0px; user-select: none; width: 437px; z-index: 1; }\",\".framer-dC7h6 .framer-o05iv5-container { flex: 2 0 0px; height: auto; max-width: 600px; position: relative; width: 1px; }\",\".framer-dC7h6 .framer-hhpxok { bottom: -249px; flex: none; height: 499px; left: calc(50.00000000000002% - 793px / 2); pointer-events: none; position: absolute; width: 793px; z-index: 1; }\",\".framer-dC7h6.framer-v-7s5lkq.framer-an7q85 { width: 810px; }\",\".framer-dC7h6.framer-v-mw7ivn.framer-an7q85 { padding: 80px 18px 80px 18px; width: 390px; }\",\".framer-dC7h6.framer-v-mw7ivn .framer-1uad2rb { align-content: center; align-items: center; flex-direction: column; }\",\".framer-dC7h6.framer-v-mw7ivn .framer-1iq5u0j, .framer-dC7h6.framer-v-mw7ivn .framer-o05iv5-container { flex: none; width: 100%; }\",...sharedStyle.css,'.framer-dC7h6[data-border=\"true\"]::after, .framer-dC7h6 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1019\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QDwIPHy6j\":{\"layout\":[\"fixed\",\"auto\"]},\"mpCktCLFW\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerPXT_8Wkmb=withCSS(Component,css,\"framer-dC7h6\");export default FramerPXT_8Wkmb;FramerPXT_8Wkmb.displayName=\"FAQ'S\";FramerPXT_8Wkmb.defaultProps={height:1019,width:1200};addPropertyControls(FramerPXT_8Wkmb,{variant:{options:[\"VhcnYpIAX\",\"QDwIPHy6j\",\"mpCktCLFW\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerPXT_8Wkmb,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...PhosphorFonts,...SecondaryButtonFonts,...CardsFAQFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPXT_8Wkmb\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"1019\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QDwIPHy6j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mpCktCLFW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PXT_8Wkmb.map", "// Generated by Framer (98479f1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-UJK9Z\";const variantClassNames={cSvve0d1t:\"framer-v-8hqgwi\"};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 getProps=({click,cursor,height,id,width,...props})=>{var _ref;return{...props,gxJEZUNzy:click!==null&&click!==void 0?click:props.gxJEZUNzy,YOLhm3GWr:(_ref=cursor!==null&&cursor!==void 0?cursor:props.YOLhm3GWr)!==null&&_ref!==void 0?_ref:\"e-resize\"};};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,YOLhm3GWr,gxJEZUNzy,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"cSvve0d1t\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1wyaltn=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(gxJEZUNzy){const res=await gxJEZUNzy(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-8hqgwi\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"cSvve0d1t\",onTap:onTap1wyaltn,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--1qzzh3k\":YOLhm3GWr,backgroundColor:\"rgb(255, 255, 255)\",opacity:0,...style}})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UJK9Z.framer-ke95ib, .framer-UJK9Z .framer-ke95ib { display: block; }\",\".framer-UJK9Z.framer-8hqgwi { cursor: var(--1qzzh3k); height: 400px; overflow: visible; position: relative; width: 300px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"YOLhm3GWr\":\"cursor\",\"gxJEZUNzy\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOlbR6PHBH=withCSS(Component,css,\"framer-UJK9Z\");export default FramerOlbR6PHBH;FramerOlbR6PHBH.displayName=\"Arrow\";FramerOlbR6PHBH.defaultProps={height:400,width:300};addPropertyControls(FramerOlbR6PHBH,{YOLhm3GWr:{defaultValue:\"e-resize\",title:\"Cursor\",type:ControlType.Cursor},gxJEZUNzy:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerOlbR6PHBH,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOlbR6PHBH\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"YOLhm3GWr\\\":\\\"cursor\\\",\\\"gxJEZUNzy\\\":\\\"click\\\"}\",\"framerIntrinsicHeight\":\"400\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"300\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OlbR6PHBH.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Arrow from\"https://framerusercontent.com/modules/ILjCJBiNCQodjs39cqId/XTSVzVyVZt8tUS9dDIaC/OlbR6PHBH.js\";const ArrowFonts=getFonts(Arrow);const cycleOrder=[\"Uzf95hXGw\",\"qpzprueob\",\"AFfcLIyXu\",\"jJ_FpkIU8\",\"qkRPFKzpX\",\"e8Z17DWgN\",\"u1R9TkmMq\",\"TlU_XIp58\",\"NSaSopeZa\",\"HQiX6V1C_\",\"p9eQvYD0q\",\"vO0JkeVQe\"];const serializationHash=\"framer-BzSWs\";const variantClassNames={AFfcLIyXu:\"framer-v-1rz6wag\",e8Z17DWgN:\"framer-v-1nbkk42\",HQiX6V1C_:\"framer-v-18ryarn\",jJ_FpkIU8:\"framer-v-12atc69\",NSaSopeZa:\"framer-v-1npkafe\",p9eQvYD0q:\"framer-v-mi9lpk\",qkRPFKzpX:\"framer-v-woh4fu\",qpzprueob:\"framer-v-1qtny0p\",TlU_XIp58:\"framer-v-eno1ij\",u1R9TkmMq:\"framer-v-lnbvet\",Uzf95hXGw:\"framer-v-1wsqslk\",vO0JkeVQe:\"framer-v-13uek3a\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop 1\":\"Uzf95hXGw\",\"Desktop 2\":\"qpzprueob\",\"Desktop 3\":\"AFfcLIyXu\",\"Desktop 4\":\"jJ_FpkIU8\",\"Desktop 5\":\"qkRPFKzpX\",\"Desktop 6\":\"e8Z17DWgN\",\"Mobile 1\":\"u1R9TkmMq\",\"Mobile 2\":\"TlU_XIp58\",\"Mobile 3\":\"NSaSopeZa\",\"Mobile 4\":\"HQiX6V1C_\",\"Mobile 5\":\"p9eQvYD0q\",\"Mobile 6\":\"vO0JkeVQe\"};const getProps=({height,id,image1,image2,image3,width,...props})=>{return{...props,h1A65e8t5:image1??props.h1A65e8t5??{pixelHeight:800,pixelWidth:1200,src:\"https://framerusercontent.com/images/O9KUN0yROH5MAeTK5T7nx77Fc.png\",srcSet:\"https://framerusercontent.com/images/O9KUN0yROH5MAeTK5T7nx77Fc.png?scale-down-to=512 512w,https://framerusercontent.com/images/O9KUN0yROH5MAeTK5T7nx77Fc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/O9KUN0yROH5MAeTK5T7nx77Fc.png 1200w\"},Nq5jm0Vsw:image2??props.Nq5jm0Vsw??{pixelHeight:800,pixelWidth:1200,src:\"https://framerusercontent.com/images/v25zEdcUKvJeYJWEiFvZfgxI70.png\",srcSet:\"https://framerusercontent.com/images/v25zEdcUKvJeYJWEiFvZfgxI70.png?scale-down-to=512 512w,https://framerusercontent.com/images/v25zEdcUKvJeYJWEiFvZfgxI70.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v25zEdcUKvJeYJWEiFvZfgxI70.png 1200w\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"Uzf95hXGw\",yhP7moxu5:image3??props.yhP7moxu5??{pixelHeight:800,pixelWidth:1200,src:\"https://framerusercontent.com/images/Xwjyy6YkMX3FQDvHA23WNmvHkJc.png\",srcSet:\"https://framerusercontent.com/images/Xwjyy6YkMX3FQDvHA23WNmvHkJc.png?scale-down-to=512 512w,https://framerusercontent.com/images/Xwjyy6YkMX3FQDvHA23WNmvHkJc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xwjyy6YkMX3FQDvHA23WNmvHkJc.png 1200w\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,h1A65e8t5,Nq5jm0Vsw,yhP7moxu5,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Uzf95hXGw\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearwsao90=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"qpzprueob\"),3e3);});const onAppearvpba3y=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"AFfcLIyXu\"),3e3);});const onAppear1qxq2xj=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"jJ_FpkIU8\"),3e3);});const onAppear1dk4dti=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"qkRPFKzpX\"),3e3);});const onAppearbdekxl=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"e8Z17DWgN\"),3e3);});const onAppearfstktj=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Uzf95hXGw\"),3e3);});const onAppearp657on=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"TlU_XIp58\"),3e3);});const onAppear1vi95nd=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"NSaSopeZa\"),3e3);});const onAppear1monpn8=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"HQiX6V1C_\"),3e3);});const onAppear4b8nqa=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"p9eQvYD0q\"),3e3);});const onAppear1ymgw5l=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"vO0JkeVQe\"),3e3);});const onAppear1srp1fi=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"u1R9TkmMq\"),3e3);});const gxJEZUNzyj6xxkw=activeVariantCallback(async(...args)=>{setVariant(\"qpzprueob\");});const gxJEZUNzy14hpwig=activeVariantCallback(async(...args)=>{setVariant(\"AFfcLIyXu\");});const gxJEZUNzyq1qs87=activeVariantCallback(async(...args)=>{setVariant(\"jJ_FpkIU8\");});const gxJEZUNzy1s8g27a=activeVariantCallback(async(...args)=>{setVariant(\"qkRPFKzpX\");});const gxJEZUNzykwg7jh=activeVariantCallback(async(...args)=>{setVariant(\"e8Z17DWgN\");});const gxJEZUNzy1t0j9da=activeVariantCallback(async(...args)=>{setVariant(\"Uzf95hXGw\");});const gxJEZUNzy1drwtkz=activeVariantCallback(async(...args)=>{setVariant(\"TlU_XIp58\");});const gxJEZUNzyx2wd3b=activeVariantCallback(async(...args)=>{setVariant(\"NSaSopeZa\");});const gxJEZUNzyddz9dj=activeVariantCallback(async(...args)=>{setVariant(\"HQiX6V1C_\");});const gxJEZUNzy1pd9ynn=activeVariantCallback(async(...args)=>{setVariant(\"p9eQvYD0q\");});const gxJEZUNzym3ji7v=activeVariantCallback(async(...args)=>{setVariant(\"vO0JkeVQe\");});const gxJEZUNzy105vfhx=activeVariantCallback(async(...args)=>{setVariant(\"u1R9TkmMq\");});useOnVariantChange(baseVariant,{AFfcLIyXu:onAppear1qxq2xj,default:onAppearwsao90,e8Z17DWgN:onAppearfstktj,HQiX6V1C_:onAppear4b8nqa,jJ_FpkIU8:onAppear1dk4dti,NSaSopeZa:onAppear1monpn8,p9eQvYD0q:onAppear1ymgw5l,qkRPFKzpX:onAppearbdekxl,qpzprueob:onAppearvpba3y,TlU_XIp58:onAppear1vi95nd,u1R9TkmMq:onAppearp657on,vO0JkeVQe:onAppear1srp1fi});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1wsqslk\",className,classNames),\"data-framer-name\":\"Desktop 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Uzf95hXGw\",ref:refBinding,style:{...style},...addPropertyOverrides({AFfcLIyXu:{\"data-framer-name\":\"Desktop 3\"},e8Z17DWgN:{\"data-framer-name\":\"Desktop 6\"},HQiX6V1C_:{\"data-framer-name\":\"Mobile 4\"},jJ_FpkIU8:{\"data-framer-name\":\"Desktop 4\"},NSaSopeZa:{\"data-framer-name\":\"Mobile 3\"},p9eQvYD0q:{\"data-framer-name\":\"Mobile 5\"},qkRPFKzpX:{\"data-framer-name\":\"Desktop 5\"},qpzprueob:{\"data-framer-name\":\"Desktop 2\"},TlU_XIp58:{\"data-framer-name\":\"Mobile 2\"},u1R9TkmMq:{\"data-framer-name\":\"Mobile 1\"},vO0JkeVQe:{\"data-framer-name\":\"Mobile 6\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||400)*.5000000000000002-200)),pixelHeight:800,pixelWidth:1200,sizes:\"600px\",...toResponsiveImage(yhP7moxu5)},className:\"framer-1whhflg\",\"data-framer-name\":\"Image 3\",layoutDependency:layoutDependency,layoutId:\"nivxie03W\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,scale:.9},variants:{e8Z17DWgN:{scale:.8},HQiX6V1C_:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:.8},jJ_FpkIU8:{scale:.8},NSaSopeZa:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},p9eQvYD0q:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:.7},qkRPFKzpX:{scale:.7},qpzprueob:{scale:1},TlU_XIp58:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:1},u1R9TkmMq:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},vO0JkeVQe:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:.8}},...addPropertyOverrides({HQiX6V1C_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.414814814814815-92)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.8017)`,...toResponsiveImage(yhP7moxu5)}},NSaSopeZa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.377777777777778-84.5)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(yhP7moxu5)}},p9eQvYD0q:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.45555555555555577-103)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(yhP7moxu5)}},TlU_XIp58:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.3555555555555558-81)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(yhP7moxu5)}},u1R9TkmMq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.3814814814814817-85)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(yhP7moxu5)}},vO0JkeVQe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.41851851851851873-93.5)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(yhP7moxu5)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||400)*.5000000000000002-200)),pixelHeight:800,pixelWidth:1200,sizes:\"600px\",...toResponsiveImage(yhP7moxu5)},className:\"framer-1x6g1ti\",\"data-framer-name\":\"Image 3\",layoutDependency:layoutDependency,layoutId:\"rPlcV6Ipl\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,scale:.8},variants:{e8Z17DWgN:{scale:.9},HQiX6V1C_:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:.9},jJ_FpkIU8:{scale:.9},NSaSopeZa:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},p9eQvYD0q:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:1},qkRPFKzpX:{scale:1},qpzprueob:{scale:.7},TlU_XIp58:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:.7},u1R9TkmMq:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},vO0JkeVQe:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:.9}},...addPropertyOverrides({HQiX6V1C_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.3925925925925928-88.5)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(yhP7moxu5)}},NSaSopeZa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.3925925925925928-96.5)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(yhP7moxu5)}},p9eQvYD0q:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.3851851851851854-89.5)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(yhP7moxu5)}},TlU_XIp58:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.42222222222222244-90)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(yhP7moxu5)}},u1R9TkmMq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.40370370370370395-88)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.8017)`,...toResponsiveImage(yhP7moxu5)}},vO0JkeVQe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.39629629629629654-89.5)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(yhP7moxu5)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||400)*.5000000000000002-200)),pixelHeight:800,pixelWidth:1200,sizes:\"600px\",...toResponsiveImage(Nq5jm0Vsw)},className:\"framer-fmnozc\",\"data-framer-name\":\"Image 2\",layoutDependency:layoutDependency,layoutId:\"RjM8HPuuX\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,scale:.8},variants:{AFfcLIyXu:{scale:1},e8Z17DWgN:{scale:.7},HQiX6V1C_:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:.9},jJ_FpkIU8:{scale:.9},NSaSopeZa:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:1},p9eQvYD0q:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},qpzprueob:{scale:.9},TlU_XIp58:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:.9},u1R9TkmMq:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},vO0JkeVQe:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:.7}},...addPropertyOverrides({HQiX6V1C_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.3925925925925928-88.5)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(Nq5jm0Vsw)}},NSaSopeZa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.3592592592592595-82.5)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(Nq5jm0Vsw)}},p9eQvYD0q:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.43333333333333357-97.5)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.8017)`,...toResponsiveImage(Nq5jm0Vsw)}},TlU_XIp58:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.377777777777778-83)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(Nq5jm0Vsw)}},u1R9TkmMq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.4074074074074076-88)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(Nq5jm0Vsw)}},vO0JkeVQe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.44444444444444464-98)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(Nq5jm0Vsw)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||400)*.5000000000000002-200)),pixelHeight:800,pixelWidth:1200,sizes:\"600px\",...toResponsiveImage(Nq5jm0Vsw)},className:\"framer-1qup9a8\",\"data-framer-name\":\"Image 2\",layoutDependency:layoutDependency,layoutId:\"r8QX5Jfq2\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,scale:.9},variants:{AFfcLIyXu:{scale:.7},e8Z17DWgN:{scale:1},HQiX6V1C_:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:.8},jJ_FpkIU8:{scale:.8},NSaSopeZa:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:.7},p9eQvYD0q:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},qpzprueob:{scale:.8},TlU_XIp58:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:.8},u1R9TkmMq:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},vO0JkeVQe:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:1}},...addPropertyOverrides({HQiX6V1C_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.414814814814815-92)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(Nq5jm0Vsw)}},NSaSopeZa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.43333333333333357-95.5)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(Nq5jm0Vsw)}},p9eQvYD0q:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.4074074074074076-92.5)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(Nq5jm0Vsw)}},TlU_XIp58:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.39629629629629654-86.5)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.8017)`,...toResponsiveImage(Nq5jm0Vsw)}},u1R9TkmMq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.3814814814814817-85)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(Nq5jm0Vsw)}},vO0JkeVQe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.3740740740740743-86.5)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(Nq5jm0Vsw)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||400)*.5000000000000002-200)),pixelHeight:800,pixelWidth:1200,sizes:\"600px\",...toResponsiveImage(h1A65e8t5)},className:\"framer-6hx46x\",\"data-framer-name\":\"Image 1\",layoutDependency:layoutDependency,layoutId:\"wPL2lkH8i\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,scale:1},variants:{AFfcLIyXu:{scale:.8},e8Z17DWgN:{scale:.9},HQiX6V1C_:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:.7},jJ_FpkIU8:{scale:.7},NSaSopeZa:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:.8},p9eQvYD0q:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:.8},qkRPFKzpX:{scale:.8},qpzprueob:{scale:.9},TlU_XIp58:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:.9},u1R9TkmMq:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:1},vO0JkeVQe:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:.9}},...addPropertyOverrides({HQiX6V1C_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.4370370370370373-96.5)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(h1A65e8t5)}},NSaSopeZa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.4074074074074076-88)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.8017)`,...toResponsiveImage(h1A65e8t5)}},p9eQvYD0q:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.43333333333333357-97)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(h1A65e8t5)}},TlU_XIp58:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.377777777777778-83)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(h1A65e8t5)}},u1R9TkmMq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.3592592592592595-82.5)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(h1A65e8t5)}},vO0JkeVQe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.39629629629629654-89.5)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(h1A65e8t5)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||400)*.5000000000000002-200)),pixelHeight:800,pixelWidth:1200,sizes:\"600px\",...toResponsiveImage(h1A65e8t5)},className:\"framer-igp5nd\",\"data-framer-name\":\"Image 1\",layoutDependency:layoutDependency,layoutId:\"PvYN1Qket\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,scale:.7},variants:{AFfcLIyXu:{scale:.9},e8Z17DWgN:{scale:.8},HQiX6V1C_:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:1},jJ_FpkIU8:{scale:1},NSaSopeZa:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:.9},p9eQvYD0q:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:.9},qkRPFKzpX:{scale:.9},qpzprueob:{scale:.8},TlU_XIp58:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:.8},u1R9TkmMq:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},vO0JkeVQe:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,scale:.8}},...addPropertyOverrides({HQiX6V1C_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.37037037037037057-85.5)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(h1A65e8t5)}},NSaSopeZa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.3814814814814817-85)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(h1A65e8t5)}},p9eQvYD0q:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.4074074074074076-92.5)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(h1A65e8t5)}},TlU_XIp58:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.39629629629629654-86.5)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(h1A65e8t5)}},u1R9TkmMq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.42962962962962986-92)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7989)`,...toResponsiveImage(h1A65e8t5)}},vO0JkeVQe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||270)*.42222222222222244-93)),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.8017)`,...toResponsiveImage(h1A65e8t5)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:(componentViewport?.height||400)-0,width:\"300px\",y:(componentViewport?.y||0)+0,...addPropertyOverrides({HQiX6V1C_:{height:(componentViewport?.height||270)-0,width:`calc(${componentViewport?.width||\"100vw\"} * 0.3)`},NSaSopeZa:{height:(componentViewport?.height||270)-0,width:`calc(${componentViewport?.width||\"100vw\"} * 0.3)`},p9eQvYD0q:{height:(componentViewport?.height||270)-0,width:`calc(${componentViewport?.width||\"100vw\"} * 0.3)`},TlU_XIp58:{height:(componentViewport?.height||270)-0,width:`calc(${componentViewport?.width||\"100vw\"} * 0.3)`},u1R9TkmMq:{height:(componentViewport?.height||270)-0,width:`calc(${componentViewport?.width||\"100vw\"} * 0.3)`},vO0JkeVQe:{height:(componentViewport?.height||270)-0,width:`calc(${componentViewport?.width||\"100vw\"} * 0.3)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10s9g5m-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"NZq3mAQM7-container\",nodeId:\"NZq3mAQM7\",rendersWithMotion:true,scopeId:\"qZ1Ebqrot\",style:{opacity:0},children:/*#__PURE__*/_jsx(Arrow,{gxJEZUNzy:gxJEZUNzyj6xxkw,height:\"100%\",id:\"NZq3mAQM7\",layoutId:\"NZq3mAQM7\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YOLhm3GWr:\"e-resize\",...addPropertyOverrides({AFfcLIyXu:{gxJEZUNzy:gxJEZUNzyq1qs87},e8Z17DWgN:{gxJEZUNzy:gxJEZUNzy1t0j9da},HQiX6V1C_:{gxJEZUNzy:gxJEZUNzy1pd9ynn},jJ_FpkIU8:{gxJEZUNzy:gxJEZUNzy1s8g27a},NSaSopeZa:{gxJEZUNzy:gxJEZUNzyddz9dj},p9eQvYD0q:{gxJEZUNzy:gxJEZUNzym3ji7v},qkRPFKzpX:{gxJEZUNzy:gxJEZUNzykwg7jh},qpzprueob:{gxJEZUNzy:gxJEZUNzy14hpwig},TlU_XIp58:{gxJEZUNzy:gxJEZUNzyx2wd3b},u1R9TkmMq:{gxJEZUNzy:gxJEZUNzy1drwtkz},vO0JkeVQe:{gxJEZUNzy:gxJEZUNzy105vfhx}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:(componentViewport?.height||400)-0,width:\"300px\",y:(componentViewport?.y||0)+0,...addPropertyOverrides({HQiX6V1C_:{height:(componentViewport?.height||270)-0,width:`calc(${componentViewport?.width||\"100vw\"} * 0.3)`},NSaSopeZa:{height:(componentViewport?.height||270)-0,width:`calc(${componentViewport?.width||\"100vw\"} * 0.3)`},p9eQvYD0q:{height:(componentViewport?.height||270)-0,width:`calc(${componentViewport?.width||\"100vw\"} * 0.3)`},TlU_XIp58:{height:(componentViewport?.height||270)-0,width:`calc(${componentViewport?.width||\"100vw\"} * 0.3)`},u1R9TkmMq:{height:(componentViewport?.height||270)-0,width:`calc(${componentViewport?.width||\"100vw\"} * 0.3)`},vO0JkeVQe:{height:(componentViewport?.height||270)-0,width:`calc(${componentViewport?.width||\"100vw\"} * 0.3)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7znqeu-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"CziNVJmdk-container\",nodeId:\"CziNVJmdk\",rendersWithMotion:true,scopeId:\"qZ1Ebqrot\",style:{opacity:0},children:/*#__PURE__*/_jsx(Arrow,{gxJEZUNzy:gxJEZUNzykwg7jh,height:\"100%\",id:\"CziNVJmdk\",layoutId:\"CziNVJmdk\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YOLhm3GWr:\"w-resize\",...addPropertyOverrides({AFfcLIyXu:{gxJEZUNzy:gxJEZUNzyj6xxkw},e8Z17DWgN:{gxJEZUNzy:gxJEZUNzy1s8g27a},HQiX6V1C_:{gxJEZUNzy:gxJEZUNzyx2wd3b},jJ_FpkIU8:{gxJEZUNzy:gxJEZUNzy14hpwig},NSaSopeZa:{gxJEZUNzy:gxJEZUNzy1drwtkz},p9eQvYD0q:{gxJEZUNzy:gxJEZUNzyddz9dj},qkRPFKzpX:{gxJEZUNzy:gxJEZUNzyq1qs87},qpzprueob:{gxJEZUNzy:gxJEZUNzy1t0j9da},TlU_XIp58:{gxJEZUNzy:gxJEZUNzy105vfhx},u1R9TkmMq:{gxJEZUNzy:gxJEZUNzym3ji7v},vO0JkeVQe:{gxJEZUNzy:gxJEZUNzy1pd9ynn}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BzSWs.framer-15ly5ba, .framer-BzSWs .framer-15ly5ba { display: block; }\",\".framer-BzSWs.framer-1wsqslk { gap: 32px; height: 400px; overflow: visible; position: relative; width: 1200px; }\",\".framer-BzSWs .framer-1whhflg { flex: none; height: 400px; left: calc(57.500000000000014% - 600px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 400px / 2); width: 600px; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-BzSWs .framer-1x6g1ti { flex: none; height: 400px; left: calc(35.00000000000002% - 600px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 400px / 2); width: 600px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-BzSWs .framer-fmnozc { flex: none; height: 400px; left: calc(65.00000000000003% - 600px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 400px / 2); width: 600px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-BzSWs .framer-1qup9a8 { flex: none; height: 400px; left: calc(42.50000000000002% - 600px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 400px / 2); width: 600px; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-BzSWs .framer-6hx46x { flex: none; height: 400px; left: calc(50.00000000000002% - 600px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 400px / 2); width: 600px; will-change: var(--framer-will-change-override, transform); z-index: 4; }\",\".framer-BzSWs .framer-igp5nd { flex: none; height: 400px; left: calc(50.00000000000002% - 600px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 400px / 2); width: 600px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-BzSWs .framer-10s9g5m-container { bottom: 0px; flex: none; position: absolute; right: 0px; top: 0px; width: 300px; z-index: 5; }\",\".framer-BzSWs .framer-7znqeu-container { bottom: 0px; flex: none; left: 0px; position: absolute; top: 0px; width: 300px; z-index: 5; }\",\".framer-BzSWs.framer-v-1qtny0p .framer-1whhflg, .framer-BzSWs.framer-v-1rz6wag .framer-fmnozc, .framer-BzSWs.framer-v-woh4fu .framer-1x6g1ti, .framer-BzSWs.framer-v-1nbkk42 .framer-1qup9a8 { left: calc(50.00000000000002% - 600px / 2); z-index: 4; }\",\".framer-BzSWs.framer-v-1qtny0p .framer-1x6g1ti, .framer-BzSWs.framer-v-woh4fu .framer-1whhflg, .framer-BzSWs.framer-v-1nbkk42 .framer-fmnozc { left: calc(50.00000000000002% - 600px / 2); z-index: 1; }\",\".framer-BzSWs.framer-v-1qtny0p .framer-fmnozc, .framer-BzSWs.framer-v-1rz6wag .framer-igp5nd, .framer-BzSWs.framer-v-12atc69 .framer-1x6g1ti { left: calc(57.500000000000014% - 600px / 2); z-index: 3; }\",\".framer-BzSWs.framer-v-1qtny0p .framer-1qup9a8, .framer-BzSWs.framer-v-1rz6wag .framer-6hx46x, .framer-BzSWs.framer-v-12atc69 .framer-1whhflg, .framer-BzSWs.framer-v-1nbkk42 .framer-igp5nd { left: calc(35.00000000000002% - 600px / 2); z-index: 2; }\",\".framer-BzSWs.framer-v-1qtny0p .framer-6hx46x, .framer-BzSWs.framer-v-12atc69 .framer-fmnozc, .framer-BzSWs.framer-v-woh4fu .framer-igp5nd, .framer-BzSWs.framer-v-1nbkk42 .framer-1x6g1ti { left: calc(42.50000000000002% - 600px / 2); z-index: 3; }\",\".framer-BzSWs.framer-v-1qtny0p .framer-igp5nd, .framer-BzSWs.framer-v-12atc69 .framer-1qup9a8, .framer-BzSWs.framer-v-woh4fu .framer-6hx46x, .framer-BzSWs.framer-v-1nbkk42 .framer-1whhflg { left: calc(65.00000000000003% - 600px / 2); z-index: 2; }\",\".framer-BzSWs.framer-v-1rz6wag .framer-1whhflg { left: calc(42.50000000000002% - 600px / 2); }\",\".framer-BzSWs.framer-v-1rz6wag .framer-1x6g1ti { left: calc(65.00000000000003% - 600px / 2); }\",\".framer-BzSWs.framer-v-1rz6wag .framer-1qup9a8 { left: calc(50.00000000000002% - 600px / 2); z-index: 2; }\",\".framer-BzSWs.framer-v-12atc69 .framer-6hx46x { z-index: 1; }\",\".framer-BzSWs.framer-v-12atc69 .framer-igp5nd { z-index: 4; }\",\".framer-BzSWs.framer-v-woh4fu .framer-fmnozc { left: calc(35.00000000000002% - 600px / 2); }\",\".framer-BzSWs.framer-v-woh4fu .framer-1qup9a8 { left: calc(57.500000000000014% - 600px / 2); }\",\".framer-BzSWs.framer-v-1nbkk42 .framer-6hx46x { left: calc(57.500000000000014% - 600px / 2); z-index: 2; }\",\".framer-BzSWs.framer-v-lnbvet.framer-1wsqslk, .framer-BzSWs.framer-v-eno1ij.framer-1wsqslk, .framer-BzSWs.framer-v-1npkafe.framer-1wsqslk, .framer-BzSWs.framer-v-18ryarn.framer-1wsqslk, .framer-BzSWs.framer-v-mi9lpk.framer-1wsqslk, .framer-BzSWs.framer-v-13uek3a.framer-1wsqslk { height: 270px; width: 358px; }\",\".framer-BzSWs.framer-v-lnbvet .framer-1whhflg { height: 170px; left: calc(57.5418994413408% - 79.88826815642457% / 2); top: calc(38.14814814814817% - 170px / 2); width: 80%; }\",\".framer-BzSWs.framer-v-lnbvet .framer-1x6g1ti { height: 176px; left: calc(34.91620111731846% - 80.16759776536313% / 2); top: calc(40.370370370370395% - 176px / 2); width: 80%; }\",\".framer-BzSWs.framer-v-lnbvet .framer-fmnozc { height: 176px; left: calc(65.08379888268159% - 79.88826815642457% / 2); top: calc(40.74074074074076% - 176px / 2); width: 80%; }\",\".framer-BzSWs.framer-v-lnbvet .framer-1qup9a8 { height: 170px; left: calc(42.45810055865924% - 79.88826815642457% / 2); top: calc(38.14814814814817% - 170px / 2); width: 80%; }\",\".framer-BzSWs.framer-v-lnbvet .framer-6hx46x { height: 165px; left: calc(50.00000000000002% - 79.88826815642457% / 2); top: calc(35.92592592592595% - 165px / 2); width: 80%; }\",\".framer-BzSWs.framer-v-lnbvet .framer-igp5nd { height: 184px; left: calc(50.00000000000002% - 79.88826815642457% / 2); top: calc(42.96296296296298% - 184px / 2); width: 80%; }\",\".framer-BzSWs.framer-v-lnbvet .framer-10s9g5m-container, .framer-BzSWs.framer-v-lnbvet .framer-7znqeu-container, .framer-BzSWs.framer-v-eno1ij .framer-10s9g5m-container, .framer-BzSWs.framer-v-eno1ij .framer-7znqeu-container, .framer-BzSWs.framer-v-1npkafe .framer-10s9g5m-container, .framer-BzSWs.framer-v-1npkafe .framer-7znqeu-container, .framer-BzSWs.framer-v-18ryarn .framer-10s9g5m-container, .framer-BzSWs.framer-v-18ryarn .framer-7znqeu-container, .framer-BzSWs.framer-v-mi9lpk .framer-10s9g5m-container, .framer-BzSWs.framer-v-mi9lpk .framer-7znqeu-container, .framer-BzSWs.framer-v-13uek3a .framer-10s9g5m-container, .framer-BzSWs.framer-v-13uek3a .framer-7znqeu-container { width: 30%; }\",\".framer-BzSWs.framer-v-eno1ij .framer-1whhflg { height: 162px; left: calc(50.00000000000002% - 79.88826815642457% / 2); top: calc(35.55555555555558% - 162px / 2); width: 80%; z-index: 4; }\",\".framer-BzSWs.framer-v-eno1ij .framer-1x6g1ti { height: 180px; left: calc(50.00000000000002% - 79.88826815642457% / 2); top: calc(42.22222222222224% - 180px / 2); width: 80%; z-index: 1; }\",\".framer-BzSWs.framer-v-eno1ij .framer-fmnozc { height: 166px; left: calc(57.5418994413408% - 79.88826815642457% / 2); top: calc(37.7777777777778% - 166px / 2); width: 80%; z-index: 3; }\",\".framer-BzSWs.framer-v-eno1ij .framer-1qup9a8 { height: 173px; left: calc(34.91620111731846% - 80.16759776536313% / 2); top: calc(39.629629629629655% - 173px / 2); width: 80%; z-index: 2; }\",\".framer-BzSWs.framer-v-eno1ij .framer-6hx46x { height: 166px; left: calc(42.45810055865924% - 79.88826815642457% / 2); top: calc(37.7777777777778% - 166px / 2); width: 80%; z-index: 3; }\",\".framer-BzSWs.framer-v-eno1ij .framer-igp5nd { height: 173px; left: calc(65.08379888268159% - 79.88826815642457% / 2); top: calc(39.629629629629655% - 173px / 2); width: 80%; z-index: 2; }\",\".framer-BzSWs.framer-v-1npkafe .framer-1whhflg { height: 169px; left: calc(42.45810055865924% - 79.88826815642457% / 2); top: calc(37.7777777777778% - 169px / 2); width: 80%; }\",\".framer-BzSWs.framer-v-1npkafe .framer-1x6g1ti { height: 193px; left: calc(65.08379888268159% - 79.88826815642457% / 2); top: calc(39.25925925925928% - 193px / 2); width: 80%; }\",\".framer-BzSWs.framer-v-1npkafe .framer-fmnozc { height: 165px; left: calc(50.00000000000002% - 79.88826815642457% / 2); top: calc(35.92592592592595% - 165px / 2); width: 80%; z-index: 4; }\",\".framer-BzSWs.framer-v-1npkafe .framer-1qup9a8 { height: 191px; left: calc(50.00000000000002% - 79.88826815642457% / 2); top: calc(43.33333333333336% - 191px / 2); width: 80%; z-index: 2; }\",\".framer-BzSWs.framer-v-1npkafe .framer-6hx46x { height: 176px; left: calc(34.91620111731846% - 80.16759776536313% / 2); top: calc(40.74074074074076% - 176px / 2); width: 80%; z-index: 2; }\",\".framer-BzSWs.framer-v-1npkafe .framer-igp5nd { height: 170px; left: calc(57.5418994413408% - 79.88826815642457% / 2); top: calc(38.14814814814817% - 170px / 2); width: 80%; z-index: 3; }\",\".framer-BzSWs.framer-v-18ryarn .framer-1whhflg { height: 184px; left: calc(34.91620111731846% - 80.16759776536313% / 2); top: calc(41.4814814814815% - 184px / 2); width: 80%; z-index: 2; }\",\".framer-BzSWs.framer-v-18ryarn .framer-1x6g1ti { height: 177px; left: calc(57.5418994413408% - 79.88826815642457% / 2); top: calc(39.25925925925928% - 177px / 2); width: 80%; z-index: 3; }\",\".framer-BzSWs.framer-v-18ryarn .framer-fmnozc { height: 177px; left: calc(42.45810055865924% - 79.88826815642457% / 2); top: calc(39.25925925925928% - 177px / 2); width: 80%; z-index: 3; }\",\".framer-BzSWs.framer-v-18ryarn .framer-1qup9a8 { height: 184px; left: calc(65.08379888268159% - 79.88826815642457% / 2); top: calc(41.4814814814815% - 184px / 2); width: 80%; z-index: 2; }\",\".framer-BzSWs.framer-v-18ryarn .framer-6hx46x { height: 193px; left: calc(50.00000000000002% - 79.88826815642457% / 2); top: calc(43.70370370370373% - 193px / 2); width: 80%; z-index: 1; }\",\".framer-BzSWs.framer-v-18ryarn .framer-igp5nd { height: 171px; left: calc(50.00000000000002% - 79.88826815642457% / 2); top: calc(37.03703703703706% - 171px / 2); width: 80%; z-index: 4; }\",\".framer-BzSWs.framer-v-mi9lpk .framer-1whhflg { height: 206px; left: calc(50.00000000000002% - 79.88826815642457% / 2); top: calc(45.55555555555558% - 206px / 2); width: 80%; z-index: 1; }\",\".framer-BzSWs.framer-v-mi9lpk .framer-1x6g1ti { height: 179px; left: calc(50.00000000000002% - 79.88826815642457% / 2); top: calc(38.51851851851854% - 179px / 2); width: 80%; z-index: 4; }\",\".framer-BzSWs.framer-v-mi9lpk .framer-fmnozc { height: 195px; left: calc(34.91620111731846% - 80.16759776536313% / 2); top: calc(43.33333333333336% - 195px / 2); width: 80%; }\",\".framer-BzSWs.framer-v-mi9lpk .framer-1qup9a8 { height: 185px; left: calc(57.5418994413408% - 79.88826815642457% / 2); top: calc(40.74074074074076% - 185px / 2); width: 80%; }\",\".framer-BzSWs.framer-v-mi9lpk .framer-6hx46x { height: 194px; left: calc(65.08379888268159% - 79.88826815642457% / 2); top: calc(43.33333333333336% - 194px / 2); width: 80%; z-index: 2; }\",\".framer-BzSWs.framer-v-mi9lpk .framer-igp5nd { height: 185px; left: calc(42.45810055865924% - 79.88826815642457% / 2); top: calc(40.74074074074076% - 185px / 2); width: 80%; z-index: 3; }\",\".framer-BzSWs.framer-v-13uek3a .framer-1whhflg { height: 187px; left: calc(65.08379888268159% - 79.88826815642457% / 2); top: calc(41.851851851851876% - 187px / 2); width: 80%; z-index: 2; }\",\".framer-BzSWs.framer-v-13uek3a .framer-1x6g1ti { height: 179px; left: calc(42.45810055865924% - 79.88826815642457% / 2); top: calc(39.629629629629655% - 179px / 2); width: 80%; z-index: 3; }\",\".framer-BzSWs.framer-v-13uek3a .framer-fmnozc { height: 196px; left: calc(50.00000000000002% - 79.88826815642457% / 2); top: calc(44.444444444444464% - 196px / 2); width: 80%; z-index: 1; }\",\".framer-BzSWs.framer-v-13uek3a .framer-1qup9a8 { height: 173px; left: calc(50.00000000000002% - 79.88826815642457% / 2); top: calc(37.407407407407426% - 173px / 2); width: 80%; z-index: 4; }\",\".framer-BzSWs.framer-v-13uek3a .framer-6hx46x { height: 179px; left: calc(57.5418994413408% - 79.88826815642457% / 2); top: calc(39.629629629629655% - 179px / 2); width: 80%; z-index: 2; }\",\".framer-BzSWs.framer-v-13uek3a .framer-igp5nd { height: 186px; left: calc(34.91620111731846% - 80.16759776536313% / 2); top: calc(42.22222222222224% - 186px / 2); width: 80%; z-index: 2; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"qpzprueob\":{\"layout\":[\"fixed\",\"fixed\"]},\"AFfcLIyXu\":{\"layout\":[\"fixed\",\"fixed\"]},\"jJ_FpkIU8\":{\"layout\":[\"fixed\",\"fixed\"]},\"qkRPFKzpX\":{\"layout\":[\"fixed\",\"fixed\"]},\"e8Z17DWgN\":{\"layout\":[\"fixed\",\"fixed\"]},\"u1R9TkmMq\":{\"layout\":[\"fixed\",\"fixed\"]},\"TlU_XIp58\":{\"layout\":[\"fixed\",\"fixed\"]},\"NSaSopeZa\":{\"layout\":[\"fixed\",\"fixed\"]},\"HQiX6V1C_\":{\"layout\":[\"fixed\",\"fixed\"]},\"p9eQvYD0q\":{\"layout\":[\"fixed\",\"fixed\"]},\"vO0JkeVQe\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"h1A65e8t5\":\"image1\",\"Nq5jm0Vsw\":\"image2\",\"yhP7moxu5\":\"image3\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerqZ1Ebqrot=withCSS(Component,css,\"framer-BzSWs\");export default FramerqZ1Ebqrot;FramerqZ1Ebqrot.displayName=\"Hero image\";FramerqZ1Ebqrot.defaultProps={height:400,width:1200};addPropertyControls(FramerqZ1Ebqrot,{variant:{options:[\"Uzf95hXGw\",\"qpzprueob\",\"AFfcLIyXu\",\"jJ_FpkIU8\",\"qkRPFKzpX\",\"e8Z17DWgN\",\"u1R9TkmMq\",\"TlU_XIp58\",\"NSaSopeZa\",\"HQiX6V1C_\",\"p9eQvYD0q\",\"vO0JkeVQe\"],optionTitles:[\"Desktop 1\",\"Desktop 2\",\"Desktop 3\",\"Desktop 4\",\"Desktop 5\",\"Desktop 6\",\"Mobile 1\",\"Mobile 2\",\"Mobile 3\",\"Mobile 4\",\"Mobile 5\",\"Mobile 6\"],title:\"Variant\",type:ControlType.Enum},h1A65e8t5:{__defaultAssetReference:\"data:framer/asset-reference,O9KUN0yROH5MAeTK5T7nx77Fc.png?originalFilename=Hero+4.png&preferredSize=auto\",title:\"Image 1\",type:ControlType.ResponsiveImage},Nq5jm0Vsw:{__defaultAssetReference:\"data:framer/asset-reference,v25zEdcUKvJeYJWEiFvZfgxI70.png?originalFilename=Hero+5.png&preferredSize=auto\",title:\"Image 2\",type:ControlType.ResponsiveImage},yhP7moxu5:{__defaultAssetReference:\"data:framer/asset-reference,Xwjyy6YkMX3FQDvHA23WNmvHkJc.png?originalFilename=Hero+6.png&preferredSize=auto\",title:\"Image 3\",type:ControlType.ResponsiveImage}});addFonts(FramerqZ1Ebqrot,[{explicitInter:true,fonts:[]},...ArrowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqZ1Ebqrot\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"h1A65e8t5\\\":\\\"image1\\\",\\\"Nq5jm0Vsw\\\":\\\"image2\\\",\\\"yhP7moxu5\\\":\\\"image3\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qpzprueob\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"AFfcLIyXu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jJ_FpkIU8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qkRPFKzpX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"e8Z17DWgN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"u1R9TkmMq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TlU_XIp58\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NSaSopeZa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HQiX6V1C_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"p9eQvYD0q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vO0JkeVQe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qZ1Ebqrot.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SecondaryButton from\"https://framerusercontent.com/modules/TFVabtAnyEVA8YiYaMQb/dgI62Dfa155W39Wy7PFO/UdPuD1X3B.js\";const SecondaryButtonFonts=getFonts(SecondaryButton);const cycleOrder=[\"r3SJFzUlk\",\"h0F8nk2Vv\"];const serializationHash=\"framer-FQt6C\";const variantClassNames={h0F8nk2Vv:\"framer-v-1hhk6km\",r3SJFzUlk:\"framer-v-vf3iuh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={desktop:\"r3SJFzUlk\",mobile:\"h0F8nk2Vv\"};const getProps=({click,cursor,height,id,image,link,mainTitle,paragraph,text,width,...props})=>{return{...props,C3BbZ8cDs:link??props.C3BbZ8cDs,d3vcv151C:cursor??props.d3vcv151C??\"pointer\",GscJX1BXj:text??props.GscJX1BXj??\"Join our discord\",KU5BZ8ugI:mainTitle??props.KU5BZ8ugI??\"Seamless Collaboration for Effective Meetings\",OHoH_2Um4:image??props.OHoH_2Um4??{pixelHeight:2048,pixelWidth:2048,src:\"https://framerusercontent.com/images/dv3NcrpIb4kt6vNaHbxhsPQdr0.png\",srcSet:\"https://framerusercontent.com/images/dv3NcrpIb4kt6vNaHbxhsPQdr0.png?scale-down-to=512 512w,https://framerusercontent.com/images/dv3NcrpIb4kt6vNaHbxhsPQdr0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dv3NcrpIb4kt6vNaHbxhsPQdr0.png 2048w\"},tcWxhmh_l:paragraph??props.tcWxhmh_l??\"Easily schedule and manage meetings, collaborate in real-time, and keep everyone aligned for successful team interactions and faster decision-making.\",uERLaKu1P:click??props.uERLaKu1P,variant:humanReadableVariantMap[props.variant]??props.variant??\"r3SJFzUlk\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,OHoH_2Um4,KU5BZ8ugI,tcWxhmh_l,uERLaKu1P,d3vcv151C,C3BbZ8cDs,GscJX1BXj,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"r3SJFzUlk\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1vkhlv0=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(uERLaKu1P){const res=await uERLaKu1P(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-vf3iuh\",className,classNames),\"data-border\":true,\"data-framer-name\":\"desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"r3SJFzUlk\",onTap:onTap1vkhlv0,ref:refBinding,style:{\"--1qy2q3s\":d3vcv151C,\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-5970a3c6-0f13-482e-8fb6-b8cb7d627b04, rgba(216, 231, 242, 0.07))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"inset 0px 2px 1px 0px rgba(207, 231, 255, 0.2), 0px 2px 4px 0px rgba(0, 0, 0, 0.25)\",...style},...addPropertyOverrides({h0F8nk2Vv:{\"data-framer-name\":\"mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ww0ckt\",\"data-framer-name\":\"Sub Container\",layoutDependency:layoutDependency,layoutId:\"IPqeWbbNQ\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"inset 0px -1px 1px 0px rgba(207, 231, 255, 0.1)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e8njnj\",\"data-framer-name\":\"dots\",layoutDependency:layoutDependency,layoutId:\"ilEoK8lq7\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-lwqn6k\",\"data-framer-name\":\"dot\",layoutDependency:layoutDependency,layoutId:\"oAFCX5NDq\",style:{backgroundColor:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,opacity:.1}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ef22a0\",\"data-framer-name\":\"dot\",layoutDependency:layoutDependency,layoutId:\"mPH5RG_8D\",style:{backgroundColor:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,opacity:.1}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fejayy\",\"data-framer-name\":\"dot\",layoutDependency:layoutDependency,layoutId:\"EadxyzY6N\",style:{backgroundColor:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,opacity:.1}})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rb0ab7\",\"data-framer-name\":\"Sub Container\",layoutDependency:layoutDependency,layoutId:\"Pkcc4WBhl\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d67w7b\",\"data-framer-name\":\"Sub Container\",layoutDependency:layoutDependency,layoutId:\"c6q9QqSLM\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18zd7m6\",\"data-framer-name\":\"text content\",layoutDependency:layoutDependency,layoutId:\"SRCHwSdtG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-b459e046-718c-4dbb-8c34-b5d5869d1e57, rgb(39, 39, 42)))\"},children:\"Seamless Collaboration for Effective Meetings\"})}),className:\"framer-1354jya\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"tejYa9J9f\",style:{\"--extracted-a0htzi\":\"var(--token-b459e046-718c-4dbb-8c34-b5d5869d1e57, rgb(39, 39, 42))\",\"--framer-paragraph-spacing\":\"0px\"},text:KU5BZ8ugI,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e4701bb6-83f6-41e5-b0c8-9b95b4510e3a, rgb(63, 63, 70)))\"},children:\"Easily schedule and manage meetings, collaborate in real-time, and keep everyone aligned for successful team interactions and faster decision-making.\"})}),className:\"framer-ocug0u\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"GtAENtsvi\",style:{\"--extracted-r6o4lv\":\"var(--token-e4701bb6-83f6-41e5-b0c8-9b95b4510e3a, rgb(63, 63, 70))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:tcWxhmh_l,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kqt88g\",\"data-framer-name\":\"section\",layoutDependency:layoutDependency,layoutId:\"ydIggPnLR\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cxru1i-container\",layoutDependency:layoutDependency,layoutId:\"zCMFS2tU4-container\",nodeId:\"zCMFS2tU4\",rendersWithMotion:true,scopeId:\"Kl3OKkWep\",children:/*#__PURE__*/_jsx(SecondaryButton,{height:\"100%\",id:\"zCMFS2tU4\",layoutId:\"zCMFS2tU4\",Ou2Q7KKjz:true,QLeYG_zlf:\"ArrowUpRight\",tIpm2Fclc:GscJX1BXj,vabCwIWAm:C3BbZ8cDs,variant:\"KmYmRTi3n\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:457,pixelWidth:570,sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,...toResponsiveImage(OHoH_2Um4),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1tflc0x\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"oqSLH28_p\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({h0F8nk2Vv:{background:{alt:\"\",fit:\"fill\",pixelHeight:457,pixelWidth:570,sizes:`calc(${componentViewport?.width||\"100vw\"} - 54px)`,...toResponsiveImage(OHoH_2Um4),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FQt6C.framer-8lnzfk, .framer-FQt6C .framer-8lnzfk { display: block; }\",\".framer-FQt6C.framer-vf3iuh { align-content: flex-start; align-items: flex-start; cursor: var(--1qy2q3s); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1030px; will-change: var(--framer-will-change-override, transform); }\",\".framer-FQt6C .framer-ww0ckt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 18px 30px 18px 30px; position: relative; width: 100%; }\",\".framer-FQt6C .framer-e8njnj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-FQt6C .framer-lwqn6k, .framer-FQt6C .framer-1ef22a0, .framer-FQt6C .framer-fejayy { flex: none; height: 10px; overflow: hidden; position: relative; width: 10px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-FQt6C .framer-rb0ab7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px 30px 40px 30px; position: relative; width: 100%; }\",\".framer-FQt6C .framer-1d67w7b { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-FQt6C .framer-18zd7m6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; max-width: 400px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FQt6C .framer-1354jya, .framer-FQt6C .framer-ocug0u { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-FQt6C .framer-kqt88g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FQt6C .framer-1cxru1i-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-FQt6C .framer-1tflc0x { align-self: stretch; flex: 1 0 0px; gap: 0px; height: auto; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-FQt6C.framer-v-1hhk6km.framer-vf3iuh { width: 358px; }\",\".framer-FQt6C.framer-v-1hhk6km .framer-ww0ckt { padding: 16px; }\",\".framer-FQt6C.framer-v-1hhk6km .framer-rb0ab7 { flex-direction: column; gap: 40px; padding: 24px 30px 40px 24px; }\",\".framer-FQt6C.framer-v-1hhk6km .framer-1d67w7b { flex: none; width: 100%; }\",\".framer-FQt6C.framer-v-1hhk6km .framer-1tflc0x { align-self: unset; flex: none; height: 387px; width: 100%; }\",'.framer-FQt6C[data-border=\"true\"]::after, .framer-FQt6C [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 340\n * @framerIntrinsicWidth 1030\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"h0F8nk2Vv\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"OHoH_2Um4\":\"image\",\"KU5BZ8ugI\":\"mainTitle\",\"tcWxhmh_l\":\"paragraph\",\"uERLaKu1P\":\"click\",\"d3vcv151C\":\"cursor\",\"C3BbZ8cDs\":\"link\",\"GscJX1BXj\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerKl3OKkWep=withCSS(Component,css,\"framer-FQt6C\");export default FramerKl3OKkWep;FramerKl3OKkWep.displayName=\"Testimonial card\";FramerKl3OKkWep.defaultProps={height:340,width:1030};addPropertyControls(FramerKl3OKkWep,{variant:{options:[\"r3SJFzUlk\",\"h0F8nk2Vv\"],optionTitles:[\"desktop\",\"mobile\"],title:\"Variant\",type:ControlType.Enum},OHoH_2Um4:{__defaultAssetReference:\"data:framer/asset-reference,dv3NcrpIb4kt6vNaHbxhsPQdr0.png?originalFilename=QmSqNNox8yuYBctqd9MJWTA2ajPWtVSkCVFPi8YBGY5hoh.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},KU5BZ8ugI:{defaultValue:\"Seamless Collaboration for Effective Meetings\",displayTextArea:false,title:\"Main Title\",type:ControlType.String},tcWxhmh_l:{defaultValue:\"Easily schedule and manage meetings, collaborate in real-time, and keep everyone aligned for successful team interactions and faster decision-making.\",displayTextArea:false,title:\"Paragraph\",type:ControlType.String},uERLaKu1P:{title:\"Click\",type:ControlType.EventHandler},d3vcv151C:{defaultValue:\"pointer\",title:\"Cursor\",type:ControlType.Cursor},C3BbZ8cDs:{title:\"Link\",type:ControlType.Link},GscJX1BXj:{defaultValue:\"Join our discord\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramerKl3OKkWep,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]},...SecondaryButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKl3OKkWep\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"h0F8nk2Vv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"OHoH_2Um4\\\":\\\"image\\\",\\\"KU5BZ8ugI\\\":\\\"mainTitle\\\",\\\"tcWxhmh_l\\\":\\\"paragraph\\\",\\\"uERLaKu1P\\\":\\\"click\\\",\\\"d3vcv151C\\\":\\\"cursor\\\",\\\"C3BbZ8cDs\\\":\\\"link\\\",\\\"GscJX1BXj\\\":\\\"text\\\"}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1030\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"340\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Kl3OKkWep.map", "// Generated by Framer (255de63)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import TestimonialCard from\"https://framerusercontent.com/modules/cwpAbJIuWkr0l9g3Y4ms/UrQqfi6rBSoT2R6B8JoF/Kl3OKkWep.js\";const TestimonialCardFonts=getFonts(TestimonialCard);const RichTextWithFX=withFX(RichText);const cycleOrder=[\"Ml3E_smgv\",\"cZmDhS97Z\",\"OVhPjvaQ6\",\"VtvJ_iFhS\"];const serializationHash=\"framer-62FY3\";const variantClassNames={cZmDhS97Z:\"framer-v-hqki2o\",Ml3E_smgv:\"framer-v-ev2rce\",OVhPjvaQ6:\"framer-v-jgvcvm\",VtvJ_iFhS:\"framer-v-27230n\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:1.5,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,y:-10};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:60};const transition3={damping:60,delay:.4,mass:1,stiffness:320,type:\"spring\"};const animation2={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition4={damping:100,delay:.05,mass:1,stiffness:400,type:\"spring\"};const textEffect={effect:animation2,repeat:false,startDelay:.2,threshold:0,tokenization:\"word\",transition:transition4,trigger:\"onInView\",type:\"appear\"};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={\"Desktop 1\":\"Ml3E_smgv\",\"Desktop 2\":\"cZmDhS97Z\",\"Desktop 3\":\"OVhPjvaQ6\",mobile:\"VtvJ_iFhS\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Ml3E_smgv\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Ml3E_smgv\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1fmd6w9=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"cZmDhS97Z\"),7e3);});const onAppear10tfirb=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"OVhPjvaQ6\"),7e3);});const onAppeare1q6s=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Ml3E_smgv\"),7e3);});const uERLaKu1P1pclmqk=activeVariantCallback(async(...args)=>{setVariant(\"Ml3E_smgv\");});const uERLaKu1P1hdjfm1=activeVariantCallback(async(...args)=>{setVariant(\"cZmDhS97Z\");});const uERLaKu1P1qs7v5o=activeVariantCallback(async(...args)=>{setVariant(\"OVhPjvaQ6\");});const onTap1pclmqk=activeVariantCallback(async(...args)=>{setVariant(\"Ml3E_smgv\");});const onTap1hdjfm1=activeVariantCallback(async(...args)=>{setVariant(\"cZmDhS97Z\");});const onTap1qs7v5o=activeVariantCallback(async(...args)=>{setVariant(\"OVhPjvaQ6\");});useOnVariantChange(baseVariant,{cZmDhS97Z:onAppear10tfirb,default:onAppear1fmd6w9,OVhPjvaQ6:onAppeare1q6s,VtvJ_iFhS:undefined});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"VtvJ_iFhS\")return false;return true;};const isDisplayed1=()=>{if([\"cZmDhS97Z\",\"OVhPjvaQ6\",\"VtvJ_iFhS\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"cZmDhS97Z\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"OVhPjvaQ6\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ev2rce\",className,classNames),\"data-framer-name\":\"Desktop 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Ml3E_smgv\",ref:refBinding,style:{...style},...addPropertyOverrides({cZmDhS97Z:{\"data-framer-name\":\"Desktop 2\"},OVhPjvaQ6:{\"data-framer-name\":\"Desktop 3\"},VtvJ_iFhS:{\"data-framer-name\":\"mobile\",\"data-highlight\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:340,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+100,...addPropertyOverrides({cZmDhS97Z:{width:`calc(${componentViewport?.width||\"100vw\"} - 150px)`,y:(componentViewport?.y||0)+0},OVhPjvaQ6:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+50},VtvJ_iFhS:{y:(componentViewport?.y||0)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mq4bhd-container\",layoutDependency:layoutDependency,layoutId:\"JwGoq1wj8-container\",nodeId:\"JwGoq1wj8\",rendersWithMotion:true,scopeId:\"XgjpFutW_\",style:{filter:\"blur(0px)\",WebkitFilter:\"blur(0px)\"},variants:{cZmDhS97Z:{filter:\"blur(2px)\",WebkitFilter:\"blur(2px)\"},OVhPjvaQ6:{filter:\"blur(1px)\",WebkitFilter:\"blur(1px)\"},VtvJ_iFhS:{filter:\"none\",WebkitFilter:\"none\"}},...addPropertyOverrides({cZmDhS97Z:{whileHover:animation},OVhPjvaQ6:{whileHover:animation}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(TestimonialCard,{C3BbZ8cDs:\"https://app.digisell.io/signup\",d3vcv151C:\"default\",GscJX1BXj:\"Unlock the template for free\",height:\"100%\",id:\"JwGoq1wj8\",KU5BZ8ugI:\"Sophie Lin, Director\",layoutId:\"JwGoq1wj8\",OHoH_2Um4:addImageAlt({pixelHeight:5134,pixelWidth:3423,src:\"https://framerusercontent.com/images/V3Y2HIE9a8AyDqImZdjwD910J0.jpg\",srcSet:\"https://framerusercontent.com/images/V3Y2HIE9a8AyDqImZdjwD910J0.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/V3Y2HIE9a8AyDqImZdjwD910J0.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/V3Y2HIE9a8AyDqImZdjwD910J0.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/V3Y2HIE9a8AyDqImZdjwD910J0.jpg 3423w\"},\"\"),style:{width:\"100%\"},tcWxhmh_l:\"I\u2019ve always put off making a website because it felt overwhelming. I thought I needed to hire a designer or spend weeks learning some platform. But with Digisell, I chose a template, dropped in my trailers and stills, added a few sentences about each project, and it just... worked.  Now, when I pitch to festivals or clients, I send my site with confidence and I\u2019m finally proud of how my work is presented.\",uERLaKu1P:uERLaKu1P1pclmqk,variant:\"r3SJFzUlk\",width:\"100%\",...addPropertyOverrides({cZmDhS97Z:{d3vcv151C:\"pointer\"},OVhPjvaQ6:{d3vcv151C:\"pointer\"},VtvJ_iFhS:{uERLaKu1P:undefined,variant:\"h0F8nk2Vv\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:340,width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+50,...addPropertyOverrides({cZmDhS97Z:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+100},OVhPjvaQ6:{width:`calc(${componentViewport?.width||\"100vw\"} - 150px)`,y:(componentViewport?.y||0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yob506-container\",layoutDependency:layoutDependency,layoutId:\"e8sBmAJvE-container\",nodeId:\"e8sBmAJvE\",rendersWithMotion:true,scopeId:\"XgjpFutW_\",style:{filter:\"blur(1px)\",WebkitFilter:\"blur(1px)\"},variants:{cZmDhS97Z:{filter:\"blur(0px)\",WebkitFilter:\"blur(0px)\"},OVhPjvaQ6:{filter:\"blur(2px)\",WebkitFilter:\"blur(2px)\"}},whileHover:animation,...addPropertyOverrides({cZmDhS97Z:{whileHover:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(TestimonialCard,{d3vcv151C:\"pointer\",GscJX1BXj:\"Join our discord\",height:\"100%\",id:\"e8sBmAJvE\",KU5BZ8ugI:\"Emily's E-commerce Success\",layoutId:\"e8sBmAJvE\",OHoH_2Um4:addImageAlt({pixelHeight:2365,pixelWidth:3547,src:\"https://framerusercontent.com/images/GuFZFCQnRSOpKJkAPlCkaRUGIjc.png\",srcSet:\"https://framerusercontent.com/images/GuFZFCQnRSOpKJkAPlCkaRUGIjc.png?scale-down-to=512 512w,https://framerusercontent.com/images/GuFZFCQnRSOpKJkAPlCkaRUGIjc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GuFZFCQnRSOpKJkAPlCkaRUGIjc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GuFZFCQnRSOpKJkAPlCkaRUGIjc.png 3547w\"},\"\"),style:{width:\"100%\"},tcWxhmh_l:\"Emily, the CEO of BloomTech, transformed their marketing efforts using AI-powered tools. This shift resulted in a 60% increase in ROI and a 45% improvement in customer personalization, leading to a surge in brand loyalty\",uERLaKu1P:uERLaKu1P1hdjfm1,variant:\"r3SJFzUlk\",width:\"100%\",...addPropertyOverrides({cZmDhS97Z:{C3BbZ8cDs:\"app.digisell.io/signup\",GscJX1BXj:\"Unlock the template for free\",KU5BZ8ugI:\"Adrian Castillo, Wedding Photographer\",OHoH_2Um4:addImageAlt({pixelHeight:2321,pixelWidth:4052,src:\"https://framerusercontent.com/images/0eAmcmEWcT1Q1j3ptV11KMRV4I.jpg\",srcSet:\"https://framerusercontent.com/images/0eAmcmEWcT1Q1j3ptV11KMRV4I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0eAmcmEWcT1Q1j3ptV11KMRV4I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0eAmcmEWcT1Q1j3ptV11KMRV4I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0eAmcmEWcT1Q1j3ptV11KMRV4I.jpg 4052w\"},\"\"),tcWxhmh_l:\"I kept telling myself I\u2019d build a portfolio \u2018someday,\u2019 but between editing client work and planning shoots, I never had the time or the patience. Every platform I tried felt bloated or confusing. I assumed a good website would take me a week minimum. Digisell proved me wrong. I picked a clean, modern template, dropped in my best galleries, and had the whole thing live in under two hours. It looks like something a designer built.\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:340,width:`calc(${componentViewport?.width||\"100vw\"} - 150px)`,y:(componentViewport?.y||0)+0,...addPropertyOverrides({cZmDhS97Z:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+50},OVhPjvaQ6:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+100}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lcirkp-container\",layoutDependency:layoutDependency,layoutId:\"uN3FbIgWp-container\",nodeId:\"uN3FbIgWp\",rendersWithMotion:true,scopeId:\"XgjpFutW_\",style:{filter:\"blur(2px)\",WebkitFilter:\"blur(2px)\"},variants:{cZmDhS97Z:{filter:\"blur(1px)\",WebkitFilter:\"blur(1px)\"},OVhPjvaQ6:{filter:\"blur(0px)\",WebkitFilter:\"blur(0px)\"}},whileHover:animation,...addPropertyOverrides({OVhPjvaQ6:{whileHover:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(TestimonialCard,{d3vcv151C:\"pointer\",GscJX1BXj:\"Join our discord\",height:\"100%\",id:\"uN3FbIgWp\",KU5BZ8ugI:\"Sophia's Retail Breakthrough\",layoutId:\"uN3FbIgWp\",OHoH_2Um4:addImageAlt({pixelHeight:1212,pixelWidth:1212,src:\"https://framerusercontent.com/images/TXdiLXbrEnofSFENzswfxpdKpc.png\",srcSet:\"https://framerusercontent.com/images/TXdiLXbrEnofSFENzswfxpdKpc.png?scale-down-to=512 512w,https://framerusercontent.com/images/TXdiLXbrEnofSFENzswfxpdKpc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TXdiLXbrEnofSFENzswfxpdKpc.png 1212w\"},\"\"),style:{width:\"100%\"},tcWxhmh_l:\"Sophia, the marketing lead at Trendify, used AI-driven analytics to dive deep into customer behavior. The insights led to a 40% increase in engagement and a 30% rise in repeat purchases, creating long-term customer relationships.\",uERLaKu1P:uERLaKu1P1qs7v5o,variant:\"r3SJFzUlk\",width:\"100%\",...addPropertyOverrides({OVhPjvaQ6:{KU5BZ8ugI:\"Julia Vermeer, Filmmaker\",OHoH_2Um4:addImageAlt({pixelHeight:3898,pixelWidth:5847,src:\"https://framerusercontent.com/images/kssbe8896f89HZZdSGu5Utg1uSk.jpg\",srcSet:\"https://framerusercontent.com/images/kssbe8896f89HZZdSGu5Utg1uSk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kssbe8896f89HZZdSGu5Utg1uSk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kssbe8896f89HZZdSGu5Utg1uSk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/kssbe8896f89HZZdSGu5Utg1uSk.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/kssbe8896f89HZZdSGu5Utg1uSk.jpg 5847w\"},\"\"),tcWxhmh_l:\"For years, Instagram was my portfolio. I\u2019d send DMs or drop links when people asked to see my work. But it always felt messy and... incomplete.  Digisell changed everything. I built a real website that tells a clear story. It tells who I am, what I do, and why it matters. It\u2019s clean, cinematic, and completely mine. I've booked three new gigs just from having a site that looks like I take myself seriously.\"}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h87357\",\"data-framer-name\":\"section\",layoutDependency:layoutDependency,layoutId:\"eD0X9tnuh\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-e6a1425f-5cc8-4e16-87a5-8615ab8b8fe1, rgb(82, 82, 91)))\"},children:\"\u201CI built my portfolio in one afternoon and I\u2019m not even tech-savvy.\u201D -  Sophie Lin, Director\"})}),className:\"framer-1nzyoje\",\"data-framer-name\":\"We know what\u2019s going on. You need top-notch design to stand out in the tech world, but hiring in-house designers can be costly and time-consuming. That\u2019s when it comes in.\",effect:textEffect,fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"zes9V6MwU\",style:{\"--extracted-a0htzi\":\"var(--token-e6a1425f-5cc8-4e16-87a5-8615ab8b8fe1, rgb(82, 82, 91))\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1obfco\",\"data-framer-name\":\"section\",layoutDependency:layoutDependency,layoutId:\"kCScLpCzk\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-5e357ad1-f56a-4886-be0b-ea13c633f85c, rgba(184, 199, 217, 0.5)))\"},children:\"\u201CI thought websites took weeks. Mine took two hours.\u201D  - Adrian Castillo, Wedding Photographer\"})}),className:\"framer-1wtn1mi\",\"data-framer-name\":\"We know what\u2019s going on. You need top-notch design to stand out in the tech world, but hiring in-house designers can be costly and time-consuming. That\u2019s when it comes in.\",effect:textEffect,fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"caMiX7Omy\",style:{\"--extracted-a0htzi\":\"var(--token-5e357ad1-f56a-4886-be0b-ea13c633f85c, rgba(184, 199, 217, 0.5))\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ehbdr6\",\"data-framer-name\":\"section\",layoutDependency:layoutDependency,layoutId:\"Z6I4sF9PZ\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-5e357ad1-f56a-4886-be0b-ea13c633f85c, rgba(184, 199, 217, 0.5)))\"},children:\"\u201CI used to send Instagram links. Now I send one link - and it lands clients.\u201D - Julia Vermeer, Travel Filmmaker\"})}),className:\"framer-151dwx3\",\"data-framer-name\":\"We know what\u2019s going on. You need top-notch design to stand out in the tech world, but hiring in-house designers can be costly and time-consuming. That\u2019s when it comes in.\",effect:textEffect,fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"ixESp7tPd\",style:{\"--extracted-a0htzi\":\"var(--token-5e357ad1-f56a-4886-be0b-ea13c633f85c, rgba(184, 199, 217, 0.5))\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qg3rfa\",\"data-framer-name\":\"dots\",layoutDependency:layoutDependency,layoutId:\"aurL0LOZz\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xl6uyr\",\"data-framer-name\":\"dot\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"FWoQ99L0A\",onTap:onTap1pclmqk,style:{backgroundColor:\"var(--token-a85af9cb-7834-4006-a277-2dd1295ae376, rgb(255, 255, 255))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,opacity:1},variants:{cZmDhS97Z:{opacity:.1},OVhPjvaQ6:{opacity:.1}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-p9z6fa\",\"data-framer-name\":\"dot\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"i54zOS1QZ\",onTap:onTap1hdjfm1,style:{backgroundColor:\"var(--token-a85af9cb-7834-4006-a277-2dd1295ae376, rgb(255, 255, 255))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,opacity:.1},variants:{cZmDhS97Z:{opacity:1}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14i5om9\",\"data-framer-name\":\"dot\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"w6D4nDDxF\",onTap:onTap1qs7v5o,style:{backgroundColor:\"var(--token-a85af9cb-7834-4006-a277-2dd1295ae376, rgb(255, 255, 255))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,opacity:.1},variants:{OVhPjvaQ6:{opacity:1}}})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-62FY3.framer-1ygew7n, .framer-62FY3 .framer-1ygew7n { display: block; }\",\".framer-62FY3.framer-ev2rce { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 746px; justify-content: center; overflow: visible; padding: 100px 0px 0px 0px; position: relative; width: 1030px; }\",\".framer-62FY3 .framer-mq4bhd-container { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 100px; z-index: 3; }\",\".framer-62FY3 .framer-yob506-container { flex: none; height: auto; left: 40px; position: absolute; right: 40px; top: 50px; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-62FY3 .framer-lcirkp-container { flex: none; height: auto; left: 75px; position: absolute; right: 75px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-62FY3 .framer-1h87357, .framer-62FY3 .framer-1obfco, .framer-62FY3 .framer-1ehbdr6 { align-content: center; align-items: center; bottom: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: center; left: 50%; max-width: 744px; overflow: visible; padding: 0px; position: absolute; width: 744px; z-index: 2; }\",\".framer-62FY3 .framer-1nzyoje, .framer-62FY3 .framer-1wtn1mi, .framer-62FY3 .framer-151dwx3 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-62FY3 .framer-qg3rfa { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; width: min-content; z-index: 1; }\",\".framer-62FY3 .framer-1xl6uyr, .framer-62FY3 .framer-p9z6fa, .framer-62FY3 .framer-14i5om9 { cursor: pointer; flex: none; height: 10px; overflow: hidden; position: relative; width: 10px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-62FY3.framer-v-hqki2o .framer-mq4bhd-container { left: 75px; right: 75px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-62FY3.framer-v-hqki2o .framer-yob506-container, .framer-62FY3.framer-v-jgvcvm .framer-lcirkp-container { left: 0px; right: 0px; top: 100px; will-change: unset; z-index: 3; }\",\".framer-62FY3.framer-v-hqki2o .framer-lcirkp-container { left: 40px; right: 40px; top: 50px; }\",\".framer-62FY3.framer-v-jgvcvm .framer-mq4bhd-container { left: 40px; right: 40px; top: 50px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-62FY3.framer-v-jgvcvm .framer-yob506-container { left: 75px; right: 75px; top: 0px; z-index: 0; }\",\".framer-62FY3.framer-v-27230n.framer-ev2rce { flex-direction: column; gap: 24px; height: min-content; justify-content: flex-start; padding: 0px; width: 579px; }\",\".framer-62FY3.framer-v-27230n .framer-mq4bhd-container { left: unset; position: relative; right: unset; top: unset; width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 746\n * @framerIntrinsicWidth 1030\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"cZmDhS97Z\":{\"layout\":[\"fixed\",\"fixed\"]},\"OVhPjvaQ6\":{\"layout\":[\"fixed\",\"fixed\"]},\"VtvJ_iFhS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerXgjpFutW_=withCSS(Component,css,\"framer-62FY3\");export default FramerXgjpFutW_;FramerXgjpFutW_.displayName=\"Testimonials\";FramerXgjpFutW_.defaultProps={height:746,width:1030};addPropertyControls(FramerXgjpFutW_,{variant:{options:[\"Ml3E_smgv\",\"cZmDhS97Z\",\"OVhPjvaQ6\",\"VtvJ_iFhS\"],optionTitles:[\"Desktop 1\",\"Desktop 2\",\"Desktop 3\",\"mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerXgjpFutW_,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]},...TestimonialCardFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXgjpFutW_\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cZmDhS97Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OVhPjvaQ6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VtvJ_iFhS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"746\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1030\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XgjpFutW_.map", "// Generated by Framer (255de63)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withMappedReactProps,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js\";import CardsFeatureHighlight2 from\"#framer/local/canvasComponent/CoYL1qWdh/CoYL1qWdh.js\";import StatItem from\"#framer/local/canvasComponent/FVubQNArz/FVubQNArz.js\";import CallToAction from\"#framer/local/canvasComponent/hDk8iqzI5/hDk8iqzI5.js\";import CardsFeatureHighlight from\"#framer/local/canvasComponent/KOuY8BlhQ/KOuY8BlhQ.js\";import Button,*as ButtonInfo from\"#framer/local/canvasComponent/LNCJ8JrMb/LNCJ8JrMb.js\";import Review from\"#framer/local/canvasComponent/Ph5rymIGz/Ph5rymIGz.js\";import FAQS from\"#framer/local/canvasComponent/PXT_8Wkmb/PXT_8Wkmb.js\";import FeatureList from\"#framer/local/canvasComponent/Q4hJGItBu/Q4hJGItBu.js\";import HeroImage from\"#framer/local/canvasComponent/qZ1Ebqrot/qZ1Ebqrot.js\";import Header from\"#framer/local/canvasComponent/R59UUiNVK/R59UUiNVK.js\";import Footer from\"#framer/local/canvasComponent/RT57n2mYC/RT57n2mYC.js\";import Testimonials from\"#framer/local/canvasComponent/XgjpFutW_/XgjpFutW_.js\";import Badge from\"#framer/local/canvasComponent/ZC6oaTVqt/ZC6oaTVqt.js\";import{withQueryParams}from\"#framer/local/codeFile/QPY8R1a/Code_override.js\";import*as sharedStyle1 from\"#framer/local/css/HhLr_TFUZ/HhLr_TFUZ.js\";import*as sharedStyle2 from\"#framer/local/css/KCyUlehY9/KCyUlehY9.js\";import*as sharedStyle3 from\"#framer/local/css/Tsh95XLwX/Tsh95XLwX.js\";import*as sharedStyle from\"#framer/local/css/vlUd825be/vlUd825be.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonFonts=getFonts(Button);const ButtonWithQueryParamsjblz5fWithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"EYZ68iU2Z\",override:withQueryParams,scopeId:\"augiA20Il\"}),ButtonInfo);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const HeroImageFonts=getFonts(HeroImage);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const VideoFonts=getFonts(Video);const MotionDivWithFX=withFX(motion.div);const CardsFeatureHighlightFonts=getFonts(CardsFeatureHighlight);const CardsFeatureHighlight2Fonts=getFonts(CardsFeatureHighlight2);const BadgeFonts=getFonts(Badge);const ContainerWithFX=withFX(Container);const StatItemFonts=getFonts(StatItem);const ButtonWithQueryParamse6hoaxWithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"vUVjqUtUN\",override:withQueryParams,scopeId:\"augiA20Il\"}),ButtonInfo);const TestimonialsFonts=getFonts(Testimonials);const ButtonWithQueryParams1aiwm0yWithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"zJYSPZ8rM\",override:withQueryParams,scopeId:\"augiA20Il\"}),ButtonInfo);const FeatureListFonts=getFonts(FeatureList);const ImageWithFX=withFX(Image);const ButtonWithQueryParams1dvh3wWithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"ELqvhg3Y3\",override:withQueryParams,scopeId:\"augiA20Il\"}),ButtonInfo);const ReviewFonts=getFonts(Review);const CarouselFonts=getFonts(Carousel);const CallToActionFonts=getFonts(CallToAction);const FAQSFonts=getFonts(FAQS);const FooterFonts=getFonts(Footer);const HeaderFonts=getFonts(Header);const HeaderWithVariantAppearEffect=withVariantAppearEffect(Header);const breakpoints={Hekf4oduE:\"(min-width: 390px) and (max-width: 449px)\",iOK0BgbBB:\"(min-width: 450px) and (max-width: 549px)\",kxzNaQgbI:\"(max-width: 389px)\",uvrVzBlaR:\"(min-width: 550px) and (max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\",yq55Z_5nd:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-JQUla\";const variantClassNames={Hekf4oduE:\"framer-v-1gf05ve\",iOK0BgbBB:\"framer-v-8bsf40\",kxzNaQgbI:\"framer-v-1t1wd98\",uvrVzBlaR:\"framer-v-1tss7gz\",WQLkyLRf1:\"framer-v-72rtr7\",yq55Z_5nd:\"framer-v-gq63ew\"};const transition1={delay:.1,duration:1,ease:[.01,.62,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:.8,ease:[.56,.02,.26,.99],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition3={delay:0,duration:.9,ease:[.56,.02,.26,.99],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={damping:30,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition5={delay:0,duration:.7,ease:[1,0,.62,1],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation8={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation9={opacity:.2,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:250};const transition6={damping:50,delay:0,mass:1,stiffness:600,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:5};const transition7={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:5};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Bigger iphone\":\"iOK0BgbBB\",\"Slim phone\":\"kxzNaQgbI\",Desktop:\"WQLkyLRf1\",Nick:\"uvrVzBlaR\",Phone:\"Hekf4oduE\",Tablet:\"yq55Z_5nd\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"Bn43GtBvM\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"axZ7_8ypU\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"OVZWNqeGD\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"a3dTwlVw2\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"kzSr6ZeEe\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"D39BwgMEj\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"Y0n2sX5OA\");const ref7=React.useRef(null);const router=useRouter();const elementId7=useRouteElementId(\"sbwsRyr9Q\");const ref8=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-cd1e8e92-b91e-4022-84c2-a059ee7f7bad, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-5c2uiy\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1ehecu2\",\"data-border\":true,\"data-framer-appear-id\":\"1ehecu2\",id:elementId,initial:animation1,optimized:true,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jf9yo5\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jhulbt\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hekf4oduE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\"},children:[\"Your Next Big Opportunity Starts With a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c71c9173-e93f-4313-b402-1293a369e47a, rgb(82, 151, 255))\"},children:\"Stunning\"}),\" Website\"]})})},kxzNaQgbI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\"},children:[\"Your Next Big Opportunity Starts With a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c71c9173-e93f-4313-b402-1293a369e47a, rgb(82, 151, 255))\"},children:\"Stunning\"}),\" Website\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"62px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\"},children:[\"Your Next Big Opportunity Starts With a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c71c9173-e93f-4313-b402-1293a369e47a, rgb(82, 151, 255))\"},children:\"Stunning\"}),\" Website\"]})}),className:\"framer-xomajq\",\"data-framer-appear-id\":\"xomajq\",fonts:[\"GF;Instrument Sans-500\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e4701bb6-83f6-41e5-b0c8-9b95b4510e3a, rgb(63, 63, 70))\"},children:\"Professionals have websites. Amateurs have links. Digisell helps filmmakers and photographers look premium for clients, fast. This is how serious creators show the world they\u2019re not just dreaming, they\u2019re directing.\"})}),className:\"framer-1jyggwp\",\"data-framer-appear-id\":\"1jyggwp\",fonts:[\"FS;Satoshi-medium\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-agg6d7\",\"data-framer-appear-id\":\"agg6d7\",initial:animation6,optimized:true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jblz5f-container\",nodeId:\"EYZ68iU2Z\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonWithQueryParamsjblz5fWithMappedReactProps1v1ipky,{ApWhoO21o:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},ey7w8muFX:false,G77f5Yx_v:\" Try Digisell Now\",height:\"100%\",HFfTjmBlq:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",id:\"EYZ68iU2Z\",layoutId:\"EYZ68iU2Z\",n9WP3fBIv:true,oV7zrnzuy:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",SZQpZ3lk2:10,U1Kbkgydv:\"https://app.digisell.io/signup\",variant:\"Nw_OMPtNd\",VkxZQkMEC:\"\",Vo_oxchYD:\"CaretRight\",width:\"100%\",WM2TpCryl:false})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hekf4oduE:{height:315,width:`min(min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) - 40px, 1200px)`},iOK0BgbBB:{width:`min(min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) - 40px, 1200px)`},kxzNaQgbI:{width:`min(min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) - 40px, 1200px)`},uvrVzBlaR:{width:`min(min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) - 40px, 1200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:`min(min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) - 80px, 1200px)`,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-362d50-container\",\"data-framer-appear-id\":\"362d50\",initial:animation8,nodeId:\"N_ty8i25Q\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hekf4oduE:{style:{height:\"100%\",width:\"100%\"},variant:\"u1R9TkmMq\"},iOK0BgbBB:{variant:\"u1R9TkmMq\"},kxzNaQgbI:{variant:\"u1R9TkmMq\"},uvrVzBlaR:{variant:\"u1R9TkmMq\"}},children:/*#__PURE__*/_jsx(HeroImage,{h1A65e8t5:addImageAlt({pixelHeight:1830,pixelWidth:3456,src:\"https://framerusercontent.com/images/J6De0tRu4NGtCVKqp8zwahAH8.png\",srcSet:\"https://framerusercontent.com/images/J6De0tRu4NGtCVKqp8zwahAH8.png?scale-down-to=512 512w,https://framerusercontent.com/images/J6De0tRu4NGtCVKqp8zwahAH8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/J6De0tRu4NGtCVKqp8zwahAH8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/J6De0tRu4NGtCVKqp8zwahAH8.png 3456w\"},\"\"),height:\"100%\",id:\"N_ty8i25Q\",layoutId:\"N_ty8i25Q\",Nq5jm0Vsw:addImageAlt({pixelHeight:1841,pixelWidth:3456,src:\"https://framerusercontent.com/images/ZYM3Rs51LwKYTZDNMTlzQxx9Dg.png\",srcSet:\"https://framerusercontent.com/images/ZYM3Rs51LwKYTZDNMTlzQxx9Dg.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZYM3Rs51LwKYTZDNMTlzQxx9Dg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZYM3Rs51LwKYTZDNMTlzQxx9Dg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZYM3Rs51LwKYTZDNMTlzQxx9Dg.png 3456w\"},\"\"),style:{width:\"100%\"},variant:\"Uzf95hXGw\",width:\"100%\",yhP7moxu5:addImageAlt({pixelHeight:1850,pixelWidth:3456,src:\"https://framerusercontent.com/images/st84UfKsuBKgzkoCnOpLRjoIJG0.png\",srcSet:\"https://framerusercontent.com/images/st84UfKsuBKgzkoCnOpLRjoIJG0.png?scale-down-to=512 512w,https://framerusercontent.com/images/st84UfKsuBKgzkoCnOpLRjoIJG0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/st84UfKsuBKgzkoCnOpLRjoIJG0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/st84UfKsuBKgzkoCnOpLRjoIJG0.png 3456w\"},\"\")})})})})})]})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1xxel26\",\"data-framer-name\":\"Main feature section\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1d8hyc0\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1nqpcik\",\"data-styles-preset\":\"vlUd825be\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-cdaba0c3-7192-4155-be78-0e3fe010491c, rgb(24, 24, 27))\"},children:\"Stop Losing Opportunities. \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-cdaba0c3-7192-4155-be78-0e3fe010491c, rgb(24, 24, 27))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Start Showcasing Your Vision.\"})})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9f531285-1e18-4a38-b208-f287be68e804, rgb(212, 212, 216))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-789qam\",fonts:[\"GF;Instrument Sans-regular\",\"GF;Instrument Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-11zorzc\",\"data-styles-preset\":\"HhLr_TFUZ\",children:[\"Right now, people are searching for talent like yours.\",/*#__PURE__*/_jsx(\"br\",{}),\"But without a site that instantly captures attention, you're invisible. \"]})}),className:\"framer-1cgp2tt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hekf4oduE:{__framer__styleAppearEffectEnabled:undefined},iOK0BgbBB:{__framer__styleAppearEffectEnabled:undefined},kxzNaQgbI:{__framer__styleAppearEffectEnabled:undefined},uvrVzBlaR:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gb8z8p\",\"data-border\":true,\"data-framer-name\":\"Image container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13kcf3o-container\",isModuleExternal:true,nodeId:\"fXavx1J4b\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"fXavx1J4b\",isMixedBorderRadius:false,layoutId:\"fXavx1J4b\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/qnk91tZ1u6bzZyIFHToYw6DByxg.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1id64bd\",\"data-framer-name\":\"Horizontal line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a4h8pe\",\"data-framer-name\":\"Small highlights\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10dl9t3\",\"data-framer-name\":\"First 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hekf4oduE:{width:`max(max(min(${componentViewport?.width||\"100vw\"}, 500px) - 40px, 280px), 200px)`},iOK0BgbBB:{width:`max(max(min(${componentViewport?.width||\"100vw\"}, 500px) - 40px, 280px), 200px)`},kxzNaQgbI:{width:`max(max(min(${componentViewport?.width||\"100vw\"}, 500px) - 40px, 280px), 200px)`},uvrVzBlaR:{width:`max(max(min(${componentViewport?.width||\"100vw\"}, 500px) - 40px, 280px), 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:155,width:`max(max(min(${componentViewport?.width||\"100vw\"}, 1024px) - 64px, 320px), 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-j0sz1z-container\",nodeId:\"ZDu5tcTiE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardsFeatureHighlight,{bee07MbGZ:\"Blazing-fast loading speeds keep visitors engaged and improve your websites SEO search rankings.\",height:\"100%\",id:\"ZDu5tcTiE\",layoutId:\"ZDu5tcTiE\",mdRy55VrV:\"Lightning Fast\",pbh9ZnBRX:\"Bolt\",style:{width:\"100%\"},variant:\"qW92r6J20\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hekf4oduE:{width:`max(max(min(${componentViewport?.width||\"100vw\"}, 500px) - 40px, 280px), 200px)`},iOK0BgbBB:{width:`max(max(min(${componentViewport?.width||\"100vw\"}, 500px) - 40px, 280px), 200px)`},kxzNaQgbI:{width:`max(max(min(${componentViewport?.width||\"100vw\"}, 500px) - 40px, 280px), 200px)`},uvrVzBlaR:{width:`max(max(min(${componentViewport?.width||\"100vw\"}, 500px) - 40px, 280px), 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:155,width:`max(max(min(${componentViewport?.width||\"100vw\"}, 1024px) - 64px, 320px), 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17u4ti6-container\",nodeId:\"ugBUPZOcN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardsFeatureHighlight2,{bee07MbGZ:\"Launch your portfolio, blog or online store quickly with user-friendly templates.\",height:\"100%\",id:\"ugBUPZOcN\",layoutId:\"ugBUPZOcN\",mdRy55VrV:\"Built in Minutes\",pbh9ZnBRX:\"Check\",style:{width:\"100%\"},variant:\"vKEjIq8kv\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10f1a3e\",\"data-framer-name\":\"Second 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hekf4oduE:{width:`max(max(min(${componentViewport?.width||\"100vw\"}, 500px) - 40px, 280px), 200px)`},iOK0BgbBB:{width:`max(max(min(${componentViewport?.width||\"100vw\"}, 500px) - 40px, 280px), 200px)`},kxzNaQgbI:{width:`max(max(min(${componentViewport?.width||\"100vw\"}, 500px) - 40px, 280px), 200px)`},uvrVzBlaR:{width:`max(max(min(${componentViewport?.width||\"100vw\"}, 500px) - 40px, 280px), 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:155,width:`max(max(min(${componentViewport?.width||\"100vw\"}, 1024px) - 64px, 320px), 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6t2r5v-container\",nodeId:\"pye0mN1Jz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardsFeatureHighlight2,{bee07MbGZ:\"No coding needed! Create a professional website effortlessly with pre-designed layouts.\",height:\"100%\",id:\"pye0mN1Jz\",layoutId:\"pye0mN1Jz\",mdRy55VrV:\"Made Simple\",pbh9ZnBRX:\"PuzzlePiece\",style:{width:\"100%\"},variant:\"vKEjIq8kv\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hekf4oduE:{width:`max(max(min(${componentViewport?.width||\"100vw\"}, 500px) - 40px, 280px), 200px)`},iOK0BgbBB:{width:`max(max(min(${componentViewport?.width||\"100vw\"}, 500px) - 40px, 280px), 200px)`},kxzNaQgbI:{width:`max(max(min(${componentViewport?.width||\"100vw\"}, 500px) - 40px, 280px), 200px)`},uvrVzBlaR:{width:`max(max(min(${componentViewport?.width||\"100vw\"}, 500px) - 40px, 280px), 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:155,width:`max(max(min(${componentViewport?.width||\"100vw\"}, 1024px) - 64px, 320px), 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-brlls7-container\",nodeId:\"knVyOoF10\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardsFeatureHighlight2,{bee07MbGZ:\"Drive sales and leads with conversion-optimized designs tailored to your goals.\",height:\"100%\",id:\"knVyOoF10\",layoutId:\"knVyOoF10\",mdRy55VrV:\"Built to Convert\",pbh9ZnBRX:\"CreditCard\",style:{width:\"100%\"},variant:\"vKEjIq8kv\",width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1alzid4\",\"data-framer-name\":\"Features\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qyt725\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7d7t81-container\",nodeId:\"KU7V_kSA3\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Badge,{C_fTzd5lR:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},height:\"100%\",id:\"KU7V_kSA3\",iXsfVjsEM:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",JPO2n74ig:7,layoutId:\"KU7V_kSA3\",Lsu1xrgI3:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",p4KdNyw2A:0,variant:\"Qy1b_vjYv\",width:\"100%\",XGtDHEUvE:\"Portfolio's that increase client work with 40%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nqpcik\",\"data-styles-preset\":\"vlUd825be\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\"},children:\"Built for Creators Who Are Serious About Their Craft\"})}),className:\"framer-gymfer\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hekf4oduE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1btcpgd\",\"data-styles-preset\":\"KCyUlehY9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4e3d4b62-b411-4488-b97a-8ff2a61d3177, rgb(82, 82, 91))\"},children:\"Make your work come to life. Let your site get the deals for you.\"})})},iOK0BgbBB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1btcpgd\",\"data-styles-preset\":\"KCyUlehY9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4e3d4b62-b411-4488-b97a-8ff2a61d3177, rgb(82, 82, 91))\"},children:\"Make your work come to life. Let your site get the deals for you.\"})})},kxzNaQgbI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1btcpgd\",\"data-styles-preset\":\"KCyUlehY9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4e3d4b62-b411-4488-b97a-8ff2a61d3177, rgb(82, 82, 91))\"},children:\"Make your work come to life. Let your site get the deals for you.\"})})},uvrVzBlaR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1btcpgd\",\"data-styles-preset\":\"KCyUlehY9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4e3d4b62-b411-4488-b97a-8ff2a61d3177, rgb(82, 82, 91))\"},children:\"Make your work come to life. Let your site get the deals for you.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1btcpgd\",\"data-styles-preset\":\"KCyUlehY9\",style:{\"--framer-text-color\":\"var(--token-4e3d4b62-b411-4488-b97a-8ff2a61d3177, rgb(82, 82, 91))\"},children:\"Make your work come to life. Let your site get the deals for you.\"})}),className:\"framer-1ld2jk8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1bftr8z\",\"data-framer-name\":\"Stats section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-110m34w\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cwocg7\",\"data-framer-name\":\"Stats\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hekf4oduE:{width:`max(min(${componentViewport?.width||\"100vw\"} - 62px, 1200px), 50px)`},iOK0BgbBB:{width:`max(min(${componentViewport?.width||\"100vw\"} - 62px, 1200px), 50px)`},kxzNaQgbI:{width:`max(min(${componentViewport?.width||\"100vw\"} - 62px, 1200px), 50px)`},uvrVzBlaR:{width:`max(min(${componentViewport?.width||\"100vw\"} - 62px, 1200px), 50px)`},yq55Z_5nd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 112px, 1200px) - 48px) / 3, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:224,width:`max((min(${componentViewport?.width||\"100vw\"} - 62px, 1200px) - 48px) / 3, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19w1dpm-container\",nodeId:\"KbnAQntkt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(StatItem,{H1HFYSjmC:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Users report more inquiries and job offers after switching to Digisell from social links or static portfolios.\"})}),height:\"100%\",id:\"KbnAQntkt\",K_LhrIcAU:\"var(--token-46aef220-58f8-449f-bd4e-f0721e62e798, rgb(18, 126, 241))\",layoutId:\"KbnAQntkt\",PwvAiBAMs:\"40% Increase in Client Work\",sBHE7WWF9:\"40%\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hekf4oduE:{width:`max(min(${componentViewport?.width||\"100vw\"} - 62px, 1200px), 50px)`},iOK0BgbBB:{width:`max(min(${componentViewport?.width||\"100vw\"} - 62px, 1200px), 50px)`},kxzNaQgbI:{width:`max(min(${componentViewport?.width||\"100vw\"} - 62px, 1200px), 50px)`},uvrVzBlaR:{width:`max(min(${componentViewport?.width||\"100vw\"} - 62px, 1200px), 50px)`},yq55Z_5nd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 112px, 1200px) - 48px) / 3, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:224,width:`max((min(${componentViewport?.width||\"100vw\"} - 62px, 1200px) - 48px) / 3, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t9pio4-container\",nodeId:\"BX8Rhd1m3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yq55Z_5nd:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(StatItem,{H1HFYSjmC:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Creators who switch to Digisell receive 3\\xd7 more project inquiries compared to using link trees or reels alone.\"})}),height:\"100%\",id:\"BX8Rhd1m3\",K_LhrIcAU:\"var(--token-ca519111-c9a9-4fa3-9733-87071cfa4b03, rgb(255, 116, 66))\",layoutId:\"BX8Rhd1m3\",PwvAiBAMs:\"3\\xd7 More Inquiries\",sBHE7WWF9:\"300%\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hekf4oduE:{width:`max(min(${componentViewport?.width||\"100vw\"} - 62px, 1200px), 50px)`},iOK0BgbBB:{width:`max(min(${componentViewport?.width||\"100vw\"} - 62px, 1200px), 50px)`},kxzNaQgbI:{width:`max(min(${componentViewport?.width||\"100vw\"} - 62px, 1200px), 50px)`},uvrVzBlaR:{width:`max(min(${componentViewport?.width||\"100vw\"} - 62px, 1200px), 50px)`},yq55Z_5nd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 112px, 1200px) - 48px) / 3, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:224,width:`max((min(${componentViewport?.width||\"100vw\"} - 62px, 1200px) - 48px) / 3, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vh24ek-container\",nodeId:\"hH8Tfj5ur\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yq55Z_5nd:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(StatItem,{H1HFYSjmC:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Presenting your work professionally makes you easier to trust and easier to hire. Relsting in better paying work.\"})}),height:\"100%\",id:\"hH8Tfj5ur\",K_LhrIcAU:\"var(--token-507185eb-89a3-4185-a6e0-ad13e3c47e1c, rgb(72, 216, 125))\",layoutId:\"hH8Tfj5ur\",PwvAiBAMs:\"91% Report Better Paying Work\",sBHE7WWF9:\"91%\",style:{width:\"100%\"},width:\"100%\"})})})})})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(Container,{className:\"framer-e6hoax-container\",nodeId:\"vUVjqUtUN\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonWithQueryParamse6hoaxWithMappedReactProps1v1ipky,{ApWhoO21o:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},ey7w8muFX:false,G77f5Yx_v:\" Try Digisell Now\",height:\"100%\",HFfTjmBlq:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",id:\"vUVjqUtUN\",layoutId:\"vUVjqUtUN\",n9WP3fBIv:true,oV7zrnzuy:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",SZQpZ3lk2:10,U1Kbkgydv:\"https://app.digisell.io/signup\",variant:\"Nw_OMPtNd\",VkxZQkMEC:\"\",Vo_oxchYD:\"CaretRight\",width:\"100%\",WM2TpCryl:false})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1iaumcr\",\"data-framer-name\":\"Success stories\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xydp91\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4ia0qn\",\"data-framer-name\":\"heading\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cuwctf-container\",nodeId:\"nru4nhdNZ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Badge,{C_fTzd5lR:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},height:\"100%\",id:\"nru4nhdNZ\",iXsfVjsEM:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",JPO2n74ig:7,layoutId:\"nru4nhdNZ\",Lsu1xrgI3:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",p4KdNyw2A:0,variant:\"Qy1b_vjYv\",width:\"100%\",XGtDHEUvE:\"Look Professional. Get Hired. Own Your Story\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hekf4oduE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f195ea74-7512-4096-8d91-0e7c7e10d0ab, rgb(213, 219, 230))\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(138deg, var(--token-cdaba0c3-7192-4155-be78-0e3fe010491c, rgb(24, 24, 27)) 51.657657657657666%, var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, rgb(4, 7, 13)) 166%)\"},children:[\"Success Stories to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTZXJpZi1pdGFsaWM=\",\"--framer-font-family\":'\"Instrument Serif\", \"Instrument Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"400\"},children:\"Inspire\"})]})})})},iOK0BgbBB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f195ea74-7512-4096-8d91-0e7c7e10d0ab, rgb(213, 219, 230))\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(138deg, var(--token-cdaba0c3-7192-4155-be78-0e3fe010491c, rgb(24, 24, 27)) 51.657657657657666%, var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, rgb(4, 7, 13)) 166%)\"},children:[\"Success Stories to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTZXJpZi1pdGFsaWM=\",\"--framer-font-family\":'\"Instrument Serif\", \"Instrument Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"400\"},children:\"Inspire\"})]})})})},kxzNaQgbI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f195ea74-7512-4096-8d91-0e7c7e10d0ab, rgb(213, 219, 230))\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(138deg, var(--token-cdaba0c3-7192-4155-be78-0e3fe010491c, rgb(24, 24, 27)) 51.657657657657666%, var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, rgb(4, 7, 13)) 166%)\"},children:[\"Success Stories to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTZXJpZi1pdGFsaWM=\",\"--framer-font-family\":'\"Instrument Serif\", \"Instrument Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"400\"},children:\"Inspire\"})]})})})},uvrVzBlaR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f195ea74-7512-4096-8d91-0e7c7e10d0ab, rgb(213, 219, 230))\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(138deg, var(--token-cdaba0c3-7192-4155-be78-0e3fe010491c, rgb(24, 24, 27)) 51.657657657657666%, var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, rgb(4, 7, 13)) 166%)\"},children:[\"Success Stories to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTZXJpZi1pdGFsaWM=\",\"--framer-font-family\":'\"Instrument Serif\", \"Instrument Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"400\"},children:\"Inspire\"})]})})})},yq55Z_5nd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f195ea74-7512-4096-8d91-0e7c7e10d0ab, rgb(213, 219, 230))\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(138deg, var(--token-cdaba0c3-7192-4155-be78-0e3fe010491c, rgb(24, 24, 27)) 51.657657657657666%, var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, rgb(4, 7, 13)) 166%)\"},children:[\"Success Stories to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTZXJpZi1pdGFsaWM=\",\"--framer-font-family\":'\"Instrument Serif\", \"Instrument Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"400\"},children:\"Inspire\"})]})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-677fef91-3da6-4249-af2d-e0ea4fac7c87, rgb(213, 219, 230))\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(138deg, var(--token-cdaba0c3-7192-4155-be78-0e3fe010491c, rgb(24, 24, 27)) 51.657657657657666%, var(--token-eb09dbbf-ef85-4b7f-81a5-44e9b062efb7, rgb(4, 7, 13)) 166%)\"},children:[\"Success Stories to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTZXJpZi1pdGFsaWM=\",\"--framer-font-family\":'\"Instrument Serif\", \"Instrument Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"400\"},children:\"Inspire\"})]})})}),className:\"framer-18cebvb\",fonts:[\"Inter-Medium\",\"GF;Instrument Serif-italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e6a1425f-5cc8-4e16-87a5-8615ab8b8fe1, rgb(82, 82, 91))\"},children:\"Whether you're applying to festivals, pitching a client, or building your brand, a clean, well-structured portfolio helps people understand your vision.\"})}),className:\"framer-3tv7oy\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iwr6j7\",\"data-framer-name\":\"clients\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hekf4oduE:{width:`min(min(${componentViewport?.width||\"100vw\"} - 36px, 1200px), 990px)`},iOK0BgbBB:{width:`min(min(${componentViewport?.width||\"100vw\"} - 36px, 1200px), 990px)`},kxzNaQgbI:{width:`min(min(${componentViewport?.width||\"100vw\"} - 36px, 1200px), 990px)`},uvrVzBlaR:{width:`min(min(${componentViewport?.width||\"100vw\"} - 36px, 1200px), 990px)`},yq55Z_5nd:{height:807,width:`min(min(min(${componentViewport?.width||\"100vw\"}, 810px) - 80px, 1200px), 990px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:746,width:`min(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px), 990px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-f4nsp5-container\",nodeId:\"NqS91bSDw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hekf4oduE:{variant:\"VtvJ_iFhS\"},iOK0BgbBB:{variant:\"VtvJ_iFhS\"},kxzNaQgbI:{variant:\"VtvJ_iFhS\"},uvrVzBlaR:{variant:\"VtvJ_iFhS\"},yq55Z_5nd:{style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Testimonials,{height:\"100%\",id:\"NqS91bSDw\",layoutId:\"NqS91bSDw\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"Ml3E_smgv\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4gkny2\",\"data-framer-name\":\"bg shape\",style:{rotate:-13}})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1k14a0b\",\"data-framer-name\":\"Content\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j32zna\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12jo5yf\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ewazy0-container\",nodeId:\"U73MHZabR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Badge,{C_fTzd5lR:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},height:\"100%\",id:\"U73MHZabR\",iXsfVjsEM:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",JPO2n74ig:7,layoutId:\"U73MHZabR\",Lsu1xrgI3:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",p4KdNyw2A:0,variant:\"Qy1b_vjYv\",width:\"100%\",XGtDHEUvE:\"Built for creatives\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nqpcik\",\"data-styles-preset\":\"vlUd825be\",style:{\"--framer-text-color\":\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\"},children:\"For creatives that want 40% more clients\"})}),className:\"framer-er1d7g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1btcpgd\",\"data-styles-preset\":\"KCyUlehY9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4e3d4b62-b411-4488-b97a-8ff2a61d3177, rgb(82, 82, 91))\"},children:\"Our websites have proven to increase conversion rates by 40% for creators and talent from all sectors.\"})}),className:\"framer-zjshaz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n1ju4v\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aiwm0y-container\",nodeId:\"zJYSPZ8rM\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hekf4oduE:{variant:\"Nw_OMPtNd\"},iOK0BgbBB:{variant:\"Nw_OMPtNd\"},kxzNaQgbI:{variant:\"Nw_OMPtNd\"},uvrVzBlaR:{variant:\"Nw_OMPtNd\"}},children:/*#__PURE__*/_jsx(ButtonWithQueryParams1aiwm0yWithMappedReactProps1v1ipky,{ApWhoO21o:{borderColor:\"var(--token-408e9ffb-f435-48c7-a9ff-2c04fe742fc2, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:0},ey7w8muFX:false,G77f5Yx_v:\"Try Digisell for free\",height:\"100%\",HFfTjmBlq:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",id:\"zJYSPZ8rM\",layoutId:\"zJYSPZ8rM\",n9WP3fBIv:true,oV7zrnzuy:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",SZQpZ3lk2:10,U1Kbkgydv:\"app.digisell.io\",variant:\"rt1NrdlKK\",VkxZQkMEC:\"\",Vo_oxchYD:\"ArrowRight\",width:\"100%\",WM2TpCryl:true})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pet5vc\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hekf4oduE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:356,intrinsicWidth:356,pixelHeight:5464,pixelWidth:8192,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1100px)`,src:\"https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg 8192w\"}},iOK0BgbBB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:356,intrinsicWidth:356,pixelHeight:5464,pixelWidth:8192,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1100px)`,src:\"https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg 8192w\"}},kxzNaQgbI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:356,intrinsicWidth:356,pixelHeight:5464,pixelWidth:8192,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1100px)`,src:\"https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg 8192w\"}},uvrVzBlaR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:356,intrinsicWidth:356,pixelHeight:5464,pixelWidth:8192,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1100px)`,src:\"https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg 8192w\"}}},children:/*#__PURE__*/_jsxs(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:30,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:356,intrinsicWidth:356,pixelHeight:5464,pixelWidth:8192,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 30px, 1100px) - 40px) / 2, 1px)`,src:\"https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/iKpvJMIZX1gNUN2z9Psp3FJbsBs.jpg 8192w\"},className:\"framer-1l04tvl\",\"data-framer-name\":\"Promo Box\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kijz1r\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-163j1ih-container\",nodeId:\"ZqZ9udO2H\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureList,{D4XEOggBW:\"Made for creatives\",DEHcCPdFj:10,DEjWvm5ds:{borderColor:\"var(--token-408e9ffb-f435-48c7-a9ff-2c04fe742fc2, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:0},FiLjZgSzw:\"var(--token-963ba7ff-1506-4ab8-a9bc-332b05614e66, rgb(9, 9, 11))\",fsvGOaSY1:\"var(--token-963ba7ff-1506-4ab8-a9bc-332b05614e66, rgb(9, 9, 11))\",fYNx7blcX:\"Lightning\",height:\"100%\",iC61GWzXu:\"fill\",id:\"ZqZ9udO2H\",ImRwkr204:50,l3JgFZkZt:50,layoutId:\"ZqZ9udO2H\",R3SYpLJ3Q:\"rgba(255, 255, 255, 0.5)\",variant:\"GRrefAfim\",VfaR6IPSw:10,width:\"100%\",X7Tt0agwX:addImageAlt({pixelHeight:2549,pixelWidth:2039,src:\"https://framerusercontent.com/images/KHA5VFFnjgCNs1DirrHZmbGKhc.jpg\",srcSet:\"https://framerusercontent.com/images/KHA5VFFnjgCNs1DirrHZmbGKhc.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/KHA5VFFnjgCNs1DirrHZmbGKhc.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/KHA5VFFnjgCNs1DirrHZmbGKhc.jpg 2039w\"},\"\")})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-slo9au\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-ai6hvh\",\"data-styles-preset\":\"Tsh95XLwX\",style:{\"--framer-text-color\":\"var(--token-3711503b-3d3b-4886-a85c-4293b65e43e7, rgb(255, 255, 255))\"},children:\"Change your website into a your sales pitch.\"})}),className:\"framer-1n5cox9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9apb0r-container\",nodeId:\"xtyObK1sv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{ApWhoO21o:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},ey7w8muFX:false,G77f5Yx_v:\"Get started for freee\",height:\"100%\",HFfTjmBlq:\"var(--token-3711503b-3d3b-4886-a85c-4293b65e43e7, rgb(255, 255, 255))\",id:\"xtyObK1sv\",layoutId:\"xtyObK1sv\",n9WP3fBIv:true,oV7zrnzuy:\"rgba(9, 9, 11, 0)\",SZQpZ3lk2:10,U1Kbkgydv:\"app.digisell.io\",variant:\"iS3JUvC7w\",VkxZQkMEC:\"\",Vo_oxchYD:\"CaretRight\",width:\"100%\",WM2TpCryl:false})})})]})]})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-175vkgk\",\"data-framer-name\":\"Homepages\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i1lavr\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12ynrgh-container\",nodeId:\"ycwqOE88K\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Badge,{C_fTzd5lR:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},height:\"100%\",id:\"ycwqOE88K\",iXsfVjsEM:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",JPO2n74ig:7,layoutId:\"ycwqOE88K\",Lsu1xrgI3:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",p4KdNyw2A:0,variant:\"Qy1b_vjYv\",width:\"100%\",XGtDHEUvE:\"Pixel-Perfect Design\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nqpcik\",\"data-styles-preset\":\"vlUd825be\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\"},children:\"Templates\"})}),className:\"framer-u4p69b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1btcpgd\",\"data-styles-preset\":\"KCyUlehY9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e6a1425f-5cc8-4e16-87a5-8615ab8b8fe1, rgb(82, 82, 91))\"},children:\"Impeccably crafted sites to enthrall your website visitors. Increasing leads and conversions.\"})}),className:\"framer-vf5tmr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dvh3w-container\",nodeId:\"ELqvhg3Y3\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonWithQueryParams1dvh3wWithMappedReactProps1v1ipky,{ApWhoO21o:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},ey7w8muFX:false,G77f5Yx_v:\"Explore all templates\",height:\"100%\",HFfTjmBlq:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",id:\"ELqvhg3Y3\",layoutId:\"ELqvhg3Y3\",n9WP3fBIv:true,oV7zrnzuy:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",style:{height:\"100%\"},SZQpZ3lk2:10,U1Kbkgydv:\"https://app.digisell.io/signup\",variant:\"Nw_OMPtNd\",VkxZQkMEC:\"\",Vo_oxchYD:\"CaretRight\",width:\"100%\",WM2TpCryl:false})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-z4r97r\",\"data-framer-name\":\"Reviews\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4v3l4m\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b4jd3c-container\",nodeId:\"h6MTAl4dc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureList,{D4XEOggBW:\"Rated 4.9 of 5\",DEHcCPdFj:0,DEjWvm5ds:{borderColor:\"var(--token-408e9ffb-f435-48c7-a9ff-2c04fe742fc2, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:0},FiLjZgSzw:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",fsvGOaSY1:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",fYNx7blcX:\"Lightning\",height:\"100%\",iC61GWzXu:\"fill\",id:\"h6MTAl4dc\",ImRwkr204:50,l3JgFZkZt:50,layoutId:\"h6MTAl4dc\",R3SYpLJ3Q:\"var(--token-3711503b-3d3b-4886-a85c-4293b65e43e7, rgb(255, 255, 255))\",variant:\"hUZhdRa56\",VfaR6IPSw:10,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1nqpcik\",\"data-styles-preset\":\"vlUd825be\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\"},children:[\"Creatives Who \",/*#__PURE__*/_jsx(\"br\",{}),\"Switched to Digisell\"]})}),className:\"framer-10aeilp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hekf4oduE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1btcpgd\",\"data-styles-preset\":\"KCyUlehY9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\"},children:\"Excellent reviews from our extensive user base.\"})})},iOK0BgbBB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1btcpgd\",\"data-styles-preset\":\"KCyUlehY9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\"},children:\"Excellent reviews from our extensive user base.\"})})},kxzNaQgbI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1btcpgd\",\"data-styles-preset\":\"KCyUlehY9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\"},children:\"Excellent reviews from our extensive user base.\"})})},uvrVzBlaR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1btcpgd\",\"data-styles-preset\":\"KCyUlehY9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\"},children:\"Excellent reviews from our extensive user base.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1btcpgd\",\"data-styles-preset\":\"KCyUlehY9\",style:{\"--framer-text-color\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\"},children:\"Excellent reviews from our extensive user base.\"})}),className:\"framer-1a6qw2r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oba0oz\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fFBAKw7mV\"},implicitPathVariables:undefined},{href:{webPageId:\"fFBAKw7mV\"},implicitPathVariables:undefined},{href:{webPageId:\"fFBAKw7mV\"},implicitPathVariables:undefined},{href:{webPageId:\"fFBAKw7mV\"},implicitPathVariables:undefined},{href:{webPageId:\"fFBAKw7mV\"},implicitPathVariables:undefined},{href:{webPageId:\"fFBAKw7mV\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qwuglu-container\",nodeId:\"npuD9TQgY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hekf4oduE:{U1Kbkgydv:resolvedLinks[2]},iOK0BgbBB:{U1Kbkgydv:resolvedLinks[4]},kxzNaQgbI:{U1Kbkgydv:resolvedLinks[3]},uvrVzBlaR:{U1Kbkgydv:resolvedLinks[5]},yq55Z_5nd:{U1Kbkgydv:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{ApWhoO21o:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},ey7w8muFX:true,G77f5Yx_v:\"Check all reviews\",height:\"100%\",HFfTjmBlq:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",id:\"npuD9TQgY\",layoutId:\"npuD9TQgY\",n9WP3fBIv:true,oV7zrnzuy:\"var(--token-3711503b-3d3b-4886-a85c-4293b65e43e7, rgb(255, 255, 255))\",SZQpZ3lk2:10,U1Kbkgydv:resolvedLinks[0],variant:\"iS3JUvC7w\",VkxZQkMEC:\"\",Vo_oxchYD:\"CaretRight\",width:\"100%\",WM2TpCryl:false})})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mma7w5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"eM_WGyFdx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yq55Z_5nd:{progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:9,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:0,dotsRadius:50,showProgressDots:true,showScrollbar:false}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:36,height:\"100%\",id:\"eM_WGyFdx\",layoutId:\"eM_WGyFdx\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:151,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i3fez5-container\",inComponentSlot:true,nodeId:\"kIikR1tih\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Review,{AzAWQcbIR:true,DacsLKlOx:addImageAlt({pixelHeight:500,pixelWidth:895,src:\"https://framerusercontent.com/images/LLOo8aNf4ai7BOfhpHioP8MFfA.webp\",srcSet:\"https://framerusercontent.com/images/LLOo8aNf4ai7BOfhpHioP8MFfA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/LLOo8aNf4ai7BOfhpHioP8MFfA.webp 895w\"},\"\"),Fd62jCAIk:\"eKITewFtP\",fRJy_lUPx:\"Julia Vermeer\",g_IOS1f9Y:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},h7Kfgfu6V:\"var(--token-fd54a91d-2c97-4609-acbc-244da5b6b983, rgb(113, 113, 122))\",height:\"100%\",id:\"kIikR1tih\",InBzWgBgS:\"var(--token-fd54a91d-2c97-4609-acbc-244da5b6b983, rgb(113, 113, 122))\",ItWBREzKc:{borderColor:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",borderStyle:\"solid\",borderWidth:2},layoutId:\"kIikR1tih\",n7tSBpejI:\"\",style:{width:\"100%\"},ThX8_nIij:\"Travel Photographer and Visual Storyteller\",UopH9kk8n:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.11), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.1), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.04)\",VAcgUJ26k:\"var(--token-385cb8b2-959c-4157-9298-79e9c79de523, rgb(255, 182, 110))\",variant:\"u94OyuQlP\",width:\"100%\",X7Ke6oejE:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",YMiXrPt3U:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",YP0ZscLAM:\"I've always struggled with creating a portfolio website that matches the quality of my photography. This tool is a lifesaver\u2014it\u2019s as easy as writing a document, and I don\u2019t have to worry about design at all. I just pick a great template and focus on uploading my work. In less than an hour, I had a website I\u2019m genuinely proud of.  Such an incredible tool!\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:151,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-7sdsn9-container\",inComponentSlot:true,nodeId:\"VxtykrTsc\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Review,{AzAWQcbIR:true,DacsLKlOx:addImageAlt({pixelHeight:575,pixelWidth:865,src:\"https://framerusercontent.com/images/hekGVDzFSdtQZzhlNWwxc9Nk8o.jpg\",srcSet:\"https://framerusercontent.com/images/hekGVDzFSdtQZzhlNWwxc9Nk8o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hekGVDzFSdtQZzhlNWwxc9Nk8o.jpg 865w\"},\"\"),Fd62jCAIk:\"eKITewFtP\",fRJy_lUPx:\"Sophie Lin\",g_IOS1f9Y:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},h7Kfgfu6V:\"var(--token-fd54a91d-2c97-4609-acbc-244da5b6b983, rgb(113, 113, 122))\",height:\"100%\",id:\"VxtykrTsc\",InBzWgBgS:\"var(--token-fd54a91d-2c97-4609-acbc-244da5b6b983, rgb(113, 113, 122))\",ItWBREzKc:{borderColor:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",borderStyle:\"solid\",borderWidth:2},layoutId:\"VxtykrTsc\",n7tSBpejI:\"\",style:{width:\"100%\"},ThX8_nIij:\"Independent Filmmaker and Storyteller\",UopH9kk8n:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.11), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.1), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.04)\",VAcgUJ26k:\"var(--token-385cb8b2-959c-4157-9298-79e9c79de523, rgb(255, 182, 110))\",variant:\"u94OyuQlP\",width:\"100%\",X7Ke6oejE:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",YMiXrPt3U:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",YP0ZscLAM:\"I needed a site to showcase my films and upcoming projects, but I\u2019m not a designer. This tool made the process effortless\u2014I could literally build the whole thing in a day. The interface is intuitive, the templates are stunning, and I didn\u2019t have to learn a single design skill. It\u2019s perfect for filmmakers who just want to focus on their craft and let the website work its magic.\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:151,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mw4l43-container\",inComponentSlot:true,nodeId:\"mqpigu2K6\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Review,{AzAWQcbIR:true,DacsLKlOx:addImageAlt({pixelHeight:6240,pixelWidth:4160,src:\"https://framerusercontent.com/images/kdFGV1T3EKYjdFgyJsVnlOOxM.jpg\",srcSet:\"https://framerusercontent.com/images/kdFGV1T3EKYjdFgyJsVnlOOxM.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/kdFGV1T3EKYjdFgyJsVnlOOxM.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/kdFGV1T3EKYjdFgyJsVnlOOxM.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/kdFGV1T3EKYjdFgyJsVnlOOxM.jpg 4160w\"},\"\"),Fd62jCAIk:\"eKITewFtP\",fRJy_lUPx:\"Adrian Castillo\",g_IOS1f9Y:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},h7Kfgfu6V:\"var(--token-fd54a91d-2c97-4609-acbc-244da5b6b983, rgb(113, 113, 122))\",height:\"100%\",id:\"mqpigu2K6\",InBzWgBgS:\"var(--token-fd54a91d-2c97-4609-acbc-244da5b6b983, rgb(113, 113, 122))\",ItWBREzKc:{borderColor:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",borderStyle:\"solid\",borderWidth:2},layoutId:\"mqpigu2K6\",n7tSBpejI:\"\",style:{width:\"100%\"},ThX8_nIij:\"Backend Developer and AI Enthusiast\",UopH9kk8n:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.11), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.1), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.04)\",VAcgUJ26k:\"var(--token-385cb8b2-959c-4157-9298-79e9c79de523, rgb(255, 182, 110))\",variant:\"u94OyuQlP\",width:\"100%\",X7Ke6oejE:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",YMiXrPt3U:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",YP0ZscLAM:\"I usually spend my time in code, not in design tools. This builder is a dream\u2014it's so intuitive, it almost feels like writing Markdown. I built a personal blog to showcase my projects and thoughts on AI in no time. The simple one-time payment and ease of use make it a no-brainer for anyone, especially techies like me who don\u2019t want to mess with design details.\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:151,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y33by1-container\",inComponentSlot:true,nodeId:\"MLh4E0uHI\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Review,{AzAWQcbIR:true,DacsLKlOx:addImageAlt({pixelHeight:5760,pixelWidth:3840,src:\"https://framerusercontent.com/images/kGbwa4d6dl3T9qSyfhfxB8oHqp4.jpg\",srcSet:\"https://framerusercontent.com/images/kGbwa4d6dl3T9qSyfhfxB8oHqp4.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/kGbwa4d6dl3T9qSyfhfxB8oHqp4.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/kGbwa4d6dl3T9qSyfhfxB8oHqp4.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/kGbwa4d6dl3T9qSyfhfxB8oHqp4.jpg 3840w\"},\"\"),Fd62jCAIk:\"eKITewFtP\",fRJy_lUPx:\"Priya Malik\",g_IOS1f9Y:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},h7Kfgfu6V:\"var(--token-fd54a91d-2c97-4609-acbc-244da5b6b983, rgb(113, 113, 122))\",height:\"100%\",id:\"MLh4E0uHI\",InBzWgBgS:\"var(--token-fd54a91d-2c97-4609-acbc-244da5b6b983, rgb(113, 113, 122))\",ItWBREzKc:{borderColor:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",borderStyle:\"solid\",borderWidth:2},layoutId:\"MLh4E0uHI\",n7tSBpejI:\"\",style:{width:\"100%\"},ThX8_nIij:\"Founder of Nomadly, a travel startup\",UopH9kk8n:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.11), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.1), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.04)\",VAcgUJ26k:\"var(--token-385cb8b2-959c-4157-9298-79e9c79de523, rgb(255, 182, 110))\",variant:\"u94OyuQlP\",width:\"100%\",X7Ke6oejE:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",YMiXrPt3U:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",YP0ZscLAM:\"As a solo developer building my startup, I needed a landing page that looked professional but didn\u2019t take hours of my time. This builder is like a secret weapon\u2014it\u2019s so simple to use, and the components make it feel modular and fast, just like coding. The templates for creators are perfect for my brand, and I love that I don\u2019t need any design skills. \"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:470,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o5sn5w-container\",nodeId:\"w01tV4DRR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hekf4oduE:{variant:\"ipmzz36AJ\"},iOK0BgbBB:{variant:\"ipmzz36AJ\"},kxzNaQgbI:{variant:\"ipmzz36AJ\"},uvrVzBlaR:{variant:\"ipmzz36AJ\"},yq55Z_5nd:{variant:\"kDRJlWlos\"}},children:/*#__PURE__*/_jsx(CallToAction,{ACpMpFr3L:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",eG2qRWVuY:\"A great film deserves a great website. Make yours in a day \u2014 and watch doors open.\",fSwsic5wq:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",gsEAQKbuw:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",height:\"100%\",hZOusc34J:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",id:\"w01tV4DRR\",iTSiyCfn6:\"ArrowRight\",izv65hphi:\"var(--token-fd54a91d-2c97-4609-acbc-244da5b6b983, rgb(113, 113, 122))\",layoutId:\"w01tV4DRR\",ngvo314ej:\"Try Digisell for free\",RBfiI_81A:true,style:{width:\"100%\"},TPfgUMKvU:\"Showcase. Sell. Succeed.\\n\",variant:\"o6EQRhOkB\",w3EFGvBAB:\"app.digisell.io\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1019,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-14ifv0f-container\",id:elementId7,nodeId:\"sbwsRyr9Q\",ref:ref8,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hekf4oduE:{variant:\"mpCktCLFW\"},iOK0BgbBB:{variant:\"mpCktCLFW\"},kxzNaQgbI:{variant:\"mpCktCLFW\"},uvrVzBlaR:{variant:\"mpCktCLFW\"},yq55Z_5nd:{variant:\"QDwIPHy6j\"}},children:/*#__PURE__*/_jsx(FAQS,{height:\"100%\",id:\"sbwsRyr9Q\",layoutId:\"sbwsRyr9Q\",style:{width:\"100%\"},variant:\"VhcnYpIAX\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:540,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ulp1fj-container\",nodeId:\"AkJW0N1Sm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hekf4oduE:{variant:\"mpwjk9MUe\"},iOK0BgbBB:{variant:\"mpwjk9MUe\"},kxzNaQgbI:{variant:\"mpwjk9MUe\"},uvrVzBlaR:{variant:\"mpwjk9MUe\"},yq55Z_5nd:{variant:\"z8oyrV_8I\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"AkJW0N1Sm\",layoutId:\"AkJW0N1Sm\",style:{width:\"100%\"},variant:\"PbSBQXuqG\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hekf4oduE:{width:\"100vw\"},iOK0BgbBB:{width:\"100vw\"},kxzNaQgbI:{width:\"100vw\"},uvrVzBlaR:{width:\"100vw\"},yq55Z_5nd:{width:\"810px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hekf4oduE:{transformTemplate:transformTemplate1},yq55Z_5nd:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-njnafp-container\",layoutScroll:true,nodeId:\"DxbSjzuW5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hekf4oduE:{__framer__variantAppearEffectEnabled:undefined,EdKYuwXXP:\"var(--token-cd1e8e92-b91e-4022-84c2-a059ee7f7bad, rgb(255, 255, 255))\",sGHTFWZo5:false,variant:\"g7fLVO5ml\"},iOK0BgbBB:{__framer__variantAppearEffectEnabled:undefined,EdKYuwXXP:\"var(--token-cd1e8e92-b91e-4022-84c2-a059ee7f7bad, rgb(255, 255, 255))\",sGHTFWZo5:false,variant:\"g7fLVO5ml\"},kxzNaQgbI:{__framer__variantAppearEffectEnabled:undefined,EdKYuwXXP:\"var(--token-cd1e8e92-b91e-4022-84c2-a059ee7f7bad, rgb(255, 255, 255))\",sGHTFWZo5:false,variant:\"g7fLVO5ml\"},uvrVzBlaR:{__framer__variantAppearEffectEnabled:undefined,EdKYuwXXP:\"var(--token-cd1e8e92-b91e-4022-84c2-a059ee7f7bad, rgb(255, 255, 255))\",sGHTFWZo5:false,variant:\"g7fLVO5ml\"},yq55Z_5nd:{__framer__variantAppearEffectEnabled:undefined,EdKYuwXXP:\"var(--token-cd1e8e92-b91e-4022-84c2-a059ee7f7bad, rgb(255, 255, 255))\",sGHTFWZo5:false,variant:\"g7fLVO5ml\"}},children:/*#__PURE__*/_jsx(HeaderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"GEMmITSAJ\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,BeZsA273t:true,Cof0RMUzO:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",dbTkB554q:\"https://app.digisell.io/login\",EdKYuwXXP:\"var(--token-5cb9a68d-31cb-4baf-8414-1a3d9276de57, rgba(255, 255, 255, 0.9))\",eGOhp_OqC:\"Login\",ewfFJItNT:\"XgBIHPUqi\",FFcnuU4Ek:\"var(--token-5cb9a68d-31cb-4baf-8414-1a3d9276de57, rgba(255, 255, 255, 0.95))\",fjP7WXjeu:true,height:\"100%\",id:\"DxbSjzuW5\",ixSSNMsgd:\"lk7ooqA4_\",KDPaGeBIL:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",layoutId:\"DxbSjzuW5\",oqjnlG1pR:true,ORnOR2pUN:{borderColor:\"var(--token-408e9ffb-f435-48c7-a9ff-2c04fe742fc2, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:0},sGHTFWZo5:true,style:{width:\"100%\"},t4qtipNl7:10,tYATmdtwM:\"https://app.digisell.io/signup\",UTTJR9foI:false,v06jigF6i:\"flex-start\",variant:\"kWA7tr2eA\",width:\"100%\",zzroHIlLa:\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(244, 244, 245))\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JQUla.framer-lux5qc, .framer-JQUla .framer-lux5qc { display: block; }\",\".framer-JQUla.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-cd1e8e92-b91e-4022-84c2-a059ee7f7bad, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-JQUla .framer-5c2uiy { align-content: center; align-items: center; background-color: var(--token-cd1e8e92-b91e-4022-84c2-a059ee7f7bad, #fcf2f2); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 142.375vh; justify-content: flex-start; max-height: 2000px; overflow: hidden; padding: 110px 15px 15px 15px; position: relative; width: 100%; }\",\".framer-JQUla .framer-1ehecu2 { --border-bottom-width: 1px; --border-color: var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, #e4e4e7); --border-left-width: 1px; --border-right-width: 1px; --border-style: dashed; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-853fe2fb-837c-41a1-806d-c4b2b85e42fb, #070708); border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: flex-start; max-width: 1200px; min-height: 2000px; overflow: hidden; padding: 80px 40px 40px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-JQUla .framer-jf9yo5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-JQUla .framer-jhulbt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 47px; height: min-content; justify-content: center; max-width: 900px; overflow: visible; padding: 30px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-JQUla .framer-xomajq, .framer-JQUla .framer-1jyggwp { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-JQUla .framer-agg6d7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: 66px; justify-content: center; overflow: visible; padding: 0px 0px 20px 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-JQUla .framer-jblz5f-container, .framer-JQUla .framer-7d7t81-container, .framer-JQUla .framer-e6hoax-container, .framer-JQUla .framer-cuwctf-container, .framer-JQUla .framer-ewazy0-container, .framer-JQUla .framer-1aiwm0y-container, .framer-JQUla .framer-163j1ih-container, .framer-JQUla .framer-9apb0r-container, .framer-JQUla .framer-12ynrgh-container, .framer-JQUla .framer-1b4jd3c-container, .framer-JQUla .framer-qwuglu-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-JQUla .framer-362d50-container { flex: none; height: auto; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-JQUla .framer-1xxel26 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1024px; overflow: visible; padding: 100px 32px 100px 32px; position: relative; width: 100%; }\",\".framer-JQUla .framer-1d8hyc0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JQUla .framer-789qam, .framer-JQUla .framer-1cgp2tt, .framer-JQUla .framer-3tv7oy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JQUla .framer-gb8z8p { --border-bottom-width: 10px; --border-color: #19212b; --border-left-width: 10px; --border-right-width: 10px; --border-style: solid; --border-top-width: 10px; -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 40%) add; align-content: center; align-items: center; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 40%) add; overflow: hidden; padding: 10px; position: relative; width: 102%; will-change: var(--framer-will-change-override, transform); }\",\".framer-JQUla .framer-13kcf3o-container { flex: none; height: 527px; position: relative; width: 971px; }\",\".framer-JQUla .framer-1id64bd { background-color: var(--token-b3885b05-55ea-41ca-8f31-34b1d60584f5, #232323); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-JQUla .framer-a4h8pe { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JQUla .framer-10dl9t3, .framer-JQUla .framer-10f1a3e { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 32px; height: min-content; justify-content: center; min-width: 320px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-JQUla .framer-j0sz1z-container, .framer-JQUla .framer-17u4ti6-container, .framer-JQUla .framer-6t2r5v-container, .framer-JQUla .framer-brlls7-container { flex: 1 0 0px; height: auto; min-width: 200px; position: relative; width: 1px; }\",\".framer-JQUla .framer-1alzid4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 15px 60px 15px; position: relative; width: 100%; }\",\".framer-JQUla .framer-1qyt725, .framer-JQUla .framer-1i1lavr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JQUla .framer-gymfer, .framer-JQUla .framer-er1d7g, .framer-JQUla .framer-u4p69b, .framer-JQUla .framer-10aeilp { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 600px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JQUla .framer-1ld2jk8, .framer-JQUla .framer-vf5tmr, .framer-JQUla .framer-1a6qw2r { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 650px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-JQUla .framer-1bftr8z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 16px 80px 16px; position: relative; width: 100%; }\",\".framer-JQUla .framer-110m34w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-JQUla .framer-cwocg7 { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JQUla .framer-19w1dpm-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 1fr; }\",\".framer-JQUla .framer-1t9pio4-container, .framer-JQUla .framer-1vh24ek-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-JQUla .framer-1iaumcr { align-content: center; align-items: center; background-color: var(--token-cd1e8e92-b91e-4022-84c2-a059ee7f7bad, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; scroll-margin-top: 10px; width: 100%; z-index: 2; }\",\".framer-JQUla .framer-xydp91 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 51px 0px 51px 0px; position: relative; width: 100%; }\",\".framer-JQUla .framer-4ia0qn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; max-width: 640px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JQUla .framer-18cebvb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1000px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JQUla .framer-1iwr6j7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-JQUla .framer-f4nsp5-container { flex: 1 0 0px; height: auto; max-width: 990px; position: relative; width: 1px; }\",\".framer-JQUla .framer-4gkny2 { background: radial-gradient(50% 50% at 50% 50%, var(--token-8877d884-8ee1-4225-b90b-148de56ce15c, rgba(213, 219, 230, 0.7)) 0%, rgba(4, 7, 13, 0) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: -249px; flex: none; height: 499px; left: calc(50.00000000000002% - 793px / 2); opacity: 0.1; pointer-events: none; position: absolute; width: 793px; z-index: 1; }\",\".framer-JQUla .framer-1k14a0b { align-content: center; align-items: center; background-color: var(--token-cd1e8e92-b91e-4022-84c2-a059ee7f7bad, #fff5f5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 15px 80px 15px; position: relative; width: 100%; }\",\".framer-JQUla .framer-1j32zna { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1100px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JQUla .framer-12jo5yf { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-JQUla .framer-zjshaz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 450px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-JQUla .framer-n1ju4v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 5px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-JQUla .framer-1pet5vc { 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: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-JQUla .framer-1l04tvl { -webkit-mask: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0,0,0,1) 100%) add; align-content: flex-end; align-items: flex-end; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 700px; justify-content: space-between; mask: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0,0,0,1) 100%) add; overflow: visible; padding: 30px; position: relative; transform-style: preserve-3d; width: 100%; z-index: 1; }\",\".framer-JQUla .framer-kijz1r { -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 100%) add; background: linear-gradient(180deg, rgba(8, 8, 10, 0) 0%, var(--token-963ba7ff-1506-4ab8-a9bc-332b05614e66, rgb(9, 9, 11)) 100%); bottom: 0px; flex: none; height: 600px; left: 0px; mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 100%) add; overflow: hidden; position: absolute; right: 0px; z-index: 0; }\",\".framer-JQUla .framer-slo9au { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JQUla .framer-1n5cox9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 350px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JQUla .framer-175vkgk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: center; overflow: hidden; padding: 140px 15px 126px 15px; position: relative; width: 100%; }\",\".framer-JQUla .framer-1dvh3w-container { flex: none; height: 46px; position: relative; width: auto; }\",\".framer-JQUla .framer-z4r97r { align-content: center; align-items: center; background-color: var(--token-cd1e8e92-b91e-4022-84c2-a059ee7f7bad, #fff5f5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 100px 15px 100px 15px; position: relative; width: 100%; }\",\".framer-JQUla .framer-4v3l4m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 254px; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JQUla .framer-oba0oz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-JQUla .framer-1mma7w5-container { flex: none; height: 523px; position: relative; width: 1146px; }\",\".framer-JQUla .framer-1i3fez5-container { height: auto; position: relative; width: 400px; z-index: 1; }\",\".framer-JQUla .framer-7sdsn9-container, .framer-JQUla .framer-1mw4l43-container, .framer-JQUla .framer-1y33by1-container { height: auto; position: relative; width: 400px; z-index: 0; }\",\".framer-JQUla .framer-1o5sn5w-container, .framer-JQUla .framer-ulp1fj-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-JQUla .framer-14ifv0f-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-JQUla .framer-njnafp-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-JQUla[data-border=\"true\"]::after, .framer-JQUla [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-JQUla.framer-72rtr7 { width: 810px; } .framer-JQUla .framer-5c2uiy { height: 102.87037037037037vh; min-height: 700px; padding: 75px 15px 15px 15px; } .framer-JQUla .framer-1ehecu2 { min-height: 650px; } .framer-JQUla .framer-jhulbt { max-width: unset; } .framer-JQUla .framer-1xxel26 { padding: 80px 32px 80px 32px; } .framer-JQUla .framer-13kcf3o-container { height: 404px; width: 749px; } .framer-JQUla .framer-1alzid4 { padding: 80px 40px 80px 40px; } .framer-JQUla .framer-gymfer, .framer-JQUla .framer-er1d7g, .framer-JQUla .framer-1n5cox9, .framer-JQUla .framer-u4p69b, .framer-JQUla .framer-10aeilp { max-width: 400px; } .framer-JQUla .framer-1bftr8z { padding: 32px 16px 62px 16px; } .framer-JQUla .framer-1t9pio4-container, .framer-JQUla .framer-1vh24ek-container { height: 100%; } .framer-JQUla .framer-1iaumcr { max-width: 810px; } .framer-JQUla .framer-18cebvb { max-width: 750px; } .framer-JQUla .framer-f4nsp5-container { height: 807px; } .framer-JQUla .framer-1k14a0b { gap: 60px; padding: 50px 15px 50px 15px; } .framer-JQUla .framer-1l04tvl { height: 500px; } .framer-JQUla .framer-175vkgk { padding: 140px 40px 126px 40px; } .framer-JQUla .framer-z4r97r { gap: 30px; padding: 50px 15px 50px 15px; } .framer-JQUla .framer-1mma7w5-container { height: 504px; width: 755px; } .framer-JQUla .framer-njnafp-container { left: 50%; right: unset; transform: translateX(-50%); width: 810px; }}\",\"@media (min-width: 390px) and (max-width: 449px) { .framer-JQUla.framer-72rtr7 { width: 390px; } .framer-JQUla .framer-5c2uiy { height: min-content; padding: 75px 15px 15px 15px; } .framer-JQUla .framer-1ehecu2 { flex: none; height: min-content; min-height: 650px; padding: 80px 20px 0px 20px; } .framer-JQUla .framer-jf9yo5 { gap: 42px; } .framer-JQUla .framer-agg6d7 { gap: 10px; height: min-content; padding: 0px 77px 20px 77px; width: 100%; } .framer-JQUla .framer-362d50-container { height: 315px; } .framer-JQUla .framer-1xxel26 { gap: 32px; max-width: 500px; padding: 60px 20px 60px 20px; } .framer-JQUla .framer-1cgp2tt { --framer-text-wrap-override: none; } .framer-JQUla .framer-gb8z8p { --border-bottom-width: 5px; --border-left-width: 5px; --border-right-width: 5px; --border-top-width: 5px; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; padding: 5px 10px 5px 10px; width: 101%; } .framer-JQUla .framer-13kcf3o-container { height: 187px; order: 0; width: 343px; } .framer-JQUla .framer-10dl9t3, .framer-JQUla .framer-10f1a3e { min-width: 280px; } .framer-JQUla .framer-1alzid4 { padding: 80px 15px 0px 15px; } .framer-JQUla .framer-1ld2jk8 { max-width: 280px; } .framer-JQUla .framer-1bftr8z { padding: 32px 16px 32px 16px; } .framer-JQUla .framer-110m34w { gap: 32px; } .framer-JQUla .framer-cwocg7 { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-JQUla .framer-1iaumcr { padding: 80px 18px 80px 18px; } .framer-JQUla .framer-xydp91 { gap: 44px; } .framer-JQUla .framer-18cebvb { max-width: unset; } .framer-JQUla .framer-1k14a0b { gap: 40px; padding: 40px 20px 40px 20px; } .framer-JQUla .framer-1j32zna { flex-direction: column; } .framer-JQUla .framer-12jo5yf { flex: none; gap: 15px; width: 100%; } .framer-JQUla .framer-1pet5vc { flex: none; gap: 40px; width: 100%; } .framer-JQUla .framer-1l04tvl { height: 400px; } .framer-JQUla .framer-175vkgk { gap: 30px; padding: 120px 15px 40px 15px; } .framer-JQUla .framer-vf5tmr { max-width: 300px; } .framer-JQUla .framer-z4r97r { gap: 30px; padding: 40px 15px 40px 20px; } .framer-JQUla .framer-oba0oz { padding: 0px; } .framer-JQUla .framer-1mma7w5-container { height: 479px; width: 367px; } .framer-JQUla .framer-njnafp-container { left: 50%; right: unset; transform: translateX(-50%); width: 100%; }}\",\"@media (max-width: 389px) { .framer-JQUla.framer-72rtr7 { width: 350px; } .framer-JQUla .framer-5c2uiy { height: min-content; padding: 75px 15px 15px 15px; } .framer-JQUla .framer-1ehecu2 { flex: none; height: min-content; min-height: 650px; padding: 80px 20px 0px 20px; } .framer-JQUla .framer-jf9yo5 { gap: 42px; order: 0; } .framer-JQUla .framer-agg6d7 { gap: 10px; height: min-content; padding: 0px 77px 20px 77px; width: 100%; } .framer-JQUla .framer-1xxel26 { gap: 32px; max-width: 500px; padding: 60px 20px 60px 20px; } .framer-JQUla .framer-1cgp2tt { --framer-text-wrap-override: none; } .framer-JQUla .framer-gb8z8p { --border-bottom-width: 5px; --border-left-width: 5px; --border-right-width: 5px; --border-top-width: 5px; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; padding: 5px 10px 5px 10px; } .framer-JQUla .framer-13kcf3o-container { height: 167px; width: 307px; } .framer-JQUla .framer-10dl9t3, .framer-JQUla .framer-10f1a3e { min-width: 280px; } .framer-JQUla .framer-1alzid4 { padding: 80px 15px 0px 15px; } .framer-JQUla .framer-1ld2jk8 { max-width: 280px; } .framer-JQUla .framer-1bftr8z { padding: 32px 16px 32px 16px; } .framer-JQUla .framer-110m34w { gap: 32px; } .framer-JQUla .framer-cwocg7 { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-JQUla .framer-1iaumcr { padding: 80px 18px 80px 18px; } .framer-JQUla .framer-xydp91 { gap: 44px; } .framer-JQUla .framer-18cebvb { max-width: unset; } .framer-JQUla .framer-1k14a0b { gap: 40px; padding: 40px 20px 40px 20px; } .framer-JQUla .framer-1j32zna { flex-direction: column; } .framer-JQUla .framer-12jo5yf { flex: none; gap: 15px; width: 100%; } .framer-JQUla .framer-1pet5vc { flex: none; gap: 40px; width: 100%; } .framer-JQUla .framer-1l04tvl { height: 400px; } .framer-JQUla .framer-175vkgk { gap: 30px; padding: 120px 15px 40px 15px; } .framer-JQUla .framer-vf5tmr { max-width: 300px; } .framer-JQUla .framer-z4r97r { gap: 30px; padding: 40px 15px 40px 20px; } .framer-JQUla .framer-oba0oz { padding: 0px; } .framer-JQUla .framer-1mma7w5-container { height: 479px; width: 324px; } .framer-JQUla .framer-njnafp-container { right: unset; width: 100%; }}\",\"@media (min-width: 450px) and (max-width: 549px) { .framer-JQUla.framer-72rtr7 { width: 450px; } .framer-JQUla .framer-5c2uiy { height: min-content; padding: 75px 15px 15px 15px; } .framer-JQUla .framer-1ehecu2 { flex: none; height: min-content; min-height: 650px; order: 0; padding: 80px 20px 66px 20px; } .framer-JQUla .framer-jf9yo5 { gap: 42px; order: 0; } .framer-JQUla .framer-agg6d7 { gap: 10px; height: min-content; padding: 0px 77px 20px 77px; width: 100%; } .framer-JQUla .framer-1xxel26 { gap: 32px; max-width: 500px; padding: 60px 20px 60px 20px; } .framer-JQUla .framer-1cgp2tt { --framer-text-wrap-override: none; } .framer-JQUla .framer-gb8z8p { --border-bottom-width: 5px; --border-left-width: 5px; --border-right-width: 5px; --border-top-width: 5px; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; padding: 5px 10px 5px 10px; width: 101%; } .framer-JQUla .framer-13kcf3o-container { height: 219px; order: 0; width: 405px; } .framer-JQUla .framer-10dl9t3, .framer-JQUla .framer-10f1a3e { min-width: 280px; } .framer-JQUla .framer-1alzid4 { padding: 80px 15px 0px 15px; } .framer-JQUla .framer-1ld2jk8 { max-width: 280px; } .framer-JQUla .framer-1bftr8z { padding: 32px 16px 32px 16px; } .framer-JQUla .framer-110m34w { gap: 32px; } .framer-JQUla .framer-cwocg7 { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-JQUla .framer-1iaumcr { padding: 80px 18px 80px 18px; } .framer-JQUla .framer-xydp91 { gap: 44px; } .framer-JQUla .framer-18cebvb { max-width: unset; } .framer-JQUla .framer-1k14a0b { gap: 40px; padding: 40px 20px 40px 20px; } .framer-JQUla .framer-1j32zna { flex-direction: column; } .framer-JQUla .framer-12jo5yf { flex: none; gap: 15px; width: 100%; } .framer-JQUla .framer-1pet5vc { flex: none; gap: 40px; width: 100%; } .framer-JQUla .framer-1l04tvl { height: 400px; } .framer-JQUla .framer-175vkgk { gap: 30px; padding: 120px 15px 40px 15px; } .framer-JQUla .framer-vf5tmr { max-width: 300px; } .framer-JQUla .framer-z4r97r { gap: 30px; padding: 40px 15px 40px 20px; } .framer-JQUla .framer-oba0oz { padding: 0px; } .framer-JQUla .framer-1mma7w5-container { height: 479px; width: 367px; } .framer-JQUla .framer-njnafp-container { right: unset; width: 100%; }}\",\"@media (min-width: 550px) and (max-width: 809px) { .framer-JQUla.framer-72rtr7 { width: 550px; } .framer-JQUla .framer-5c2uiy { height: min-content; padding: 75px 15px 15px 15px; } .framer-JQUla .framer-1ehecu2 { flex: none; height: min-content; min-height: 650px; padding: 80px 20px 11px 20px; } .framer-JQUla .framer-jf9yo5 { gap: 42px; } .framer-JQUla .framer-agg6d7 { gap: 10px; height: min-content; padding: 0px 77px 20px 77px; width: 100%; } .framer-JQUla .framer-1xxel26 { gap: 32px; max-width: 500px; padding: 60px 20px 60px 20px; } .framer-JQUla .framer-1cgp2tt { --framer-text-wrap-override: none; } .framer-JQUla .framer-gb8z8p { --border-bottom-width: 5px; --border-left-width: 5px; --border-right-width: 5px; --border-top-width: 5px; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; padding: 5px 10px 5px 10px; width: 101%; } .framer-JQUla .framer-13kcf3o-container { height: 219px; order: 0; width: 405px; } .framer-JQUla .framer-10dl9t3, .framer-JQUla .framer-10f1a3e { min-width: 280px; } .framer-JQUla .framer-1alzid4 { padding: 80px 15px 0px 15px; } .framer-JQUla .framer-1ld2jk8 { max-width: 280px; } .framer-JQUla .framer-1bftr8z { padding: 32px 16px 32px 16px; } .framer-JQUla .framer-110m34w { gap: 32px; } .framer-JQUla .framer-cwocg7 { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-JQUla .framer-1iaumcr { padding: 80px 18px 80px 18px; } .framer-JQUla .framer-xydp91 { gap: 44px; } .framer-JQUla .framer-18cebvb { max-width: unset; } .framer-JQUla .framer-1k14a0b { gap: 40px; padding: 40px 20px 40px 20px; } .framer-JQUla .framer-1j32zna { flex-direction: column; } .framer-JQUla .framer-12jo5yf { flex: none; gap: 15px; width: 100%; } .framer-JQUla .framer-1pet5vc { flex: none; gap: 40px; width: 100%; } .framer-JQUla .framer-1l04tvl { height: 400px; } .framer-JQUla .framer-175vkgk { gap: 30px; padding: 120px 15px 40px 15px; } .framer-JQUla .framer-vf5tmr { max-width: 300px; } .framer-JQUla .framer-z4r97r { gap: 30px; padding: 40px 15px 40px 20px; } .framer-JQUla .framer-oba0oz { padding: 0px; } .framer-JQUla .framer-1mma7w5-container { height: 479px; width: 367px; } .framer-JQUla .framer-njnafp-container { right: unset; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9045\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"yq55Z_5nd\":{\"layout\":[\"fixed\",\"auto\"]},\"Hekf4oduE\":{\"layout\":[\"fixed\",\"auto\"]},\"kxzNaQgbI\":{\"layout\":[\"fixed\",\"auto\"]},\"iOK0BgbBB\":{\"layout\":[\"fixed\",\"auto\"]},\"uvrVzBlaR\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Bn43GtBvM\":{\"pattern\":\":Bn43GtBvM\",\"name\":\"hero\"},\"axZ7_8ypU\":{\"pattern\":\":axZ7_8ypU\",\"name\":\"big-feature\"},\"OVZWNqeGD\":{\"pattern\":\":OVZWNqeGD\",\"name\":\"features\"},\"a3dTwlVw2\":{\"pattern\":\":a3dTwlVw2\",\"name\":\"success-stories\"},\"kzSr6ZeEe\":{\"pattern\":\":kzSr6ZeEe\",\"name\":\"cards\"},\"D39BwgMEj\":{\"pattern\":\":D39BwgMEj\",\"name\":\"homepages\"},\"Y0n2sX5OA\":{\"pattern\":\":Y0n2sX5OA\",\"name\":\"reviews\"},\"sbwsRyr9Q\":{\"pattern\":\":sbwsRyr9Q\",\"name\":\"faq\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-JQUla\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:9045,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npST3-QfwmS0v3_7Y.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-QfwmS0v3_7Y.woff2\",weight:\"400\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQi_gfwmS0v3_7Y.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Instrument Serif\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/instrumentserif/v4/jizHRFtNs2ka5fXjeivQ4LroWlx-6zATjnTNgNq55w.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]},...ButtonFonts,...HeroImageFonts,...VideoFonts,...CardsFeatureHighlightFonts,...CardsFeatureHighlight2Fonts,...BadgeFonts,...StatItemFonts,...TestimonialsFonts,...FeatureListFonts,...ReviewFonts,...CarouselFonts,...CallToActionFonts,...FAQSFonts,...FooterFonts,...HeaderFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"9045\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"Bn43GtBvM\\\":{\\\"pattern\\\":\\\":Bn43GtBvM\\\",\\\"name\\\":\\\"hero\\\"},\\\"axZ7_8ypU\\\":{\\\"pattern\\\":\\\":axZ7_8ypU\\\",\\\"name\\\":\\\"big-feature\\\"},\\\"OVZWNqeGD\\\":{\\\"pattern\\\":\\\":OVZWNqeGD\\\",\\\"name\\\":\\\"features\\\"},\\\"a3dTwlVw2\\\":{\\\"pattern\\\":\\\":a3dTwlVw2\\\",\\\"name\\\":\\\"success-stories\\\"},\\\"kzSr6ZeEe\\\":{\\\"pattern\\\":\\\":kzSr6ZeEe\\\",\\\"name\\\":\\\"cards\\\"},\\\"D39BwgMEj\\\":{\\\"pattern\\\":\\\":D39BwgMEj\\\",\\\"name\\\":\\\"homepages\\\"},\\\"Y0n2sX5OA\\\":{\\\"pattern\\\":\\\":Y0n2sX5OA\\\",\\\"name\\\":\\\"reviews\\\"},\\\"sbwsRyr9Q\\\":{\\\"pattern\\\":\\\":sbwsRyr9Q\\\",\\\"name\\\":\\\"faq\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yq55Z_5nd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Hekf4oduE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kxzNaQgbI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iOK0BgbBB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uvrVzBlaR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "Component", "Home_default", "React", "title", "titleId", "props", "svgRef", "iconKeys", "moduleBaseUrl", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "Home_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "defaultEvents", "HeroFonts", "getFonts", "Icon", "HeroControls", "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", "description", "height", "icon", "id", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "pbh9ZnBRX", "mdRy55VrV", "bee07MbGZ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerCoYL1qWdh", "withCSS", "CoYL1qWdh_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "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", "color", "height", "icon", "id", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "XuXIdDx0B", "tehYgz0M0", "Jh10lTWIl", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerBoSDKnbIu", "withCSS", "BoSDKnbIu_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "BadgeFonts", "getFonts", "BoSDKnbIu_default", "MotionDivWithFX", "withFX", "motion", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "badge", "color", "content", "height", "id", "title", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "PwvAiBAMs", "sBHE7WWF9", "K_LhrIcAU", "H1HFYSjmC", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "MotionDivWithFX", "ComponentViewportProvider", "SmartComponentScopedContainer", "BoSDKnbIu_default", "RichText2", "ComponentPresetsProvider", "css", "FramerFVubQNArz", "withCSS", "FVubQNArz_default", "addPropertyControls", "ControlType", "addFonts", "BadgeFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "HeroFonts", "getFonts", "Icon", "HeroControls", "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", "description", "height", "icon", "id", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "pbh9ZnBRX", "mdRy55VrV", "bee07MbGZ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerKOuY8BlhQ", "withCSS", "KOuY8BlhQ_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "content", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "pNqA5B2sU", "aU1_lXl6h", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap154cw9p", "args", "onTap1pq907v", "onTap1tlvu6", "onTapaxq1l8", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerDUlFvND5j", "withCSS", "DUlFvND5j_default", "addPropertyControls", "ControlType", "addFonts", "ElementsFAQItemFonts", "getFonts", "DUlFvND5j_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerdyGX1kn2s", "withCSS", "dyGX1kn2s_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "icon", "id", "link", "newTab", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "vabCwIWAm", "QLeYG_zlf", "tIpm2Fclc", "Ou2Q7KKjz", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerUdPuD1X3B", "withCSS", "UdPuD1X3B_default", "addPropertyControls", "ControlType", "addFonts", "RichTextWithFX", "withFX", "RichText2", "PhosphorFonts", "getFonts", "Icon", "SecondaryButtonFonts", "UdPuD1X3B_default", "MotionDivWithFX", "motion", "CardsFAQFonts", "dyGX1kn2s_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "transition3", "animation1", "transition4", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerPXT_8Wkmb", "withCSS", "PXT_8Wkmb_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "cursor", "height", "id", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "YOLhm3GWr", "gxJEZUNzy", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1wyaltn", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "css", "FramerOlbR6PHBH", "withCSS", "OlbR6PHBH_default", "addPropertyControls", "ControlType", "addFonts", "ArrowFonts", "getFonts", "OlbR6PHBH_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image1", "image2", "image3", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "h1A65e8t5", "Nq5jm0Vsw", "yhP7moxu5", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearwsao90", "args", "onAppearvpba3y", "onAppear1qxq2xj", "onAppear1dk4dti", "onAppearbdekxl", "onAppearfstktj", "onAppearp657on", "onAppear1vi95nd", "onAppear1monpn8", "onAppear4b8nqa", "onAppear1ymgw5l", "onAppear1srp1fi", "gxJEZUNzyj6xxkw", "gxJEZUNzy14hpwig", "gxJEZUNzyq1qs87", "gxJEZUNzy1s8g27a", "gxJEZUNzykwg7jh", "gxJEZUNzy1t0j9da", "gxJEZUNzy1drwtkz", "gxJEZUNzyx2wd3b", "gxJEZUNzyddz9dj", "gxJEZUNzy1pd9ynn", "gxJEZUNzym3ji7v", "gxJEZUNzy105vfhx", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerqZ1Ebqrot", "withCSS", "qZ1Ebqrot_default", "addPropertyControls", "ControlType", "addFonts", "SecondaryButtonFonts", "getFonts", "UdPuD1X3B_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "cursor", "height", "id", "image", "link", "mainTitle", "paragraph", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "OHoH_2Um4", "KU5BZ8ugI", "tcWxhmh_l", "uERLaKu1P", "d3vcv151C", "C3BbZ8cDs", "GscJX1BXj", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1vkhlv0", "args", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "css", "FramerKl3OKkWep", "withCSS", "Kl3OKkWep_default", "addPropertyControls", "ControlType", "addFonts", "TestimonialCardFonts", "getFonts", "Kl3OKkWep_default", "RichTextWithFX", "withFX", "RichText2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "transition2", "animation", "transformTemplate1", "_", "t", "animation1", "transition3", "animation2", "transition4", "textEffect", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1fmd6w9", "args", "onAppear10tfirb", "onAppeare1q6s", "uERLaKu1P1pclmqk", "uERLaKu1P1hdjfm1", "uERLaKu1P1qs7v5o", "onTap1pclmqk", "onTap1hdjfm1", "onTap1qs7v5o", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerXgjpFutW_", "withCSS", "XgjpFutW_default", "addPropertyControls", "ControlType", "addFonts", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "ButtonFonts", "getFonts", "LNCJ8JrMb_default", "ButtonWithQueryParamsjblz5fWithMappedReactProps1v1ipky", "withMappedReactProps", "withCodeBoundaryForOverrides", "withQueryParams", "LNCJ8JrMb_exports", "MotionDivWithOptimizedAppearEffect", "motion", "HeroImageFonts", "qZ1Ebqrot_default", "ContainerWithOptimizedAppearEffect", "Container", "VideoFonts", "Video", "MotionDivWithFX", "withFX", "CardsFeatureHighlightFonts", "KOuY8BlhQ_default", "CardsFeatureHighlight2Fonts", "CoYL1qWdh_default", "BadgeFonts", "ZC6oaTVqt_default", "ContainerWithFX", "StatItemFonts", "FVubQNArz_default", "ButtonWithQueryParamse6hoaxWithMappedReactProps1v1ipky", "TestimonialsFonts", "XgjpFutW_default", "ButtonWithQueryParams1aiwm0yWithMappedReactProps1v1ipky", "FeatureListFonts", "Q4hJGItBu_default", "ImageWithFX", "Image2", "ButtonWithQueryParams1dvh3wWithMappedReactProps1v1ipky", "ReviewFonts", "Ph5rymIGz_default", "CarouselFonts", "Carousel", "CallToActionFonts", "hDk8iqzI5_default", "FAQSFonts", "PXT_8Wkmb_default", "FooterFonts", "RT57n2mYC_default", "HeaderFonts", "R59UUiNVK_default", "HeaderWithVariantAppearEffect", "withVariantAppearEffect", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "transition4", "animation5", "animation6", "transition5", "animation7", "animation8", "addImageAlt", "image", "alt", "animation9", "transition6", "animation10", "transition7", "animation11", "transformTemplate1", "_", "t", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "router", "useRouter", "elementId7", "ref8", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "MotionDivWithOptimizedAppearEffect", "PropertyOverrides2", "x", "RichTextWithOptimizedAppearEffect", "ComponentViewportProvider", "Container", "ButtonWithQueryParamsjblz5fWithMappedReactProps1v1ipky", "ContainerWithOptimizedAppearEffect", "qZ1Ebqrot_default", "RichText2", "MotionDivWithFX", "Video", "KOuY8BlhQ_default", "CoYL1qWdh_default", "ContainerWithFX", "ZC6oaTVqt_default", "FVubQNArz_default", "ButtonWithQueryParamse6hoaxWithMappedReactProps1v1ipky", "XgjpFutW_default", "ButtonWithQueryParams1aiwm0yWithMappedReactProps1v1ipky", "ImageWithFX", "Q4hJGItBu_default", "LNCJ8JrMb_default", "ButtonWithQueryParams1dvh3wWithMappedReactProps1v1ipky", "ResolveLinks", "resolvedLinks", "Carousel", "Ph5rymIGz_default", "hDk8iqzI5_default", "PXT_8Wkmb_default", "RT57n2mYC_default", "HeaderWithVariantAppearEffect", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "ButtonFonts", "HeroImageFonts", "VideoFonts", "CardsFeatureHighlightFonts", "CardsFeatureHighlight2Fonts", "BadgeFonts", "StatItemFonts", "TestimonialsFonts", "FeatureListFonts", "ReviewFonts", "CarouselFonts", "CallToActionFonts", "FAQSFonts", "FooterFonts", "HeaderFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
