{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framer.com/m/iconoir-icons/Home.js@0.0.11", "ssg:https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js", "ssg:https://framerusercontent.com/modules/a3fo7vHeYAHjLWUmG8rp/ExAVDTZOqwFzE9pkmo5y/BC3meg824.js", "ssg:https://framerusercontent.com/modules/6pqdArgnIsDkxGEuQWZH/KPJNaMHvJuhQSOIEDa3C/z9Pa7seOd.js", "ssg:https://framerusercontent.com/modules/4dKirGdWqWiBHwuDovyB/i9RBK2o0RfXEZGKbJ0cp/yioGcHrhh.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "let e;var f=r=>{if(!e){let o=function(t,n){return r.createElement(\"svg\",{width:\"100%\",height:\"1.5em\",strokeWidth:1.5,viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",color:\"currentColor\",ref:n,...t},r.createElement(\"path\",{d:\"M3 9.5L12 4l9 5.5M19 13v6.4a.6.6 0 01-.6.6H5.6a.6.6 0 01-.6-.6V13\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}))};e=r.forwardRef(o)}return e};export{f as default};\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{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/iconoir-icons/Home.js@0.0.11\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"Accessibility\",\"AccessibilitySign\",\"AccessibilityTech\",\"Activity\",\"AddCircledOutline\",\"AddDatabaseScript\",\"AddFolder\",\"AddFrame\",\"AddHexagon\",\"AddKeyframe\",\"AddKeyframeAlt\",\"AddKeyframes\",\"AddLens\",\"AddPage\",\"AddPinAlt\",\"AddSelection\",\"AddSquare\",\"AddToCart\",\"AddUser\",\"Airplane\",\"AirplaneHelix\",\"AirplaneHelix45Deg\",\"AirplaneOff\",\"AirplaneRotation\",\"Airplay\",\"Alarm\",\"Album\",\"AlbumCarousel\",\"AlbumList\",\"AlbumOpen\",\"AlignBottomBox\",\"AlignCenter\",\"AlignJustify\",\"AlignLeft\",\"AlignLeftBox\",\"AlignRight\",\"AlignRightBox\",\"AlignTopBox\",\"Antenna\",\"AntennaOff\",\"AntennaSignal\",\"AppNotification\",\"Apple\",\"AppleHalf\",\"AppleHalfAlt\",\"AppleImac2021\",\"AppleImac2021Side\",\"AppleSwift\",\"ArSymbol\",\"Archery\",\"Archive\",\"AreaSearch\",\"ArrowArchery\",\"ArrowDown\",\"ArrowDownCircled\",\"ArrowLeft\",\"ArrowLeftCircled\",\"ArrowRight\",\"ArrowRightCircled\",\"ArrowSeparate\",\"ArrowUnion\",\"ArrowUnionVertical\",\"ArrowUp\",\"ArrowUpCircled\",\"Asana\",\"Attachment\",\"AutoFlash\",\"Bag\",\"BasketBall\",\"BasketBallAlt\",\"BasketballField\",\"Battery25\",\"Battery50\",\"Battery75\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryIndicator\",\"BatteryWarning\",\"BeachBag\",\"BeachBagBig\",\"Bell\",\"BellNotification\",\"BellOff\",\"Bicycle\",\"Bin\",\"BinAdd\",\"BinFull\",\"BinHalf\",\"BinMinus\",\"Bluetooth\",\"Bold\",\"BoldSquareOutline\",\"BookmarkCircled\",\"BookmarkEmpty\",\"BorderBl\",\"BorderBottom\",\"BorderBr\",\"BorderInner\",\"BorderLeft\",\"BorderOut\",\"BorderRight\",\"BorderTl\",\"BorderTop\",\"BorderTr\",\"BounceLeft\",\"BounceRight\",\"BowlingBall\",\"Box\",\"BoxIso\",\"BoxingGlove\",\"BubbleDownload\",\"BubbleError\",\"BubbleIncome\",\"BubbleOutcome\",\"BubbleSearch\",\"BubbleStar\",\"BubbleUpload\",\"BubbleWarning\",\"Building\",\"BusOutline\",\"BusStop\",\"Calculator\",\"Calendar\",\"Camera\",\"Cancel\",\"CarOutline\",\"Cart\",\"CartAlt\",\"Cash\",\"Cell4X4\",\"CenterAlign\",\"ChatAdd\",\"ChatBubble\",\"ChatBubbleCheck\",\"ChatBubbleCheck1\",\"ChatBubbleEmpty\",\"ChatBubbleError\",\"ChatBubbleQuestion\",\"ChatBubbleTranslate\",\"ChatBubbleWarning\",\"ChatLines\",\"ChatRemove\",\"Check\",\"CheckCircledOutline\",\"Chocolate\",\"Chromecast\",\"ChromecastActive\",\"Church\",\"ChurchAlt\",\"CinemaOld\",\"Circle\",\"City\",\"ClockOutline\",\"Closet\",\"Cloud\",\"CloudBookAlt\",\"CloudCheck\",\"CloudDesync\",\"CloudDownload\",\"CloudError\",\"CloudSunny\",\"CloudSync\",\"CloudUpload\",\"Code\",\"Codepen\",\"Coin\",\"CollageFrame\",\"Collapse\",\"ColorFilter\",\"ColorPicker\",\"ColorPickerEmpty\",\"Combine\",\"CompactDisc\",\"Compress\",\"CompressLines\",\"Computer\",\"ControlSlider\",\"Copy\",\"Copyright\",\"CornerBottomLeft\",\"CornerBottomRight\",\"CornerTopLeft\",\"CornerTopRight\",\"Cpu\",\"CpuWarning\",\"CrackedEgg\",\"CreativeCommons\",\"CreditCard\",\"CreditCard2\",\"Crop\",\"CropRotateBl\",\"CropRotateBr\",\"CropRotateTl\",\"CropRotateTr\",\"Css3\",\"CursorPointer\",\"Cut\",\"CutAlt\",\"Cycling\",\"DashFlag\",\"Dashboard\",\"DashboardDots\",\"DashboardSpeed\",\"DataTransferBoth\",\"DataTransferCheck\",\"DataTransferDown\",\"DataTransferUp\",\"DataTransferWarning\",\"DatabaseBackup\",\"DatabaseExport\",\"DatabaseMonitor\",\"DatabaseRestore\",\"DatabaseScript\",\"DatabaseSettings\",\"DatabaseStar\",\"DatabaseStats\",\"Db\",\"DbCheck\",\"DbError\",\"DbSearch\",\"DbStar\",\"DbWarning\",\"DeCompress\",\"DeleteCircledOutline\",\"DesignPencil\",\"Dialpad\",\"Display4K\",\"DivideSelection1\",\"DivideSelection2\",\"DocSearch\",\"DocSearchAlt\",\"DocStar\",\"DocStarAlt\",\"Dollar\",\"DomoticIssue\",\"Donate\",\"DoubleCheck\",\"DownRoundArrow\",\"Download\",\"DragHandGesture\",\"Drawer\",\"Dribbble\",\"Droplet\",\"DropletHalf\",\"EaseIn\",\"EaseInControlPoint\",\"EaseInOut\",\"EaseOut\",\"EaseOutControlPoint\",\"Edit\",\"EditPencil\",\"Egg\",\"Eject\",\"ElectronicsChip\",\"Emoji\",\"EmojiBall\",\"EmojiBlinkLeft\",\"EmojiBlinkRight\",\"EmojiLookBottom\",\"EmojiLookLeft\",\"EmojiLookRight\",\"EmojiLookTop\",\"EmojiQuite\",\"EmojiReally\",\"EmojiSad\",\"EmojiSatisfied\",\"EmojiSingLeft\",\"EmojiSingLeftNote\",\"EmojiSingRight\",\"EmojiSingRightNote\",\"EmojiSurprise\",\"EmojiSurpriseAlt\",\"EmojiTalkingAngry\",\"EmojiTalkingHappy\",\"EmojiThinkLeft\",\"EmojiThinkRight\",\"EmptyPage\",\"Enlarge\",\"EnlargeRoundArrow\",\"Euro\",\"EuroSquare\",\"EvCharge\",\"EvChargeAlt\",\"EvPlug\",\"EvPlugCharging\",\"EvPlugError\",\"EvStation\",\"Exclude\",\"Expand\",\"ExpandLines\",\"EyeAlt\",\"EyeClose\",\"EyeEmpty\",\"EyeOff\",\"FaceId\",\"Facebook\",\"FacebookSquared\",\"Farm\",\"FastArrowDown\",\"FastArrowDownBox\",\"FastArrowLeft\",\"FastArrowLeftBox\",\"FastArrowRight\",\"FastArrowRightBox\",\"FastArrowTop\",\"FastArrowUpBox\",\"FastBottomCircle\",\"FastLeftCircle\",\"FastRightCircle\",\"FastTopCircle\",\"Female\",\"Figma\",\"FileNotFound\",\"Filter\",\"FilterAlt\",\"Finder\",\"Fingerprint\",\"FingerprintCircled\",\"FingerprintCircledOk\",\"FingerprintPhone\",\"FingerprintScan\",\"FingerprintSquared\",\"Fishing\",\"Flare\",\"Flash\",\"FlashOff\",\"Flip\",\"FlipReverse\",\"Flower\",\"Fog\",\"Folder\",\"FolderAlert\",\"FontSize\",\"Football\",\"FootballBall\",\"ForwardOutline\",\"Frame\",\"FrameAlt\",\"FrameAltEmpty\",\"FrameSelect\",\"FrameSimple\",\"FrameTool\",\"Fridge\",\"Fx\",\"Garage\",\"Gas\",\"GasTank\",\"GasTankDrop\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitHub\",\"GitHubOutline\",\"GitLabFull\",\"GitMerge\",\"GlassEmpty\",\"GlassHalf\",\"GlassHalfAlt\",\"Glasses\",\"Golf\",\"Google\",\"GoogleCircled\",\"GoogleDocs\",\"GoogleDrive\",\"GoogleDriveCheck\",\"GoogleDriveSync\",\"GoogleDriveWarning\",\"GoogleHome\",\"GoogleOne\",\"Gps\",\"GraphDown\",\"GraphUp\",\"GridAdd\",\"GridMinus\",\"GridRemove\",\"Group\",\"Gym\",\"HalfMoon\",\"HandBrake\",\"Handbag\",\"HardDrive\",\"Hat\",\"Hd\",\"Hdr\",\"Headset\",\"HeadsetCharge\",\"HeadsetHelp\",\"HeadsetIssue\",\"HealthShield\",\"Healthcare\",\"Heart\",\"HeavyRain\",\"Heptagon\",\"HerSlips\",\"HesaWarningOutline\",\"Hexagon\",\"HexagonAlt\",\"HighPriority\",\"HistoricShield\",\"HistoricShieldAlt\",\"Home\",\"HomeAlt\",\"HomeAltSlim\",\"HomeAltSlimHoriz\",\"HomeHospital\",\"HomeSimple\",\"HomeSimpleDoor\",\"HomeUser\",\"Hospital\",\"HospitalSign\",\"Hourglass\",\"Html5\",\"Iconoir\",\"Import\",\"Industry\",\"InfoEmpty\",\"InputField\",\"InputSearch\",\"Instagram\",\"Intersect\",\"IntersectAlt\",\"IosSettings\",\"IrisScan\",\"Italic\",\"ItalicSquareOutline\",\"Journal\",\"JournalPage\",\"KeyAlt\",\"KeyAltBack\",\"KeyAltMinus\",\"KeyAltPlus\",\"KeyAltRemove\",\"Keyframe\",\"KeyframeAlignCenter\",\"KeyframePosition\",\"Keyframes\",\"KeyframesCouple\",\"LabelOutline\",\"Lamp\",\"Language\",\"Laptop\",\"LaptopCharging\",\"LaptopFix\",\"LaptopIssue\",\"LargeSuitcase\",\"LayoutLeft\",\"LayoutRight\",\"Leaderboard\",\"LeaderboardStar\",\"LeftRoundArrow\",\"Lens\",\"Lifebelt\",\"LightBulb\",\"LightBulbOff\",\"LightBulbOn\",\"LineSpace\",\"Linear\",\"Link\",\"LinkedIn\",\"List\",\"LoadActionFloppy\",\"Lock\",\"LockKey\",\"LogDenied\",\"LogIn\",\"LogOut\",\"LongArrowDownLeft\",\"LongArrowDownRight\",\"LongArrowLeftDown\",\"LongArrowLeftUp\",\"LongArrowRightDown\",\"LongArrowRightUp\",\"LongArrowRightUp1\",\"LongArrowUpLeft\",\"LongArrowUpRight\",\"LotOfCash\",\"MacControlKey\",\"MacDock\",\"MacOptionKey\",\"MacOsWindow\",\"Mail\",\"MailOpened\",\"Male\",\"Map\",\"MapIssue\",\"MapsArrow\",\"MapsArrowDiagonal\",\"MapsArrowIssue\",\"MapsGoStraight\",\"MapsTurnBack\",\"MapsTurnLeft\",\"MapsTurnRight\",\"MaskSquare\",\"Maximize\",\"Medal\",\"Medal1St\",\"Medium\",\"Megaphone\",\"Menu\",\"MenuScale\",\"Message\",\"MessageAlert\",\"MessageText\",\"Metro\",\"Mic\",\"MicAdd\",\"MicCheck\",\"MicMute\",\"MicRemove\",\"MicSpeaking\",\"MicWarning\",\"Minus\",\"Minus1\",\"MinusHexagon\",\"MinusPinAlt\",\"MinusSquare\",\"MissingFont\",\"ModernTv\",\"ModernTv4K\",\"MoneySquare\",\"MoonSat\",\"MoreHoriz\",\"MoreVert\",\"MouseButtonLeft\",\"MouseButtonRight\",\"MouseScrollWheel\",\"MoveDown\",\"MoveLeft\",\"MoveRight\",\"MoveRuler\",\"MoveUp\",\"Movie\",\"MultiBubble\",\"MultiMacOsWindow\",\"MultiWindow\",\"MultiplePages\",\"MultiplePagesAdd\",\"MultiplePagesDelete\",\"MultiplePagesEmpty\",\"MultiplePagesRemove\",\"Music1\",\"Music1Add\",\"Music2\",\"Music2Add\",\"NavArrowDown\",\"NavArrowLeft\",\"NavArrowRight\",\"NavArrowUp\",\"Navigator\",\"NavigatorAlt\",\"Network\",\"NetworkAlt\",\"NetworkLeft\",\"NetworkRight\",\"NoBattery\",\"NoCoin\",\"NoCreditCard\",\"NoLock\",\"NoSmoking\",\"Notes\",\"Octagon\",\"OilIndustry\",\"OpenInBrowser\",\"OpenInWindow\",\"OpenVpn\",\"OrangeHalf\",\"OrangeSlice\",\"OrangeSliceAlt\",\"Page\",\"PageFlip\",\"PageSearch\",\"PageStar\",\"Palette\",\"PanoramaEnlarge\",\"PanoramaReduce\",\"Pants\",\"PantsAlt\",\"PasswordCursor\",\"PasswordError\",\"PasswordPass\",\"PauseOutline\",\"PcMouse\",\"PenConnectBluetooth\",\"PenConnectWifi\",\"PenTablet\",\"PenTabletConnectUsb\",\"PenTabletConnectWifi\",\"Pentagon\",\"Percentage\",\"PercentageRound\",\"PercentageSquare\",\"PharmacyCircledCross\",\"PharmacySquaredCross\",\"Phone\",\"PhoneAdd\",\"PhoneDelete\",\"PhoneDisabled\",\"PhoneIncome\",\"PhoneOutcome\",\"PhonePaused\",\"PhoneRemove\",\"Pin\",\"PinAlt\",\"PizzaSlice\",\"Planet\",\"PlanetAlt\",\"PlanetSat\",\"PlayOutline\",\"Playlist\",\"PlaylistAdd\",\"PlaylistPlay\",\"PlugTypeA\",\"PlugTypeC\",\"PlugTypeG\",\"PlugTypeL\",\"Plus\",\"Pocket\",\"Position\",\"PositionAlign\",\"Pound\",\"PrecisionTool\",\"Printer\",\"PrinterAlt\",\"PrintingPage\",\"PriorityDown\",\"PriorityUp\",\"ProfileCircled\",\"Prohibition\",\"QuestionMark\",\"QuestionMarkCircle\",\"Rain\",\"ReceiveDollars\",\"ReceiveEuros\",\"ReceivePounds\",\"ReceiveYens\",\"Redo\",\"RedoAction\",\"RedoCircle\",\"Reduce\",\"ReduceRoundArrow\",\"Refresh\",\"RefreshCircular\",\"RefreshDouble\",\"ReminderHandGesture\",\"RemoveDatabaseScript\",\"RemoveEmpty\",\"RemoveFolder\",\"RemoveFrame\",\"RemoveFromCart\",\"RemoveKeyframe\",\"RemoveKeyframeAlt\",\"RemoveKeyframes\",\"RemovePage\",\"RemovePinAlt\",\"RemoveSelection\",\"RemoveSquare\",\"RemoveUser\",\"Repeat\",\"RepeatOnce\",\"ReportColumns\",\"Reports\",\"RewindOutline\",\"Rhombus\",\"RightRoundArrow\",\"Rings\",\"RotateCameraLeft\",\"RotateCameraRight\",\"RssFeed\",\"RssFeedSquared\",\"Ruler\",\"RulerAdd\",\"RulerCombine\",\"RulerRemove\",\"Running\",\"Sandals\",\"SaveActionFloppy\",\"SaveFloppyDisk\",\"ScaleFrameEnlarge\",\"ScaleFrameReduce\",\"Scanning\",\"Scarf\",\"Scissor\",\"ScissorAlt\",\"SeaAndSun\",\"SeaWaves\",\"Search\",\"SearchFont\",\"SecurityPass\",\"Selection\",\"SelectiveTool\",\"SendDollars\",\"SendEuros\",\"SendPounds\",\"SendYens\",\"Server\",\"ServerConnection\",\"Settings\",\"SettingsCloud\",\"SettingsProfiles\",\"ShareAndroid\",\"ShareIos\",\"Shield\",\"ShieldAdd\",\"ShieldAlert\",\"ShieldAlt\",\"ShieldBroken\",\"ShieldCheck\",\"ShieldCross\",\"ShieldDownload\",\"ShieldEye\",\"ShieldLoading\",\"ShieldMinus\",\"ShieldQuestion\",\"ShieldSearch\",\"ShieldUpload\",\"Shop\",\"ShopAlt\",\"ShoppingBag\",\"ShoppingBagAdd\",\"ShoppingBagAlt\",\"ShoppingBagArrowDown\",\"ShoppingBagArrowUp\",\"ShoppingBagCheck\",\"ShoppingBagIssue\",\"ShoppingBagRemove\",\"ShoppingCode\",\"ShoppingCodeCheck\",\"ShoppingCodeError\",\"ShortPants\",\"ShortPantsAlt\",\"Shuffle\",\"SimpleCart\",\"SingleTapGesture\",\"Skateboard\",\"Skateboarding\",\"SkipNextOutline\",\"SkipPrevOutline\",\"SmallShop\",\"SmallShopAlt\",\"SmartphoneDevice\",\"Smoking\",\"Snow\",\"SnowFlake\",\"Soap\",\"SoccerBall\",\"SortDown\",\"SortUp\",\"SoundHigh\",\"SoundLow\",\"SoundMin\",\"SoundOff\",\"SpockHandGesture\",\"Square\",\"StarDashed\",\"StarHalfDashed\",\"StarOutline\",\"StatDown\",\"StatUp\",\"StatsReport\",\"StatsSquareDown\",\"StatsSquareUp\",\"Stretching\",\"StyleBorder\",\"Substract\",\"Suggestion\",\"SunLight\",\"Swimming\",\"SwipeDownGesture\",\"SwipeLeftGesture\",\"SwipeRightGesture\",\"SwipeUpGesture\",\"SwitchOffOutline\",\"SwitchOnOutline\",\"SystemRestart\",\"SystemShut\",\"Table\",\"Table2Columns\",\"TableRows\",\"Telegram\",\"TelegramCircled\",\"TennisBall\",\"TennisBallAlt\",\"TerminalOutline\",\"TerminalSimple\",\"Text\",\"TextAlt\",\"TextSize\",\"ThreeStars\",\"Thunderstorm\",\"TikTok\",\"Timer\",\"TimerOff\",\"Tower\",\"TowerCheck\",\"TowerNoAccess\",\"TowerWarning\",\"Trademark\",\"TrainOutline\",\"Tram\",\"TransitionBottom\",\"TransitionLeft\",\"TransitionRight\",\"TransitionTop\",\"Translate\",\"Trash\",\"Treadmill\",\"Trekking\",\"Trello\",\"Triangle\",\"TriangleFlag\",\"TriangleFlagCircle\",\"TriangleFlagFull\",\"Trophy\",\"Tunnel\",\"Tv\",\"TvFix\",\"TvIssue\",\"Twitter\",\"TwitterVerifiedBadge\",\"Type\",\"UmbrellaFull\",\"Underline\",\"Undo\",\"UndoAction\",\"UndoCircle\",\"Union\",\"UnionAlt\",\"UnionHorizAlt\",\"Unity\",\"Unity5\",\"UpRoundArrow\",\"Upload\",\"UploadSquareOutline\",\"Usb\",\"User\",\"UserBag\",\"UserCart\",\"UserCircleAlt\",\"UserScan\",\"UserSquareAlt\",\"VerifiedBadge\",\"VerifiedUser\",\"VideoCamera\",\"VideoCameraOff\",\"ViewColumns2\",\"ViewColumns3\",\"ViewGrid\",\"ViewStructureDown\",\"ViewStructureUp\",\"Voice\",\"VoiceCircled\",\"VoiceCircledLock\",\"VoiceError\",\"VoiceOk\",\"VoicePhone\",\"VoiceScan\",\"VoiceSquared\",\"VrSymbol\",\"Waist\",\"Walking\",\"WarningSquareOutline\",\"WebWindow\",\"WebWindowClose\",\"Weight\",\"WeightAlt\",\"WhiteFlag\",\"Wifi\",\"WifiIssue\",\"WifiOff\",\"WifiSignalNone\",\"Wind\",\"WrapText\",\"Wristwatch\",\"Yen\",\"YenSquare\",\"Yoga\",\"YouTube\",\"ZoomIn\",\"ZoomOut\",];const moduleBaseUrl=\"https://framer.com/m/iconoir-icons/\";const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * ICONOIR\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.11`;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(\"div\",{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(SelectedIcon,{size:\"100$%\",style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Iconoir\";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 [Iconoir site](https://iconoir.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\":{\"iconKeys\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Iconoir.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-SemiBold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-SemiBoldItalic\"]);export const fonts=[];export const css=['.framer-t0qUj .framer-styles-preset-1p03bzu:not(.rich-text-wrapper), .framer-t0qUj .framer-styles-preset-1p03bzu.rich-text-wrapper p { --framer-font-family: \"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-SemiBoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0px; --framer-line-height: 32px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-32a85a80-d312-468e-9679-2600c480ecba, #282828); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-t0qUj\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (98479f1)\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 Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/a3fo7vHeYAHjLWUmG8rp/ExAVDTZOqwFzE9pkmo5y/BC3meg824.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/u71eso7K6zGAgfX7IEoO/U2sO0SrG3Vm8jgG7Fcq2/Y8sw5swRS.js\";import Badge from\"https://framerusercontent.com/modules/wlmp26uIodeWLdNHd0c8/kjbWGIntLC84cuKOT4PY/KGXdd2ZOe.js\";const IconoirFonts=getFonts(Iconoir);const BadgeFonts=getFonts(Badge);const IconoirControls=getPropertyControls(Iconoir);const cycleOrder=[\"I533:121142;532:120814\",\"wI1C4UmKW\"];const serializationHash=\"framer-Rd8wU\";const variantClassNames={\"I533:121142;532:120814\":\"framer-v-1ohoqnq\",wI1C4UmKW:\"framer-v-g1c7ah\"};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={Desktop:\"I533:121142;532:120814\",Mobile:\"wI1C4UmKW\"};const getProps=({badge,badgeBGColor,badgeTxtColor,description,feature,height,icon,id,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_humanReadableVariantMap_props_variant,_ref6;return{...props,beOEtyEXt:(_ref=description!==null&&description!==void 0?description:props.beOEtyEXt)!==null&&_ref!==void 0?_ref:\"Protection against forgery and elder abuse by requiring amendments to be processed exclusively through the registry. Tamper-proof document storage to prevent unauthorized modifications.\",d6a51n1xQ:(_ref1=badgeBGColor!==null&&badgeBGColor!==void 0?badgeBGColor:props.d6a51n1xQ)!==null&&_ref1!==void 0?_ref1:\"rgb(230, 240, 255)\",eWz7tX1r8:(_ref2=icon!==null&&icon!==void 0?icon:props.eWz7tX1r8)!==null&&_ref2!==void 0?_ref2:\"HighPriority\",IEoHKjp_E:(_ref3=badge!==null&&badge!==void 0?badge:props.IEoHKjp_E)!==null&&_ref3!==void 0?_ref3:\"Plugin\",MUZZPBwbK:(_ref4=badgeTxtColor!==null&&badgeTxtColor!==void 0?badgeTxtColor:props.MUZZPBwbK)!==null&&_ref4!==void 0?_ref4:\"var(--token-02ea8977-fd9a-49bc-8617-d6ebea91ac1a, rgb(11, 92, 213))\",oOZeIwFEe:(_ref5=feature!==null&&feature!==void 0?feature:props.oOZeIwFEe)!==null&&_ref5!==void 0?_ref5:\"Fraud Prevention\",variant:(_ref6=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref6!==void 0?_ref6:\"I533:121142;532:120814\"};};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,oOZeIwFEe,beOEtyEXt,IEoHKjp_E,d6a51n1xQ,MUZZPBwbK,eWz7tX1r8,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"I533:121142;532:120814\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ohoqnq\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"I533:121142;532:120814\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({wI1C4UmKW:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-sk84fr-container\",layoutDependency:layoutDependency,layoutId:\"cQI9vnlyl-container\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(102, 102, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:eWz7tX1r8,id:\"cQI9vnlyl\",layoutId:\"cQI9vnlyl\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-64wqrd\",\"data-framer-name\":\"Text+Tag\",layoutDependency:layoutDependency,layoutId:\"I533:121142;532:120814;532:119787\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x9gg0v\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"I533:121142;532:120814;532:119788\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1p03bzu\",\"data-styles-preset\":\"BC3meg824\",children:\"Zepplin\"})}),className:\"framer-1sigipi\",\"data-framer-name\":\"Zepplin\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I533:121142;532:120814;532:119789\",text:oOZeIwFEe,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yr9th\",\"data-styles-preset\":\"Y8sw5swRS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-11fc4855-518e-48d2-ab9f-4e3689418bde, rgb(94, 105, 127)))\"},children:\"Excepteur sint occaecat cupidat non proident sunt in culpam qui the officia mollit aliquip ex ea comm.\"})}),className:\"framer-1ilsmf2\",\"data-framer-name\":\"Excepteur sint occae\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I533:121142;532:120814;532:119790\",style:{\"--extracted-r6o4lv\":\"var(--token-11fc4855-518e-48d2-ab9f-4e3689418bde, rgb(94, 105, 127))\"},text:beOEtyEXt,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1brk7h6-container\",layoutDependency:layoutDependency,layoutId:\"mPxNWLfj7-container\",children:/*#__PURE__*/_jsx(Badge,{D2jRnfGwK:48,DXClgl2J3:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\",height:\"100%\",id:\"mPxNWLfj7\",layoutId:\"mPxNWLfj7\",LcJ1W7bEe:MUZZPBwbK,qIWJFFokM:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:IEoHKjp_E,SA9jAg9_n:false,variant:\"Vw_eb0Z9V\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"chevron-right\",xKUAtX22H:d6a51n1xQ})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Rd8wU.framer-1y1y82p, .framer-Rd8wU .framer-1y1y82p { display: block; }\",\".framer-Rd8wU.framer-1ohoqnq { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 438px; }\",\".framer-Rd8wU .framer-sk84fr-container { flex: none; height: 64px; position: relative; width: 64px; }\",\".framer-Rd8wU .framer-64wqrd { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Rd8wU .framer-1x9gg0v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Rd8wU .framer-1sigipi, .framer-Rd8wU .framer-1ilsmf2 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Rd8wU .framer-1brk7h6-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Rd8wU.framer-1ohoqnq, .framer-Rd8wU .framer-64wqrd, .framer-Rd8wU .framer-1x9gg0v { gap: 0px; } .framer-Rd8wU.framer-1ohoqnq > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Rd8wU.framer-1ohoqnq > :first-child { margin-left: 0px; } .framer-Rd8wU.framer-1ohoqnq > :last-child { margin-right: 0px; } .framer-Rd8wU .framer-64wqrd > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Rd8wU .framer-64wqrd > :first-child, .framer-Rd8wU .framer-1x9gg0v > :first-child { margin-top: 0px; } .framer-Rd8wU .framer-64wqrd > :last-child, .framer-Rd8wU .framer-1x9gg0v > :last-child { margin-bottom: 0px; } .framer-Rd8wU .framer-1x9gg0v > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-Rd8wU.framer-v-g1c7ah.framer-1ohoqnq { flex-direction: column; }\",\".framer-Rd8wU.framer-v-g1c7ah .framer-64wqrd { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Rd8wU.framer-v-g1c7ah.framer-1ohoqnq { gap: 0px; } .framer-Rd8wU.framer-v-g1c7ah.framer-1ohoqnq > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Rd8wU.framer-v-g1c7ah.framer-1ohoqnq > :first-child { margin-top: 0px; } .framer-Rd8wU.framer-v-g1c7ah.framer-1ohoqnq > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 166\n * @framerIntrinsicWidth 438\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wI1C4UmKW\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"oOZeIwFEe\":\"feature\",\"beOEtyEXt\":\"description\",\"IEoHKjp_E\":\"badge\",\"d6a51n1xQ\":\"badgeBGColor\",\"MUZZPBwbK\":\"badgeTxtColor\",\"eWz7tX1r8\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerz9Pa7seOd=withCSS(Component,css,\"framer-Rd8wU\");export default Framerz9Pa7seOd;Framerz9Pa7seOd.displayName=\"Features Card\";Framerz9Pa7seOd.defaultProps={height:166,width:438};addPropertyControls(Framerz9Pa7seOd,{variant:{options:[\"I533:121142;532:120814\",\"wI1C4UmKW\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},oOZeIwFEe:{defaultValue:\"Fraud Prevention\",displayTextArea:false,title:\"feature\",type:ControlType.String},beOEtyEXt:{defaultValue:\"Protection against forgery and elder abuse by requiring amendments to be processed exclusively through the registry. Tamper-proof document storage to prevent unauthorized modifications.\",displayTextArea:true,title:\"Description\",type:ControlType.String},IEoHKjp_E:{defaultValue:\"Plugin\",displayTextArea:false,title:\"Badge\",type:ControlType.String},d6a51n1xQ:{defaultValue:\"rgb(230, 240, 255)\",title:\"Badge BG Color\",type:ControlType.Color},MUZZPBwbK:{defaultValue:'var(--token-02ea8977-fd9a-49bc-8617-d6ebea91ac1a, rgb(11, 92, 213)) /* {\"name\":\"Blue 600\"} */',title:\"Badge Txt Color\",type:ControlType.Color},eWz7tX1r8:(IconoirControls===null||IconoirControls===void 0?void 0:IconoirControls[\"iconSelection\"])&&{...IconoirControls[\"iconSelection\"],defaultValue:\"HighPriority\",description:\"\",hidden:undefined,title:\"Icon\"}});addFonts(Framerz9Pa7seOd,[{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\"}]},...IconoirFonts,...BadgeFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerz9Pa7seOd\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"oOZeIwFEe\\\":\\\"feature\\\",\\\"beOEtyEXt\\\":\\\"description\\\",\\\"IEoHKjp_E\\\":\\\"badge\\\",\\\"d6a51n1xQ\\\":\\\"badgeBGColor\\\",\\\"MUZZPBwbK\\\":\\\"badgeTxtColor\\\",\\\"eWz7tX1r8\\\":\\\"icon\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"438\",\"framerIntrinsicHeight\":\"166\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wI1C4UmKW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./z9Pa7seOd.map", "// Generated by Framer (98479f1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import NavBar from\"#framer/local/canvasComponent/G1U9qbkD3/G1U9qbkD3.js\";import Footer from\"#framer/local/canvasComponent/IcV1FkOGH/IcV1FkOGH.js\";import Badge from\"#framer/local/canvasComponent/KGXdd2ZOe/KGXdd2ZOe.js\";import CTA from\"#framer/local/canvasComponent/UAbomaNAP/UAbomaNAP.js\";import Button from\"#framer/local/canvasComponent/XQYIUjp_n/XQYIUjp_n.js\";import FeaturesCard from\"#framer/local/canvasComponent/z9Pa7seOd/z9Pa7seOd.js\";import*as sharedStyle5 from\"#framer/local/css/AgoZUqJgV/AgoZUqJgV.js\";import*as sharedStyle4 from\"#framer/local/css/b5bSPZrDH/b5bSPZrDH.js\";import*as sharedStyle from\"#framer/local/css/DeeJaRFMK/DeeJaRFMK.js\";import*as sharedStyle2 from\"#framer/local/css/IyxCnbqgE/IyxCnbqgE.js\";import*as sharedStyle1 from\"#framer/local/css/Oocg1D1bL/Oocg1D1bL.js\";import*as sharedStyle3 from\"#framer/local/css/tZUfsu_N3/tZUfsu_N3.js\";import metadataProvider from\"#framer/local/webPageMetadata/yioGcHrhh/yioGcHrhh.js\";const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const YouTubeFonts=getFonts(YouTube);const NavBarFonts=getFonts(NavBar);const BadgeFonts=getFonts(Badge);const ContainerWithFX=withFX(Container);const ButtonFonts=getFonts(Button);const FeaturesCardFonts=getFonts(FeaturesCard);const CTAFonts=getFonts(CTA);const FooterFonts=getFonts(Footer);const breakpoints={IUnX7GigU:\"(min-width: 810px) and (max-width: 1439px)\",oxcGtFa0K:\"(max-width: 809px)\",xfi6jMzw2:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-qZ4Z1\";const variantClassNames={IUnX7GigU:\"framer-v-1xqt152\",oxcGtFa0K:\"framer-v-13tnn6h\",xfi6jMzw2:\"framer-v-1b0tlud\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const transition1={damping:80,delay:.5,mass:1,stiffness:300,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:80};const transition2={delay:2.5,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation2={opacity:.6,rotate:60,rotateX:0,rotateY:0,scale:1.6,skewX:0,skewY:0,x:100,y:100};const transition3={delay:0,duration:3.5,ease:[0,0,1,1],type:\"tween\"};const animation3={opacity:.5,rotate:5,rotateX:0,rotateY:0,scale:1.3,skewX:0,skewY:0,x:-100,y:-100};const transition4={damping:80,delay:.4,mass:1,stiffness:300,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:80};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition5={damping:80,delay:.2,mass:1,stiffness:500,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:40};const transition6={damping:80,delay:.3,mass:1,stiffness:300,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:80};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition7={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:150};const transition8={damping:80,delay:.1,mass:1,stiffness:500,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:40};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"xfi6jMzw2\",Phone:\"oxcGtFa0K\",Tablet:\"IUnX7GigU\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"xfi6jMzw2\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-qZ4Z1`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-qZ4Z1`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const elementId=useRouteElementId(\"VqgI04m47\");const ref2=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"oxcGtFa0K\")return false;return true;};const elementId1=useRouteElementId(\"rAHTiLOdt\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"uggkzgnyr\");const ref4=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"xfi6jMzw2\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1b0tlud\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-sm4bf4\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q99uvd\",\"data-framer-name\":\"Artwork\",name:\"Artwork\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jg9ry9\",\"data-framer-name\":\"Gradient\",name:\"Gradient\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.5,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:1,className:\"framer-w8e17t\",\"data-framer-name\":\"color\",name:\"color\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition3,__perspectiveFX:false,__targetOpacity:1,className:\"framer-np5f5w\",\"data-framer-name\":\"color\",name:\"color\"})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1a8jt41\",\"data-styles-preset\":\"DeeJaRFMK\",children:[/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Home of the DARCi Registry for Legal Document\",/*#__PURE__*/_jsx(\"br\",{}),\"Authentication, Security, and Management\"]})}),className:\"framer-1sijavg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xlpss8\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1a8jt41\",\"data-styles-preset\":\"DeeJaRFMK\",children:\"Meet DARCi\"})}),className:\"framer-otp6z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y12t17\",\"data-styles-preset\":\"Oocg1D1bL\",style:{\"--framer-text-alignment\":\"center\"},children:\"Introducing DARCi, and the benefits of registering.\"})}),className:\"framer-n8m9co\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],name:\"Content\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eqe62p-container\",id:elementId,ref:ref2,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"VqgI04m47\",isMixedBorderRadius:false,isRed:true,layoutId:\"VqgI04m47\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/YAKdmc0hnm8\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1a8jt41\",\"data-styles-preset\":\"DeeJaRFMK\",children:\"Be Sure.\"})}),className:\"framer-1rrqosk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ewldq8\",\"data-framer-name\":\"Header\",name:\"Header\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-1y12t17\",\"data-styles-preset\":\"Oocg1D1bL\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Your client's interests are protected from loss and tampering such as natural disasters, forgery, and misplacement \"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Your business can authenticate records on demand, saving time, reducing costs, and limiting liability\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Banks & Institutions can authenticate your client's records, avoiding delays and frustration\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Client's intent is reaffirmed regularly, providing a ledger of affirmations and regular opportunities to assess if updates are required\"})})]})}),className:\"framer-1h3r9rg\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],name:\"Content\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uqs71n-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IUnX7GigU:{variant:\"zfQOXGXaS\"},oxcGtFa0K:{variant:\"kMp5ZAoj0\"}},children:/*#__PURE__*/_jsx(NavBar,{height:\"100%\",id:\"lKVqVJ1x2\",jQcddTFoz:true,layoutId:\"lKVqVJ1x2\",style:{width:\"100%\"},variant:\"Y4OBWuFRo\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qvsh8q\",\"data-framer-name\":\"Wrapper\",name:\"Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4676ph\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jtkql2\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IUnX7GigU:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1400),pixelHeight:1e3,pixelWidth:1e3,sizes:\"400px\",src:\"https://framerusercontent.com/images/PiiDrvuxhdp4qYiX5g6pgMkpCE.png\",srcSet:\"https://framerusercontent.com/images/PiiDrvuxhdp4qYiX5g6pgMkpCE.png?scale-down-to=512 512w,https://framerusercontent.com/images/PiiDrvuxhdp4qYiX5g6pgMkpCE.png 1000w\"}},oxcGtFa0K:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2751.2792472024416),pixelHeight:1e3,pixelWidth:1e3,sizes:\"400px\",src:\"https://framerusercontent.com/images/PiiDrvuxhdp4qYiX5g6pgMkpCE.png\",srcSet:\"https://framerusercontent.com/images/PiiDrvuxhdp4qYiX5g6pgMkpCE.png?scale-down-to=512 512w,https://framerusercontent.com/images/PiiDrvuxhdp4qYiX5g6pgMkpCE.png 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1990.5),pixelHeight:1e3,pixelWidth:1e3,sizes:\"400px\",src:\"https://framerusercontent.com/images/PiiDrvuxhdp4qYiX5g6pgMkpCE.png\",srcSet:\"https://framerusercontent.com/images/PiiDrvuxhdp4qYiX5g6pgMkpCE.png?scale-down-to=512 512w,https://framerusercontent.com/images/PiiDrvuxhdp4qYiX5g6pgMkpCE.png 1000w\"},className:\"framer-pubrcm\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1beevuw\",\"data-framer-name\":\"Info\",name:\"Info\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l1krdz\",\"data-framer-name\":\"Badge & Title\",name:\"Badge & Title\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fvnquw-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge,{D2jRnfGwK:48,DXClgl2J3:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\",height:\"100%\",id:\"jop1b2UPd\",layoutId:\"jop1b2UPd\",LcJ1W7bEe:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",qIWJFFokM:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"The System\",SA9jAg9_n:false,variant:\"xzW6xTTmq\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"chevron-right\",xKUAtX22H:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\"})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uaay2f\",\"data-framer-name\":\"Content\",name:\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oxcGtFa0K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1a8jt41\",\"data-styles-preset\":\"DeeJaRFMK\",style:{\"--framer-text-alignment\":\"left\"},children:\"illuminote's DARCi Registry offers a secure, centralized platform for storing and registering legal documents\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-18kbueq\",\"data-styles-preset\":\"IyxCnbqgE\",children:\"illuminote's DARCi Registry offers a secure, centralized platform for storing and registering legal documents\"})}),className:\"framer-yzb2q2\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xm0soh\",\"data-styles-preset\":\"tZUfsu_N3\",style:{\"--framer-text-color\":\"var(--token-11fc4855-518e-48d2-ab9f-4e3689418bde, rgb(94, 105, 127))\"},children:\"It ensures that documents are tamper-proof, amendments are controlled, and all relevant stakeholders are kept informed and guided through the process, providing peace of mind and security.\"})}),className:\"framer-1s8p5i1\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],name:\"Paragraph\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zQfh8Tfvm\"},implicitPathVariables:undefined},{href:{webPageId:\"zQfh8Tfvm\"},implicitPathVariables:undefined},{href:{webPageId:\"zQfh8Tfvm\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13cvnqd-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IUnX7GigU:{GDBvPe0Ba:resolvedLinks[1]},oxcGtFa0K:{GDBvPe0Ba:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button,{bWnYL7Tgp:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\",D2jRnfGwK:6,GDBvPe0Ba:resolvedLinks[0],height:\"100%\",id:\"SUQM9Mlyr\",kN9fQFqwN:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",kvN6MvY_7:\"var(--token-87c9f75a-e5dc-4340-a8f6-03284f64dda3, rgb(13, 110, 253))\",layoutId:\"SUQM9Mlyr\",nR87ztHwf:false,R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"Learn More\",SA9jAg9_n:true,variant:\"RQn5LZ0DA\",vjt0jl_Xl:\"var(--token-02ea8977-fd9a-49bc-8617-d6ebea91ac1a, rgb(11, 92, 213))\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"arrow-right\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nffesf\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19k78gs\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IUnX7GigU:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2223),pixelHeight:1024,pixelWidth:1024,sizes:\"400px\",src:\"https://framerusercontent.com/images/ruehIia0zWHreSdXv5AlkyHeC4.webp\",srcSet:\"https://framerusercontent.com/images/ruehIia0zWHreSdXv5AlkyHeC4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ruehIia0zWHreSdXv5AlkyHeC4.webp 1024w\"}},oxcGtFa0K:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3582.2792472024416),pixelHeight:1024,pixelWidth:1024,sizes:\"400px\",src:\"https://framerusercontent.com/images/ruehIia0zWHreSdXv5AlkyHeC4.webp\",srcSet:\"https://framerusercontent.com/images/ruehIia0zWHreSdXv5AlkyHeC4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ruehIia0zWHreSdXv5AlkyHeC4.webp 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2570),pixelHeight:1024,pixelWidth:1024,sizes:\"400px\",src:\"https://framerusercontent.com/images/ruehIia0zWHreSdXv5AlkyHeC4.webp\",srcSet:\"https://framerusercontent.com/images/ruehIia0zWHreSdXv5AlkyHeC4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ruehIia0zWHreSdXv5AlkyHeC4.webp 1024w\"},className:\"framer-saspe9\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1isiy98\",\"data-framer-name\":\"Info\",name:\"Info\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10lybpi\",\"data-framer-name\":\"Badge & Title\",name:\"Badge & Title\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-x8nip0-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge,{D2jRnfGwK:48,DXClgl2J3:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\",height:\"100%\",id:\"WhNNbRohA\",layoutId:\"WhNNbRohA\",LcJ1W7bEe:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",qIWJFFokM:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"The Opportunity\",SA9jAg9_n:false,variant:\"xzW6xTTmq\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"chevron-right\",xKUAtX22H:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\"})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1teypll\",\"data-framer-name\":\"content\",name:\"content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oxcGtFa0K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1a8jt41\",\"data-styles-preset\":\"DeeJaRFMK\",style:{\"--framer-text-alignment\":\"left\"},children:[\"The Great Wealth Transfer: \",/*#__PURE__*/_jsx(\"br\",{}),\"Opportunity & Pain Point\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1a8jt41\",\"data-styles-preset\":\"DeeJaRFMK\",children:[\"The Great Wealth Transfer: \",/*#__PURE__*/_jsx(\"br\",{}),\"Opportunity & Pain Point\"]})}),className:\"framer-1uol1vp\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-xm0soh\",\"data-styles-preset\":\"tZUfsu_N3\",style:{\"--framer-text-color\":\"var(--token-11fc4855-518e-48d2-ab9f-4e3689418bde, rgb(94, 105, 127))\"},children:[\"With \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 166, 0)\"},children:\"$90 Trillion\"}),\" expected to change hands, most families will experience challenges related to the lack of digital authentication for these critical legal documents such as trusts, wills, and associated documents.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xm0soh\",\"data-styles-preset\":\"tZUfsu_N3\",style:{\"--framer-text-color\":\"var(--token-11fc4855-518e-48d2-ab9f-4e3689418bde, rgb(94, 105, 127))\"},children:\"With DARCi integration, your digital transformation is as simple as the click of a button to authenticate the documents that govern this critical aspect of your business.\"})]}),className:\"framer-iw0vi\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],name:\"Paragraph\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zQfh8Tfvm\"},implicitPathVariables:undefined},{href:{webPageId:\"zQfh8Tfvm\"},implicitPathVariables:undefined},{href:{webPageId:\"zQfh8Tfvm\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-a6el9x-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IUnX7GigU:{GDBvPe0Ba:resolvedLinks1[1]},oxcGtFa0K:{GDBvPe0Ba:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(Button,{bWnYL7Tgp:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\",D2jRnfGwK:6,GDBvPe0Ba:resolvedLinks1[0],height:\"100%\",id:\"FRTyjWCXu\",kN9fQFqwN:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",kvN6MvY_7:\"var(--token-87c9f75a-e5dc-4340-a8f6-03284f64dda3, rgb(13, 110, 253))\",layoutId:\"FRTyjWCXu\",nR87ztHwf:false,R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"Learn More\",SA9jAg9_n:true,variant:\"RQn5LZ0DA\",vjt0jl_Xl:\"var(--token-02ea8977-fd9a-49bc-8617-d6ebea91ac1a, rgb(11, 92, 213))\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"arrow-right\"})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hukst6\",\"data-framer-name\":\"Features\",name:\"Features\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1k8by9u\",\"data-framer-name\":\"Header\",name:\"Header\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wax6jm-container\",children:/*#__PURE__*/_jsx(Badge,{D2jRnfGwK:48,DXClgl2J3:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\",height:\"100%\",id:\"XsZHYh5GY\",layoutId:\"XsZHYh5GY\",LcJ1W7bEe:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",qIWJFFokM:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"Packed with features\",SA9jAg9_n:false,variant:\"kz2JrlLVq\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"chevron-right\",xKUAtX22H:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2a0nm4\",\"data-framer-name\":\"Header\",name:\"Header\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oxcGtFa0K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1a8jt41\",\"data-styles-preset\":\"DeeJaRFMK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Benefits of Registration\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-occ56z\",\"data-styles-preset\":\"b5bSPZrDH\",style:{\"--framer-text-alignment\":\"center\"},children:\"Benefits of Registration\"})}),className:\"framer-fiw3jn\",\"data-framer-name\":\"Design your site in minutes with clonify library\",fonts:[\"Inter\"],name:\"Design your site in minutes with clonify library\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oxcGtFa0K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1a3ch1c\",\"data-styles-preset\":\"AgoZUqJgV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-11fc4855-518e-48d2-ab9f-4e3689418bde, rgb(94, 105, 127))\"},children:\"Why Register? Learn more about the benefits that registration adds to legal documents. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xm0soh\",\"data-styles-preset\":\"tZUfsu_N3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-11fc4855-518e-48d2-ab9f-4e3689418bde, rgb(94, 105, 127))\"},children:\"Why Register? Learn more about the benefits that registration adds to legal documents. \"})}),className:\"framer-pclnb8\",\"data-framer-name\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered in some form, by injected humour\",fonts:[\"Inter\"],name:\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered in some form, by injected humour\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nb9n6p\",\"data-framer-name\":\"Cards\",name:\"Cards\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IUnX7GigU:{width:\"max((100vw - 128px) / 2, 200px)\",y:3599},oxcGtFa0K:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:166,width:\"426px\",y:3392,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i4i0ws-container\",\"data-framer-name\":\"Fraud Prevention\",name:\"Fraud Prevention\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IUnX7GigU:{variant:\"wI1C4UmKW\"},oxcGtFa0K:{variant:\"wI1C4UmKW\"}},children:/*#__PURE__*/_jsx(FeaturesCard,{beOEtyEXt:\"Protection against forgery and elder abuse by requiring amendments to be processed exclusively through the registry. Tamper-proof document storage to prevent unauthorized modifications.\",d6a51n1xQ:\"rgb(233, 255, 227)\",eWz7tX1r8:\"ShieldAlert\",height:\"100%\",id:\"Rjs6EN9kM\",IEoHKjp_E:\"Secure Storage\",layoutId:\"Rjs6EN9kM\",MUZZPBwbK:\"rgb(3, 143, 101)\",name:\"Fraud Prevention\",oOZeIwFEe:\"Fraud Prevention\",style:{width:\"100%\"},variant:\"I533:121142;532:120814\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IUnX7GigU:{width:\"max((100vw - 128px) / 2, 200px)\",y:3599},oxcGtFa0K:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:166,width:\"426px\",y:3392,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g2b7ss-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IUnX7GigU:{variant:\"wI1C4UmKW\"},oxcGtFa0K:{variant:\"wI1C4UmKW\"}},children:/*#__PURE__*/_jsx(FeaturesCard,{beOEtyEXt:\"Automated notifications to all relevant stakeholders (e.g., beneficiaries, trustees, and attorneys) upon updates or milestones. Real-time alerts for administrative events, such as amendments or trustee changes. Proactive AI monitoring and alerts to prevent problems before they begin.\",d6a51n1xQ:\"rgb(255, 245, 230)\",eWz7tX1r8:\"ShieldEye\",height:\"100%\",id:\"GxOJXnhQn\",IEoHKjp_E:\"Intelligent Alerts\",layoutId:\"GxOJXnhQn\",MUZZPBwbK:\"rgb(214, 133, 11)\",oOZeIwFEe:\"Notifications & AI Guardian\",style:{width:\"100%\"},variant:\"I533:121142;532:120814\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IUnX7GigU:{width:\"max((100vw - 128px) / 2, 200px)\",y:3813},oxcGtFa0K:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:166,width:\"426px\",y:3606,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ugq9pp-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IUnX7GigU:{variant:\"wI1C4UmKW\"},oxcGtFa0K:{variant:\"wI1C4UmKW\"}},children:/*#__PURE__*/_jsx(FeaturesCard,{beOEtyEXt:\"Cloud-based document storage with robust encryption and access controls. Accessible to authorized parties via a user-friendly portal.\",d6a51n1xQ:\"rgb(233, 255, 227)\",eWz7tX1r8:\"ShieldDownload\",height:\"100%\",id:\"ePQFP0_2H\",IEoHKjp_E:\"Secure Storage\",layoutId:\"ePQFP0_2H\",MUZZPBwbK:\"rgb(3, 143, 101)\",oOZeIwFEe:\"Secure Document Storage\",style:{width:\"100%\"},variant:\"I533:121142;532:120814\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IUnX7GigU:{width:\"max((100vw - 128px) / 2, 200px)\",y:3813},oxcGtFa0K:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:166,width:\"426px\",y:3606,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wxgaz9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IUnX7GigU:{variant:\"wI1C4UmKW\"},oxcGtFa0K:{variant:\"wI1C4UmKW\"}},children:/*#__PURE__*/_jsx(FeaturesCard,{beOEtyEXt:\"Document authentication. Trust and trustee authentication services for financial institutions, title companies, and other entities. API integration for real-time validation in third-party systems.\",d6a51n1xQ:\"rgb(255, 222, 225)\",eWz7tX1r8:\"ShieldCheck\",height:\"100%\",id:\"LT4fRsZJn\",IEoHKjp_E:\"Advanced Features\",layoutId:\"LT4fRsZJn\",MUZZPBwbK:\"rgb(237, 38, 84)\",oOZeIwFEe:\"Authentication Services\",style:{width:\"100%\"},variant:\"I533:121142;532:120814\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IUnX7GigU:{width:\"max((100vw - 128px) / 2, 200px)\",y:4027},oxcGtFa0K:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:166,width:\"426px\",y:3820,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m1bs18-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IUnX7GigU:{variant:\"wI1C4UmKW\"},oxcGtFa0K:{variant:\"wI1C4UmKW\"}},children:/*#__PURE__*/_jsx(FeaturesCard,{beOEtyEXt:\"Clear audit trails and comprehensive records to reduce family conflicts and inheritance disputes. Mechanisms for confirming the intent of trustmakers to prevent misunderstandings.\",d6a51n1xQ:\"rgb(255, 222, 225)\",eWz7tX1r8:\"EmojiSatisfied\",height:\"100%\",id:\"CMsoIG6U1\",IEoHKjp_E:\"Advanced Features\",layoutId:\"CMsoIG6U1\",MUZZPBwbK:\"rgb(237, 38, 84)\",oOZeIwFEe:\"Dispute Mitigation (Trusts)\",style:{width:\"100%\"},variant:\"I533:121142;532:120814\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IUnX7GigU:{width:\"max((100vw - 128px) / 2, 200px)\",y:4027},oxcGtFa0K:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:166,width:\"426px\",y:3820,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6alvn3-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IUnX7GigU:{variant:\"wI1C4UmKW\"},oxcGtFa0K:{variant:\"wI1C4UmKW\"}},children:/*#__PURE__*/_jsx(FeaturesCard,{beOEtyEXt:\"Adherence to legal standards for digital document management and security. Features that simplify compliance with regulatory requirements for professionals.\",d6a51n1xQ:\"rgb(230, 240, 255)\",eWz7tX1r8:\"JournalPage\",height:\"100%\",id:\"NMymUEf8R\",IEoHKjp_E:\"Exclusive Legal Safeguards\",layoutId:\"NMymUEf8R\",MUZZPBwbK:\"var(--token-02ea8977-fd9a-49bc-8617-d6ebea91ac1a, rgb(11, 92, 213))\",oOZeIwFEe:\"Compliance and Legal Protections\",style:{width:\"100%\"},variant:\"I533:121142;532:120814\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IUnX7GigU:{width:\"max((100vw - 128px) / 2, 200px)\",y:4241},oxcGtFa0K:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:166,width:\"426px\",y:4034,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8k8wi0-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IUnX7GigU:{variant:\"wI1C4UmKW\"},oxcGtFa0K:{variant:\"wI1C4UmKW\"}},children:/*#__PURE__*/_jsx(FeaturesCard,{beOEtyEXt:\"Intuitive design suitable for all users with minimal technical expertise. Multi-platform accessibility (web and mobile).\",d6a51n1xQ:\"rgb(255, 251, 133)\",eWz7tX1r8:\"User\",height:\"100%\",id:\"O4wdXX3NS\",IEoHKjp_E:\"Simplicity\",layoutId:\"O4wdXX3NS\",MUZZPBwbK:\"rgb(115, 105, 1)\",oOZeIwFEe:\"User-Friendly Interface\",style:{width:\"100%\"},variant:\"I533:121142;532:120814\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IUnX7GigU:{width:\"max((100vw - 128px) / 2, 200px)\",y:4241},oxcGtFa0K:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:166,width:\"426px\",y:4034,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y2o5m6-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IUnX7GigU:{variant:\"wI1C4UmKW\"},oxcGtFa0K:{variant:\"wI1C4UmKW\"}},children:/*#__PURE__*/_jsx(FeaturesCard,{beOEtyEXt:\"The audit reports generated by the DARCi Registry provide a comprehensive and tamper-proof record of all activities, making them highly reliable for use in legal proceedings. These detailed logs ensure transparency and can serve as critical evidence to support compliance, verify actions taken, and resolve disputes.\",d6a51n1xQ:\"rgb(230, 240, 255)\",eWz7tX1r8:\"ShieldSearch\",height:\"100%\",id:\"fXCwpNpMx\",IEoHKjp_E:\"Exclusive Legal Safeguards\",layoutId:\"fXCwpNpMx\",MUZZPBwbK:\"var(--token-02ea8977-fd9a-49bc-8617-d6ebea91ac1a, rgb(11, 92, 213))\",oOZeIwFEe:\"Chain of Custody / Evidentiary Record\",style:{width:\"100%\"},variant:\"I533:121142;532:120814\",width:\"100%\"})})})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IUnX7GigU:{y:4447}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:388,width:\"100vw\",y:4236,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uggsh8-container hidden-13tnn6h\",id:elementId1,ref:ref3,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IUnX7GigU:{variant:\"y0qIndf01\"}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"rAHTiLOdt\",layoutId:\"rAHTiLOdt\",style:{width:\"100%\"},variant:\"qOC8w0ukl\",width:\"100%\"})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IUnX7GigU:{y:4835}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:486,width:\"100vw\",y:4624,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gzu61o-container hidden-13tnn6h\",id:elementId2,ref:ref4,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IUnX7GigU:{variant:\"dPUe_VE0p\"}},children:/*#__PURE__*/_jsx(Footer,{bpKF4itQZ:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\",height:\"100%\",id:\"uggkzgnyr\",layoutId:\"uggkzgnyr\",style:{width:\"100%\"},variant:\"EoAW7PMHH\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-qZ4Z1 { background: var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; }`,\".framer-qZ4Z1.framer-115zkrg, .framer-qZ4Z1 .framer-115zkrg { display: block; }\",\".framer-qZ4Z1.framer-1b0tlud { align-content: center; align-items: center; background-color: var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-qZ4Z1 .framer-sm4bf4 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-qZ4Z1 .framer-1q99uvd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 555px; justify-content: center; left: calc(50.00000000000002% - 100% / 2); opacity: 0.5; overflow: visible; padding: 0px; position: absolute; top: calc(54.273504273504294% - 555.3px / 2); width: 100%; z-index: 1; }\",\".framer-qZ4Z1 .framer-1jg9ry9 { flex: none; height: 686px; left: calc(50.00000000000002% - 1018px / 2); overflow: visible; position: absolute; top: calc(50.05780346820812% - 686px / 2); width: 1018px; z-index: 0; }\",\".framer-qZ4Z1 .framer-w8e17t { -webkit-filter: blur(100px); aspect-ratio: 1 / 1; background-color: #639aff; border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; bottom: 0px; filter: blur(100px); flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 686px); will-change: var(--framer-will-change-override, transform); }\",\".framer-qZ4Z1 .framer-np5f5w { -webkit-filter: blur(100px); aspect-ratio: 1 / 1; background-color: #f75ccb; border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; bottom: 0px; filter: blur(100px); flex: none; overflow: hidden; position: absolute; right: 0px; top: 0px; width: var(--framer-aspect-ratio-supported, 686px); will-change: var(--framer-will-change-override, transform); }\",\".framer-qZ4Z1 .framer-1sijavg, .framer-qZ4Z1 .framer-otp6z, .framer-qZ4Z1 .framer-1rrqosk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-qZ4Z1 .framer-xlpss8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; min-height: 40px; min-width: 108px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qZ4Z1 .framer-n8m9co { --framer-text-wrap-override: none; flex: none; height: auto; max-width: 660px; overflow: hidden; position: relative; width: 655px; }\",\".framer-qZ4Z1 .framer-1eqe62p-container { flex: none; height: 480px; position: relative; width: 848px; z-index: 1; }\",\".framer-qZ4Z1 .framer-1ewldq8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 944px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-qZ4Z1 .framer-1h3r9rg { --framer-text-wrap-override: none; flex: none; height: auto; max-width: 640px; overflow: hidden; position: relative; width: 640px; }\",\".framer-qZ4Z1 .framer-1uqs71n-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 4; }\",\".framer-qZ4Z1 .framer-qvsh8q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-qZ4Z1 .framer-4676ph { align-content: center; align-items: center; background-color: var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-qZ4Z1 .framer-1jtkql2, .framer-qZ4Z1 .framer-19k78gs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qZ4Z1 .framer-pubrcm { flex: none; height: 331px; position: relative; width: 400px; }\",\".framer-qZ4Z1 .framer-1beevuw, .framer-qZ4Z1 .framer-1isiy98 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 540px; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 1px; }\",\".framer-qZ4Z1 .framer-1l1krdz, .framer-qZ4Z1 .framer-10lybpi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qZ4Z1 .framer-1fvnquw-container, .framer-qZ4Z1 .framer-13cvnqd-container, .framer-qZ4Z1 .framer-x8nip0-container, .framer-qZ4Z1 .framer-a6el9x-container, .framer-qZ4Z1 .framer-1wax6jm-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-qZ4Z1 .framer-uaay2f, .framer-qZ4Z1 .framer-1teypll { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qZ4Z1 .framer-yzb2q2, .framer-qZ4Z1 .framer-1uol1vp { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-qZ4Z1 .framer-1s8p5i1, .framer-qZ4Z1 .framer-iw0vi { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-qZ4Z1 .framer-nffesf { align-content: center; align-items: center; background-color: var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-qZ4Z1 .framer-saspe9 { flex: none; height: 342px; position: relative; width: 400px; }\",\".framer-qZ4Z1 .framer-hukst6 { align-content: center; align-items: center; background: linear-gradient(180deg, #f0f4fa 0%, rgb(255, 255, 255) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 36px 0px 36px 0px; position: relative; width: 100%; }\",\".framer-qZ4Z1 .framer-1k8by9u { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-qZ4Z1 .framer-2a0nm4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 620px; }\",\".framer-qZ4Z1 .framer-fiw3jn { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-qZ4Z1 .framer-pclnb8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 624px; word-break: break-word; word-wrap: break-word; }\",\".framer-qZ4Z1 .framer-nb9n6p { display: grid; flex: none; gap: 48px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(3, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 900px; }\",\".framer-qZ4Z1 .framer-1i4i0ws-container, .framer-qZ4Z1 .framer-1g2b7ss-container, .framer-qZ4Z1 .framer-ugq9pp-container, .framer-qZ4Z1 .framer-wxgaz9-container, .framer-qZ4Z1 .framer-1m1bs18-container, .framer-qZ4Z1 .framer-6alvn3-container, .framer-qZ4Z1 .framer-8k8wi0-container, .framer-qZ4Z1 .framer-1y2o5m6-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-qZ4Z1 .framer-uggsh8-container, .framer-qZ4Z1 .framer-1gzu61o-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-qZ4Z1.framer-1b0tlud, .framer-qZ4Z1 .framer-sm4bf4, .framer-qZ4Z1 .framer-1q99uvd, .framer-qZ4Z1 .framer-xlpss8, .framer-qZ4Z1 .framer-1ewldq8, .framer-qZ4Z1 .framer-qvsh8q, .framer-qZ4Z1 .framer-4676ph, .framer-qZ4Z1 .framer-1jtkql2, .framer-qZ4Z1 .framer-1beevuw, .framer-qZ4Z1 .framer-1l1krdz, .framer-qZ4Z1 .framer-uaay2f, .framer-qZ4Z1 .framer-nffesf, .framer-qZ4Z1 .framer-19k78gs, .framer-qZ4Z1 .framer-1isiy98, .framer-qZ4Z1 .framer-10lybpi, .framer-qZ4Z1 .framer-1teypll, .framer-qZ4Z1 .framer-hukst6, .framer-qZ4Z1 .framer-1k8by9u, .framer-qZ4Z1 .framer-2a0nm4 { gap: 0px; } .framer-qZ4Z1.framer-1b0tlud > *, .framer-qZ4Z1 .framer-qvsh8q > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-qZ4Z1.framer-1b0tlud > :first-child, .framer-qZ4Z1 .framer-sm4bf4 > :first-child, .framer-qZ4Z1 .framer-1ewldq8 > :first-child, .framer-qZ4Z1 .framer-qvsh8q > :first-child, .framer-qZ4Z1 .framer-1beevuw > :first-child, .framer-qZ4Z1 .framer-1l1krdz > :first-child, .framer-qZ4Z1 .framer-uaay2f > :first-child, .framer-qZ4Z1 .framer-1isiy98 > :first-child, .framer-qZ4Z1 .framer-10lybpi > :first-child, .framer-qZ4Z1 .framer-1teypll > :first-child, .framer-qZ4Z1 .framer-hukst6 > :first-child, .framer-qZ4Z1 .framer-1k8by9u > :first-child, .framer-qZ4Z1 .framer-2a0nm4 > :first-child { margin-top: 0px; } .framer-qZ4Z1.framer-1b0tlud > :last-child, .framer-qZ4Z1 .framer-sm4bf4 > :last-child, .framer-qZ4Z1 .framer-1ewldq8 > :last-child, .framer-qZ4Z1 .framer-qvsh8q > :last-child, .framer-qZ4Z1 .framer-1beevuw > :last-child, .framer-qZ4Z1 .framer-1l1krdz > :last-child, .framer-qZ4Z1 .framer-uaay2f > :last-child, .framer-qZ4Z1 .framer-1isiy98 > :last-child, .framer-qZ4Z1 .framer-10lybpi > :last-child, .framer-qZ4Z1 .framer-1teypll > :last-child, .framer-qZ4Z1 .framer-hukst6 > :last-child, .framer-qZ4Z1 .framer-1k8by9u > :last-child, .framer-qZ4Z1 .framer-2a0nm4 > :last-child { margin-bottom: 0px; } .framer-qZ4Z1 .framer-sm4bf4 > *, .framer-qZ4Z1 .framer-1ewldq8 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-qZ4Z1 .framer-1q99uvd > *, .framer-qZ4Z1 .framer-4676ph > *, .framer-qZ4Z1 .framer-nffesf > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-qZ4Z1 .framer-1q99uvd > :first-child, .framer-qZ4Z1 .framer-xlpss8 > :first-child, .framer-qZ4Z1 .framer-4676ph > :first-child, .framer-qZ4Z1 .framer-1jtkql2 > :first-child, .framer-qZ4Z1 .framer-nffesf > :first-child, .framer-qZ4Z1 .framer-19k78gs > :first-child { margin-left: 0px; } .framer-qZ4Z1 .framer-1q99uvd > :last-child, .framer-qZ4Z1 .framer-xlpss8 > :last-child, .framer-qZ4Z1 .framer-4676ph > :last-child, .framer-qZ4Z1 .framer-1jtkql2 > :last-child, .framer-qZ4Z1 .framer-nffesf > :last-child, .framer-qZ4Z1 .framer-19k78gs > :last-child { margin-right: 0px; } .framer-qZ4Z1 .framer-xlpss8 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-qZ4Z1 .framer-1jtkql2 > *, .framer-qZ4Z1 .framer-19k78gs > * { margin: 0px; margin-left: calc(70px / 2); margin-right: calc(70px / 2); } .framer-qZ4Z1 .framer-1beevuw > *, .framer-qZ4Z1 .framer-1isiy98 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-qZ4Z1 .framer-1l1krdz > *, .framer-qZ4Z1 .framer-10lybpi > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-qZ4Z1 .framer-uaay2f > *, .framer-qZ4Z1 .framer-1teypll > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-qZ4Z1 .framer-hukst6 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-qZ4Z1 .framer-1k8by9u > *, .framer-qZ4Z1 .framer-2a0nm4 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",`@media (min-width: 810px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-qZ4Z1 { background: var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; } .framer-qZ4Z1.framer-1b0tlud { width: 810px; } .framer-qZ4Z1 .framer-sm4bf4 { height: 1320px; order: 0; } .framer-qZ4Z1 .framer-1q99uvd { height: 865px; top: calc(54.273504273504294% - 865px / 2); } .framer-qZ4Z1 .framer-1jg9ry9 { height: 464px; left: calc(50.00000000000002% - 688px / 2); top: calc(50.05780346820812% - 464px / 2); width: 688px; } .framer-qZ4Z1 .framer-w8e17t, .framer-qZ4Z1 .framer-np5f5w { width: var(--framer-aspect-ratio-supported, 464px); } .framer-qZ4Z1 .framer-n8m9co, .framer-qZ4Z1 .framer-1h3r9rg, .framer-qZ4Z1 .framer-2a0nm4, .framer-qZ4Z1 .framer-pclnb8, .framer-qZ4Z1 .framer-nb9n6p { width: 100%; } .framer-qZ4Z1 .framer-1eqe62p-container { height: 381px; width: 92%; } .framer-qZ4Z1 .framer-1uqs71n-container { order: 1; } .framer-qZ4Z1 .framer-qvsh8q { order: 2; } .framer-qZ4Z1 .framer-4676ph { order: 0; padding: 0px 40px 24px 40px; } .framer-qZ4Z1 .framer-1jtkql2, .framer-qZ4Z1 .framer-19k78gs { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 16px; } .framer-qZ4Z1 .framer-1beevuw { flex: none; max-width: 810px; width: 100%; } .framer-qZ4Z1 .framer-nffesf { order: 1; padding: 40px; } .framer-qZ4Z1 .framer-saspe9 { order: 0; } .framer-qZ4Z1 .framer-1isiy98 { flex: none; max-width: 810px; order: 1; width: 100%; } .framer-qZ4Z1 .framer-hukst6 { order: 2; padding: 64px 40px 40px 40px; } .framer-qZ4Z1 .framer-uggsh8-container, .framer-qZ4Z1 .framer-1gzu61o-container { order: 3; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-qZ4Z1 .framer-1jtkql2, .framer-qZ4Z1 .framer-19k78gs { gap: 0px; } .framer-qZ4Z1 .framer-1jtkql2 > *, .framer-qZ4Z1 .framer-19k78gs > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-qZ4Z1 .framer-1jtkql2 > :first-child, .framer-qZ4Z1 .framer-19k78gs > :first-child { margin-top: 0px; } .framer-qZ4Z1 .framer-1jtkql2 > :last-child, .framer-qZ4Z1 .framer-19k78gs > :last-child { margin-bottom: 0px; } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-qZ4Z1 { background: var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; } .framer-qZ4Z1.framer-1b0tlud { width: 390px; } .framer-qZ4Z1 .framer-sm4bf4 { height: 1834px; order: 0; padding: 60px; } .framer-qZ4Z1 .framer-1q99uvd { bottom: -69px; height: 688px; top: unset; } .framer-qZ4Z1 .framer-1jg9ry9 { height: 500px; left: calc(50.00000000000002% - 390px / 2); top: calc(50.05780346820812% - 500px / 2); width: 390px; } .framer-qZ4Z1 .framer-w8e17t, .framer-qZ4Z1 .framer-np5f5w { width: var(--framer-aspect-ratio-supported, 500px); } .framer-qZ4Z1 .framer-n8m9co, .framer-qZ4Z1 .framer-1h3r9rg, .framer-qZ4Z1 .framer-2a0nm4, .framer-qZ4Z1 .framer-pclnb8 { width: 100%; } .framer-qZ4Z1 .framer-1eqe62p-container { height: 144px; width: 93%; } .framer-qZ4Z1 .framer-1uqs71n-container, .framer-qZ4Z1 .framer-1g2b7ss-container { order: 1; } .framer-qZ4Z1 .framer-qvsh8q { height: 4784px; order: 2; } .framer-qZ4Z1 .framer-4676ph { order: 0; padding: 0px 16px 40px 16px; } .framer-qZ4Z1 .framer-1jtkql2, .framer-qZ4Z1 .framer-19k78gs { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 16px; } .framer-qZ4Z1 .framer-1beevuw { flex: none; max-width: unset; width: 100%; } .framer-qZ4Z1 .framer-nffesf { order: 1; padding: 16px 16px 40px 16px; } .framer-qZ4Z1 .framer-saspe9, .framer-qZ4Z1 .framer-1i4i0ws-container { order: 0; } .framer-qZ4Z1 .framer-1isiy98 { flex: none; max-width: unset; order: 1; width: 100%; } .framer-qZ4Z1 .framer-hukst6 { gap: 40px; height: 120.2441505595117vh; order: 2; padding: 56px 16px 40px 16px; } .framer-qZ4Z1 .framer-1k8by9u { padding: 0px; } .framer-qZ4Z1 .framer-nb9n6p { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); width: 100%; } .framer-qZ4Z1 .framer-ugq9pp-container { order: 2; } .framer-qZ4Z1 .framer-wxgaz9-container { order: 3; } .framer-qZ4Z1 .framer-1m1bs18-container { order: 4; } .framer-qZ4Z1 .framer-6alvn3-container { order: 5; } .framer-qZ4Z1 .framer-8k8wi0-container { order: 6; } .framer-qZ4Z1 .framer-1y2o5m6-container { order: 7; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-qZ4Z1 .framer-1jtkql2, .framer-qZ4Z1 .framer-19k78gs, .framer-qZ4Z1 .framer-hukst6 { gap: 0px; } .framer-qZ4Z1 .framer-1jtkql2 > *, .framer-qZ4Z1 .framer-19k78gs > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-qZ4Z1 .framer-1jtkql2 > :first-child, .framer-qZ4Z1 .framer-19k78gs > :first-child, .framer-qZ4Z1 .framer-hukst6 > :first-child { margin-top: 0px; } .framer-qZ4Z1 .framer-1jtkql2 > :last-child, .framer-qZ4Z1 .framer-19k78gs > :last-child, .framer-qZ4Z1 .framer-hukst6 > :last-child { margin-bottom: 0px; } .framer-qZ4Z1 .framer-hukst6 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4672\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"IUnX7GigU\":{\"layout\":[\"fixed\",\"auto\"]},\"oxcGtFa0K\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameryioGcHrhh=withCSS(Component,css,\"framer-qZ4Z1\");export default FrameryioGcHrhh;FrameryioGcHrhh.displayName=\"Page\";FrameryioGcHrhh.defaultProps={height:4672,width:1440};addFonts(FrameryioGcHrhh,[{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\"}]},...YouTubeFonts,...NavBarFonts,...BadgeFonts,...ButtonFonts,...FeaturesCardFonts,...CTAFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryioGcHrhh\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"4672\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IUnX7GigU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oxcGtFa0K\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "e", "f", "o", "t", "n", "iconKeys", "moduleBaseUrl", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "f", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "addPropertyControls", "ControlType", "defaultEvents", "fontStore", "fonts", "css", "className", "IconoirFonts", "getFonts", "Icon", "BadgeFonts", "KGXdd2ZOe_default", "IconoirControls", "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", "badge", "badgeBGColor", "badgeTxtColor", "description", "feature", "height", "icon", "id", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_humanReadableVariantMap_props_variant", "_ref6", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "oOZeIwFEe", "beOEtyEXt", "IEoHKjp_E", "d6a51n1xQ", "MUZZPBwbK", "eWz7tX1r8", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText", "css", "Framerz9Pa7seOd", "withCSS", "z9Pa7seOd_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "RichTextWithFX", "RichText", "YouTubeFonts", "getFonts", "Youtube", "NavBarFonts", "G1U9qbkD3_default", "BadgeFonts", "KGXdd2ZOe_default", "ContainerWithFX", "Container", "ButtonFonts", "XQYIUjp_n_default", "FeaturesCardFonts", "z9Pa7seOd_default", "CTAFonts", "UAbomaNAP_default", "FooterFonts", "IcV1FkOGH_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "animation5", "transition5", "animation6", "transition6", "animation7", "animation8", "transition7", "animation9", "transition8", "animation10", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "router", "useRouter", "isDisplayed", "elementId1", "ref3", "elementId2", "ref4", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "x", "ComponentViewportProvider", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "css", "FrameryioGcHrhh", "withCSS", "yioGcHrhh_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
