{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/icon-nullstate.js@0.7.0", "ssg:https://framer.com/m/iconoir-icons/Home.js@0.0.11", "ssg:https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js", "ssg:https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js", "ssg:https://framerusercontent.com/modules/xWGWyR9RZ7mR9052iff6/d7HygQvfcDefJDS78ui9/KpdAEP724.js", "ssg:https://framerusercontent.com/modules/1uwt43aRZs883DQt7jfX/6snDujdUWssEvCXzAWvd/eoOuuu22q.js", "ssg:https://framerusercontent.com/modules/lNVL9XlzLJqFFDH5oCio/FPOdGmszgEyq2G5KYmyD/X7e4x7d10.js", "ssg:https://framerusercontent.com/modules/piqr7hqFWuGHDcWI6cIN/EWzlOKp9s0QKzwipOpXt/GPnthCZJR.js"],
  "sourcesContent": ["import { jsx as _jsx } from \"react/jsx-runtime\";\nimport * as React from \"react\";\nexport const containerStyles = {\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nconst nullIconStyle = {\n    minWidth: \"10px\",\n    minHeight: \"10px\",\n    maxWidth: \"20px\",\n    maxHeight: \"20px\",\n    width: \"60%\",\n    height: \"60%\"\n};\nconst emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(149, 149, 149, 0.1)\",\n    border: \"1px dashed rgba(149, 149, 149, 0.15)\",\n    color: \"#a5a5a5\",\n    flexDirection: \"column\"\n};\nexport const NullState = /*#__PURE__*/ React.forwardRef((_, ref)=>{\n    return(/*#__PURE__*/ _jsx(\"div\", {\n        style: emptyStateStyle,\n        ref: ref\n    }));\n}) /*\n\n<svg\n                xmlns=\"http://www.w3.org/2000/svg\"\n                viewBox=\"0 0 30 30\"\n                style={nullIconStyle}\n            >\n                <path\n                    d=\"M 12.857 0 C 19.958 0 25.714 5.756 25.714 12.857 C 25.714 19.958 19.958 25.714 12.857 25.714 C 5.756 25.714 0 19.958 0 12.857 C 0 5.756 5.756 0 12.857 0 Z\"\n                    fill=\"#FFFFFF\"\n                ></path>\n                <path\n                    d=\"M 20.357 20.357 L 27.857 27.857\"\n                    fill=\"transparent\"\n                    strokeWidth=\"4.28\"\n                    stroke=\"#FFFFFF\"\n                    strokeLinecap=\"round\"\n                ></path>\n                <g transform=\"translate(9.643 6.429)\">\n                    <path\n                        d=\"M 3.214 12.857 L 3.214 12.857\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.75\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                    ></path>\n                    <path\n                        d=\"M 0 3.214 C 0 1.004 1.843 0 3.214 0 C 4.586 0 6.429 0.603 6.429 3.214 C 6.429 5.826 3.214 5.913 3.214 7.232 C 3.214 8.552 3.214 8.571 3.214 8.571\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.22\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                        strokeLinejoin=\"round\"\n                    ></path>\n                </g>\n            </svg>\n            */ ;\n\nexport const __FramerMetadata__ = {\"exports\":{\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"NullState\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./nullstate.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{useMemo}from\"react\";import{ControlType}from\"framer\";/*\n ** ICON UTILS\n ** Pull as much re-usable logic into here as possible\n ** This will make it easier to replace in all icon components\n */ export const containerStyles={width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};export const defaultEvents={onClick:{type:ControlType.EventHandler},onMouseDown:{type:ControlType.EventHandler},onMouseUp:{type:ControlType.EventHandler},onMouseEnter:{type:ControlType.EventHandler},onMouseLeave:{type:ControlType.EventHandler}};const findByArray=(arr,search)=>arr.find(a=>a.toLowerCase().includes(search));export function getIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// gotta get the exact match first THEN find\n// have a set and try to access ?\nif(selectByList)return iconSelection;if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;}export function useIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// Clean search term\nconst iconSearchResult=useMemo(()=>{if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;},[iconSelection,iconSearch]);const name=selectByList?iconSelection:iconSearchResult;return name;}\nexport const __FramerMetadata__ = {\"exports\":{\"getIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "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([\"GF;Manrope-regular\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_A87jxeN7B.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-ext-XOTVL7ZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-6LOMBC2V.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-ext-WXWSJXLB.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-YRST7ODZ.woff2\",weight:\"700\"},{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://app.framerstatic.com/Inter-Bold.latin-ext-BASA5UL3.woff2\",weight:\"700\"},{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://app.framerstatic.com/Inter-Bold.latin-UCM45LQF.woff2\",weight:\"700\"},{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://app.framerstatic.com/Inter-Bold.vietnamese-OEVJMXEP.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-ext-PEYDHC3S.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-7EIL6JWG.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-ext-3DJOYQMH.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-TJBTLTT7.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.latin-ext-FVPCPRBJ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.latin-5ZFQS4XK.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.vietnamese-W2625PGF.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Italic.cyrillic-ext-YDGMJOJO.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Italic.cyrillic-BFOVMAQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Italic.greek-ext-4KOU3AHC.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Italic.greek-OJTBJNE6.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-Italic.latin-ext-H4B22QN6.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-Italic.latin-2DWX32EN.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-Italic.vietnamese-TYMT6CKW.woff2\",weight:\"400\"}]}];export const css=['.framer-Q5a8S .framer-styles-preset-1kx62wq:not(.rich-text-wrapper), .framer-Q5a8S .framer-styles-preset-1kx62wq.rich-text-wrapper p { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-43315af6-1007-47b0-b37f-7a6ce15fe95c, #f2f9fe); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-Q5a8S .framer-styles-preset-1kx62wq:not(.rich-text-wrapper), .framer-Q5a8S .framer-styles-preset-1kx62wq.rich-text-wrapper p { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 15px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-43315af6-1007-47b0-b37f-7a6ce15fe95c, #f2f9fe); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-Q5a8S .framer-styles-preset-1kx62wq:not(.rich-text-wrapper), .framer-Q5a8S .framer-styles-preset-1kx62wq.rich-text-wrapper p { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 15px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-43315af6-1007-47b0-b37f-7a6ce15fe95c, #f2f9fe); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-Q5a8S\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,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/xWGWyR9RZ7mR9052iff6/d7HygQvfcDefJDS78ui9/KpdAEP724.js\";const IconoirFonts=getFonts(Iconoir);const enabledGestures={HN_Li40AL:{hover:true},iWmzE9sIR:{hover:true},kxKbp_o0d:{hover:true},lBVQH3Q4m:{hover:true},pYV0kI0uP:{hover:true}};const cycleOrder=[\"kxKbp_o0d\",\"iWmzE9sIR\",\"pYV0kI0uP\",\"lBVQH3Q4m\",\"HN_Li40AL\",\"kx5239ef5\"];const serializationHash=\"framer-JVH2I\";const variantClassNames={HN_Li40AL:\"framer-v-17u2lf8\",iWmzE9sIR:\"framer-v-1tl0rbo\",kx5239ef5:\"framer-v-vfe624\",kxKbp_o0d:\"framer-v-5zht3c\",lBVQH3Q4m:\"framer-v-4wn88\",pYV0kI0uP:\"framer-v-eu37q4\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;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={\"Icon button\":\"HN_Li40AL\",\"Secondary M\":\"lBVQH3Q4m\",\"Variant 6\":\"kx5239ef5\",Default:\"kxKbp_o0d\",Outline:\"pYV0kI0uP\",Secondary:\"iWmzE9sIR\"};const getProps=({contactSales,height,id,image,link,textColor,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,MvNJev6Df:(_ref=textColor!==null&&textColor!==void 0?textColor:props.MvNJev6Df)!==null&&_ref!==void 0?_ref:\"var(--token-43315af6-1007-47b0-b37f-7a6ce15fe95c, rgb(242, 249, 254))\",oWE6eT4Pb:link!==null&&link!==void 0?link:props.oWE6eT4Pb,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"kxKbp_o0d\",vXY6OI5Bc:(_ref2=contactSales!==null&&contactSales!==void 0?contactSales:props.vXY6OI5Bc)!==null&&_ref2!==void 0?_ref2:\"Label Button\",ZVmv2QNds:image!==null&&image!==void 0?image:props.ZVmv2QNds};};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,vXY6OI5Bc,oWE6eT4Pb,MvNJev6Df,ZVmv2QNds,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"kxKbp_o0d\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"HN_Li40AL-hover\")return true;if(baseVariant===\"HN_Li40AL\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:oWE6eT4Pb,nodeId:\"kxKbp_o0d\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-5zht3c\",className,classNames)} framer-4rvcrc`,\"data-border\":true,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"kxKbp_o0d\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-da4073a9-8bd4-49f9-9caf-00b15acad4a3, rgb(61, 64, 69))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(256deg, rgba(255, 255, 255, 0.14) -77%, rgba(222, 232, 246, 0.1) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},variants:{\"iWmzE9sIR-hover\":{background:'linear-gradient(256deg, var(--token-4734062f-3131-4e08-8242-6c5c95db38c8, rgb(6, 87, 208)) /* {\"name\":\"UI Blue 700\"} */ -69%, var(--token-28d52507-1d1c-483a-b3fb-d6ed8d201eff, rgb(31, 120, 255)) /* {\"name\":\"UI Blue 300\"} */ 100%)'},\"kxKbp_o0d-hover\":{background:\"linear-gradient(256deg, rgba(255, 255, 255, 0.14) 0%, rgba(222, 232, 246, 0.1) 214%)\"},\"lBVQH3Q4m-hover\":{background:'linear-gradient(256deg, var(--token-4bfe52d3-a3f9-4ac3-a315-a401995a995e, rgb(85, 27, 171)) /* {\"name\":\"purblue\"} */ -61%, var(--token-28d52507-1d1c-483a-b3fb-d6ed8d201eff, rgb(31, 120, 255)) /* {\"name\":\"UI Blue 300\"} */ 100%)'},\"pYV0kI0uP-hover\":{\"--border-color\":\"var(--token-2ef2870a-5cab-4432-8521-74aeda00b2a6, rgb(14, 110, 255))\",background:\"linear-gradient(256deg, rgba(255, 255, 255, 0.14) 0%, rgba(222, 232, 246, 0.1) 151%)\"},HN_Li40AL:{\"--border-color\":\"var(--token-429377ee-da06-4321-b251-6fb824be70f5, rgb(42, 127, 255))\",background:\"linear-gradient(256deg, var(--token-b8f4d51e-94b1-4f53-bf6d-3698fda5681a, rgb(16, 101, 227)) 0%, var(--token-b8f4d51e-94b1-4f53-bf6d-3698fda5681a, rgb(16, 101, 227)) 100%)\",backgroundColor:\"var(--token-b8f4d51e-94b1-4f53-bf6d-3698fda5681a, rgb(16, 101, 227))\"},iWmzE9sIR:{\"--border-color\":\"var(--token-429377ee-da06-4321-b251-6fb824be70f5, rgb(42, 127, 255))\",background:'linear-gradient(256deg, var(--token-4734062f-3131-4e08-8242-6c5c95db38c8, rgb(6, 87, 208)) /* {\"name\":\"UI Blue 700\"} */ 0%, var(--token-28d52507-1d1c-483a-b3fb-d6ed8d201eff, rgb(31, 120, 255)) /* {\"name\":\"UI Blue 300\"} */ 134%)'},kx5239ef5:{\"--border-color\":\"var(--token-de8ed926-7001-46f9-ba04-3723118d36f7, rgb(248, 249, 254))\",background:'linear-gradient(256deg, rgb(15, 37, 112) 0%, var(--token-28d52507-1d1c-483a-b3fb-d6ed8d201eff, rgb(31, 120, 255)) /* {\"name\":\"UI Blue 300\"} */ 134%)'},lBVQH3Q4m:{\"--border-color\":\"var(--token-429377ee-da06-4321-b251-6fb824be70f5, rgb(42, 127, 255))\",background:'linear-gradient(256deg, var(--token-4bfe52d3-a3f9-4ac3-a315-a401995a995e, rgb(85, 27, 171)) /* {\"name\":\"purblue\"} */ 0%, var(--token-28d52507-1d1c-483a-b3fb-d6ed8d201eff, rgb(31, 120, 255)) /* {\"name\":\"UI Blue 300\"} */ 148%)'},pYV0kI0uP:{\"--border-color\":\"var(--token-b32213de-a677-4f6d-93ea-f0b7678127df, rgb(72, 94, 121))\"}},...addPropertyOverrides({\"HN_Li40AL-hover\":{\"data-framer-name\":undefined},\"iWmzE9sIR-hover\":{\"data-framer-name\":undefined},\"kxKbp_o0d-hover\":{\"data-framer-name\":undefined},\"lBVQH3Q4m-hover\":{\"data-framer-name\":undefined},\"pYV0kI0uP-hover\":{\"data-framer-name\":undefined},HN_Li40AL:{\"data-framer-name\":\"Icon button\"},iWmzE9sIR:{\"data-framer-name\":\"Secondary\"},kx5239ef5:{\"data-framer-name\":\"Variant 6\"},lBVQH3Q4m:{\"data-framer-name\":\"Secondary M\"},pYV0kI0uP:{\"data-framer-name\":\"Outline\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",...toResponsiveImage(ZVmv2QNds),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-8ro85y\",layoutDependency:layoutDependency,layoutId:\"niZy8M6X4\",...addPropertyOverrides({HN_Li40AL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||50)-24-28)/2)),sizes:\"28px\",...toResponsiveImage(ZVmv2QNds),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xnseqd\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"HJyG3S3S1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kx62wq\",\"data-styles-preset\":\"KpdAEP724\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-MvNJev6Df-eoOuuu22q))\"},children:\"ini Buttons ini itu\"})}),className:\"framer-6prgcq\",\"data-framer-name\":\"Display\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SNpkObckv\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-MvNJev6Df-eoOuuu22q)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-MvNJev6Df-eoOuuu22q\":MvNJev6Df},text:vXY6OI5Bc,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z18phs\",\"data-framer-name\":\"Primary\",layoutDependency:layoutDependency,layoutId:\"kTsknw6wp\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-78xcbo\",\"data-framer-name\":\"Icon Overlay\",layoutDependency:layoutDependency,layoutId:\"TMnOgeBZd\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15a0agu-container\",layoutDependency:layoutDependency,layoutId:\"CCiECtVmz-container\",style:{rotate:-45},children:/*#__PURE__*/_jsx(Iconoir,{color:MvNJev6Df,height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"CCiECtVmz\",layoutId:\"CCiECtVmz\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-s3cwgi\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"II18tpta0\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-a6ilp4-container\",layoutDependency:layoutDependency,layoutId:\"ktQm69FDx-container\",style:{rotate:-45},children:/*#__PURE__*/_jsx(Iconoir,{color:MvNJev6Df,height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"ktQm69FDx\",layoutId:\"ktQm69FDx\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JVH2I.framer-4rvcrc, .framer-JVH2I .framer-4rvcrc { display: block; }\",\".framer-JVH2I.framer-5zht3c { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 50px; justify-content: center; padding: 12px 20px 12px 28px; position: relative; text-decoration: none; width: min-content; }\",\".framer-JVH2I .framer-8ro85y { flex: none; height: 28px; position: relative; width: 28px; }\",\".framer-JVH2I .framer-xnseqd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-JVH2I .framer-6prgcq { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-JVH2I .framer-z18phs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; min-width: 22px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-JVH2I .framer-78xcbo { align-content: center; align-items: center; bottom: -24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; width: min-content; }\",\".framer-JVH2I .framer-15a0agu-container, .framer-JVH2I .framer-a6ilp4-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-JVH2I .framer-s3cwgi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 2px; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-JVH2I.framer-5zht3c, .framer-JVH2I .framer-xnseqd, .framer-JVH2I .framer-z18phs, .framer-JVH2I .framer-78xcbo, .framer-JVH2I .framer-s3cwgi { gap: 0px; } .framer-JVH2I.framer-5zht3c > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-JVH2I.framer-5zht3c > :first-child, .framer-JVH2I .framer-xnseqd > :first-child, .framer-JVH2I .framer-78xcbo > :first-child, .framer-JVH2I .framer-s3cwgi > :first-child { margin-left: 0px; } .framer-JVH2I.framer-5zht3c > :last-child, .framer-JVH2I .framer-xnseqd > :last-child, .framer-JVH2I .framer-78xcbo > :last-child, .framer-JVH2I .framer-s3cwgi > :last-child { margin-right: 0px; } .framer-JVH2I .framer-xnseqd > *, .framer-JVH2I .framer-78xcbo > *, .framer-JVH2I .framer-s3cwgi > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-JVH2I .framer-z18phs > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-JVH2I .framer-z18phs > :first-child { margin-top: 0px; } .framer-JVH2I .framer-z18phs > :last-child { margin-bottom: 0px; } }\",\".framer-JVH2I.framer-v-1tl0rbo.framer-5zht3c { padding: 13px 26px 13px 34px; }\",\".framer-JVH2I.framer-v-eu37q4 .framer-s3cwgi, .framer-JVH2I.framer-v-4wn88 .framer-s3cwgi, .framer-JVH2I.framer-v-17u2lf8 .framer-s3cwgi { top: 1px; }\",\".framer-JVH2I.framer-v-4wn88.framer-5zht3c, .framer-JVH2I.framer-v-17u2lf8.framer-5zht3c { padding: 12px 25px 12px 28px; }\",\".framer-JVH2I.framer-v-vfe624.framer-5zht3c { cursor: unset; padding: 13px 26px 13px 34px; }\",\".framer-JVH2I.framer-v-5zht3c.hover .framer-78xcbo, .framer-JVH2I.framer-v-1tl0rbo.hover .framer-78xcbo { bottom: unset; top: 2px; }\",\".framer-JVH2I.framer-v-5zht3c.hover .framer-s3cwgi, .framer-JVH2I.framer-v-1tl0rbo.hover .framer-s3cwgi, .framer-JVH2I.framer-v-eu37q4.hover .framer-s3cwgi, .framer-JVH2I.framer-v-4wn88.hover .framer-s3cwgi { top: -24px; }\",\".framer-JVH2I.framer-v-1tl0rbo.hover.framer-5zht3c { gap: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-JVH2I.framer-v-1tl0rbo.hover.framer-5zht3c { gap: 0px; } .framer-JVH2I.framer-v-1tl0rbo.hover.framer-5zht3c > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-JVH2I.framer-v-1tl0rbo.hover.framer-5zht3c > :first-child { margin-left: 0px; } .framer-JVH2I.framer-v-1tl0rbo.hover.framer-5zht3c > :last-child { margin-right: 0px; } }\",\".framer-JVH2I.framer-v-eu37q4.hover .framer-78xcbo, .framer-JVH2I.framer-v-4wn88.hover .framer-78xcbo { bottom: unset; top: 1px; }\",...sharedStyle.css,'.framer-JVH2I[data-border=\"true\"]::after, .framer-JVH2I [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50\n * @framerIntrinsicWidth 173\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"iWmzE9sIR\":{\"layout\":[\"auto\",\"fixed\"]},\"pYV0kI0uP\":{\"layout\":[\"auto\",\"fixed\"]},\"lBVQH3Q4m\":{\"layout\":[\"auto\",\"fixed\"]},\"HN_Li40AL\":{\"layout\":[\"auto\",\"fixed\"]},\"kx5239ef5\":{\"layout\":[\"auto\",\"fixed\"]},\"jEpDFchXW\":{\"layout\":[\"auto\",\"fixed\"]},\"kcghtKCX4\":{\"layout\":[\"auto\",\"fixed\"]},\"Zz3PsDXRC\":{\"layout\":[\"auto\",\"fixed\"]},\"Slc8WVn_j\":{\"layout\":[\"auto\",\"fixed\"]},\"F8p4H6sRI\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"vXY6OI5Bc\":\"contactSales\",\"oWE6eT4Pb\":\"link\",\"MvNJev6Df\":\"textColor\",\"ZVmv2QNds\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramereoOuuu22q=withCSS(Component,css,\"framer-JVH2I\");export default FramereoOuuu22q;FramereoOuuu22q.displayName=\"Button\";FramereoOuuu22q.defaultProps={height:50,width:173};addPropertyControls(FramereoOuuu22q,{variant:{options:[\"kxKbp_o0d\",\"iWmzE9sIR\",\"pYV0kI0uP\",\"lBVQH3Q4m\",\"HN_Li40AL\",\"kx5239ef5\"],optionTitles:[\"Default\",\"Secondary\",\"Outline\",\"Secondary M\",\"Icon button\",\"Variant 6\"],title:\"Variant\",type:ControlType.Enum},vXY6OI5Bc:{defaultValue:\"Label Button\",description:\"Links to a form where user can fill their data\",displayTextArea:false,title:\"Contact Sales\",type:ControlType.String},oWE6eT4Pb:{title:\"Link\",type:ControlType.Link},MvNJev6Df:{defaultValue:'var(--token-43315af6-1007-47b0-b37f-7a6ce15fe95c, rgb(242, 249, 254)) /* {\"name\":\"UI Light 100\"} */',title:\"Text Color\",type:ControlType.Color},ZVmv2QNds:{title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramereoOuuu22q,[{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,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereoOuuu22q\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"vXY6OI5Bc\\\":\\\"contactSales\\\",\\\"oWE6eT4Pb\\\":\\\"link\\\",\\\"MvNJev6Df\\\":\\\"textColor\\\",\\\"ZVmv2QNds\\\":\\\"image\\\"}\",\"framerIntrinsicHeight\":\"50\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"iWmzE9sIR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"pYV0kI0uP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"lBVQH3Q4m\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"HN_Li40AL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"kx5239ef5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"jEpDFchXW\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"kcghtKCX4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Zz3PsDXRC\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Slc8WVn_j\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"F8p4H6sRI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"173\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./eoOuuu22q.map", "// Generated by Framer (c56cc2c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-TXrxf .framer-styles-preset-4yo77n:not(.rich-text-wrapper), .framer-TXrxf .framer-styles-preset-4yo77n.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-decoration: none; --framer-link-text-decoration: none; transition: color 0.7s cubic-bezier(0.4, 0, 0, 1) 0s; }\"];export const className=\"framer-TXrxf\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b0164a3)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Button from\"https://framerusercontent.com/modules/1uwt43aRZs883DQt7jfX/6snDujdUWssEvCXzAWvd/eoOuuu22q.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/lNVL9XlzLJqFFDH5oCio/FPOdGmszgEyq2G5KYmyD/X7e4x7d10.js\";const MotionAWithFX=withFX(motion.a);const MotionDivWithFX=withFX(motion.div);const ButtonFonts=getFonts(Button);const cycleOrder=[\"m7noTNVnn\",\"TwQwpAehF\",\"YEa2vfIg6\",\"lqwHmMGPa\"];const serializationHash=\"framer-sDl8n\";const variantClassNames={lqwHmMGPa:\"framer-v-axwtf0\",m7noTNVnn:\"framer-v-ugompw\",TwQwpAehF:\"framer-v-qddumz\",YEa2vfIg6:\"framer-v-1531h7d\"};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:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const 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 humanReadableVariantMap={\"Phone Open\":\"YEa2vfIg6\",Desktop:\"m7noTNVnn\",Phone:\"TwQwpAehF\",Tablet:\"lqwHmMGPa\"};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:\"m7noTNVnn\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"m7noTNVnn\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapcxw0gf=activeVariantCallback(async(...args)=>{setVariant(\"YEa2vfIg6\");});const onTap1bqyqe9=activeVariantCallback(async(...args)=>{setVariant(\"TwQwpAehF\");});const onMouseEntertxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"TwQwpAehF\",\"YEa2vfIg6\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"TwQwpAehF\")return false;return true;};const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=React.useRef(null);const ref5=React.useRef(null);const ref6=React.useRef(null);const ref7=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ugompw\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"m7noTNVnn\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-3854456b-5064-4658-bdfd-0b29f6aa355d, rgb(7, 12, 20))\",...style},...addPropertyOverrides({lqwHmMGPa:{\"data-framer-name\":\"Tablet\"},TwQwpAehF:{\"data-framer-name\":\"Phone\"},YEa2vfIg6:{\"data-framer-name\":\"Phone Open\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d24i0t\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"fCBwxfqBD\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e2qe5r\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"r5jHevdfw\",...addPropertyOverrides({TwQwpAehF:{\"data-highlight\":true,onTap:onTapcxw0gf},YEa2vfIg6:{\"data-highlight\":true,onTap:onTap1bqyqe9}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"PgKF1_T7A\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-o4cxd framer-1a3xmvq\",\"data-framer-name\":\"Logo Wrapper\",layoutDependency:layoutDependency,layoutId:\"PgKF1_T7A\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Financia\",fit:\"fit\",intrinsicHeight:46,intrinsicWidth:162,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(22+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||94)-44-50)/2)+6+0+-7.5),pixelHeight:340,pixelWidth:2238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xS5hcJfDzLURho7NO3KL2I6cS4o.png?scale-down-to=1024\"},className:\"framer-1lnndml\",\"data-framer-name\":\"Logo Wrapper\",layoutDependency:layoutDependency,layoutId:\"b3JELphy_\",...addPropertyOverrides({lqwHmMGPa:{background:{alt:\"Financia\",fit:\"fit\",intrinsicHeight:46,intrinsicWidth:162,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(22+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||94)-44-50)/2)+7.563291139240505+0+0),pixelHeight:340,pixelWidth:2238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xS5hcJfDzLURho7NO3KL2I6cS4o.png?scale-down-to=1024\"}},TwQwpAehF:{background:{alt:\"Financia\",fit:\"fit\",intrinsicHeight:46,intrinsicWidth:162,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||60)-16-44)/2+0+0)+0+9.012658227848101+0),pixelHeight:340,pixelWidth:2238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xS5hcJfDzLURho7NO3KL2I6cS4o.png?scale-down-to=1024\"}},YEa2vfIg6:{background:{alt:\"Financia\",fit:\"fit\",intrinsicHeight:46,intrinsicWidth:162,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+22+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||459)-56-899.8)/2+0+0)+0+0+3.5+0),pixelHeight:340,pixelWidth:2238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xS5hcJfDzLURho7NO3KL2I6cS4o.png?scale-down-to=1024\"}}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13yjne4\",\"data-framer-name\":\"Mobile Burger Menu\",layoutDependency:layoutDependency,layoutId:\"Lc6bPO6Sg\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xoro8i\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"C0kCRUrzT\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{YEa2vfIg6:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-e91k59\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"fiRvV8Ggq\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{YEa2vfIg6:{rotate:45}}})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.nav,{className:\"framer-14tcl15\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"p5kBNJmS1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f191b7e0-2bdc-4499-8e62-729827922acd, rgb(130, 142, 157)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ioXH_d7Pw\"},nodeId:\"BhStORokH\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4yo77n\",\"data-styles-preset\":\"X7e4x7d10\",children:\"Home\"})})})}),className:\"framer-16wxvvr\",\"data-framer-name\":\"Features\",fonts:[\"GF;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"BhStORokH\",style:{\"--extracted-r6o4lv\":\"var(--token-f191b7e0-2bdc-4499-8e62-729827922acd, rgb(130, 142, 157))\",\"--framer-paragraph-spacing\":\"30px\"},variants:{lqwHmMGPa:{\"--extracted-r6o4lv\":\"rgb(130, 142, 157)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({lqwHmMGPa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(130, 142, 157))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ioXH_d7Pw\"},nodeId:\"BhStORokH\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4yo77n\",\"data-styles-preset\":\"X7e4x7d10\",children:\"Home\"})})})})},YEa2vfIg6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f191b7e0-2bdc-4499-8e62-729827922acd, rgb(130, 142, 157)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ioXH_d7Pw\"},nodeId:\"BhStORokH\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4yo77n\",\"data-styles-preset\":\"X7e4x7d10\",children:\"Home\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f191b7e0-2bdc-4499-8e62-729827922acd, rgb(130, 142, 157)))\"},children:\"Labs\"})}),className:\"framer-12d8u8c\",\"data-framer-name\":\"Pricing\",\"data-highlight\":true,fonts:[\"GF;Manrope-regular\"],id:`${layoutId}-12d8u8c`,layoutDependency:layoutDependency,layoutId:\"uqgW3xZ3D\",onMouseEnter:onMouseEntertxyyif({overlay}),ref:ref2,style:{\"--extracted-r6o4lv\":\"var(--token-f191b7e0-2bdc-4499-8e62-729827922acd, rgb(130, 142, 157))\",\"--framer-paragraph-spacing\":\"30px\"},variants:{lqwHmMGPa:{\"--extracted-r6o4lv\":\"rgb(130, 142, 157)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({lqwHmMGPa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(130, 142, 157))\"},children:\"Labs\"})})},YEa2vfIg6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f191b7e0-2bdc-4499-8e62-729827922acd, rgb(130, 142, 157)))\"},children:\"Labs\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(scopingClassNames,classNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-12d8u8c`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1isifyh\",\"data-border\":true,\"data-framer-name\":\"Menu\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"UaHY4k6Hx\",ref:ref3,role:\"dialog\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-c049abf4-7569-4ac3-887d-bef5b6657fab, rgb(33, 42, 64))\",borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QHTVEmuCX\"},nodeId:\"YRcikfhHD\",openInNewTab:false,children:/*#__PURE__*/_jsxs(MotionAWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-rlvi8k framer-1a3xmvq\",\"data-framer-name\":\"Item\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"YRcikfhHD\",children:[/*#__PURE__*/_jsx(SVG,{background:{alt:\"\",fit:\"fill\",pixelHeight:347,pixelWidth:345,src:\"https://framerusercontent.com/images/8xSuikqKrdhBCCOz0VXkGS3Mc.png\"},className:\"framer-1m6p2tv\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ozoZsf0Gc\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"></svg>',svgContentId:9123173642,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-08abdfee-17c5-4399-9a6f-7f5d70d35402, rgb(200, 211, 227)))\"},children:\"Robotics Lab\"})}),className:\"framer-1l8thd8\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"MxxgZR7AP\",style:{\"--extracted-r6o4lv\":\"var(--token-08abdfee-17c5-4399-9a6f-7f5d70d35402, rgb(200, 211, 227))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"euadQcSQM\"},nodeId:\"WyK4QrFD7\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1x6v91b framer-1a3xmvq\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"WyK4QrFD7\",children:[/*#__PURE__*/_jsx(SVG,{background:{alt:\"\",fit:\"fill\",pixelHeight:345,pixelWidth:345,src:\"https://framerusercontent.com/images/Dn4JIkVviXyU8uNGS1HYzfJBnAc.png\"},className:\"framer-13r6l8q\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"KVtwyyFPJ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"></svg>',svgContentId:10352974998,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-08abdfee-17c5-4399-9a6f-7f5d70d35402, rgb(200, 211, 227)))\"},children:\"AR/VR Lab\"})}),className:\"framer-rvnna6\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"teBEuxMNJ\",style:{\"--extracted-r6o4lv\":\"var(--token-08abdfee-17c5-4399-9a6f-7f5d70d35402, rgb(200, 211, 227))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"envkWYB03\"},nodeId:\"OFtSo11xW\",openInNewTab:false,children:/*#__PURE__*/_jsxs(MotionAWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1q4xjll framer-1a3xmvq\",\"data-framer-name\":\"Item\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"OFtSo11xW\",children:[/*#__PURE__*/_jsx(SVG,{background:{alt:\"\",fit:\"fill\",pixelHeight:347,pixelWidth:345,src:\"https://framerusercontent.com/images/8xSuikqKrdhBCCOz0VXkGS3Mc.png\"},className:\"framer-tq99h0\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"KANUGKdPp\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"></svg>',svgContentId:9123173642,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-08abdfee-17c5-4399-9a6f-7f5d70d35402, rgb(200, 211, 227)))\"},children:\"Composite Lab\"})}),className:\"framer-ynyy3q\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"S_KVKfkPC\",style:{\"--extracted-r6o4lv\":\"var(--token-08abdfee-17c5-4399-9a6f-7f5d70d35402, rgb(200, 211, 227))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})]})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f191b7e0-2bdc-4499-8e62-729827922acd, rgb(130, 142, 157)))\"},children:\"Products\"})}),className:\"framer-99glnr\",\"data-framer-name\":\"Services\",\"data-highlight\":true,fonts:[\"GF;Manrope-regular\"],id:`${layoutId}-99glnr`,layoutDependency:layoutDependency,layoutId:\"QQAyxNLM6\",onMouseEnter:onMouseEntertxyyif({overlay:overlay1}),ref:ref4,style:{\"--extracted-r6o4lv\":\"var(--token-f191b7e0-2bdc-4499-8e62-729827922acd, rgb(130, 142, 157))\",\"--framer-paragraph-spacing\":\"30px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref4,className:cx(scopingClassNames,classNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-99glnr`,offsetX:0,offsetY:10,onDismiss:overlay1.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-gx6kef\",\"data-border\":true,\"data-framer-name\":\"Menu\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"NtNCGmsrP\",ref:ref5,role:\"dialog\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-c049abf4-7569-4ac3-887d-bef5b6657fab, rgb(33, 42, 64))\",borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"OS06Uu1Rr\"},nodeId:\"RPad43_oC\",openInNewTab:false,children:/*#__PURE__*/_jsxs(MotionAWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1vtquw0 framer-1a3xmvq\",\"data-framer-name\":\"Item\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"RPad43_oC\",children:[/*#__PURE__*/_jsx(SVG,{background:{alt:\"\",fit:\"fill\",pixelHeight:347,pixelWidth:345,src:\"https://framerusercontent.com/images/8xSuikqKrdhBCCOz0VXkGS3Mc.png\"},className:\"framer-3vc8zf\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"X1Vj73T0e\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"></svg>',svgContentId:9123173642,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-08abdfee-17c5-4399-9a6f-7f5d70d35402, rgb(200, 211, 227)))\"},children:\"iLMS\"})}),className:\"framer-eyoo9u\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"JT4m6SbnM\",style:{\"--extracted-r6o4lv\":\"var(--token-08abdfee-17c5-4399-9a6f-7f5d70d35402, rgb(200, 211, 227))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://kirakits.com/\",nodeId:\"xakbd4LkP\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1ui35wz framer-1a3xmvq\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"xakbd4LkP\",children:[/*#__PURE__*/_jsx(SVG,{background:{alt:\"\",fit:\"fill\",pixelHeight:347,pixelWidth:345,src:\"https://framerusercontent.com/images/I75bSexGABzD1qsQDCRK2yLitPM.png\"},className:\"framer-1f7732l\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"SJ3MxNNCK\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"></svg>',svgContentId:12773425155,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-08abdfee-17c5-4399-9a6f-7f5d70d35402, rgb(200, 211, 227)))\"},children:\"Kirakits\"})}),className:\"framer-vvircj\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"le5ZNMgP_\",style:{\"--extracted-r6o4lv\":\"var(--token-08abdfee-17c5-4399-9a6f-7f5d70d35402, rgb(200, 211, 227))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})]})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay2=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f191b7e0-2bdc-4499-8e62-729827922acd, rgb(130, 142, 157)))\"},children:\"Services\"})}),className:\"framer-uzox0v\",\"data-framer-name\":\"Services\",\"data-highlight\":true,fonts:[\"GF;Manrope-regular\"],id:`${layoutId}-uzox0v`,layoutDependency:layoutDependency,layoutId:\"Z_69SV5sd\",onMouseEnter:onMouseEntertxyyif({overlay:overlay2}),ref:ref6,style:{\"--extracted-r6o4lv\":\"var(--token-f191b7e0-2bdc-4499-8e62-729827922acd, rgb(130, 142, 157))\",\"--framer-paragraph-spacing\":\"30px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref6,className:cx(scopingClassNames,classNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-uzox0v`,offsetX:0,offsetY:10,onDismiss:overlay2.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1qbrkf0\",\"data-border\":true,\"data-framer-name\":\"Menu\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"dgGwEoU7q\",ref:ref7,role:\"dialog\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-c049abf4-7569-4ac3-887d-bef5b6657fab, rgb(33, 42, 64))\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rzJnAdlkv\"},nodeId:\"oDotshTp8\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-18ywfx6 framer-1a3xmvq\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"oDotshTp8\",children:[/*#__PURE__*/_jsx(SVG,{background:{alt:\"\",fit:\"fill\",pixelHeight:347,pixelWidth:345,src:\"https://framerusercontent.com/images/I75bSexGABzD1qsQDCRK2yLitPM.png\"},className:\"framer-f1sr6l\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"yeIcJKQZV\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"></svg>',svgContentId:12773425155,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-08abdfee-17c5-4399-9a6f-7f5d70d35402, rgb(200, 211, 227)))\"},children:\"Competitions Support\"})}),className:\"framer-f7y8h6\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"eJi2Mv3Um\",style:{\"--extracted-r6o4lv\":\"var(--token-08abdfee-17c5-4399-9a6f-7f5d70d35402, rgb(200, 211, 227))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rzJnAdlkv\"},nodeId:\"Ddymo8CKC\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-967l49 framer-1a3xmvq\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"Ddymo8CKC\",children:[/*#__PURE__*/_jsx(SVG,{background:{alt:\"\",fit:\"fill\",pixelHeight:347,pixelWidth:345,src:\"https://framerusercontent.com/images/I75bSexGABzD1qsQDCRK2yLitPM.png\"},className:\"framer-k0xm9\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"viQh40go0\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"></svg>',svgContentId:12773425155,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-08abdfee-17c5-4399-9a6f-7f5d70d35402, rgb(200, 211, 227)))\"},children:\"Exhibition Support\"})}),className:\"framer-2eu7yn\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"h4pUCASpd\",style:{\"--extracted-r6o4lv\":\"var(--token-08abdfee-17c5-4399-9a6f-7f5d70d35402, rgb(200, 211, 227))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":YoxuWi4Fb\",webPageId:\"OS06Uu1Rr\"},nodeId:\"QdTsIqfYv\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-u19q6c framer-1a3xmvq\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"QdTsIqfYv\",children:[/*#__PURE__*/_jsx(SVG,{background:{alt:\"\",fit:\"fill\",pixelHeight:347,pixelWidth:345,src:\"https://framerusercontent.com/images/I75bSexGABzD1qsQDCRK2yLitPM.png\"},className:\"framer-1lb2sln\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"bKkaxVEKY\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"></svg>',svgContentId:12773425155,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-08abdfee-17c5-4399-9a6f-7f5d70d35402, rgb(200, 211, 227)))\"},children:\"Our Curriculum\"})}),className:\"framer-1jrqa4l\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"sRZyWApJv\",style:{\"--extracted-r6o4lv\":\"var(--token-08abdfee-17c5-4399-9a6f-7f5d70d35402, rgb(200, 211, 227))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f191b7e0-2bdc-4499-8e62-729827922acd, rgb(130, 142, 157)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rxl4Y_Lr_\"},nodeId:\"DZYGNXQT2\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4yo77n\",\"data-styles-preset\":\"X7e4x7d10\",children:\"Contact Us\"})})})}),className:\"framer-1r4teot\",\"data-framer-name\":\"Contact\",fonts:[\"GF;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"DZYGNXQT2\",style:{\"--extracted-r6o4lv\":\"var(--token-f191b7e0-2bdc-4499-8e62-729827922acd, rgb(130, 142, 157))\",\"--framer-paragraph-spacing\":\"30px\"},variants:{lqwHmMGPa:{\"--extracted-r6o4lv\":\"rgb(130, 142, 157)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({lqwHmMGPa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(130, 142, 157))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rxl4Y_Lr_\"},nodeId:\"DZYGNXQT2\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4yo77n\",\"data-styles-preset\":\"X7e4x7d10\",children:\"Contact Us\"})})})})},YEa2vfIg6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f191b7e0-2bdc-4499-8e62-729827922acd, rgb(130, 142, 157)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rxl4Y_Lr_\"},nodeId:\"DZYGNXQT2\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4yo77n\",\"data-styles-preset\":\"X7e4x7d10\",children:\"Contact Us\"})})})})}},baseVariant,gestureVariant)})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ukzmjo\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"yXD1iJO44\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rxl4Y_Lr_\"},implicitPathVariables:undefined},{href:{hash:\":N5G1fvw3K\",webPageId:\"rxl4Y_Lr_\"},implicitPathVariables:undefined},{href:{hash:\":N5G1fvw3K\",webPageId:\"rxl4Y_Lr_\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(22+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||94)-44-50)/2)+0+0,...addPropertyOverrides({YEa2vfIg6:{width:`max(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 36px, 1228px), 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+22+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||459)-56-899.8)/2+0+0)+0+849.8+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bro29k-container\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"BGYW8_6yN-container\",name:\"Button\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"BGYW8_6yN\",layoutId:\"BGYW8_6yN\",MvNJev6Df:\"var(--token-43315af6-1007-47b0-b37f-7a6ce15fe95c, rgb(242, 249, 254))\",name:\"Button\",oWE6eT4Pb:resolvedLinks[0],variant:\"iWmzE9sIR\",vXY6OI5Bc:\"Book a Meeting\",width:\"100%\",...addPropertyOverrides({lqwHmMGPa:{oWE6eT4Pb:resolvedLinks[2]},YEa2vfIg6:{oWE6eT4Pb:resolvedLinks[1],style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sDl8n.framer-1a3xmvq, .framer-sDl8n .framer-1a3xmvq { display: block; }\",\".framer-sDl8n.framer-ugompw { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 22px 60px 22px 60px; position: relative; width: 1200px; }\",\".framer-sDl8n .framer-1d24i0t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1228px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sDl8n .framer-1e2qe5r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sDl8n .framer-o4cxd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 38px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 158px; }\",\".framer-sDl8n .framer-1lnndml { flex: none; height: 53px; position: relative; width: 221px; }\",\".framer-sDl8n .framer-13yjne4 { flex: none; height: 40px; overflow: hidden; position: relative; width: 40px; }\",\".framer-sDl8n .framer-1xoro8i { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(62.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sDl8n .framer-e91k59 { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(37.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sDl8n .framer-14tcl15 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sDl8n .framer-16wxvvr, .framer-sDl8n .framer-12d8u8c, .framer-sDl8n .framer-99glnr, .framer-sDl8n .framer-uzox0v, .framer-sDl8n .framer-1r4teot { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-sDl8n .framer-1isifyh { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 15px; position: relative; width: 187px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sDl8n .framer-rlvi8k, .framer-sDl8n .framer-1x6v91b, .framer-sDl8n .framer-1q4xjll, .framer-sDl8n .framer-1vtquw0, .framer-sDl8n .framer-1ui35wz, .framer-sDl8n .framer-18ywfx6, .framer-sDl8n .framer-967l49, .framer-sDl8n .framer-u19q6c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-sDl8n .framer-1m6p2tv, .framer-sDl8n .framer-13r6l8q, .framer-sDl8n .framer-tq99h0, .framer-sDl8n .framer-3vc8zf, .framer-sDl8n .framer-1f7732l, .framer-sDl8n .framer-f1sr6l, .framer-sDl8n .framer-k0xm9, .framer-sDl8n .framer-1lb2sln { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-sDl8n .framer-1l8thd8, .framer-sDl8n .framer-rvnna6, .framer-sDl8n .framer-ynyy3q, .framer-sDl8n .framer-eyoo9u, .framer-sDl8n .framer-vvircj, .framer-sDl8n .framer-f7y8h6, .framer-sDl8n .framer-2eu7yn, .framer-sDl8n .framer-1jrqa4l { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-sDl8n .framer-gx6kef { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 15px; position: relative; width: 123px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sDl8n .framer-1qbrkf0 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 15px; position: relative; width: 296px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sDl8n .framer-ukzmjo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sDl8n .framer-1bro29k-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sDl8n.framer-ugompw, .framer-sDl8n .framer-1e2qe5r, .framer-sDl8n .framer-o4cxd, .framer-sDl8n .framer-14tcl15, .framer-sDl8n .framer-1isifyh, .framer-sDl8n .framer-rlvi8k, .framer-sDl8n .framer-1x6v91b, .framer-sDl8n .framer-1q4xjll, .framer-sDl8n .framer-gx6kef, .framer-sDl8n .framer-1vtquw0, .framer-sDl8n .framer-1ui35wz, .framer-sDl8n .framer-1qbrkf0, .framer-sDl8n .framer-18ywfx6, .framer-sDl8n .framer-967l49, .framer-sDl8n .framer-u19q6c, .framer-sDl8n .framer-ukzmjo { gap: 0px; } .framer-sDl8n.framer-ugompw > *, .framer-sDl8n .framer-ukzmjo > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-sDl8n.framer-ugompw > :first-child, .framer-sDl8n .framer-1e2qe5r > :first-child, .framer-sDl8n .framer-o4cxd > :first-child, .framer-sDl8n .framer-14tcl15 > :first-child, .framer-sDl8n .framer-rlvi8k > :first-child, .framer-sDl8n .framer-1x6v91b > :first-child, .framer-sDl8n .framer-1q4xjll > :first-child, .framer-sDl8n .framer-1vtquw0 > :first-child, .framer-sDl8n .framer-1ui35wz > :first-child, .framer-sDl8n .framer-18ywfx6 > :first-child, .framer-sDl8n .framer-967l49 > :first-child, .framer-sDl8n .framer-u19q6c > :first-child, .framer-sDl8n .framer-ukzmjo > :first-child { margin-left: 0px; } .framer-sDl8n.framer-ugompw > :last-child, .framer-sDl8n .framer-1e2qe5r > :last-child, .framer-sDl8n .framer-o4cxd > :last-child, .framer-sDl8n .framer-14tcl15 > :last-child, .framer-sDl8n .framer-rlvi8k > :last-child, .framer-sDl8n .framer-1x6v91b > :last-child, .framer-sDl8n .framer-1q4xjll > :last-child, .framer-sDl8n .framer-1vtquw0 > :last-child, .framer-sDl8n .framer-1ui35wz > :last-child, .framer-sDl8n .framer-18ywfx6 > :last-child, .framer-sDl8n .framer-967l49 > :last-child, .framer-sDl8n .framer-u19q6c > :last-child, .framer-sDl8n .framer-ukzmjo > :last-child { margin-right: 0px; } .framer-sDl8n .framer-1e2qe5r > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-sDl8n .framer-o4cxd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-sDl8n .framer-14tcl15 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-sDl8n .framer-1isifyh > *, .framer-sDl8n .framer-gx6kef > *, .framer-sDl8n .framer-1qbrkf0 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-sDl8n .framer-1isifyh > :first-child, .framer-sDl8n .framer-gx6kef > :first-child, .framer-sDl8n .framer-1qbrkf0 > :first-child { margin-top: 0px; } .framer-sDl8n .framer-1isifyh > :last-child, .framer-sDl8n .framer-gx6kef > :last-child, .framer-sDl8n .framer-1qbrkf0 > :last-child { margin-bottom: 0px; } .framer-sDl8n .framer-rlvi8k > *, .framer-sDl8n .framer-1x6v91b > *, .framer-sDl8n .framer-1q4xjll > *, .framer-sDl8n .framer-1vtquw0 > *, .framer-sDl8n .framer-1ui35wz > *, .framer-sDl8n .framer-18ywfx6 > *, .framer-sDl8n .framer-967l49 > *, .framer-sDl8n .framer-u19q6c > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } }\",\".framer-sDl8n.framer-v-qddumz.framer-ugompw { flex-direction: column; gap: 0px; max-height: calc(var(--framer-viewport-height, 100vh) * 1); padding: 8px 18px 8px 18px; width: 390px; }\",\".framer-sDl8n.framer-v-qddumz .framer-1e2qe5r { cursor: pointer; flex: 1 0 0px; gap: unset; justify-content: space-between; width: 1px; }\",\".framer-sDl8n.framer-v-qddumz .framer-o4cxd { height: min-content; order: 0; width: min-content; }\",\".framer-sDl8n.framer-v-qddumz .framer-1lnndml { aspect-ratio: 4.157894736842105 / 1; height: var(--framer-aspect-ratio-supported, 26px); width: 108px; }\",\".framer-sDl8n.framer-v-qddumz .framer-13yjne4 { height: 44px; order: 1; width: 44px; }\",\".framer-sDl8n.framer-v-qddumz .framer-1xoro8i { height: 2px; top: calc(59.090909090909115% - 1.5px / 2); }\",\".framer-sDl8n.framer-v-qddumz .framer-e91k59 { height: 2px; top: calc(38.636363636363654% - 1.5px / 2); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sDl8n.framer-v-qddumz.framer-ugompw, .framer-sDl8n.framer-v-qddumz .framer-1e2qe5r { gap: 0px; } .framer-sDl8n.framer-v-qddumz.framer-ugompw > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sDl8n.framer-v-qddumz.framer-ugompw > :first-child { margin-top: 0px; } .framer-sDl8n.framer-v-qddumz.framer-ugompw > :last-child { margin-bottom: 0px; } .framer-sDl8n.framer-v-qddumz .framer-1e2qe5r > *, .framer-sDl8n.framer-v-qddumz .framer-1e2qe5r > :first-child, .framer-sDl8n.framer-v-qddumz .framer-1e2qe5r > :last-child { margin: 0px; } }\",\".framer-sDl8n.framer-v-1531h7d.framer-ugompw { flex-direction: column; gap: 0px; max-height: calc(var(--framer-viewport-height, 100vh) * 1); padding: 22px 18px 34px 18px; width: 390px; }\",\".framer-sDl8n.framer-v-1531h7d .framer-1d24i0t { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 32px; justify-content: center; z-index: 9; }\",\".framer-sDl8n.framer-v-1531h7d .framer-1e2qe5r { cursor: pointer; gap: unset; justify-content: space-between; width: 100%; }\",\".framer-sDl8n.framer-v-1531h7d .framer-o4cxd, .framer-sDl8n.framer-v-axwtf0 .framer-o4cxd { height: min-content; width: min-content; }\",\".framer-sDl8n.framer-v-1531h7d .framer-1lnndml { height: 37px; width: 152px; }\",\".framer-sDl8n.framer-v-1531h7d .framer-13yjne4 { height: 44px; width: 44px; }\",\".framer-sDl8n.framer-v-1531h7d .framer-1xoro8i, .framer-sDl8n.framer-v-1531h7d .framer-e91k59 { height: 2px; top: calc(50.00000000000002% - 1.5px / 2); }\",\".framer-sDl8n.framer-v-1531h7d .framer-14tcl15 { flex-direction: column; flex-wrap: wrap; gap: 7px; justify-content: flex-start; padding: 0px 0px 10px 0px; width: 100%; }\",\".framer-sDl8n.framer-v-1531h7d .framer-16wxvvr, .framer-sDl8n.framer-v-1531h7d .framer-12d8u8c, .framer-sDl8n.framer-v-1531h7d .framer-1r4teot { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sDl8n.framer-v-1531h7d .framer-ukzmjo { width: 100%; }\",\".framer-sDl8n.framer-v-1531h7d .framer-1bro29k-container { flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sDl8n.framer-v-1531h7d.framer-ugompw, .framer-sDl8n.framer-v-1531h7d .framer-1d24i0t, .framer-sDl8n.framer-v-1531h7d .framer-1e2qe5r, .framer-sDl8n.framer-v-1531h7d .framer-14tcl15 { gap: 0px; } .framer-sDl8n.framer-v-1531h7d.framer-ugompw > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sDl8n.framer-v-1531h7d.framer-ugompw > :first-child, .framer-sDl8n.framer-v-1531h7d .framer-1d24i0t > :first-child, .framer-sDl8n.framer-v-1531h7d .framer-14tcl15 > :first-child { margin-top: 0px; } .framer-sDl8n.framer-v-1531h7d.framer-ugompw > :last-child, .framer-sDl8n.framer-v-1531h7d .framer-1d24i0t > :last-child, .framer-sDl8n.framer-v-1531h7d .framer-14tcl15 > :last-child { margin-bottom: 0px; } .framer-sDl8n.framer-v-1531h7d .framer-1d24i0t > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-sDl8n.framer-v-1531h7d .framer-1e2qe5r > *, .framer-sDl8n.framer-v-1531h7d .framer-1e2qe5r > :first-child, .framer-sDl8n.framer-v-1531h7d .framer-1e2qe5r > :last-child { margin: 0px; } .framer-sDl8n.framer-v-1531h7d .framer-14tcl15 > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } }\",\".framer-sDl8n.framer-v-axwtf0.framer-ugompw { padding: 22px 30px 22px 30px; width: 810px; }\",\".framer-sDl8n.framer-v-axwtf0 .framer-1lnndml { aspect-ratio: 4.157894736842105 / 1; height: var(--framer-aspect-ratio-supported, 34px); width: 145px; }\",\".framer-sDl8n.framer-v-axwtf0 .framer-14tcl15 { gap: 14px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sDl8n.framer-v-axwtf0 .framer-14tcl15 { gap: 0px; } .framer-sDl8n.framer-v-axwtf0 .framer-14tcl15 > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-sDl8n.framer-v-axwtf0 .framer-14tcl15 > :first-child { margin-left: 0px; } .framer-sDl8n.framer-v-axwtf0 .framer-14tcl15 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-sDl8n[data-border=\"true\"]::after, .framer-sDl8n [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 94\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TwQwpAehF\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]},\"YEa2vfIg6\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]},\"lqwHmMGPa\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGPnthCZJR=withCSS(Component,css,\"framer-sDl8n\");export default FramerGPnthCZJR;FramerGPnthCZJR.displayName=\"Navigation\";FramerGPnthCZJR.defaultProps={height:94,width:1200};addPropertyControls(FramerGPnthCZJR,{variant:{options:[\"m7noTNVnn\",\"TwQwpAehF\",\"YEa2vfIg6\",\"lqwHmMGPa\"],optionTitles:[\"Desktop\",\"Phone\",\"Phone Open\",\"Tablet\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerGPnthCZJR,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_A87jxeN7B.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGPnthCZJR\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TwQwpAehF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]},\\\"YEa2vfIg6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]},\\\"lqwHmMGPa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"94\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GPnthCZJR.map"],
  "mappings": "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",
  "names": ["containerStyles", "emptyStateStyle", "containerStyles", "NullState", "Y", "_", "ref", "p", "e", "f", "o", "t", "n", "defaultEvents", "ControlType", "findByArray", "arr", "search", "a", "getIconSelection", "iconKeys", "selectByList", "iconSearch", "iconSelection", "lowercaseIconKeyPairs", "iconSearchTerm", "_iconSearchTerm", "useIconSelection", "iconSearchResult", "se", "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", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "contactSales", "height", "id", "image", "link", "textColor", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vXY6OI5Bc", "oWE6eT4Pb", "MvNJev6Df", "ZVmv2QNds", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "css", "FramereoOuuu22q", "withCSS", "eoOuuu22q_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "MotionAWithFX", "withFX", "motion", "MotionDivWithFX", "ButtonFonts", "getFonts", "eoOuuu22q_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Variants", "x", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapcxw0gf", "args", "onTap1bqyqe9", "onMouseEntertxyyif", "overlay", "loadMore", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "ref2", "ref3", "ref4", "ref5", "ref6", "ref7", "router", "useRouter", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Link", "Image2", "getLoadingLazyAtYPosition", "RichText2", "l", "AnimatePresence", "Floating", "SVG", "overlay1", "overlay2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "css", "FramerGPnthCZJR", "withCSS", "GPnthCZJR_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
