{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/icon-nullstate.js@0.7.0", "ssg:https://framer.com/m/hero-icons/Home.js@0.0.27", "ssg:https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js", "ssg:https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/rQJeCcsGr1fSnWO0FT2G/Hero.js", "ssg:https://framerusercontent.com/modules/j1iqX2TSnjlPF6CLTnLa/T96x0cR4R2s2mhJqzIJr/dyKOqQcFU.js", "ssg:https://framerusercontent.com/modules/vJJMuyWUdgh2CssCxdFI/bUhSkXsfROUl0aDwjKNG/OoyCL3H8v.js", "ssg:https://framerusercontent.com/modules/NnJDW7FQLgUfr0Bq0bTH/CUhjLEzCui2pvSFqxrai/tQ9wVlp3O.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 r;var l=e=>{if(!r){const t=({size:o=24,...a},n)=>e.createElement(\"svg\",{viewBox:\"0 0 20 20\",fill:\"currentColor\",width:o,height:o,ref:n,...a},e.createElement(\"path\",{d:\"M10.707 2.293a1 1 0 00-1.414 0l-7 7a1 1 0 001.414 1.414L4 10.414V17a1 1 0 001 1h2a1 1 0 001-1v-2a1 1 0 011-1h2a1 1 0 011 1v2a1 1 0 001 1h2a1 1 0 001-1v-6.586l.293.293a1 1 0 001.414-1.414l-7-7z\"}));r=e.forwardRef(t)}return r};export{l 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{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/hero-icons/Home.js@0.0.27\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"AcademicCap\",\"AcademicCapOutline\",\"Adjustments\",\"AdjustmentsOutline\",\"Annotation\",\"AnnotationOutline\",\"Archive\",\"ArchiveOutline\",\"ArrowCircleDown\",\"ArrowCircleLeft\",\"ArrowCircleRight\",\"ArrowCircleUp\",\"ArrowCircleUpOutline\",\"ArrowDown\",\"ArrowDownOutline\",\"ArrowLeft\",\"ArrowLeftOutline\",\"ArrowNarrowDown\",\"ArrowNarrowLeft\",\"ArrowNarrowRight\",\"ArrowNarrowUp\",\"ArrowNarrowUpOutline\",\"ArrowRight\",\"ArrowRightOutline\",\"ArrowUp\",\"ArrowUpOutline\",\"ArrowsExpand\",\"ArrowsExpandOutline\",\"AtSymbol\",\"AtSymbolOutline\",\"Backspace\",\"BackspaceOutline\",\"BadgeCheck\",\"BadgeCheckOutline\",\"Ban\",\"BanOutline\",\"Beaker\",\"BeakerOutline\",\"Bell\",\"BellOutline\",\"BookOpen\",\"BookOpenOutline\",\"Bookmark\",\"BookmarkAlt\",\"BookmarkAltOutline\",\"BookmarkOutline\",\"Briefcase\",\"BriefcaseOutline\",\"Cake\",\"CakeOutline\",\"Calculator\",\"CalculatorOutline\",\"Calendar\",\"CalendarOutline\",\"Camera\",\"CameraOutline\",\"Cash\",\"CashOutline\",\"ChartBar\",\"ChartBarOutline\",\"ChartPie\",\"ChartPieOutline\",\"ChartSquareBar\",\"Chat\",\"ChatAlt\",\"ChatAlt2\",\"ChatAlt2Outline\",\"ChatAltOutline\",\"ChatOutline\",\"Check\",\"CheckCircle\",\"CheckCircleOutline\",\"CheckOutline\",\"ChevronDoubleDown\",\"ChevronDoubleLeft\",\"ChevronDoubleRight\",\"ChevronDoubleUp\",\"ChevronDown\",\"ChevronDownOutline\",\"ChevronLeft\",\"ChevronLeftOutline\",\"ChevronRight\",\"ChevronRightOutline\",\"ChevronUp\",\"ChevronUpOutline\",\"Chip\",\"ChipOutline\",\"Clipboard\",\"ClipboardCheck\",\"ClipboardCopy\",\"ClipboardCopyOutline\",\"ClipboardList\",\"ClipboardListOutline\",\"ClipboardOutline\",\"Clock\",\"ClockOutline\",\"Cloud\",\"CloudDownload\",\"CloudDownloadOutline\",\"CloudOutline\",\"CloudUpload\",\"CloudUploadOutline\",\"Code\",\"CodeOutline\",\"Cog\",\"CogOutline\",\"Collection\",\"CollectionOutline\",\"ColorSwatch\",\"ColorSwatchOutline\",\"CreditCard\",\"CreditCardOutline\",\"Cube\",\"CubeOutline\",\"CubeTransparent\",\"CurrencyBangladeshi\",\"CurrencyDollar\",\"CurrencyEuro\",\"CurrencyEuroOutline\",\"CurrencyPound\",\"CurrencyPoundOutline\",\"CurrencyRupee\",\"CurrencyRupeeOutline\",\"CurrencyYen\",\"CurrencyYenOutline\",\"CursorClick\",\"CursorClickOutline\",\"Database\",\"DatabaseOutline\",\"DesktopComputer\",\"DeviceMobile\",\"DeviceMobileOutline\",\"DeviceTablet\",\"DeviceTabletOutline\",\"Document\",\"DocumentAdd\",\"DocumentAddOutline\",\"DocumentDownload\",\"DocumentDuplicate\",\"DocumentOutline\",\"DocumentRemove\",\"DocumentReport\",\"DocumentSearch\",\"DocumentText\",\"DocumentTextOutline\",\"DotsCircleHorizontal\",\"DotsHorizontal\",\"DotsVertical\",\"DotsVerticalOutline\",\"Download\",\"DownloadOutline\",\"Duplicate\",\"DuplicateOutline\",\"EmojiHappy\",\"EmojiHappyOutline\",\"EmojiSad\",\"EmojiSadOutline\",\"Exclamation\",\"ExclamationCircle\",\"ExclamationOutline\",\"ExternalLink\",\"ExternalLinkOutline\",\"Eye\",\"EyeOff\",\"EyeOffOutline\",\"EyeOutline\",\"FastForward\",\"FastForwardOutline\",\"Film\",\"FilmOutline\",\"Filter\",\"FilterOutline\",\"FingerPrint\",\"FingerPrintOutline\",\"Fire\",\"FireOutline\",\"Flag\",\"FlagOutline\",\"Folder\",\"FolderAdd\",\"FolderAddOutline\",\"FolderDownload\",\"FolderOpen\",\"FolderOpenOutline\",\"FolderOutline\",\"FolderRemove\",\"FolderRemoveOutline\",\"Gift\",\"GiftOutline\",\"Globe\",\"GlobeAlt\",\"GlobeAltOutline\",\"GlobeOutline\",\"Hand\",\"HandOutline\",\"Hashtag\",\"HashtagOutline\",\"Heart\",\"HeartOutline\",\"Home\",\"HomeOutline\",\"Identification\",\"Inbox\",\"InboxIn\",\"InboxInOutline\",\"InboxOutline\",\"InformationCircle\",\"Key\",\"KeyOutline\",\"Library\",\"LibraryOutline\",\"LightBulb\",\"LightBulbOutline\",\"LightningBolt\",\"LightningBoltOutline\",\"Link\",\"LinkOutline\",\"LocationMarker\",\"LockClosed\",\"LockClosedOutline\",\"LockOpen\",\"LockOpenOutline\",\"Login\",\"LoginOutline\",\"Logout\",\"LogoutOutline\",\"Mail\",\"MailOpen\",\"MailOpenOutline\",\"MailOutline\",\"Map\",\"MapOutline\",\"Menu\",\"MenuAlt1\",\"MenuAlt1Outline\",\"MenuAlt2\",\"MenuAlt2Outline\",\"MenuAlt3\",\"MenuAlt3Outline\",\"MenuAlt4\",\"MenuAlt4Outline\",\"MenuOutline\",\"Microphone\",\"MicrophoneOutline\",\"Minus\",\"MinusCircle\",\"MinusCircleOutline\",\"MinusOutline\",\"MinusSm\",\"MinusSmOutline\",\"Moon\",\"MoonOutline\",\"MusicNote\",\"MusicNoteOutline\",\"Newspaper\",\"NewspaperOutline\",\"OfficeBuilding\",\"PaperAirplane\",\"PaperAirplaneOutline\",\"PaperClip\",\"PaperClipOutline\",\"Pause\",\"PauseOutline\",\"Pencil\",\"PencilAlt\",\"PencilAltOutline\",\"PencilOutline\",\"Phone\",\"PhoneIncoming\",\"PhoneIncomingOutline\",\"PhoneMissedCall\",\"PhoneOutgoing\",\"PhoneOutgoingOutline\",\"PhoneOutline\",\"Photograph\",\"PhotographOutline\",\"Play\",\"PlayOutline\",\"Plus\",\"PlusCircle\",\"PlusCircleOutline\",\"PlusOutline\",\"PlusSm\",\"PlusSmOutline\",\"PresentationChartBar\",\"Printer\",\"PrinterOutline\",\"Puzzle\",\"PuzzleOutline\",\"Qrcode\",\"QrcodeOutline\",\"QuestionMarkCircle\",\"ReceiptRefund\",\"ReceiptRefundOutline\",\"ReceiptTax\",\"ReceiptTaxOutline\",\"Refresh\",\"RefreshOutline\",\"Reply\",\"ReplyOutline\",\"Rewind\",\"RewindOutline\",\"Rss\",\"RssOutline\",\"Save\",\"SaveAs\",\"SaveAsOutline\",\"SaveOutline\",\"Scale\",\"ScaleOutline\",\"Scissors\",\"ScissorsOutline\",\"Search\",\"SearchCircle\",\"SearchCircleOutline\",\"SearchOutline\",\"Selector\",\"SelectorOutline\",\"Server\",\"ServerOutline\",\"Share\",\"ShareOutline\",\"ShieldCheck\",\"ShieldCheckOutline\",\"ShieldExclamation\",\"ShoppingBag\",\"ShoppingBagOutline\",\"ShoppingCart\",\"ShoppingCartOutline\",\"SortAscending\",\"SortAscendingOutline\",\"SortDescending\",\"Sparkles\",\"SparklesOutline\",\"Speakerphone\",\"SpeakerphoneOutline\",\"Star\",\"StarOutline\",\"StatusOffline\",\"StatusOfflineOutline\",\"StatusOnline\",\"StatusOnlineOutline\",\"Stop\",\"StopOutline\",\"Sun\",\"SunOutline\",\"Support\",\"SupportOutline\",\"SwitchHorizontal\",\"SwitchVertical\",\"Table\",\"TableOutline\",\"Tag\",\"TagOutline\",\"Template\",\"TemplateOutline\",\"Terminal\",\"TerminalOutline\",\"ThumbDown\",\"ThumbDownOutline\",\"ThumbUp\",\"ThumbUpOutline\",\"Ticket\",\"TicketOutline\",\"Translate\",\"TranslateOutline\",\"Trash\",\"TrashOutline\",\"TrendingDown\",\"TrendingDownOutline\",\"TrendingUp\",\"TrendingUpOutline\",\"Truck\",\"TruckOutline\",\"Upload\",\"UploadOutline\",\"User\",\"UserAdd\",\"UserAddOutline\",\"UserCircle\",\"UserCircleOutline\",\"UserGroup\",\"UserGroupOutline\",\"UserOutline\",\"UserRemove\",\"UserRemoveOutline\",\"Users\",\"UsersOutline\",\"Variable\",\"VariableOutline\",\"VideoCamera\",\"VideoCameraOutline\",\"ViewBoards\",\"ViewBoardsOutline\",\"ViewGrid\",\"ViewGridAdd\",\"ViewGridAddOutline\",\"ViewGridOutline\",\"ViewList\",\"ViewListOutline\",\"VolumeOff\",\"VolumeOffOutline\",\"VolumeUp\",\"VolumeUpOutline\",\"Wifi\",\"WifiOutline\",\"X\",\"XCircle\",\"XCircleOutline\",\"XOutline\",\"ZoomIn\",\"ZoomInOutline\",\"ZoomOut\",\"ZoomOutOutline\",];const moduleBaseUrl=\"https://framer.com/m/hero-icons/\";const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * HERO\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.27`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch{if(isMounted.current)setSelectedIcon(null);}}// Import module when new style or icon is selected\nuseEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(SelectedIcon,{style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Hero\";Icon.defaultProps={width:24,height:24,iconSelection:\"Home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Hero site](https://heroicons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"iconKeys\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Hero.map", "import { fontStore } from \"framer\";fontStore.loadWebFontsFromSelectors([\"CUSTOM;SF Pro Display Bold\"]);export const fonts = [{ family: \"SF Pro Display Bold\", moduleAsset: { localModuleIdentifier: \"local-module:css/dyKOqQcFU:default\", url: \"assets/aI3ZsrBi8nPLc3gUnCnoY5gx2M.woff\" }, url: new URL(\"https://framerusercontent.com/modules/assets/aI3ZsrBi8nPLc3gUnCnoY5gx2M~RIljDjjx_gxRUR3REfNF3DmL8dh1eyssO-T81X3CxJ0.woff\").href }];export const css = ['.framer-wsu4x .framer-styles-preset-1x43kt9:not(.rich-text-wrapper), .framer-wsu4x .framer-styles-preset-1x43kt9.rich-text-wrapper h2 { --framer-font-family: \"SF Pro Display Bold\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className = \"framer-wsu4x\";\nexport const __FramerMetadata__ = { \"exports\": { \"fonts\": { \"type\": \"variable\", \"annotations\": { \"framerContractVersion\": \"1\" } }, \"className\": { \"type\": \"variable\", \"annotations\": { \"framerContractVersion\": \"1\" } }, \"css\": { \"type\": \"variable\", \"annotations\": { \"framerContractVersion\": \"1\" } }, \"__FramerMetadata__\": { \"type\": \"variable\" } } };", "import { fontStore } from \"framer\";fontStore.loadWebFontsFromSelectors([\"CUSTOM;SF Pro Display Bold\"]);export const fonts = [{ family: \"SF Pro Display Bold\", moduleAsset: { localModuleIdentifier: \"local-module:css/OoyCL3H8v:default\", url: \"assets/aI3ZsrBi8nPLc3gUnCnoY5gx2M.woff\" }, url: new URL(\"https://framerusercontent.com/modules/assets/aI3ZsrBi8nPLc3gUnCnoY5gx2M~RIljDjjx_gxRUR3REfNF3DmL8dh1eyssO-T81X3CxJ0.woff\").href }];export const css = ['.framer-i8YiU .framer-styles-preset-1r9biv8:not(.rich-text-wrapper), .framer-i8YiU .framer-styles-preset-1r9biv8.rich-text-wrapper h1 { --framer-font-family: \"SF Pro Display Bold\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-size: 60px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className = \"framer-i8YiU\";\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 (4c611f3)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";import { addFonts, Container, cx, GeneratedComponentContext, getFonts, getWhereExpressionFromPathVariables, Image, Link, NotFoundError, PropertyOverrides, removeHiddenBreakpointLayers, RichText, SVG, useCurrentPathVariables, useHydratedBreakpointVariants, useLocaleCode, useLocaleInfo, useQueryData, withCSS } from \"framer\";import { LayoutGroup, motion } from \"framer-motion\";import * as React from \"react\";import { Icon as Hero } from \"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/rQJeCcsGr1fSnWO0FT2G/Hero.js\";import Input from \"https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/QOVXBlV2UNTt0qPAuW0e/Input.js\";import Log, { d96qmof8gToDisplayName } from \"https://framerusercontent.com/modules/mDCTtZRnkyALdyeR9zCS/NY1OtzsEZfBwPwoyStZ7/szafJcYP9.js\";import * as sharedStyle6 from \"https://framerusercontent.com/modules/QvTBCbj1GppirLzY1yzv/12tzqR1eoEuQ7076aov5/AwEbJNeQ2.js\";import * as sharedStyle3 from \"https://framerusercontent.com/modules/vMkHjmbnoKVYpcpGyasi/ZoyxZlbP4EVYAj15dDoc/b23vlRd9i.js\";import * as sharedStyle1 from \"https://framerusercontent.com/modules/j1iqX2TSnjlPF6CLTnLa/T96x0cR4R2s2mhJqzIJr/dyKOqQcFU.js\";import * as sharedStyle4 from \"https://framerusercontent.com/modules/SZYFRBjGY2KAeldQggFm/I1PizigdbKJ1XT8wtjy2/F7ygzoH1y.js\";import * as sharedStyle2 from \"https://framerusercontent.com/modules/1b35YJFp6Udxy8GSR983/pYoqpiQpts269u2JYpX8/F9WY8L1Il.js\";import * as sharedStyle from \"https://framerusercontent.com/modules/vJJMuyWUdgh2CssCxdFI/bUhSkXsfROUl0aDwjKNG/OoyCL3H8v.js\";import * as sharedStyle5 from \"https://framerusercontent.com/modules/IJveRcHkMrg9FzC7cF5w/EElA8KReJOrw3qHR3XKW/We8ZqZvV3.js\";import metadataProvider from \"https://framerusercontent.com/modules/b1kZmQRjqUdYG4JsNDki/70fed0bHqSAs0rOIdniK/tQ9wVlp3O.js\";const HeroFonts = getFonts(Hero);const InputFonts = getFonts(Input);const cycleOrder = [\"eob0rxwyP\", \"E5s6XSXP1\", \"UwRuS4apU\"];const breakpoints = { E5s6XSXP1: \"(min-width: 740px) and (max-width: 1199px)\", eob0rxwyP: \"(min-width: 1200px)\", UwRuS4apU: \"(max-width: 739px)\" };const isBrowser = () => typeof document !== \"undefined\";const variantClassNames = { E5s6XSXP1: \"framer-v-1lfu1av\", eob0rxwyP: \"framer-v-1vl0430\", UwRuS4apU: \"framer-v-f3p8tq\" };if (isBrowser()) {removeHiddenBreakpointLayers(\"eob0rxwyP\", breakpoints, variantClassNames);}const transitions = { default: { duration: 0 } };const transition1 = { damping: 30, delay: 0, mass: 1, stiffness: 400, type: \"spring\" };const animation = { opacity: .5, rotate: 0, scale: 1.1, transition: transition1 };const animation1 = { opacity: 1, rotate: 0, scale: 1.1, transition: transition1 };const transformTemplate = (_, t) => `translateY(-50%) ${t}`;const toDateString = (value, options = {}, activeLocale) => {if (typeof value !== \"string\") return \"\";const date = new Date(value);if (isNaN(date.getTime())) return \"\";const fallbackLocale = \"en-US\";const locale = options.locale || activeLocale || fallbackLocale;const dateStyle = options.dateStyle;const timeZone = \"UTC\";try {return date.toLocaleDateString(locale, { dateStyle, timeZone });} catch {return date.toLocaleDateString(fallbackLocale, { dateStyle, timeZone });}};const toResponsiveImage = (value) => {if (typeof value === \"object\" && value !== null && typeof value.src === \"string\") {return value;}return typeof value === \"string\" ? { src: value } : undefined;};const metadata = metadataProvider();const humanReadableVariantMap = { Desktop: \"eob0rxwyP\", Phone: \"UwRuS4apU\", Tablet: \"E5s6XSXP1\" };const getProps = ({ height, id, width, ...props }) => {var _variant, ref;return { ...props, variant: (ref = (_variant = humanReadableVariantMap[props.variant]) !== null && _variant !== void 0 ? _variant : props.variant) !== null && ref !== void 0 ? ref : \"eob0rxwyP\" };};const Component = /*#__PURE__*/React.forwardRef(function (props, ref) {const { activeLocale } = useLocaleInfo();const currentPathVariables = useCurrentPathVariables();const [currentRouteData] = useQueryData({ from: { data: Log, locale: activeLocale, type: \"Collection\" }, select: [{ name: \"LfLMJKEUf\", type: \"Identifier\" }, { name: \"ed8T4tk6A\", type: \"Identifier\" }, { name: \"mck3cRjNQ\", type: \"Identifier\" }, { name: \"d96qmof8g\", type: \"Identifier\" }, { name: \"ZVSPI1VVO\", type: \"Identifier\" }], where: getWhereExpressionFromPathVariables(currentPathVariables) });const getFromCurrentRouteData = (key) => {if (!currentRouteData) throw new NotFoundError(`No data in \"Log\" matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const { style, className, layoutId, variant, d96qmof8g = getFromCurrentRouteData(\"d96qmof8g\"), ed8T4tk6A = getFromCurrentRouteData(\"ed8T4tk6A\"), LfLMJKEUf = getFromCurrentRouteData(\"LfLMJKEUf\"), mck3cRjNQ = getFromCurrentRouteData(\"mck3cRjNQ\"), ZVSPI1VVO = getFromCurrentRouteData(\"ZVSPI1VVO\"), ...restProps } = getProps(props);React.useLayoutEffect(() => {const metadata1 = metadataProvider(currentRouteData);document.title = metadata1.title || \"\";if (metadata1.viewport) {var ref;(ref = document.querySelector('meta[name=\"viewport\"]')) === null || ref === void 0 ? void 0 : ref.setAttribute(\"content\", metadata1.viewport);}if (metadata1.bodyClassName) {Array.from(document.body.classList).filter((c) => c.startsWith(\"framer-body-\")).map((c) => document.body.classList.remove(c));document.body.classList.add(metadata1.bodyClassName);}}, [currentRouteData]);const [baseVariant, hydratedBaseVariant] = useHydratedBreakpointVariants(variant, breakpoints, false);const gestureVariant = undefined;const transition = transitions.default;const activeLocale1 = useLocaleInfo().activeLocale;const activeLocaleCode = useLocaleCode();const defaultLayoutId = React.useId();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider, { value: { primaryVariantId: \"eob0rxwyP\", variantClassNames }, children: /*#__PURE__*/_jsx(LayoutGroup, { id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId, children: /*#__PURE__*/_jsxs(motion.div, { className: cx(\"framer-DdbTi\", sharedStyle.className, sharedStyle1.className, sharedStyle2.className, sharedStyle3.className, sharedStyle4.className, sharedStyle5.className, sharedStyle6.className), style: { display: \"contents\" }, children: [/*#__PURE__*/_jsxs(motion.div, { ...restProps, className: cx(\"framer-1vl0430\", className), ref: ref, style: { ...style }, children: [/*#__PURE__*/_jsx(motion.div, { className: \"framer-1cx5m3w\", \"data-framer-name\": \"Navigation / 02\", name: \"Navigation / 02\", children: /*#__PURE__*/_jsxs(motion.div, { className: \"framer-1g2p1s3\", \"data-framer-name\": \"Container\", name: \"Container\", children: [/*#__PURE__*/_jsx(motion.div, { className: \"framer-1pr1q1a\", \"data-framer-name\": \"Nav Left\", name: \"Nav Left\", children: /*#__PURE__*/_jsx(motion.div, { className: \"framer-12o65bv\", \"data-framer-name\": \"Nav Header\", name: \"Nav Header\", children: /*#__PURE__*/_jsx(Link, { href: { webPageId: \"hsxW6cCDU\" }, children: /*#__PURE__*/_jsx(Image, { as: \"a\", background: { alt: \"\", fit: \"fill\", intrinsicHeight: 249, intrinsicWidth: 870, pixelHeight: 249, pixelWidth: 870, src: new URL(\"https://framerusercontent.com/images/wHxstVpSmTCEAokgCFgTLF564Hk.png\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/wHxstVpSmTCEAokgCFgTLF564Hk.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/wHxstVpSmTCEAokgCFgTLF564Hk.png\").href} 870w` }, className: \"framer-1txbrjp framer-1ptszv1\", \"data-framer-name\": \"Logo\", name: \"Logo\" }) }) }) }), /*#__PURE__*/_jsxs(motion.div, { className: \"framer-1tqqbaz\", \"data-framer-name\": \"Nav Right\", name: \"Nav Right\", children: [/*#__PURE__*/_jsx(Link, { href: { webPageId: \"tEG8ZSjzV\" }, openInNewTab: false, children: /*#__PURE__*/_jsxs(motion.a, { className: \"framer-altdc4 framer-1ptszv1\", \"data-border\": true, \"data-framer-name\": \"Button / Button Copy 2\", name: \"Button / Button Copy 2\", whileHover: animation, children: [/*#__PURE__*/_jsx(motion.div, { className: \"framer-v29leb\", \"data-framer-name\": \"Label\", name: \"Label\", children: /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"p\", { style: { \"--font-selector\": \"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IEJvbGQ=\", \"--framer-font-family\": '\"SF Pro Display Bold\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif', \"--framer-font-size\": \"18px\", \"--framer-letter-spacing\": \"-0.25px\", \"--framer-line-height\": \"24px\", \"--framer-text-transform\": \"capitalize\" }, children: \"Features\" }) }), className: \"framer-6itaxm\", \"data-framer-name\": \"Label\", fonts: [\"CUSTOM;SF Pro Display Bold\"], name: \"Label\", verticalAlignment: \"top\", withExternalLayout: true }) }), /*#__PURE__*/_jsx(motion.div, { className: \"framer-4yj4vr\", \"data-framer-name\": \"Gradient\", name: \"Gradient\" })] }) }), /*#__PURE__*/_jsx(Link, { href: { webPageId: \"z6sYSO_wP\" }, openInNewTab: false, children: /*#__PURE__*/_jsxs(motion.a, { className: \"framer-1rjtltw framer-1ptszv1\", \"data-border\": true, \"data-framer-name\": \"Button / Button Copy 2\", name: \"Button / Button Copy 2\", whileHover: animation, children: [/*#__PURE__*/_jsx(motion.div, { className: \"framer-1xjvfwh\", \"data-framer-name\": \"Label\", name: \"Label\", children: /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"p\", { style: { \"--font-selector\": \"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IEJvbGQ=\", \"--framer-font-family\": '\"SF Pro Display Bold\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif', \"--framer-font-size\": \"18px\", \"--framer-letter-spacing\": \"-0.25px\", \"--framer-line-height\": \"24px\", \"--framer-text-transform\": \"capitalize\" }, children: \"Blog\" }) }), className: \"framer-1jenm6g\", \"data-framer-name\": \"Label\", fonts: [\"CUSTOM;SF Pro Display Bold\"], name: \"Label\", verticalAlignment: \"top\", withExternalLayout: true }) }), /*#__PURE__*/_jsx(motion.div, { className: \"framer-kwdwva\", \"data-framer-name\": \"Gradient\", name: \"Gradient\" })] }) }), /*#__PURE__*/_jsx(Link, { href: { hash: \":fFGcIpaBK\", webPageId: \"hsxW6cCDU\" }, openInNewTab: false, smoothScroll: true, children: /*#__PURE__*/_jsxs(motion.a, { className: \"framer-1eqsbx3 framer-1ptszv1\", \"data-border\": true, \"data-framer-name\": \"Button / Button Copy\", name: \"Button / Button Copy\", whileHover: animation1, children: [/*#__PURE__*/_jsx(motion.div, { className: \"framer-1mjvdmq\", \"data-framer-name\": \"Label\", name: \"Label\", children: /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"p\", { style: { \"--font-selector\": \"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IEJvbGQ=\", \"--framer-font-family\": '\"SF Pro Display Bold\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif', \"--framer-font-size\": \"18px\", \"--framer-letter-spacing\": \"-0.25px\", \"--framer-line-height\": \"24px\", \"--framer-text-color\": \"rgb(255, 255, 255)\", \"--framer-text-transform\": \"capitalize\" }, children: \"Get Started\" }) }), className: \"framer-12ctsyn\", \"data-framer-name\": \"Label\", fonts: [\"CUSTOM;SF Pro Display Bold\"], name: \"Label\", verticalAlignment: \"top\", withExternalLayout: true }) }), /*#__PURE__*/_jsx(motion.div, { className: \"framer-wyp5m5\", \"data-framer-name\": \"Gradient\", name: \"Gradient\" })] }) })] })] }) }), /*#__PURE__*/_jsxs(motion.div, { className: \"framer-16r0s7u\", \"data-framer-name\": \"Post\", name: \"Post\", children: [/*#__PURE__*/_jsxs(motion.div, { className: \"framer-18sz2d2\", children: [/*#__PURE__*/_jsx(Link, { href: { webPageId: \"z6sYSO_wP\" }, children: /*#__PURE__*/_jsx(motion.a, { className: \"framer-wc4z74 framer-1ptszv1\", \"data-framer-name\": \"Button\", \"data-reset\": \"button\", name: \"Button\", transformTemplate: transformTemplate, children: /*#__PURE__*/_jsx(Container, { className: \"framer-1szbhzm-container\", children: /*#__PURE__*/_jsx(Hero, { color: \"rgb(0, 0, 0)\", height: \"100%\", iconSearch: \"Home\", iconSelection: \"ArrowCircleLeft\", id: \"YY55lIufP\", layoutId: \"YY55lIufP\", mirrored: false, selectByList: true, style: { height: \"100%\", width: \"100%\" }, width: \"100%\" }) }) }) }), /*#__PURE__*/_jsxs(motion.div, { className: \"framer-nu9rsl\", children: [/*#__PURE__*/_jsx(PropertyOverrides, { breakpoint: baseVariant, overrides: { UwRuS4apU: { children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"p\", { style: { \"--font-selector\": \"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IEJvbGQ=\", \"--framer-font-family\": '\"SF Pro Display Bold\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif', \"--framer-font-size\": \"14px\", \"--framer-line-height\": \"1.6em\", \"--framer-text-color\": \"var(--token-ee3cec1e-a2c7-4536-96c0-c9bb86cb9781, rgb(34, 34, 34))\" }, children: \"Fix\" }) }) } }, children: /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"p\", { style: { \"--font-selector\": \"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IEJvbGQ=\", \"--framer-font-family\": '\"SF Pro Display Bold\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif', \"--framer-line-height\": \"1.6em\", \"--framer-text-color\": \"var(--token-ee3cec1e-a2c7-4536-96c0-c9bb86cb9781, rgb(34, 34, 34))\" }, children: \"Fix\" }) }), className: \"framer-tzdchs\", fonts: [\"CUSTOM;SF Pro Display Bold\"], text: d96qmof8gToDisplayName === null || d96qmof8gToDisplayName === void 0 ? void 0 : d96qmof8gToDisplayName(d96qmof8g, activeLocale), verticalAlignment: \"top\", withExternalLayout: true }) }), /*#__PURE__*/_jsx(PropertyOverrides, { breakpoint: baseVariant, overrides: { UwRuS4apU: { children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"p\", { style: { \"--font-selector\": \"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IFJlZ3VsYXI=\", \"--framer-font-family\": '\"SF Pro Display Regular\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif', \"--framer-font-size\": \"15px\", \"--framer-line-height\": \"1.6em\", \"--framer-text-alignment\": \"center\", \"--framer-text-color\": \"var(--token-fb5e6d84-3f5a-4af9-a299-c65046d2d31e, rgba(0, 0, 0, 0.6))\" }, children: \"Jun 28, 2023\" }) }) } }, children: /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"p\", { style: { \"--font-selector\": \"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IFJlZ3VsYXI=\", \"--framer-font-family\": '\"SF Pro Display Regular\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif', \"--framer-line-height\": \"1.6em\", \"--framer-text-alignment\": \"center\", \"--framer-text-color\": \"var(--token-fb5e6d84-3f5a-4af9-a299-c65046d2d31e, rgba(0, 0, 0, 0.6))\" }, children: \"Jun 28, 2023\" }) }), className: \"framer-1j7mycb\", \"data-framer-name\": \"Date\", fonts: [\"CUSTOM;SF Pro Display Regular\"], name: \"Date\", text: toDateString(ed8T4tk6A, { dateStyle: \"medium\", locale: \"\" }, activeLocaleCode), verticalAlignment: \"top\", withExternalLayout: true }) })] })] }), /*#__PURE__*/_jsx(PropertyOverrides, { breakpoint: baseVariant, overrides: { E5s6XSXP1: { children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"h1\", { style: { \"--font-selector\": \"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IEJvbGQ=\", \"--framer-font-family\": '\"SF Pro Display Bold\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif', \"--framer-font-size\": \"36px\", \"--framer-letter-spacing\": \"-0.5px\", \"--framer-text-alignment\": \"center\", \"--framer-text-color\": \"var(--token-ee3cec1e-a2c7-4536-96c0-c9bb86cb9781, rgb(34, 34, 34))\" }, children: \"Improved Publishing Performance\" }) }) }, UwRuS4apU: { children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"h1\", { style: { \"--font-selector\": \"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IEJvbGQ=\", \"--framer-font-family\": '\"SF Pro Display Bold\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif', \"--framer-font-size\": \"26px\", \"--framer-letter-spacing\": \"-0.5px\", \"--framer-text-alignment\": \"center\", \"--framer-text-color\": \"var(--token-ee3cec1e-a2c7-4536-96c0-c9bb86cb9781, rgb(34, 34, 34))\" }, children: \"Improved Publishing Performance\" }) }) } }, children: /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"h1\", { style: { \"--font-selector\": \"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IEJvbGQ=\", \"--framer-font-family\": '\"SF Pro Display Bold\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif', \"--framer-font-size\": \"48px\", \"--framer-letter-spacing\": \"-1px\", \"--framer-text-alignment\": \"center\", \"--framer-text-color\": \"var(--token-ee3cec1e-a2c7-4536-96c0-c9bb86cb9781, rgb(34, 34, 34))\" }, children: \"Improved Publishing Performance\" }) }), className: \"framer-1r1793v\", \"data-framer-name\": \"Title\", fonts: [\"CUSTOM;SF Pro Display Bold\"], name: \"Title\", text: LfLMJKEUf, verticalAlignment: \"top\", withExternalLayout: true }) }), /*#__PURE__*/_jsx(PropertyOverrides, { breakpoint: baseVariant, overrides: { E5s6XSXP1: { background: { alt: \"\", fit: \"fill\", sizes: \"calc(min(100vw, 800px) - 40px)\", ...toResponsiveImage(mck3cRjNQ) } }, UwRuS4apU: { background: { alt: \"\", fit: \"fill\", sizes: \"calc(min(100vw, 640px) - 40px)\", ...toResponsiveImage(mck3cRjNQ) } } }, children: /*#__PURE__*/_jsx(Image, { background: { alt: \"\", fit: \"fill\", sizes: \"min(100vw, 800px)\", ...toResponsiveImage(mck3cRjNQ) }, className: \"framer-vjmlg2\", \"data-framer-name\": \"Banner\", name: \"Banner\" }) }), /*#__PURE__*/_jsx(PropertyOverrides, { breakpoint: baseVariant, overrides: { E5s6XSXP1: { stylesPresetsClassNames: { a: \"framer-styles-preset-5g9rec\", h1: \"framer-styles-preset-1r9biv8\", h2: \"framer-styles-preset-1x43kt9\", h3: \"framer-styles-preset-1xyg98f\", h4: \"framer-styles-preset-6wavog\", p: \"framer-styles-preset-1jg2ynl\" } }, UwRuS4apU: { stylesPresetsClassNames: { a: \"framer-styles-preset-5g9rec\", h1: \"framer-styles-preset-1r9biv8\", h2: \"framer-styles-preset-1x43kt9\", h3: \"framer-styles-preset-1xyg98f\", h4: \"framer-styles-preset-6wavog\", p: \"framer-styles-preset-1jg2ynl\" } } }, children: /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: ZVSPI1VVO, className: \"framer-2wmp1o\", \"data-framer-name\": \"Content\", name: \"Content\", stylesPresetsClassNames: { a: \"framer-styles-preset-fu88nm\", h1: \"framer-styles-preset-1r9biv8\", h2: \"framer-styles-preset-1x43kt9\", h3: \"framer-styles-preset-1xyg98f\", h4: \"framer-styles-preset-6wavog\", p: \"framer-styles-preset-1jg2ynl\" }, verticalAlignment: \"top\", withExternalLayout: true }) })] }), /*#__PURE__*/_jsx(motion.div, { className: \"framer-y6txu7\", \"data-framer-name\": \"Subscrive\", name: \"Subscrive\", children: /*#__PURE__*/_jsxs(motion.div, { className: \"framer-1mbc18x\", \"data-framer-name\": \"Container\", name: \"Container\", children: [/*#__PURE__*/_jsxs(motion.div, { className: \"framer-cai4k1\", children: [/*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"p\", { style: { \"--font-selector\": \"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IEJvbGQ=\", \"--framer-font-family\": '\"SF Pro Display Bold\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif', \"--framer-font-size\": \"50px\", \"--framer-line-height\": \"1.25em\", \"--framer-text-alignment\": \"left\", \"--framer-text-color\": \"var(--token-ee3cec1e-a2c7-4536-96c0-c9bb86cb9781, rgb(34, 34, 34))\" }, children: \"Try Caro For Free\" }) }), className: \"framer-1t10f1a\", fonts: [\"CUSTOM;SF Pro Display Bold\"], verticalAlignment: \"top\", withExternalLayout: true }), /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"p\", { style: { \"--font-selector\": \"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IFJlZ3VsYXI=\", \"--framer-font-family\": '\"SF Pro Display Regular\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif', \"--framer-font-size\": \"24px\", \"--framer-line-height\": \"1.25em\", \"--framer-text-alignment\": \"left\", \"--framer-text-color\": \"var(--token-fb5e6d84-3f5a-4af9-a299-c65046d2d31e, rgba(0, 0, 0, 0.5))\" }, children: \"Get in touch with our team to get you started!\" }) }), className: \"framer-wfxukw\", fonts: [\"CUSTOM;SF Pro Display Regular\"], verticalAlignment: \"top\", withExternalLayout: true })] }), /*#__PURE__*/_jsx(Container, { className: \"framer-9s3fx4-container\", children: /*#__PURE__*/_jsx(PropertyOverrides, { breakpoint: baseVariant, overrides: { E5s6XSXP1: { font: { fontFamily: '\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif', fontSize: \"14px\", fontStyle: \"normal\", fontWeight: 400, letterSpacing: \"0em\", lineHeight: \"1em\" } }, UwRuS4apU: { font: { fontFamily: '\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif', fontSize: \"14px\", fontStyle: \"normal\", fontWeight: 400, letterSpacing: \"0em\", lineHeight: \"1em\" } } }, children: /*#__PURE__*/_jsx(Input, { button: { buttonFont: { fontFamily: '\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif', fontSize: \"14px\", fontStyle: \"normal\", fontWeight: 400, letterSpacing: \"0em\", lineHeight: \"1em\" }, buttonPadding: 16, buttonPaddingBottom: 12, buttonPaddingLeft: 16, buttonPaddingPerSide: true, buttonPaddingRight: 16, buttonPaddingTop: 12, color: 'var(--token-ee3cec1e-a2c7-4536-96c0-c9bb86cb9781, rgb(34, 34, 34)) /* {\"name\":\"text\"} */', fill: 'var(--token-e8274d11-cf95-4cf2-bcba-5a1de4acc88a, rgb(242, 242, 242)) /* {\"name\":\"bg-alt\"} */', insetWhenDocked: 4, isDocked: true, label: \"Subscribe\", shouldAppear: true, widthWhenDocked: 100 }, font: { fontFamily: '\"SF Pro Display Regular\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif', fontSize: \"16px\", letterSpacing: \"0em\", lineHeight: \"1em\" }, formsparkID: \"FPa6xAaK\", gap: 8, getwaitlistAPI: \"\", height: \"100%\", id: \"YS3jdDGgh\", input: { borderObject: { borderColor: 'var(--token-780e88d7-039b-4cb7-89d5-599d8792e40e, rgba(0, 0, 0, 0.1)) /* {\"name\":\"border\"} */', borderWidth: 1 }, borderRadius: 8, color: 'var(--token-ee3cec1e-a2c7-4536-96c0-c9bb86cb9781, rgb(34, 34, 34)) /* {\"name\":\"text\"} */', fill: \"rgba(34, 34, 34, 0)\", fixedHeight: 50, focusObject: { focusColor: 'var(--token-12b1b42c-f508-453c-ae77-ce86f45de04c, rgb(119, 85, 204)) /* {\"name\":\"text-accent\"} */', focusWidthFrom: 0, focusWidthTo: 2 }, height: true, padding: 16, paddingBottom: 12, paddingLeft: 16, paddingPerSide: true, paddingRight: 16, paddingTop: 12, placeholder: \"name@email.com\", placeholderColor: 'var(--token-fb5e6d84-3f5a-4af9-a299-c65046d2d31e, rgba(0, 0, 0, 0.5)) /* {\"name\":\"text-dim\"} */' }, layout: \"horizontal\", layoutId: \"YS3jdDGgh\", loopsID: \"\", mailchimpURL: \"\", redirectAs: \"overlay\", service: \"formspark\", style: { width: \"100%\" }, width: \"100%\" }) }) })] }) }), /*#__PURE__*/_jsx(motion.div, { className: \"framer-1my20ko\", \"data-framer-name\": \"Footer 1280px\", name: \"Footer 1280px\", children: /*#__PURE__*/_jsx(motion.div, { className: \"framer-1du8iuu\", \"data-framer-name\": \"Frame \", name: \"Frame \", children: /*#__PURE__*/_jsxs(motion.div, { className: \"framer-1nym9t5\", \"data-framer-name\": \"Frame\", name: \"Frame\", children: [/*#__PURE__*/_jsxs(motion.div, { className: \"framer-12znbq5\", \"data-framer-name\": \"Logo\", name: \"Logo\", children: [/*#__PURE__*/_jsxs(motion.div, { className: \"framer-1ntfl6a\", \"data-framer-name\": \"Logo\", name: \"Logo\", children: [/*#__PURE__*/_jsx(motion.div, { className: \"framer-8fhv71\", \"data-framer-name\": \"Logo bg\", name: \"Logo bg\" }), /*#__PURE__*/_jsx(SVG, { className: \"framer-1xzpznv\", \"data-framer-name\": \"Caro Logo/Caro\", fill: \"rgba(0,0,0,1)\", intrinsicHeight: 35, intrinsicWidth: 35, name: \"Caro Logo/Caro\", svg: '<svg width=\"35\" height=\"35\" viewBox=\"0 0 35 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.2812 20.7052L17.4998 33.7461L13.3274 31.3379V27.7628L10.7982 30.29L6.00916 29.0091L4.72802 24.2241L7.26055 21.6969H3.67831L1.25488 17.5037L14.2812 20.7069V20.7052Z\" fill=\"#B3B3B3\"/>\\n<path d=\"M20.7212 20.7052L17.501 33.7461L21.6734 31.3379V27.7628L24.2026 30.29L28.9916 29.0091L30.2744 24.2241L27.7419 21.6969H31.3224L33.7459 17.502L20.7195 20.7052H20.7212Z\" fill=\"#B3B3B3\"/>\\n<path d=\"M20.7195 14.2968L17.501 1.25595L21.6734 3.66413V7.23921L24.2026 4.71203L28.9916 5.99297L30.2727 10.7779L27.7402 13.3051H31.3208L33.7442 17.5L20.7179 14.2968H20.7195Z\" fill=\"#B3B3B3\"/>\\n<path d=\"M14.2812 14.2968L17.4998 1.25595L13.3274 3.66413V7.23921L10.7982 4.71203L6.00916 5.99297L4.72637 10.7779L7.2589 13.3051H3.67831L1.25488 17.5L14.2812 14.2968V14.2968Z\" fill=\"#B3B3B3\"/>\\n</svg>\\n', withExternalLayout: true })] }), /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"p\", { style: { \"--font-selector\": \"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IEJvbGQ=\", \"--framer-font-family\": '\"SF Pro Display Bold\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif', \"--framer-font-size\": \"34px\", \"--framer-letter-spacing\": \"-1.7px\", \"--framer-line-height\": \"20px\", \"--framer-text-color\": \"rgb(179, 179, 179)\" }, children: \"Caro\" }) }), className: \"framer-25jk9v\", \"data-framer-name\": \"Caro\", fonts: [\"CUSTOM;SF Pro Display Bold\"], name: \"Caro\", verticalAlignment: \"top\", withExternalLayout: true })] }), /*#__PURE__*/_jsx(SVG, { className: \"framer-2h2gib\", \"data-framer-name\": \"Divider\", fill: \"rgba(0,0,0,1)\", intrinsicHeight: 4, intrinsicWidth: 1570, name: \"Divider\", svg: '<svg width=\"1570\" height=\"4\" viewBox=\"-1 -1 1570 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 1L1568 1.00014\" stroke=\"#B3B3B3\" stroke-width=\"2\"/>\\n</svg>\\n', withExternalLayout: true }), /*#__PURE__*/_jsxs(motion.div, { className: \"framer-1l96pnk\", \"data-framer-name\": \"Frame\", name: \"Frame\", children: [/*#__PURE__*/_jsx(PropertyOverrides, { breakpoint: baseVariant, overrides: { E5s6XSXP1: { children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"p\", { style: { \"--font-selector\": \"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IE1lZGl1bQ==\", \"--framer-font-family\": '\"SF Pro Display Medium\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif', \"--framer-font-size\": \"20px\", \"--framer-line-height\": \"100%\", \"--framer-text-color\": \"rgb(179, 179, 179)\" }, children: \"\\xa9\" }) }) }, UwRuS4apU: { children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"p\", { style: { \"--font-selector\": \"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IE1lZGl1bQ==\", \"--framer-font-family\": '\"SF Pro Display Medium\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif', \"--framer-font-size\": \"18px\", \"--framer-line-height\": \"100%\", \"--framer-text-color\": \"rgb(179, 179, 179)\" }, children: \"\\xa9\" }) }) } }, children: /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"p\", { style: { \"--font-selector\": \"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IE1lZGl1bQ==\", \"--framer-font-family\": '\"SF Pro Display Medium\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif', \"--framer-font-size\": \"25px\", \"--framer-line-height\": \"100%\", \"--framer-text-color\": \"rgb(179, 179, 179)\" }, children: \"\\xa9\" }) }), className: \"framer-1hp2gj8\", \"data-framer-name\": \"\\xa9\", fonts: [\"CUSTOM;SF Pro Display Medium\"], name: \"\\xa9\", verticalAlignment: \"top\", withExternalLayout: true }) }), /*#__PURE__*/_jsx(PropertyOverrides, { breakpoint: baseVariant, overrides: { E5s6XSXP1: { children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"p\", { style: { \"--font-selector\": \"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IE1lZGl1bQ==\", \"--framer-font-family\": '\"SF Pro Display Medium\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif', \"--framer-font-size\": \"20px\", \"--framer-line-height\": \"100%\", \"--framer-text-color\": \"rgb(179, 179, 179)\" }, children: \"Copyright 2023 NATION Builders, Inc.\" }) }) }, UwRuS4apU: { children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"p\", { style: { \"--font-selector\": \"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IE1lZGl1bQ==\", \"--framer-font-family\": '\"SF Pro Display Medium\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif', \"--framer-font-size\": \"18px\", \"--framer-line-height\": \"100%\", \"--framer-text-color\": \"rgb(179, 179, 179)\" }, children: \"Copyright 2023 NATION Builders, Inc.\" }) }) } }, children: /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(\"p\", { style: { \"--font-selector\": \"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IE1lZGl1bQ==\", \"--framer-font-family\": '\"SF Pro Display Medium\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif', \"--framer-font-size\": \"25px\", \"--framer-line-height\": \"100%\", \"--framer-text-color\": \"rgb(179, 179, 179)\" }, children: \"Copyright 2023 NATION Builders, Inc.\" }) }), className: \"framer-169wyum\", \"data-framer-name\": \"subtitle\", fonts: [\"CUSTOM;SF Pro Display Medium\"], name: \"subtitle\", verticalAlignment: \"center\", withExternalLayout: true }) })] })] }) }) })] }), /*#__PURE__*/_jsx(\"div\", { id: \"overlay\" })] }) }) });});const css = ['.framer-DdbTi [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; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", `.${metadata.bodyClassName} { background: var(--token-420afed0-b1ac-49c1-a66d-a7057ee3538a, rgb(255, 255, 255)); }`, \".framer-DdbTi .framer-1ptszv1 { display: block; }\", \".framer-DdbTi .framer-1vl0430 { align-content: center; align-items: center; background-color: var(--token-420afed0-b1ac-49c1-a66d-a7057ee3538a, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\", \".framer-DdbTi .framer-1cx5m3w { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 12px 24px 12px 24px; position: relative; width: 100%; z-index: 5; }\", \".framer-DdbTi .framer-1g2p1s3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-DdbTi .framer-1pr1q1a { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-DdbTi .framer-12o65bv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-DdbTi .framer-1txbrjp { flex: none; height: 39px; overflow: hidden; position: relative; text-decoration: none; width: 137px; }\", \".framer-DdbTi .framer-1unsn22-container { flex: none; height: 48px; position: relative; width: 48px; }\", \".framer-DdbTi .framer-1tqqbaz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-DdbTi .framer-altdc4, .framer-DdbTi .framer-1rjtltw { --border-bottom-width: 0.8px; --border-color: rgba(255, 255, 255, 0.08); --border-left-width: 0.8px; --border-right-width: 0.8px; --border-style: solid; --border-top-width: 0.8px; -webkit-backdrop-filter: blur(64px); align-content: center; align-items: center; backdrop-filter: blur(64px); background-color: rgba(255, 255, 255, 0.08); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 12px 12px 12px 12px; position: relative; text-decoration: none; width: min-content; }\", \".framer-DdbTi .framer-v29leb, .framer-DdbTi .framer-1xjvfwh, .framer-DdbTi .framer-1mjvdmq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; z-index: 1; }\", \".framer-DdbTi .framer-nquggd, .framer-DdbTi .framer-n41vl5, .framer-DdbTi .framer-1q61x92, .framer-DdbTi .framer-10of9br, .framer-DdbTi .framer-9q39yb, .framer-DdbTi .framer-p5eik2 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 24px; }\", \".framer-DdbTi .framer-6itaxm, .framer-DdbTi .framer-1jenm6g, .framer-DdbTi .framer-12ctsyn, .framer-DdbTi .framer-1j7mycb, .framer-DdbTi .framer-1hp2gj8, .framer-DdbTi .framer-169wyum { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\", \".framer-DdbTi .framer-4yj4vr, .framer-DdbTi .framer-kwdwva { background: radial-gradient(50% 50% at 50% 100%, rgba(255, 255, 255, 0.08) 0%, rgba(94, 94, 94, 0) 100%); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 0px; flex: none; height: 100%; left: 0px; overflow: visible; pointer-events: none; position: absolute; right: 0px; z-index: 0; }\", \".framer-DdbTi .framer-1eqsbx3 { --border-bottom-width: 0.8px; --border-color: rgba(255, 255, 255, 0.08); --border-left-width: 0.8px; --border-right-width: 0.8px; --border-style: solid; --border-top-width: 0.8px; -webkit-backdrop-filter: blur(64px); align-content: center; align-items: center; backdrop-filter: blur(64px); background-color: #74db00; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 12px 12px 12px 12px; position: relative; text-decoration: none; width: min-content; }\", \".framer-DdbTi .framer-wyp5m5 { background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 0px; flex: none; height: 100%; left: 0px; opacity: 0; overflow: visible; pointer-events: none; position: absolute; right: 0px; z-index: 0; }\", \".framer-DdbTi .framer-16r0s7u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 800px; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-DdbTi .framer-18sz2d2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-DdbTi .framer-wc4z74 { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; left: 0px; padding: 10px 20px 10px 20px; position: absolute; text-decoration: none; top: 49%; transform: translateY(-50%); width: min-content; z-index: 1; }\", \".framer-DdbTi .framer-1szbhzm-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 45px); position: relative; width: 42px; }\", \".framer-DdbTi .framer-nu9rsl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-DdbTi .framer-tzdchs { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\", \".framer-DdbTi .framer-1r1793v { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-DdbTi .framer-vjmlg2 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 460px; position: relative; width: 100%; }\", \".framer-DdbTi .framer-2wmp1o { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-DdbTi .framer-y6txu7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\", \".framer-DdbTi .framer-1mbc18x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-DdbTi .framer-cai4k1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; max-width: 400px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-DdbTi .framer-1t10f1a, .framer-DdbTi .framer-wfxukw { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 400px; overflow: visible; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\", \".framer-DdbTi .framer-9s3fx4-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\", \".framer-DdbTi .framer-1my20ko { align-content: flex-start; align-items: flex-start; background-color: #292929; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px 40px 40px 40px; position: relative; width: 100%; }\", \".framer-DdbTi .framer-1du8iuu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 75px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-DdbTi .framer-1nym9t5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-DdbTi .framer-12znbq5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-DdbTi .framer-1ntfl6a { flex: none; height: 35px; overflow: visible; position: relative; width: 37px; }\", \".framer-DdbTi .framer-8fhv71 { aspect-ratio: 1 / 1; background-color: rgba(255, 255, 255, 0); flex: none; height: var(--framer-aspect-ratio-supported, 35px); left: 2px; position: absolute; top: 0px; width: 35px; }\", \".framer-DdbTi .framer-1xzpznv { flex: none; height: 35px; left: 0px; position: absolute; top: 0px; width: 35px; }\", \".framer-DdbTi .framer-25jk9v { --framer-paragraph-spacing: 0px; flex: none; height: 19px; position: relative; white-space: pre-wrap; width: 109px; word-break: break-word; word-wrap: break-word; }\", \".framer-DdbTi .framer-2h2gib { flex: none; height: 4px; position: relative; width: 100%; }\", \".framer-DdbTi .framer-1l96pnk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-DdbTi .framer-1vl0430, .framer-DdbTi .framer-1cx5m3w, .framer-DdbTi .framer-1g2p1s3, .framer-DdbTi .framer-1pr1q1a, .framer-DdbTi .framer-12o65bv, .framer-DdbTi .framer-1tqqbaz, .framer-DdbTi .framer-altdc4, .framer-DdbTi .framer-v29leb, .framer-DdbTi .framer-1rjtltw, .framer-DdbTi .framer-1xjvfwh, .framer-DdbTi .framer-1eqsbx3, .framer-DdbTi .framer-1mjvdmq, .framer-DdbTi .framer-16r0s7u, .framer-DdbTi .framer-wc4z74, .framer-DdbTi .framer-nu9rsl, .framer-DdbTi .framer-y6txu7, .framer-DdbTi .framer-1mbc18x, .framer-DdbTi .framer-cai4k1, .framer-DdbTi .framer-1my20ko, .framer-DdbTi .framer-1du8iuu, .framer-DdbTi .framer-1nym9t5, .framer-DdbTi .framer-12znbq5, .framer-DdbTi .framer-1l96pnk { gap: 0px; } .framer-DdbTi .framer-1vl0430 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-DdbTi .framer-1vl0430 > :first-child, .framer-DdbTi .framer-1cx5m3w > :first-child, .framer-DdbTi .framer-16r0s7u > :first-child, .framer-DdbTi .framer-nu9rsl > :first-child, .framer-DdbTi .framer-y6txu7 > :first-child, .framer-DdbTi .framer-cai4k1 > :first-child, .framer-DdbTi .framer-1my20ko > :first-child, .framer-DdbTi .framer-1du8iuu > :first-child, .framer-DdbTi .framer-1nym9t5 > :first-child { margin-top: 0px; } .framer-DdbTi .framer-1vl0430 > :last-child, .framer-DdbTi .framer-1cx5m3w > :last-child, .framer-DdbTi .framer-16r0s7u > :last-child, .framer-DdbTi .framer-nu9rsl > :last-child, .framer-DdbTi .framer-y6txu7 > :last-child, .framer-DdbTi .framer-cai4k1 > :last-child, .framer-DdbTi .framer-1my20ko > :last-child, .framer-DdbTi .framer-1du8iuu > :last-child, .framer-DdbTi .framer-1nym9t5 > :last-child { margin-bottom: 0px; } .framer-DdbTi .framer-1cx5m3w > *, .framer-DdbTi .framer-nu9rsl > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-DdbTi .framer-1g2p1s3 > *, .framer-DdbTi .framer-12o65bv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-DdbTi .framer-1g2p1s3 > :first-child, .framer-DdbTi .framer-1pr1q1a > :first-child, .framer-DdbTi .framer-12o65bv > :first-child, .framer-DdbTi .framer-1tqqbaz > :first-child, .framer-DdbTi .framer-altdc4 > :first-child, .framer-DdbTi .framer-v29leb > :first-child, .framer-DdbTi .framer-1rjtltw > :first-child, .framer-DdbTi .framer-1xjvfwh > :first-child, .framer-DdbTi .framer-1eqsbx3 > :first-child, .framer-DdbTi .framer-1mjvdmq > :first-child, .framer-DdbTi .framer-wc4z74 > :first-child, .framer-DdbTi .framer-1mbc18x > :first-child, .framer-DdbTi .framer-12znbq5 > :first-child, .framer-DdbTi .framer-1l96pnk > :first-child { margin-left: 0px; } .framer-DdbTi .framer-1g2p1s3 > :last-child, .framer-DdbTi .framer-1pr1q1a > :last-child, .framer-DdbTi .framer-12o65bv > :last-child, .framer-DdbTi .framer-1tqqbaz > :last-child, .framer-DdbTi .framer-altdc4 > :last-child, .framer-DdbTi .framer-v29leb > :last-child, .framer-DdbTi .framer-1rjtltw > :last-child, .framer-DdbTi .framer-1xjvfwh > :last-child, .framer-DdbTi .framer-1eqsbx3 > :last-child, .framer-DdbTi .framer-1mjvdmq > :last-child, .framer-DdbTi .framer-wc4z74 > :last-child, .framer-DdbTi .framer-1mbc18x > :last-child, .framer-DdbTi .framer-12znbq5 > :last-child, .framer-DdbTi .framer-1l96pnk > :last-child { margin-right: 0px; } .framer-DdbTi .framer-1pr1q1a > *, .framer-DdbTi .framer-1mbc18x > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-DdbTi .framer-1tqqbaz > *, .framer-DdbTi .framer-wc4z74 > *, .framer-DdbTi .framer-12znbq5 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-DdbTi .framer-altdc4 > *, .framer-DdbTi .framer-1rjtltw > *, .framer-DdbTi .framer-1eqsbx3 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-DdbTi .framer-v29leb > *, .framer-DdbTi .framer-1xjvfwh > *, .framer-DdbTi .framer-1mjvdmq > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-DdbTi .framer-16r0s7u > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-DdbTi .framer-y6txu7 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-DdbTi .framer-cai4k1 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-DdbTi .framer-1my20ko > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-DdbTi .framer-1du8iuu > * { margin: 0px; margin-bottom: calc(75px / 2); margin-top: calc(75px / 2); } .framer-DdbTi .framer-1nym9t5 > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-DdbTi .framer-1l96pnk > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\", \"@media (min-width: 1200px) { .framer-DdbTi .hidden-1vl0430 { display: none !important; } }\", `@media (min-width: 740px) and (max-width: 1199px) { .framer-DdbTi .hidden-1lfu1av { display: none !important; } .${metadata.bodyClassName} { background: var(--token-420afed0-b1ac-49c1-a66d-a7057ee3538a, rgb(255, 255, 255)); } .framer-DdbTi .framer-1vl0430 { gap: 40px; width: 740px; } .framer-DdbTi .framer-16r0s7u { padding: 0px 20px 0px 20px; } .framer-DdbTi .framer-vjmlg2 { height: 340px; } .framer-DdbTi .framer-y6txu7 { padding: 40px 40px 40px 40px; } .framer-DdbTi .framer-1mbc18x { gap: 20px; } .framer-DdbTi .framer-cai4k1 { max-width: 280px; order: 0; } .framer-DdbTi .framer-1t10f1a { max-width: unset; order: 0; width: 100%; } .framer-DdbTi .framer-wfxukw { max-width: unset; order: 1; width: 100%; } .framer-DdbTi .framer-9s3fx4-container { order: 1; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-DdbTi .framer-1vl0430, .framer-DdbTi .framer-1mbc18x { gap: 0px; } .framer-DdbTi .framer-1vl0430 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-DdbTi .framer-1vl0430 > :first-child { margin-top: 0px; } .framer-DdbTi .framer-1vl0430 > :last-child { margin-bottom: 0px; } .framer-DdbTi .framer-1mbc18x > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-DdbTi .framer-1mbc18x > :first-child { margin-left: 0px; } .framer-DdbTi .framer-1mbc18x > :last-child { margin-right: 0px; } }}`, `@media (max-width: 739px) { .framer-DdbTi .hidden-f3p8tq { display: none !important; } .${metadata.bodyClassName} { background: var(--token-420afed0-b1ac-49c1-a66d-a7057ee3538a, rgb(255, 255, 255)); } .framer-DdbTi .framer-1vl0430 { gap: 40px; width: 503px; } .framer-DdbTi .framer-16r0s7u { gap: 32px; max-width: 640px; padding: 0px 20px 0px 20px; } .framer-DdbTi .framer-vjmlg2 { height: 192px; } .framer-DdbTi .framer-y6txu7 { padding: 20px 20px 20px 20px; } .framer-DdbTi .framer-1mbc18x { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 20px; } .framer-DdbTi .framer-cai4k1, .framer-DdbTi .framer-9s3fx4-container { flex: none; width: 100%; } .framer-DdbTi .framer-1t10f1a, .framer-DdbTi .framer-wfxukw { max-width: unset; width: 100%; } .framer-DdbTi .framer-169wyum { align-self: stretch; flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-DdbTi .framer-1vl0430, .framer-DdbTi .framer-16r0s7u, .framer-DdbTi .framer-1mbc18x { gap: 0px; } .framer-DdbTi .framer-1vl0430 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-DdbTi .framer-1vl0430 > :first-child, .framer-DdbTi .framer-16r0s7u > :first-child, .framer-DdbTi .framer-1mbc18x > :first-child { margin-top: 0px; } .framer-DdbTi .framer-1vl0430 > :last-child, .framer-DdbTi .framer-16r0s7u > :last-child, .framer-DdbTi .framer-1mbc18x > :last-child { margin-bottom: 0px; } .framer-DdbTi .framer-16r0s7u > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-DdbTi .framer-1mbc18x > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}`, ...sharedStyle.css, ...sharedStyle1.css, ...sharedStyle2.css, ...sharedStyle3.css, ...sharedStyle4.css, ...sharedStyle5.css, ...sharedStyle6.css]; /**\n* This is a generated Framer component.\n* @framerIntrinsicHeight 2989\n* @framerIntrinsicWidth 1200\n* @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"E5s6XSXP1\":{\"layout\":[\"fixed\",\"auto\"]},\"UwRuS4apU\":{\"layout\":[\"fixed\",\"auto\"]}}}\n* @framerResponsiveScreen\n*/const FramertQ9wVlp3O = withCSS(Component, css, \"framer-DdbTi\");export default FramertQ9wVlp3O;FramertQ9wVlp3O.displayName = \"Log\";FramertQ9wVlp3O.defaultProps = { height: 2989, width: 1200 };addFonts(FramertQ9wVlp3O, [{ family: \"SF Pro Display Bold\", moduleAsset: { localModuleIdentifier: \"local-module:screen/tQ9wVlp3O:default\", url: \"assets/aI3ZsrBi8nPLc3gUnCnoY5gx2M.woff\" }, url: new URL(\"https://framerusercontent.com/modules/assets/aI3ZsrBi8nPLc3gUnCnoY5gx2M~RIljDjjx_gxRUR3REfNF3DmL8dh1eyssO-T81X3CxJ0.woff\").href }, { family: \"SF Pro Display Regular\", moduleAsset: { localModuleIdentifier: \"local-module:screen/tQ9wVlp3O:default\", url: \"assets/jVrAasEJ47M3n4T6WbqiVIorIc.woff\" }, url: new URL(\"https://framerusercontent.com/modules/assets/jVrAasEJ47M3n4T6WbqiVIorIc~TnNtBlY04DEKydoVkjAhMKOs6TAQ9dpNJmGX8yiF-g8.woff\").href }, { family: \"Instrument Sans\", moduleAsset: { localModuleIdentifier: \"local-module:screen/tQ9wVlp3O:default\", url: \"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-Qf1mS0v3_7Y.ttf\" }, style: \"normal\", url: \"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-Qf1mS0v3_7Y.ttf\", weight: \"400\" }, { family: \"SF Pro Display Medium\", moduleAsset: { localModuleIdentifier: \"local-module:screen/tQ9wVlp3O:default\", url: \"assets/QaQ6u2ACyn8hPc69oWYt6tk17Is.woff\" }, url: new URL(\"https://framerusercontent.com/modules/assets/QaQ6u2ACyn8hPc69oWYt6tk17Is~UkqHycm9z1LX1H9ScDVzEqLIW5Y6RgfRVoNtknt3qVg.woff\").href }, ...HeroFonts, ...InputFonts, ...sharedStyle.fonts, ...sharedStyle1.fonts, ...sharedStyle2.fonts, ...sharedStyle3.fonts, ...sharedStyle4.fonts, ...sharedStyle5.fonts, ...sharedStyle6.fonts]);\nexport const __FramerMetadata__ = { \"exports\": { \"Props\": { \"type\": \"tsType\", \"annotations\": { \"framerContractVersion\": \"1\" } }, \"default\": { \"type\": \"reactComponent\", \"name\": \"FramertQ9wVlp3O\", \"slots\": [], \"annotations\": { \"framerContractVersion\": \"1\", \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"E5s6XSXP1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UwRuS4apU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\", \"framerIntrinsicHeight\": \"2989\", \"framerIntrinsicWidth\": \"1200\", \"framerResponsiveScreen\": \"\" } }, \"__FramerMetadata__\": { \"type\": \"variable\" } } };"],
  "mappings": "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",
  "names": ["containerStyles", "emptyStateStyle", "containerStyles", "NullState", "Y", "_", "ref", "p", "r", "l", "e", "t", "o", "a", "n", "defaultEvents", "ControlType", "findByArray", "arr", "search", "a", "useIconSelection", "iconKeys", "selectByList", "iconSearch", "iconSelection", "lowercaseIconKeyPairs", "iconSearchResult", "se", "iconSearchTerm", "_iconSearchTerm", "findByArray", "iconKeys", "moduleBaseUrl", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "l", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "defaultEvents", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "HeroFonts", "getFonts", "Icon", "InputFonts", "Input_default", "breakpoints", "isBrowser", "variantClassNames", "transitions", "transition1", "animation", "animation1", "transformTemplate", "_", "t", "toDateString", "value", "options", "activeLocale", "date", "fallbackLocale", "locale", "dateStyle", "timeZone", "toResponsiveImage", "metadata", "tQ9wVlp3O_default", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_variant", "ref", "Component", "Y", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "szafJcYP9_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "d96qmof8g", "ed8T4tk6A", "LfLMJKEUf", "mck3cRjNQ", "ZVSPI1VVO", "restProps", "fe", "metadata1", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "activeLocale1", "activeLocaleCode", "useLocaleCode", "defaultLayoutId", "ae", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "Link", "Image2", "RichText", "x", "Container", "Icon", "PropertyOverrides", "d96qmof8gToDisplayName", "Input_default", "SVG", "css", "FramertQ9wVlp3O", "withCSS", "addFonts", "HeroFonts", "InputFonts", "fonts", "__FramerMetadata__"]
}
