{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js", "ssg:https://framer.com/m/framer/icon-nullstate.js@0.7.0", "ssg:https://framer.com/m/phosphor-icons/House.js@0.0.53", "ssg:https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js", "ssg:https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js", "ssg:https://framerusercontent.com/modules/vikExTCUDLsHfAVeUryO/tQ4DQ1OrZErOFjGO01II/BYidMx2OK.js", "ssg:https://framerusercontent.com/modules/8vyjFZRv4OlC3M1U4OHj/ejHKzpc6dCLUDDBafuGB/Hw38IBmNM.js", "ssg:https://framerusercontent.com/modules/ygDA9mz32JsuhqEDGipj/a6O9wMjXKhcP6qpaXuOk/SBlftUf56.js", "ssg:https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/EqB2oGdmJ81urPOd5L66/Clipboard.js", "ssg:https://framerusercontent.com/modules/bN6nFyTWwsgHF6nWjPFK/chkjvn5hH5wPQtwbxtNI/TRoy3Agwc.js", "ssg:https://framerusercontent.com/modules/t20KmML51OnQZ0d8gGHQ/IDYGCevGmsczLWak96kQ/UVWKCWT18.js", "ssg:https://framerusercontent.com/modules/zuNth7hGm6PcsT5epycL/aBDoZvxj6FeuQpCHk8gA/Bqb4Pf7eO.js", "ssg:https://framerusercontent.com/modules/nqAhD0aTEt1HnmCbECov/YJTQF3mnRhn1cGGifhPM/GiYb6UKTA.js", "ssg:https://framerusercontent.com/modules/tzczF6Ws9nBc6ahuOhYo/uglMHVDj4wz6p55ryA5W/SGgpQjqLk.js", "ssg:https://framerusercontent.com/modules/kO0CW08aQs6qoHIow0WA/aQxLXcJKVoonoE7KQmFV/WJPPJsoSq.js", "ssg:https://framerusercontent.com/modules/u2PJI1rqhy45Q1CRwIUy/yu83TgZqyml1V7qXVZ0x/MiXg3kcTC.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerDisableUnlink\n */ export default function Embed({type,url,html}){if(type===\"url\"&&url){return /*#__PURE__*/ _jsx(EmbedURL,{url:url});}if(type===\"html\"&&html){return /*#__PURE__*/ _jsx(EmbedHTML,{html:html});}return /*#__PURE__*/ _jsx(Instructions,{});};addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",displayTextArea:true,type:ControlType.String,hidden(props){return props.type!==\"html\";}}});function Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url}){// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(!url.startsWith(\"https://\")){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Unsupported protocol.\"});}if(state===undefined){return /*#__PURE__*/ _jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/ _jsx(ErrorMessage,{message:state.message});}if(state===true){const message=`Can't embed ${url} due to its content security policy.`;return /*#__PURE__*/ _jsx(ErrorMessage,{message:message});}return /*#__PURE__*/ _jsx(\"iframe\",{src:url,style:iframeStyle,loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html}){const ref=useRef();// If the HTML contains a script tag we can't use\n// dangerouslySetInnerHTML because it doesn't execute\n// scripts on the client. Otherwise, we can benefit\n// from SSG by using dangerouslySetInnerHTML.\nconst hasScript=html.includes(\"</script>\");useEffect(()=>{if(!hasScript)return;const div=ref.current;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html,hasScript]);return /*#__PURE__*/ _jsx(\"div\",{ref:ref,style:htmlStyle,dangerouslySetInnerHTML:!hasScript?{__html:html}:undefined});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}const centerTextStyle={textAlign:\"center\",minWidth:140};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "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 Component;\nvar House_default = (React) => {\n  if (!Component) {\n    const weights = /* @__PURE__ */ new Map([\n      [\n        \"bold\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M221.56,100.85,141.61,25.38l-.16-.15a19.93,19.93,0,0,0-26.91,0l-.17.15L34.44,100.85A20.07,20.07,0,0,0,28,115.55V208a20,20,0,0,0,20,20H96a20,20,0,0,0,20-20V164h24v44a20,20,0,0,0,20,20h48a20,20,0,0,0,20-20V115.55A20.07,20.07,0,0,0,221.56,100.85ZM204,204H164V160a20,20,0,0,0-20-20H112a20,20,0,0,0-20,20v44H52V117.28l76-71.75,76,71.75Z\" }))\n      ],\n      [\n        \"duotone\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\n          \"path\",\n          {\n            d: \"M216,115.54V208a8,8,0,0,1-8,8H160a8,8,0,0,1-8-8V160a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V115.54a8,8,0,0,1,2.62-5.92l80-75.54a8,8,0,0,1,10.77,0l80,75.54A8,8,0,0,1,216,115.54Z\",\n            opacity: \"0.2\"\n          }\n        ), /* @__PURE__ */ React.createElement(\"path\", { d: \"M218.83,103.77l-80-75.48a1.14,1.14,0,0,1-.11-.11,16,16,0,0,0-21.53,0l-.11.11L37.17,103.77A16,16,0,0,0,32,115.55V208a16,16,0,0,0,16,16H96a16,16,0,0,0,16-16V160h32v48a16,16,0,0,0,16,16h48a16,16,0,0,0,16-16V115.55A16,16,0,0,0,218.83,103.77ZM208,208H160V160a16,16,0,0,0-16-16H112a16,16,0,0,0-16,16v48H48V115.55l.11-.1L128,40l79.9,75.43.11.1Z\" }))\n      ],\n      [\n        \"fill\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M224,115.55V208a16,16,0,0,1-16,16H168a16,16,0,0,1-16-16V168a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v40a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V115.55a16,16,0,0,1,5.17-11.78l80-75.48.11-.11a16,16,0,0,1,21.53,0,1.14,1.14,0,0,0,.11.11l80,75.48A16,16,0,0,1,224,115.55Z\" }))\n      ],\n      [\n        \"light\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M217.47,105.24l-80-75.5-.09-.08a13.94,13.94,0,0,0-18.83,0l-.09.08-80,75.5A14,14,0,0,0,34,115.55V208a14,14,0,0,0,14,14H96a14,14,0,0,0,14-14V160a2,2,0,0,1,2-2h32a2,2,0,0,1,2,2v48a14,14,0,0,0,14,14h48a14,14,0,0,0,14-14V115.55A14,14,0,0,0,217.47,105.24ZM210,208a2,2,0,0,1-2,2H160a2,2,0,0,1-2-2V160a14,14,0,0,0-14-14H112a14,14,0,0,0-14,14v48a2,2,0,0,1-2,2H48a2,2,0,0,1-2-2V115.55a2,2,0,0,1,.65-1.48l.09-.08,79.94-75.48a2,2,0,0,1,2.63,0L209.26,114l.08.08a2,2,0,0,1,.66,1.48Z\" }))\n      ],\n      [\n        \"regular\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M218.83,103.77l-80-75.48a1.14,1.14,0,0,1-.11-.11,16,16,0,0,0-21.53,0l-.11.11L37.17,103.77A16,16,0,0,0,32,115.55V208a16,16,0,0,0,16,16H96a16,16,0,0,0,16-16V160h32v48a16,16,0,0,0,16,16h48a16,16,0,0,0,16-16V115.55A16,16,0,0,0,218.83,103.77ZM208,208H160V160a16,16,0,0,0-16-16H112a16,16,0,0,0-16,16v48H48V115.55l.11-.1L128,40l79.9,75.43.11.1Z\" }))\n      ],\n      [\n        \"thin\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M216.13,106.72,136.07,31.13a12,12,0,0,0-16.2.05L39.93,106.67A12,12,0,0,0,36,115.54V208a12,12,0,0,0,12,12H96a12,12,0,0,0,12-12V160a4,4,0,0,1,4-4h32a4,4,0,0,1,4,4v48a12,12,0,0,0,12,12h48a12,12,0,0,0,12-12V115.54A12,12,0,0,0,216.13,106.72ZM212,208a4,4,0,0,1-4,4H160a4,4,0,0,1-4-4V160a12,12,0,0,0-12-12H112a12,12,0,0,0-12,12v48a4,4,0,0,1-4,4H48a4,4,0,0,1-4-4V115.54a4.09,4.09,0,0,1,1.36-3L125.3,37.05a4,4,0,0,1,5.33,0l80.06,75.58a4,4,0,0,1,1.31,3Z\" }))\n      ]\n    ]);\n    const House = React.forwardRef((props, ref) => /* @__PURE__ */ React.createElement(\"g\", { ref, ...props }, weights.get(props.weight)));\n    House.displayName = \"House\";\n    Component = House;\n  }\n  return Component;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nexport {\n  __FramerMetadata__,\n  House_default as default\n};\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 HouseFactory from\"https://framer.com/m/phosphor-icons/House.js@0.0.53\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const iconKeys=[\"AddressBook\",\"AirTrafficControl\",\"Airplane\",\"AirplaneInFlight\",\"AirplaneLanding\",\"AirplaneTakeoff\",\"AirplaneTilt\",\"Airplay\",\"Alarm\",\"Alien\",\"AlignBottom\",\"AlignBottomSimple\",\"AlignCenterVertical\",\"AlignLeft\",\"AlignLeftSimple\",\"AlignRight\",\"AlignRightSimple\",\"AlignTop\",\"AlignTopSimple\",\"AmazonLogo\",\"Anchor\",\"AnchorSimple\",\"AndroidLogo\",\"AngularLogo\",\"Aperture\",\"AppStoreLogo\",\"AppWindow\",\"AppleLogo\",\"ApplePodcastsLogo\",\"Archive\",\"ArchiveBox\",\"ArchiveTray\",\"Armchair\",\"ArrowArcLeft\",\"ArrowArcRight\",\"ArrowBendDownLeft\",\"ArrowBendDownRight\",\"ArrowBendLeftDown\",\"ArrowBendLeftUp\",\"ArrowBendRightDown\",\"ArrowBendRightUp\",\"ArrowBendUpLeft\",\"ArrowBendUpRight\",\"ArrowCircleDown\",\"ArrowCircleDownLeft\",\"ArrowCircleDownRight\",\"ArrowCircleLeft\",\"ArrowCircleRight\",\"ArrowCircleUp\",\"ArrowCircleUpLeft\",\"ArrowCircleUpRight\",\"ArrowClockwise\",\"ArrowDown\",\"ArrowDownLeft\",\"ArrowDownRight\",\"ArrowElbowDownLeft\",\"ArrowElbowDownRight\",\"ArrowElbowLeft\",\"ArrowElbowLeftDown\",\"ArrowElbowLeftUp\",\"ArrowElbowRight\",\"ArrowElbowRightDown\",\"ArrowElbowRightUp\",\"ArrowElbowUpLeft\",\"ArrowElbowUpRight\",\"ArrowFatDown\",\"ArrowFatLeft\",\"ArrowFatLineDown\",\"ArrowFatLineLeft\",\"ArrowFatLineRight\",\"ArrowFatLineUp\",\"ArrowFatLinesDown\",\"ArrowFatLinesLeft\",\"ArrowFatLinesRight\",\"ArrowFatLinesUp\",\"ArrowFatRight\",\"ArrowFatUp\",\"ArrowLeft\",\"ArrowLineDown\",\"ArrowLineDownLeft\",\"ArrowLineDownRight\",\"ArrowLineLeft\",\"ArrowLineRight\",\"ArrowLineUp\",\"ArrowLineUpLeft\",\"ArrowLineUpRight\",\"ArrowRight\",\"ArrowSquareDown\",\"ArrowSquareDownLeft\",\"ArrowSquareDownRight\",\"ArrowSquareIn\",\"ArrowSquareLeft\",\"ArrowSquareOut\",\"ArrowSquareRight\",\"ArrowSquareUp\",\"ArrowSquareUpLeft\",\"ArrowSquareUpRight\",\"ArrowUDownLeft\",\"ArrowUDownRight\",\"ArrowULeftDown\",\"ArrowULeftUp\",\"ArrowURightDown\",\"ArrowURightUp\",\"ArrowUUpLeft\",\"ArrowUUpRight\",\"ArrowUp\",\"ArrowUpLeft\",\"ArrowUpRight\",\"ArrowsClockwise\",\"ArrowsDownUp\",\"ArrowsHorizontal\",\"ArrowsIn\",\"ArrowsInCardinal\",\"ArrowsInLineVertical\",\"ArrowsInSimple\",\"ArrowsLeftRight\",\"ArrowsMerge\",\"ArrowsOut\",\"ArrowsOutCardinal\",\"ArrowsOutSimple\",\"ArrowsSplit\",\"ArrowsVertical\",\"Article\",\"ArticleMedium\",\"ArticleNyTimes\",\"Asterisk\",\"AsteriskSimple\",\"At\",\"Atom\",\"Baby\",\"Backpack\",\"Backspace\",\"Bag\",\"BagSimple\",\"Balloon\",\"Bandaids\",\"Bank\",\"Barbell\",\"Barcode\",\"Barricade\",\"Baseball\",\"BaseballCap\",\"Basket\",\"Basketball\",\"Bathtub\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryHigh\",\"BatteryLow\",\"BatteryMedium\",\"BatteryPlus\",\"BatteryPlusVertical\",\"BatteryVerticalEmpty\",\"BatteryVerticalFull\",\"BatteryVerticalHigh\",\"BatteryVerticalLow\",\"BatteryWarning\",\"Bed\",\"BeerBottle\",\"BeerStein\",\"BehanceLogo\",\"Bell\",\"BellRinging\",\"BellSimple\",\"BellSimpleRinging\",\"BellSimpleSlash\",\"BellSimpleZ\",\"BellSlash\",\"BellZ\",\"BezierCurve\",\"Bicycle\",\"Binoculars\",\"Bird\",\"Bluetooth\",\"BluetoothConnected\",\"BluetoothSlash\",\"BluetoothX\",\"Boat\",\"Bone\",\"Book\",\"BookBookmark\",\"BookOpen\",\"BookOpenText\",\"Bookmark\",\"BookmarkSimple\",\"Bookmarks\",\"BookmarksSimple\",\"Books\",\"Boot\",\"BoundingBox\",\"BowlFood\",\"BracketsAngle\",\"BracketsCurly\",\"BracketsRound\",\"BracketsSquare\",\"Brain\",\"Brandy\",\"Bridge\",\"Briefcase\",\"BriefcaseMetal\",\"Broadcast\",\"Broom\",\"Browser\",\"Browsers\",\"Bug\",\"BugBeetle\",\"BugDroid\",\"Buildings\",\"Bus\",\"Butterfly\",\"Cactus\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarBlank\",\"CalendarCheck\",\"CalendarPlus\",\"CalendarX\",\"CallBell\",\"Camera\",\"CameraPlus\",\"CameraRotate\",\"CameraSlash\",\"Campfire\",\"Car\",\"CarProfile\",\"CarSimple\",\"Cardholder\",\"Cards\",\"CaretCircleDoubleUp\",\"CaretCircleDown\",\"CaretCircleLeft\",\"CaretCircleRight\",\"CaretCircleUp\",\"CaretCircleUpDown\",\"CaretDoubleDown\",\"CaretDoubleLeft\",\"CaretDoubleRight\",\"CaretDoubleUp\",\"CaretDown\",\"CaretLeft\",\"CaretRight\",\"CaretUp\",\"CaretUpDown\",\"Carrot\",\"CassetteTape\",\"CastleTurret\",\"Cat\",\"CellSignalFull\",\"CellSignalHigh\",\"CellSignalLow\",\"CellSignalMedium\",\"CellSignalNone\",\"CellSignalSlash\",\"CellSignalX\",\"Certificate\",\"Chair\",\"Chalkboard\",\"ChalkboardSimple\",\"ChalkboardTeacher\",\"Champagne\",\"ChargingStation\",\"ChartBar\",\"ChartBarHorizontal\",\"ChartDonut\",\"ChartLine\",\"ChartLineDown\",\"ChartLineUp\",\"ChartPie\",\"ChartPieSlice\",\"ChartPolar\",\"ChartScatter\",\"Chat\",\"ChatCentered\",\"ChatCenteredDots\",\"ChatCenteredText\",\"ChatCircle\",\"ChatCircleDots\",\"ChatCircleText\",\"ChatDots\",\"ChatTeardrop\",\"ChatTeardropDots\",\"ChatTeardropText\",\"ChatText\",\"Chats\",\"ChatsCircle\",\"ChatsTeardrop\",\"Check\",\"CheckCircle\",\"CheckFat\",\"CheckSquare\",\"CheckSquareOffset\",\"Checks\",\"Church\",\"Circle\",\"CircleDashed\",\"CircleHalf\",\"CircleHalfTilt\",\"CircleNotch\",\"CirclesFour\",\"CirclesThree\",\"CirclesThreePlus\",\"Circuitry\",\"Clipboard\",\"ClipboardText\",\"Clock\",\"ClockAfternoon\",\"ClockClockwise\",\"ClockCounterClockwise\",\"ClockCountdown\",\"ClosedCaptioning\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CloudCheck\",\"CloudFog\",\"CloudLightning\",\"CloudMoon\",\"CloudRain\",\"CloudSlash\",\"CloudSnow\",\"CloudSun\",\"CloudWarning\",\"CloudX\",\"Club\",\"CoatHanger\",\"CodaLogo\",\"Code\",\"CodeBlock\",\"CodeSimple\",\"CodepenLogo\",\"CodesandboxLogo\",\"Coffee\",\"Coin\",\"CoinVertical\",\"Coins\",\"Columns\",\"Command\",\"Compass\",\"CompassTool\",\"ComputerTower\",\"Confetti\",\"ContactlessPayment\",\"Control\",\"Cookie\",\"CookingPot\",\"Copy\",\"CopySimple\",\"Copyleft\",\"Copyright\",\"CornersIn\",\"CornersOut\",\"Couch\",\"Cpu\",\"CreditCard\",\"Crop\",\"Cross\",\"Crosshair\",\"CrosshairSimple\",\"Crown\",\"CrownSimple\",\"Cube\",\"CubeFocus\",\"CubeTransparent\",\"CurrencyBtc\",\"CurrencyCircleDollar\",\"CurrencyCny\",\"CurrencyDollar\",\"CurrencyDollarSimple\",\"CurrencyEth\",\"CurrencyEur\",\"CurrencyGbp\",\"CurrencyInr\",\"CurrencyJpy\",\"CurrencyKrw\",\"CurrencyKzt\",\"CurrencyNgn\",\"CurrencyRub\",\"Cursor\",\"CursorClick\",\"CursorText\",\"Cylinder\",\"Database\",\"Desktop\",\"DesktopTower\",\"Detective\",\"DevToLogo\",\"DeviceMobile\",\"DeviceMobileCamera\",\"DeviceMobileSpeaker\",\"DeviceTablet\",\"DeviceTabletCamera\",\"DeviceTabletSpeaker\",\"Devices\",\"Diamond\",\"DiamondsFour\",\"DiceFive\",\"DiceFour\",\"DiceOne\",\"DiceSix\",\"DiceThree\",\"DiceTwo\",\"Disc\",\"DiscordLogo\",\"Divide\",\"Dna\",\"Dog\",\"Door\",\"DoorOpen\",\"Dot\",\"DotOutline\",\"DotsNine\",\"DotsSix\",\"DotsSixVertical\",\"DotsThree\",\"DotsThreeCircle\",\"DotsThreeOutline\",\"DotsThreeVertical\",\"Download\",\"DownloadSimple\",\"Dress\",\"DribbbleLogo\",\"Drop\",\"DropHalf\",\"DropHalfBottom\",\"DropboxLogo\",\"Ear\",\"EarSlash\",\"Egg\",\"EggCrack\",\"Eject\",\"EjectSimple\",\"Elevator\",\"Engine\",\"Envelope\",\"EnvelopeOpen\",\"EnvelopeSimple\",\"EnvelopeSimpleOpen\",\"Equalizer\",\"Equals\",\"Eraser\",\"EscalatorDown\",\"EscalatorUp\",\"Exam\",\"Exclude\",\"ExcludeSquare\",\"Export\",\"Eye\",\"EyeClosed\",\"EyeSlash\",\"Eyedropper\",\"EyedropperSample\",\"Eyeglasses\",\"FaceMask\",\"FacebookLogo\",\"Factory\",\"Faders\",\"FadersHorizontal\",\"Fan\",\"FastForward\",\"FastForwardCircle\",\"Feather\",\"FigmaLogo\",\"File\",\"FileArchive\",\"FileArrowDown\",\"FileArrowUp\",\"FileAudio\",\"FileCloud\",\"FileCode\",\"FileCss\",\"FileCsv\",\"FileDashed\",\"FileDoc\",\"FileHtml\",\"FileImage\",\"FileJpg\",\"FileJs\",\"FileJsx\",\"FileLock\",\"FileMagnifyingGlass\",\"FileMinus\",\"FilePdf\",\"FilePlus\",\"FilePng\",\"FilePpt\",\"FileRs\",\"FileSql\",\"FileSvg\",\"FileText\",\"FileTs\",\"FileTsx\",\"FileVideo\",\"FileVue\",\"FileX\",\"FileXls\",\"FileZip\",\"Files\",\"FilmReel\",\"FilmScript\",\"FilmSlate\",\"FilmStrip\",\"Fingerprint\",\"FingerprintSimple\",\"FinnTheHuman\",\"Fire\",\"FireExtinguisher\",\"FireSimple\",\"FirstAid\",\"FirstAidKit\",\"Fish\",\"FishSimple\",\"Flag\",\"FlagBanner\",\"FlagCheckered\",\"FlagPennant\",\"Flame\",\"Flashlight\",\"Flask\",\"FloppyDisk\",\"FloppyDiskBack\",\"FlowArrow\",\"Flower\",\"FlowerLotus\",\"FlowerTulip\",\"FlyingSaucer\",\"Folder\",\"FolderDashed\",\"FolderLock\",\"FolderMinus\",\"FolderNotch\",\"FolderNotchMinus\",\"FolderNotchOpen\",\"FolderNotchPlus\",\"FolderOpen\",\"FolderPlus\",\"FolderSimple\",\"FolderSimpleDashed\",\"FolderSimpleLock\",\"FolderSimpleMinus\",\"FolderSimplePlus\",\"FolderSimpleStar\",\"FolderSimpleUser\",\"FolderStar\",\"FolderUser\",\"Folders\",\"Football\",\"Footprints\",\"ForkKnife\",\"FrameCorners\",\"FramerLogo\",\"Function\",\"Funnel\",\"FunnelSimple\",\"GameController\",\"Garage\",\"GasCan\",\"GasPump\",\"Gauge\",\"Gavel\",\"Gear\",\"GearFine\",\"GearSix\",\"GenderFemale\",\"GenderIntersex\",\"GenderMale\",\"GenderNeuter\",\"GenderNonbinary\",\"GenderTransgender\",\"Ghost\",\"Gif\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitDiff\",\"GitFork\",\"GitMerge\",\"GitPullRequest\",\"GithubLogo\",\"GitlabLogo\",\"GitlabLogoSimple\",\"Globe\",\"GlobeHemisphereEast\",\"GlobeHemisphereWest\",\"GlobeSimple\",\"GlobeStand\",\"Goggles\",\"GoodreadsLogo\",\"GoogleCardboardLogo\",\"GoogleChromeLogo\",\"GoogleDriveLogo\",\"GoogleLogo\",\"GooglePhotosLogo\",\"GooglePlayLogo\",\"GooglePodcastsLogo\",\"Gradient\",\"GraduationCap\",\"Grains\",\"GrainsSlash\",\"Graph\",\"GridFour\",\"GridNine\",\"Guitar\",\"Hamburger\",\"Hammer\",\"Hand\",\"HandCoins\",\"HandEye\",\"HandFist\",\"HandGrabbing\",\"HandHeart\",\"HandPalm\",\"HandPointing\",\"HandSoap\",\"HandSwipeLeft\",\"HandSwipeRight\",\"HandTap\",\"HandWaving\",\"Handbag\",\"HandbagSimple\",\"HandsClapping\",\"HandsPraying\",\"Handshake\",\"HardDrive\",\"HardDrives\",\"Hash\",\"HashStraight\",\"Headlights\",\"Headphones\",\"Headset\",\"Heart\",\"HeartBreak\",\"HeartHalf\",\"HeartStraight\",\"HeartStraightBreak\",\"Heartbeat\",\"Hexagon\",\"HighHeel\",\"HighlighterCircle\",\"Hoodie\",\"Horse\",\"Hourglass\",\"HourglassHigh\",\"HourglassLow\",\"HourglassMedium\",\"HourglassSimple\",\"HourglassSimpleHigh\",\"HourglassSimpleLow\",\"House\",\"HouseLine\",\"HouseSimple\",\"IceCream\",\"IdentificationBadge\",\"IdentificationCard\",\"Image\",\"ImageSquare\",\"Images\",\"ImagesSquare\",\"Infinity\",\"Info\",\"InstagramLogo\",\"Intersect\",\"IntersectSquare\",\"IntersectThree\",\"Jeep\",\"Kanban\",\"Key\",\"KeyReturn\",\"Keyboard\",\"Keyhole\",\"Knife\",\"Ladder\",\"LadderSimple\",\"Lamp\",\"Laptop\",\"Layout\",\"Leaf\",\"Lifebuoy\",\"Lightbulb\",\"LightbulbFilament\",\"Lighthouse\",\"Lightning\",\"LightningA\",\"LightningSlash\",\"LineSegment\",\"LineSegments\",\"Link\",\"LinkBreak\",\"LinkSimple\",\"LinkSimpleBreak\",\"LinkSimpleHorizontal\",\"LinkedinLogo\",\"LinuxLogo\",\"List\",\"ListBullets\",\"ListChecks\",\"ListDashes\",\"ListMagnifyingGlass\",\"ListNumbers\",\"ListPlus\",\"Lock\",\"LockKey\",\"LockKeyOpen\",\"LockLaminated\",\"LockLaminatedOpen\",\"LockOpen\",\"LockSimple\",\"LockSimpleOpen\",\"Lockers\",\"MagicWand\",\"Magnet\",\"MagnetStraight\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"MapPin\",\"MapPinLine\",\"MapTrifold\",\"MarkerCircle\",\"Martini\",\"MaskHappy\",\"MaskSad\",\"MathOperations\",\"Medal\",\"MedalMilitary\",\"MediumLogo\",\"Megaphone\",\"MegaphoneSimple\",\"MessengerLogo\",\"MetaLogo\",\"Metronome\",\"Microphone\",\"MicrophoneSlash\",\"MicrophoneStage\",\"MicrosoftExcelLogo\",\"MicrosoftOutlookLogo\",\"MicrosoftTeamsLogo\",\"MicrosoftWordLogo\",\"Minus\",\"MinusCircle\",\"MinusSquare\",\"Money\",\"Monitor\",\"MonitorPlay\",\"Moon\",\"MoonStars\",\"Moped\",\"MopedFront\",\"Mosque\",\"Motorcycle\",\"Mountains\",\"Mouse\",\"MouseSimple\",\"MusicNote\",\"MusicNoteSimple\",\"MusicNotes\",\"MusicNotesPlus\",\"MusicNotesSimple\",\"NavigationArrow\",\"Needle\",\"Newspaper\",\"NewspaperClipping\",\"Notches\",\"Note\",\"NoteBlank\",\"NotePencil\",\"Notebook\",\"Notepad\",\"Notification\",\"NotionLogo\",\"NumberCircleEight\",\"NumberCircleFive\",\"NumberCircleFour\",\"NumberCircleNine\",\"NumberCircleOne\",\"NumberCircleSeven\",\"NumberCircleSix\",\"NumberCircleThree\",\"NumberCircleTwo\",\"NumberCircleZero\",\"NumberEight\",\"NumberFive\",\"NumberFour\",\"NumberNine\",\"NumberOne\",\"NumberSeven\",\"NumberSix\",\"NumberSquareEight\",\"NumberSquareFive\",\"NumberSquareFour\",\"NumberSquareNine\",\"NumberSquareOne\",\"NumberSquareSeven\",\"NumberSquareSix\",\"NumberSquareThree\",\"NumberSquareTwo\",\"NumberSquareZero\",\"NumberThree\",\"NumberTwo\",\"NumberZero\",\"Nut\",\"NyTimesLogo\",\"Octagon\",\"OfficeChair\",\"Option\",\"OrangeSlice\",\"Package\",\"PaintBrush\",\"PaintBrushBroad\",\"PaintBrushHousehold\",\"PaintBucket\",\"PaintRoller\",\"Palette\",\"Pants\",\"PaperPlane\",\"PaperPlaneRight\",\"PaperPlaneTilt\",\"Paperclip\",\"PaperclipHorizontal\",\"Parachute\",\"Paragraph\",\"Parallelogram\",\"Park\",\"Password\",\"Path\",\"PatreonLogo\",\"Pause\",\"PauseCircle\",\"PawPrint\",\"PaypalLogo\",\"Peace\",\"Pen\",\"PenNib\",\"PenNibStraight\",\"Pencil\",\"PencilCircle\",\"PencilLine\",\"PencilSimple\",\"PencilSimpleLine\",\"PencilSimpleSlash\",\"PencilSlash\",\"Pentagram\",\"Pepper\",\"Percent\",\"Person\",\"PersonArmsSpread\",\"PersonSimple\",\"PersonSimpleBike\",\"PersonSimpleRun\",\"PersonSimpleThrow\",\"PersonSimpleWalk\",\"Perspective\",\"Phone\",\"PhoneCall\",\"PhoneDisconnect\",\"PhoneIncoming\",\"PhoneOutgoing\",\"PhonePlus\",\"PhoneSlash\",\"PhoneX\",\"PhosphorLogo\",\"Pi\",\"PianoKeys\",\"PictureInPicture\",\"PiggyBank\",\"Pill\",\"PinterestLogo\",\"Pinwheel\",\"Pizza\",\"Placeholder\",\"Planet\",\"Plant\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Playlist\",\"Plug\",\"PlugCharging\",\"Plugs\",\"PlugsConnected\",\"Plus\",\"PlusCircle\",\"PlusMinus\",\"PlusSquare\",\"PokerChip\",\"PoliceCar\",\"Polygon\",\"Popcorn\",\"PottedPlant\",\"Power\",\"Prescription\",\"Presentation\",\"PresentationChart\",\"Printer\",\"Prohibit\",\"ProhibitInset\",\"ProjectorScreen\",\"ProjectorScreenChart\",\"Pulse\",\"PushPin\",\"PushPinSimple\",\"PushPinSimpleSlash\",\"PushPinSlash\",\"PuzzlePiece\",\"QrCode\",\"Question\",\"Queue\",\"Quotes\",\"Radical\",\"Radio\",\"RadioButton\",\"Radioactive\",\"Rainbow\",\"RainbowCloud\",\"ReadCvLogo\",\"Receipt\",\"ReceiptX\",\"Record\",\"Rectangle\",\"Recycle\",\"RedditLogo\",\"Repeat\",\"RepeatOnce\",\"Rewind\",\"RewindCircle\",\"RoadHorizon\",\"Robot\",\"Rocket\",\"RocketLaunch\",\"Rows\",\"Rss\",\"RssSimple\",\"Rug\",\"Ruler\",\"Scales\",\"Scan\",\"Scissors\",\"Scooter\",\"Screencast\",\"ScribbleLoop\",\"Scroll\",\"Seal\",\"SealCheck\",\"SealQuestion\",\"SealWarning\",\"Selection\",\"SelectionAll\",\"SelectionBackground\",\"SelectionForeground\",\"SelectionInverse\",\"SelectionPlus\",\"SelectionSlash\",\"Shapes\",\"Share\",\"ShareFat\",\"ShareNetwork\",\"Shield\",\"ShieldCheck\",\"ShieldCheckered\",\"ShieldChevron\",\"ShieldPlus\",\"ShieldSlash\",\"ShieldStar\",\"ShieldWarning\",\"ShirtFolded\",\"ShootingStar\",\"ShoppingBag\",\"ShoppingBagOpen\",\"ShoppingCart\",\"ShoppingCartSimple\",\"Shower\",\"Shrimp\",\"Shuffle\",\"ShuffleAngular\",\"ShuffleSimple\",\"Sidebar\",\"SidebarSimple\",\"Sigma\",\"SignIn\",\"SignOut\",\"Signature\",\"Signpost\",\"SimCard\",\"Siren\",\"SketchLogo\",\"SkipBack\",\"SkipBackCircle\",\"SkipForward\",\"SkipForwardCircle\",\"Skull\",\"SlackLogo\",\"Sliders\",\"SlidersHorizontal\",\"Slideshow\",\"Smiley\",\"SmileyAngry\",\"SmileyBlank\",\"SmileyMeh\",\"SmileyNervous\",\"SmileySad\",\"SmileySticker\",\"SmileyWink\",\"SmileyXEyes\",\"SnapchatLogo\",\"Sneaker\",\"SneakerMove\",\"Snowflake\",\"SoccerBall\",\"SortAscending\",\"SortDescending\",\"SoundcloudLogo\",\"Spade\",\"Sparkle\",\"SpeakerHifi\",\"SpeakerHigh\",\"SpeakerLow\",\"SpeakerNone\",\"SpeakerSimpleHigh\",\"SpeakerSimpleLow\",\"SpeakerSimpleNone\",\"SpeakerSimpleSlash\",\"SpeakerSimpleX\",\"SpeakerSlash\",\"SpeakerX\",\"Spinner\",\"SpinnerGap\",\"Spiral\",\"SplitHorizontal\",\"SplitVertical\",\"SpotifyLogo\",\"Square\",\"SquareHalf\",\"SquareHalfBottom\",\"SquareLogo\",\"SquareSplitVertical\",\"SquaresFour\",\"Stack\",\"StackOverflowLogo\",\"StackSimple\",\"Stairs\",\"Stamp\",\"Star\",\"StarAndCrescent\",\"StarFour\",\"StarHalf\",\"StarOfDavid\",\"SteeringWheel\",\"Steps\",\"Stethoscope\",\"Sticker\",\"Stool\",\"Stop\",\"StopCircle\",\"Storefront\",\"Strategy\",\"StripeLogo\",\"Student\",\"Subtitles\",\"Subtract\",\"SubtractSquare\",\"Suitcase\",\"SuitcaseRolling\",\"SuitcaseSimple\",\"Sun\",\"SunDim\",\"SunHorizon\",\"Sunglasses\",\"Swap\",\"Swatches\",\"SwimmingPool\",\"Sword\",\"Synagogue\",\"Syringe\",\"TShirt\",\"Table\",\"Tabs\",\"Tag\",\"TagChevron\",\"TagSimple\",\"Target\",\"Taxi\",\"TelegramLogo\",\"Television\",\"TelevisionSimple\",\"TennisBall\",\"Tent\",\"Terminal\",\"TerminalWindow\",\"TestTube\",\"TextAUnderline\",\"TextAa\",\"TextAlignCenter\",\"TextAlignJustify\",\"TextAlignLeft\",\"TextAlignRight\",\"TextB\",\"TextColumns\",\"TextH\",\"TextHFive\",\"TextHFour\",\"TextHOne\",\"TextHSix\",\"TextHThree\",\"TextHTwo\",\"TextIndent\",\"TextItalic\",\"TextOutdent\",\"TextStrikethrough\",\"TextT\",\"TextUnderline\",\"Textbox\",\"Thermometer\",\"ThermometerCold\",\"ThermometerHot\",\"ThermometerSimple\",\"ThumbsDown\",\"ThumbsUp\",\"Ticket\",\"TidalLogo\",\"TiktokLogo\",\"Timer\",\"Tipi\",\"ToggleLeft\",\"ToggleRight\",\"Toilet\",\"ToiletPaper\",\"Toolbox\",\"Tooth\",\"Tote\",\"ToteSimple\",\"Trademark\",\"TrademarkRegistered\",\"TrafficCone\",\"TrafficSign\",\"TrafficSignal\",\"Train\",\"TrainRegional\",\"TrainSimple\",\"Tram\",\"Translate\",\"Trash\",\"TrashSimple\",\"Tray\",\"Tree\",\"TreeEvergreen\",\"TreePalm\",\"TreeStructure\",\"TrendDown\",\"TrendUp\",\"Triangle\",\"Trophy\",\"Truck\",\"TwitchLogo\",\"TwitterLogo\",\"Umbrella\",\"UmbrellaSimple\",\"Unite\",\"UniteSquare\",\"Upload\",\"UploadSimple\",\"Usb\",\"User\",\"UserCircle\",\"UserCircleGear\",\"UserCircleMinus\",\"UserCirclePlus\",\"UserFocus\",\"UserGear\",\"UserList\",\"UserMinus\",\"UserPlus\",\"UserRectangle\",\"UserSquare\",\"UserSwitch\",\"Users\",\"UsersFour\",\"UsersThree\",\"Van\",\"Vault\",\"Vibrate\",\"Video\",\"VideoCamera\",\"VideoCameraSlash\",\"Vignette\",\"VinylRecord\",\"VirtualReality\",\"Virus\",\"Voicemail\",\"Volleyball\",\"Wall\",\"Wallet\",\"Warehouse\",\"Warning\",\"WarningCircle\",\"WarningDiamond\",\"WarningOctagon\",\"Watch\",\"WaveSawtooth\",\"WaveSine\",\"WaveSquare\",\"WaveTriangle\",\"Waveform\",\"Waves\",\"Webcam\",\"WebcamSlash\",\"WebhooksLogo\",\"WechatLogo\",\"WhatsappLogo\",\"Wheelchair\",\"WheelchairMotion\",\"WifiHigh\",\"WifiLow\",\"WifiMedium\",\"WifiNone\",\"WifiSlash\",\"WifiX\",\"Wind\",\"WindowsLogo\",\"Wine\",\"Wrench\",\"X\",\"XCircle\",\"XSquare\",\"YinYang\",\"YoutubeLogo\",];const moduleBaseUrl=\"https://framer.com/m/phosphor-icons/\";const weightOptions=[\"thin\",\"light\",\"regular\",\"bold\",\"fill\",\"duotone\",];const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * PHOSPHOR\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,weight,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HouseFactory(React):null);async function importModule(){// Get the selected module\ntry{const version=\"0.0.53\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@${version}`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch(err){if(isMounted.current)setSelectedIcon(null);}}useEffect(()=>{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(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined},focusable:\"false\",color:color,children:/*#__PURE__*/ _jsx(SelectedIcon,{color:color,weight:weight})}):emptyState});}Icon.displayName=\"Phosphor\";Icon.defaultProps={width:24,height:24,iconSelection:\"House\",iconSearch:\"House\",color:\"#66F\",selectByList:true,weight:\"regular\",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 [Phosphor site](https://phosphoricons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},weight:{type:ControlType.Enum,title:\"Weight\",optionTitles:weightOptions.map(piece=>piece.charAt(0).toUpperCase()+piece.slice(1)),options:weightOptions,defaultValue:Icon.defaultProps.weight},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"24\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Phosphor.map", "// Generated by Framer (89417f6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"iaqYK6kGi\",\"fR0shIfnA\",\"S95nMnUvn\",\"zfmSKn7ai\",\"SSwTwgRhj\"];const variantClassNames={fR0shIfnA:\"framer-v-sr3y0b\",iaqYK6kGi:\"framer-v-11wf9lt\",S95nMnUvn:\"framer-v-d5dm0t\",SSwTwgRhj:\"framer-v-17ntng7\",zfmSKn7ai:\"framer-v-bdf595\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/ _jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Variant 1\":\"iaqYK6kGi\",\"Variant 2\":\"fR0shIfnA\",\"Variant 3\":\"S95nMnUvn\",\"Variant 4\":\"zfmSKn7ai\",\"Variant 5\":\"SSwTwgRhj\"};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:\"iaqYK6kGi\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"iaqYK6kGi\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearmp0x9x=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"fR0shIfnA\"),500);});const onAppearzzzdal=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"S95nMnUvn\"),200);});const onAppear1bu6eta=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"zfmSKn7ai\"),200);});const onAppear1stn7f8=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"SSwTwgRhj\"),200);});const onAppearbhte4d=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"iaqYK6kGi\"),200);});useOnVariantChange(baseVariant,{default:onAppearmp0x9x,fR0shIfnA:onAppearzzzdal,S95nMnUvn:onAppear1bu6eta,SSwTwgRhj:onAppearbhte4d,zfmSKn7ai:onAppear1stn7f8});const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-Hc9V4\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-11wf9lt\",className),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"iaqYK6kGi\",ref:ref,style:{...style},...addPropertyOverrides({fR0shIfnA:{\"data-framer-name\":\"Variant 2\"},S95nMnUvn:{\"data-framer-name\":\"Variant 3\"},SSwTwgRhj:{\"data-framer-name\":\"Variant 5\"},zfmSKn7ai:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-100sdsm\",layoutDependency:layoutDependency,layoutId:\"WmhAKxQlT\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{fR0shIfnA:{backgroundColor:\"rgb(255, 255, 255)\"}}}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-za6ve1\",layoutDependency:layoutDependency,layoutId:\"I8wFJlXG5\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{S95nMnUvn:{backgroundColor:\"rgb(255, 255, 255)\"}}}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-133p5bv\",layoutDependency:layoutDependency,layoutId:\"J3pYFMB5s\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{zfmSKn7ai:{backgroundColor:\"rgb(255, 255, 255)\"}}}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-xfy93e\",layoutDependency:layoutDependency,layoutId:\"QMA4R_MBq\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{SSwTwgRhj:{backgroundColor:\"rgb(255, 255, 255)\"}}})]})})})});});const css=['.framer-Hc9V4 [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; } }\",\".framer-Hc9V4 .framer-e1lbp2 { display: block; }\",\".framer-Hc9V4 .framer-11wf9lt { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 8px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-Hc9V4 .framer-100sdsm, .framer-Hc9V4 .framer-za6ve1, .framer-Hc9V4 .framer-133p5bv, .framer-Hc9V4 .framer-xfy93e { flex: none; height: 8px; overflow: hidden; position: relative; width: 8px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Hc9V4 .framer-11wf9lt { gap: 0px; } .framer-Hc9V4 .framer-11wf9lt > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Hc9V4 .framer-11wf9lt > :first-child { margin-left: 0px; } .framer-Hc9V4 .framer-11wf9lt > :last-child { margin-right: 0px; } }\",\".framer-Hc9V4.framer-v-sr3y0b .framer-100sdsm, .framer-Hc9V4.framer-v-d5dm0t .framer-za6ve1, .framer-Hc9V4.framer-v-bdf595 .framer-133p5bv, .framer-Hc9V4.framer-v-17ntng7 .framer-xfy93e { height: 30px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8\n * @framerIntrinsicWidth 56\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"fR0shIfnA\":{\"layout\":[\"auto\",\"fixed\"]},\"S95nMnUvn\":{\"layout\":[\"auto\",\"fixed\"]},\"zfmSKn7ai\":{\"layout\":[\"auto\",\"fixed\"]},\"SSwTwgRhj\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables false\n */ const FramerBYidMx2OK=withCSS(Component,css,\"framer-Hc9V4\");export default FramerBYidMx2OK;FramerBYidMx2OK.displayName=\"Loading\";FramerBYidMx2OK.defaultProps={height:8,width:56};addPropertyControls(FramerBYidMx2OK,{variant:{options:[\"iaqYK6kGi\",\"fR0shIfnA\",\"S95nMnUvn\",\"zfmSKn7ai\",\"SSwTwgRhj\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerBYidMx2OK,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBYidMx2OK\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"8\",\"framerImmutableVariables\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"fR0shIfnA\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"S95nMnUvn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"zfmSKn7ai\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"SSwTwgRhj\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"56\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BYidMx2OK.map", "// Generated by Framer (f318921)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Noise from\"https://framerusercontent.com/modules/bamMgJhjMszHbcnxCtZj/20nHFbpxFqdlchR1dDZF/Noise.js\";import Particles from\"https://framerusercontent.com/modules/wb6ZrZlCLNQ5HHBJtNND/c1GLxCsQBQvlLXhkz7er/Particles.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/qjO9dYwI1w33HdTrfxm1/ygNXDbtsSLujRZmqaL9i/IIKHISIZT.js\";const ParticlesFonts=getFonts(Particles);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const NoiseFonts=getFonts(Noise);const cycleOrder=[\"e6xSUPzQP\",\"bE94UiTut\"];const serializationHash=\"framer-2eZqh\";const variantClassNames={bE94UiTut:\"framer-v-z4nr5j\",e6xSUPzQP:\"framer-v-1x7k330\"};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 transition2={delay:.1,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 2\":\"bE94UiTut\",cta:\"e6xSUPzQP\"};const getProps=({height,id,link,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,hHUmL3jls:link!==null&&link!==void 0?link:props.hHUmL3jls,JmBU2_9xF:(_ref=title!==null&&title!==void 0?title:props.JmBU2_9xF)!==null&&_ref!==void 0?_ref:\"Download the Book\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"e6xSUPzQP\"};};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,JmBU2_9xF,hHUmL3jls,qNiAdx3WGJXMRpG7qa,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"e6xSUPzQP\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"bE94UiTut\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"bE94UiTut\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:hHUmL3jls,nodeId:\"e6xSUPzQP\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1x7k330\",className,classNames)} framer-1ii3b4c`,\"data-border\":true,\"data-framer-name\":\"cta\",layoutDependency:layoutDependency,layoutId:\"e6xSUPzQP\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-3d8a32c0-cac2-4e2d-9f68-109a03a6d3a2, rgb(0, 67, 104))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,...style},variants:{bE94UiTut:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}},...addPropertyOverrides({bE94UiTut:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1okcqcr\",layoutDependency:layoutDependency,layoutId:\"AAF1XusV_\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vh496a\",layoutDependency:layoutDependency,layoutId:\"tel3F5jOz\",style:{backdropFilter:\"blur(0px)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,WebkitBackdropFilter:\"blur(0px)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rsmzb0\",\"data-border\":true,\"data-framer-name\":\"withCursorFollow\",layoutDependency:layoutDependency,layoutId:\"Wiv6nL1A1\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.06)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 119, 119)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,boxShadow:\"0px 4px 10px 0px rgba(0, 0, 0, 0.09), 0px 0px 8px 0px rgba(255, 255, 255, 0.03)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Download the Book\"})}),className:\"framer-18pzri7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FqYXLfyzz\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:JmBU2_9xF,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fw8j37\",layoutDependency:layoutDependency,layoutId:\"P2LDvXRKS\",style:{filter:\"blur(10px)\",WebkitFilter:\"blur(10px)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-fsk1m2-container\",\"data-framer-appear-id\":\"fsk1m2\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"jKwUQM8i5-container\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Particles,{background:\"var(--token-3d8a32c0-cac2-4e2d-9f68-109a03a6d3a2, rgb(0, 67, 104))\",clickOptions:{clickEnabled:false,clickModes:\"trail\"},color:\"rgb(255, 255, 255)\",colors:[\"rgb(255, 255, 255)\",\"var(--token-4845a1c3-45aa-406f-b28e-d669f984faca, rgb(40, 97, 111))\",\"var(--token-af68cf70-c682-442a-876c-ce22991de5c4, rgb(42, 43, 43))\"],densityOptions:{densityArea:5e3,densityEnable:false,densityFactor:50},fpsOptions:60,height:\"100%\",hoverOptions:{hoverEnabled:true,hoverForce:6,hoverModes:\"attract\",hoverParallax:false,hoverSmooth:2},id:\"jKwUQM8i5\",layoutId:\"jKwUQM8i5\",linksOptions:{linksColor:\"rgb(255, 255, 255)\",linksDistance:100,linksEnabled:false,linksOpacity:.2,linksWidth:1},modeOptions:{bubbleDistance:100,bubbleDuration:.4,bubbleSize:40,connectDistance:100,connectLinksOpacity:.2,connectRadius:50,grabDistance:100,grabLinksOpacity:.2,pushQuantity:4,removeQuantity:4,repulseDistance:200,repulseDuration:1.2,trailDelay:.1,trailQuantity:10},moveOptions:{moveAttractDistance:20,moveAttractEnabled:true,moveDirection:\"none\",moveEnabled:true,moveGravityAcceleration:.5,moveGravityEnabled:true,moveGravityMaxSpeed:.5,moveOut:\"bounce\",moveRandom:true,moveSpeed:2,moveSpinAcceleration:1,moveSpinEnabled:false,moveStraight:false,moveTrailAmount:100,moveTrailEnabled:false,moveVibrate:false},number:3,opacityOptions:{opacity:1,opacityMax:.8,opacityMin:.2,opacityType:false},particlesID:qNiAdx3WGJXMRpG7qa,radius:32,rotateOptions:{rotateAnimation:false,rotateDirection:\"random\",rotateSpeed:5,rotateSync:false,rotateValue:0},shapeOptions:{characterType:\"\uD83D\uDE0E\",imageHeight:100,imageWidth:100,shapeType:\"circle\"},sizeOptions:{size:100,sizeMax:64,sizeMin:32,sizeType:false},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tuj2lc-container\",layoutDependency:layoutDependency,layoutId:\"z_A2lwfYV-container\",style:{opacity:.3},children:/*#__PURE__*/_jsx(Noise,{backgroundSize:128,borderRadius:4,height:\"100%\",id:\"z_A2lwfYV\",layoutId:\"z_A2lwfYV\",opacity:.1,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-bi4c20\",\"data-framer-name\":\"texts\",layoutDependency:layoutDependency,layoutId:\"JKfrkRDUb\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-v507wu\",\"data-styles-preset\":\"IIKHISIZT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3d8a32c0-cac2-4e2d-9f68-109a03a6d3a2, rgb(0, 67, 104)))\"},children:\"Download the Book\"})}),className:\"framer-kkgo8m\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WjOTnQsaP\",style:{\"--extracted-r6o4lv\":\"var(--token-3d8a32c0-cac2-4e2d-9f68-109a03a6d3a2, rgb(0, 67, 104))\"},text:JmBU2_9xF,verticalAlignment:\"top\",withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2eZqh.framer-1ii3b4c, .framer-2eZqh .framer-1ii3b4c { display: block; }\",\".framer-2eZqh.framer-1x7k330 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 16px 32px 16px 32px; position: relative; text-decoration: none; width: min-content; }\",\".framer-2eZqh .framer-1okcqcr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-2eZqh .framer-1vh496a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-2eZqh .framer-1rsmzb0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 18px 24px 18px 24px; position: relative; width: min-content; }\",\".framer-2eZqh .framer-18pzri7 { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 2; }\",\".framer-2eZqh .framer-fw8j37 { flex: none; height: 100%; left: 1px; overflow: visible; position: absolute; top: 1px; width: 100%; }\",\".framer-2eZqh .framer-fsk1m2-container { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-2eZqh .framer-1tuj2lc-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 2; }\",\".framer-2eZqh .framer-bi4c20 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-2eZqh .framer-kkgo8m { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2eZqh.framer-1x7k330, .framer-2eZqh .framer-1okcqcr, .framer-2eZqh .framer-1vh496a, .framer-2eZqh .framer-1rsmzb0, .framer-2eZqh .framer-bi4c20 { gap: 0px; } .framer-2eZqh.framer-1x7k330 > *, .framer-2eZqh .framer-1okcqcr > *, .framer-2eZqh .framer-1rsmzb0 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2eZqh.framer-1x7k330 > :first-child, .framer-2eZqh .framer-1okcqcr > :first-child, .framer-2eZqh .framer-1rsmzb0 > :first-child { margin-top: 0px; } .framer-2eZqh.framer-1x7k330 > :last-child, .framer-2eZqh .framer-1okcqcr > :last-child, .framer-2eZqh .framer-1rsmzb0 > :last-child { margin-bottom: 0px; } .framer-2eZqh .framer-1vh496a > *, .framer-2eZqh .framer-bi4c20 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2eZqh .framer-1vh496a > :first-child, .framer-2eZqh .framer-bi4c20 > :first-child { margin-left: 0px; } .framer-2eZqh .framer-1vh496a > :last-child, .framer-2eZqh .framer-bi4c20 > :last-child { margin-right: 0px; } }\",\".framer-2eZqh.framer-v-z4nr5j.framer-1x7k330 { cursor: pointer; flex-direction: row; padding: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2eZqh.framer-v-z4nr5j.framer-1x7k330 { gap: 0px; } .framer-2eZqh.framer-v-z4nr5j.framer-1x7k330 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2eZqh.framer-v-z4nr5j.framer-1x7k330 > :first-child { margin-left: 0px; } .framer-2eZqh.framer-v-z4nr5j.framer-1x7k330 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-2eZqh[data-border=\"true\"]::after, .framer-2eZqh [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 54\n * @framerIntrinsicWidth 224\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"bE94UiTut\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"JmBU2_9xF\":\"title\",\"hHUmL3jls\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHw38IBmNM=withCSS(Component,css,\"framer-2eZqh\");export default FramerHw38IBmNM;FramerHw38IBmNM.displayName=\"cta-ghost\";FramerHw38IBmNM.defaultProps={height:54,width:224};addPropertyControls(FramerHw38IBmNM,{variant:{options:[\"e6xSUPzQP\",\"bE94UiTut\"],optionTitles:[\"cta\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},JmBU2_9xF:{defaultValue:\"Download the Book\",displayTextArea:false,title:\"Title\",type:ControlType.String},hHUmL3jls:{title:\"Link\",type:ControlType.Link}});addFonts(FramerHw38IBmNM,[{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\"}]},...ParticlesFonts,...NoiseFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHw38IBmNM\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"224\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"bE94UiTut\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"54\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"JmBU2_9xF\\\":\\\"title\\\",\\\"hHUmL3jls\\\":\\\"link\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Hw38IBmNM.map", "// Generated by Framer (f318921)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import LocaleSelector from\"https://framerusercontent.com/modules/57FhkldN9P7x88MqAEaR/UfMN9oeTJKQqVQHIwZ5z/LocaleSelector.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/mq5keK6P5cp4kTELbpvM/FCZCLZXqe0f8BYl7CdZm/GiYb6UKTA.js\";import Cta from\"https://framerusercontent.com/modules/mitoXsb3VFhwp1Nv0OA1/p1dpVXmAqFSJb9fakpw0/CwnhrbFiX.js\";import CtaGhost from\"https://framerusercontent.com/modules/8vyjFZRv4OlC3M1U4OHj/ejHKzpc6dCLUDDBafuGB/Hw38IBmNM.js\";const CtaGhostFonts=getFonts(CtaGhost);const CtaFonts=getFonts(Cta);const LocaleSelectorFonts=getFonts(LocaleSelector);const cycleOrder=[\"cy8c8w_yP\",\"s2jawdgzx\",\"ITiYQyrX0\"];const serializationHash=\"framer-sKCYT\";const variantClassNames={cy8c8w_yP:\"framer-v-1p2wr75\",ITiYQyrX0:\"framer-v-ts7uk5\",s2jawdgzx:\"framer-v-1efsp1d\"};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:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Mobile-Closed\":\"s2jawdgzx\",\"Mobile-Open\":\"cy8c8w_yP\",Desktop:\"ITiYQyrX0\"};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:\"cy8c8w_yP\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"cy8c8w_yP\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapbi08nl=activeVariantCallback(async(...args)=>{setVariant(\"s2jawdgzx\");});const onTap12unsjh=activeVariantCallback(async(...args)=>{setVariant(\"cy8c8w_yP\");});const onTap1y82chs=activeVariantCallback(async(...args)=>{setVariant(\"nclyD8Ot6\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"ITiYQyrX0\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"ITiYQyrX0\")return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"s2jawdgzx\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"s2jawdgzx\")return false;return true;};const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1p2wr75\",className,classNames),\"data-framer-name\":\"Mobile-Open\",layoutDependency:layoutDependency,layoutId:\"cy8c8w_yP\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backdropFilter:\"blur(16px)\",backgroundColor:\"rgba(255, 255, 255, 0.56)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,boxShadow:\"inset 0px 0px 0px 1px rgba(255, 255, 255, 0.05)\",WebkitBackdropFilter:\"blur(16px)\",...style},variants:{ITiYQyrX0:{backgroundColor:\"rgb(255, 255, 255)\",boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px hsla(0, 0%, 73%, 0.44633), 0px 2.288533303243457px 2.288533303243457px -2.5px hsla(0, 0%, 73%, 0.39406), 0px 10px 10px -3.75px hsla(0, 0%, 73%, 0.155)\"},s2jawdgzx:{backgroundColor:\"rgb(255, 255, 255)\",boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px hsla(0, 0%, 73%, 0.44633), 0px 2.288533303243457px 2.288533303243457px -2.5px hsla(0, 0%, 73%, 0.39406), 0px 10px 10px -3.75px hsla(0, 0%, 73%, 0.155)\"}},...addPropertyOverrides({ITiYQyrX0:{\"data-framer-name\":\"Desktop\"},s2jawdgzx:{\"data-framer-name\":\"Mobile-Closed\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:466,intrinsicWidth:283,pixelHeight:466,pixelWidth:283,src:\"https://framerusercontent.com/images/D3OkeelBJQqfwXvSlTuQfdkJw.png\"},className:\"framer-pyt26d\",\"data-framer-name\":\"Qnqjwlj4HrpwI4gmrWbbTP6l4o\",layoutDependency:layoutDependency,layoutId:\"F7LRsjSjd\",...addPropertyOverrides({ITiYQyrX0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:466,intrinsicWidth:283,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(10+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||70)-20-36)/2)),pixelHeight:466,pixelWidth:283,src:\"https://framerusercontent.com/images/D3OkeelBJQqfwXvSlTuQfdkJw.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-149rk9a\",\"data-framer-name\":\"Icon and Label\",layoutDependency:layoutDependency,layoutId:\"PGql7G2gx\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"yDy2QYHa6\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1mpy5js framer-ydllmc\",\"data-framer-name\":\"logo\",layoutDependency:layoutDependency,layoutId:\"yDy2QYHa6\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:466,intrinsicWidth:283,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+0+0+4),pixelHeight:466,pixelWidth:283,src:\"https://framerusercontent.com/images/D3OkeelBJQqfwXvSlTuQfdkJw.png\"},className:\"framer-6389fb\",\"data-framer-name\":\"Qnqjwlj4HrpwI4gmrWbbTP6l4o\",layoutDependency:layoutDependency,layoutId:\"TYYId0s7V\",...addPropertyOverrides({s2jawdgzx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:466,intrinsicWidth:283,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||80)-20-44)/2+0+0)+0+4),pixelHeight:466,pixelWidth:283,src:\"https://framerusercontent.com/images/D3OkeelBJQqfwXvSlTuQfdkJw.png\"}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-217db8f8-1054-47de-ab16-d7395cb29a86, rgb(42, 43, 43)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(270deg, var(--token-3d8a32c0-cac2-4e2d-9f68-109a03a6d3a2, rgb(0, 67, 104)) 0%, var(--token-3d8a32c0-cac2-4e2d-9f68-109a03a6d3a2, rgb(0, 67, 104)) 100%)\"},children:\"ASHLEY B. CASH\"})})}),className:\"framer-1whfuec\",fonts:[\"FS;General Sans-bold\"],layoutDependency:layoutDependency,layoutId:\"Yv658nMeV\",style:{\"--extracted-r6o4lv\":\"var(--token-217db8f8-1054-47de-ab16-d7395cb29a86, rgb(42, 43, 43))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-217db8f8-1054-47de-ab16-d7395cb29a86, rgb(42, 43, 43)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(270deg, var(--token-3d8a32c0-cac2-4e2d-9f68-109a03a6d3a2, rgb(0, 67, 104)) 0%, var(--token-3d8a32c0-cac2-4e2d-9f68-109a03a6d3a2, rgb(0, 67, 104)) 100%)\"},children:\"ASHLEY B. CASH\"})})}),className:\"framer-1q0kql3\",fonts:[\"FS;General Sans-bold\"],layoutDependency:layoutDependency,layoutId:\"nHXhyqMLV\",style:{\"--extracted-r6o4lv\":\"var(--token-217db8f8-1054-47de-ab16-d7395cb29a86, rgb(42, 43, 43))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rzejrg\",\"data-framer-name\":\"Menu\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"DUDkHbg9G\",onTap:onTapbi08nl,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({s2jawdgzx:{onTap:onTap12unsjh}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w3r3l1\",\"data-framer-name\":\"Icon\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"d8qRm_7gS\",onTap:onTap1y82chs,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b3n4au\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"kT4wQRTLw\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:45},variants:{s2jawdgzx:{rotate:0}}}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t0916o\",\"data-framer-name\":\"Mid\",layoutDependency:layoutDependency,layoutId:\"d_m7lBfrE\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ry7x6c\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"sK23Vi5MG\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:-45},variants:{s2jawdgzx:{rotate:0}}})]})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p9ferw\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"xHQunEZoi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"cL7MH4rw6\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-wuc14h\",\"data-styles-preset\":\"GiYb6UKTA\",children:\"Home\"})})})}),className:\"framer-1s8nzl9\",fonts:[\"FS;General Sans-semibold\"],layoutDependency:layoutDependency,layoutId:\"cL7MH4rw6\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},variants:{ITiYQyrX0:{\"--extracted-r6o4lv\":\"var(--token-3d8a32c0-cac2-4e2d-9f68-109a03a6d3a2, rgb(0, 67, 104))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ITiYQyrX0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3d8a32c0-cac2-4e2d-9f68-109a03a6d3a2, rgb(0, 67, 104)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"cL7MH4rw6\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-wuc14h\",\"data-styles-preset\":\"GiYb6UKTA\",children:\"Home\"})})})}),fonts:[\"FS;General Sans-medium\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3d8a32c0-cac2-4e2d-9f68-109a03a6d3a2, rgb(0, 67, 104)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"oY3lxYbMg\"},nodeId:\"vpjZsgZs3\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-wuc14h\",\"data-styles-preset\":\"GiYb6UKTA\",children:\"About\"})})})}),className:\"framer-1bx4ncd\",fonts:[\"FS;General Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"vpjZsgZs3\",style:{\"--extracted-r6o4lv\":\"var(--token-3d8a32c0-cac2-4e2d-9f68-109a03a6d3a2, rgb(0, 67, 104))\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3d8a32c0-cac2-4e2d-9f68-109a03a6d3a2, rgb(0, 67, 104)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"H1kwXKb1z\"},nodeId:\"XvQcozFT0\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-wuc14h\",\"data-styles-preset\":\"GiYb6UKTA\",children:\"Op-ed\"})})})}),className:\"framer-gzlba5\",fonts:[\"FS;General Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"XvQcozFT0\",style:{\"--extracted-r6o4lv\":\"var(--token-3d8a32c0-cac2-4e2d-9f68-109a03a6d3a2, rgb(0, 67, 104))\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"NBquLJQgd\"},nodeId:\"bsTHJvPtm\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-wuc14h\",\"data-styles-preset\":\"GiYb6UKTA\",children:\"Contact\"})})})}),className:\"framer-1xl5kkk\",fonts:[\"FS;General Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"bsTHJvPtm\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"H1kwXKb1z\"},nodeId:\"RlUCzcNCZ\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-wuc14h\",\"data-styles-preset\":\"GiYb6UKTA\",children:\"Blog\"})})})}),className:\"framer-153esbk\",fonts:[\"FS;General Sans-semibold\"],layoutDependency:layoutDependency,layoutId:\"RlUCzcNCZ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"NBquLJQgd\"},nodeId:\"W4UxfpbRo\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-wuc14h\",\"data-styles-preset\":\"GiYb6UKTA\",children:\"Contact\"})})})}),className:\"framer-136b11u\",fonts:[\"FS;General Sans-semibold\"],layoutDependency:layoutDependency,layoutId:\"W4UxfpbRo\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+84+0+615,...addPropertyOverrides({ITiYQyrX0:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(10+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||70)-20-54)/2)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11t2h1c-container\",layoutDependency:layoutDependency,layoutId:\"HtUUHwoxZ-container\",children:/*#__PURE__*/_jsx(CtaGhost,{height:\"100%\",id:\"HtUUHwoxZ\",JmBU2_9xF:\"Download my FREE ebook\",layoutId:\"HtUUHwoxZ\",variant:\"e6xSUPzQP\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"NBquLJQgd\"},implicitPathVariables:undefined},{href:{webPageId:\"NBquLJQgd\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+84+0+681,...addPropertyOverrides({ITiYQyrX0:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(10+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||70)-20-54)/2)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pmzhbg-container\",layoutDependency:layoutDependency,layoutId:\"eNejSvXpZ-container\",children:/*#__PURE__*/_jsx(Cta,{height:\"100%\",hHUmL3jls:resolvedLinks[0],id:\"eNejSvXpZ\",JmBU2_9xF:\"Inquiries \u279C\",layoutId:\"eNejSvXpZ\",variant:\"QubaKOe5f\",width:\"100%\",...addPropertyOverrides({ITiYQyrX0:{hHUmL3jls:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yiaad0-container\",layoutDependency:layoutDependency,layoutId:\"pdaATQA8R-container\",children:/*#__PURE__*/_jsx(LocaleSelector,{caret:{color:\"rgb(0, 0, 0)\",size:12,type:\"default\"},fillColor:\"rgb(238, 238, 238)\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.5em\"},height:\"100%\",id:\"pdaATQA8R\",layoutId:\"pdaATQA8R\",options:{focus:{color:\"rgb(0, 153, 255)\",offset:0,style:\"solid\",width:1},gap:5,title:true},padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:10,radiusBottomLeft:10,radiusBottomRight:10,radiusPerConrner:false,radiusTopLeft:10,radiusTopRight:10,textColor:\"rgb(0, 0, 0)\",width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zoofyj-container\",layoutDependency:layoutDependency,layoutId:\"UGIncX1C2-container\",children:/*#__PURE__*/_jsx(LocaleSelector,{caret:{color:\"rgb(0, 0, 0)\",size:12,type:\"default\"},fillColor:\"rgb(238, 238, 238)\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.5em\"},height:\"100%\",id:\"UGIncX1C2\",layoutId:\"UGIncX1C2\",options:{focus:{color:\"rgb(0, 153, 255)\",offset:0,style:\"solid\",width:1},gap:5,title:true},padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:10,radiusBottomLeft:10,radiusBottomRight:10,radiusPerConrner:false,radiusTopLeft:10,radiusTopRight:10,textColor:\"rgb(0, 0, 0)\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sKCYT.framer-ydllmc, .framer-sKCYT .framer-ydllmc { display: block; }\",\".framer-sKCYT.framer-1p2wr75 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 20px 20px 30px; position: relative; width: 330px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sKCYT .framer-pyt26d, .framer-sKCYT .framer-6389fb { aspect-ratio: 0.6072961373390557 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); overflow: visible; position: relative; width: 22px; }\",\".framer-sKCYT .framer-149rk9a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sKCYT .framer-1mpy5js { 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: 4px; position: relative; text-decoration: none; width: min-content; }\",\".framer-sKCYT .framer-1whfuec, .framer-sKCYT .framer-1q0kql3 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-sKCYT .framer-1rzejrg { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 5px 15px 5px 15px; position: relative; width: min-content; }\",\".framer-sKCYT .framer-1w3r3l1 { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: hidden; position: relative; width: 32px; }\",\".framer-sKCYT .framer-1b3n4au { bottom: 15px; flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sKCYT .framer-1t0916o { flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sKCYT .framer-ry7x6c { flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; top: 15px; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sKCYT .framer-1p9ferw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sKCYT .framer-1s8nzl9, .framer-sKCYT .framer-153esbk, .framer-sKCYT .framer-136b11u { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sKCYT .framer-1bx4ncd, .framer-sKCYT .framer-gzlba5, .framer-sKCYT .framer-1xl5kkk { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-sKCYT .framer-11t2h1c-container, .framer-sKCYT .framer-1yiaad0-container, .framer-sKCYT .framer-zoofyj-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-sKCYT .framer-pmzhbg-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sKCYT.framer-1p2wr75, .framer-sKCYT .framer-1mpy5js, .framer-sKCYT .framer-1rzejrg, .framer-sKCYT .framer-1p9ferw { gap: 0px; } .framer-sKCYT.framer-1p2wr75 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-sKCYT.framer-1p2wr75 > :first-child, .framer-sKCYT .framer-1p9ferw > :first-child { margin-top: 0px; } .framer-sKCYT.framer-1p2wr75 > :last-child, .framer-sKCYT .framer-1p9ferw > :last-child { margin-bottom: 0px; } .framer-sKCYT .framer-1mpy5js > *, .framer-sKCYT .framer-1rzejrg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-sKCYT .framer-1mpy5js > :first-child, .framer-sKCYT .framer-1rzejrg > :first-child { margin-left: 0px; } .framer-sKCYT .framer-1mpy5js > :last-child, .framer-sKCYT .framer-1rzejrg > :last-child { margin-right: 0px; } .framer-sKCYT .framer-1p9ferw > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-sKCYT.framer-v-1efsp1d.framer-1p2wr75 { gap: 20px; height: 80px; justify-content: center; padding: 10px 10px 10px 20px; }\",\".framer-sKCYT.framer-v-1efsp1d .framer-6389fb, .framer-sKCYT.framer-v-ts7uk5 .framer-pyt26d { order: 0; }\",\".framer-sKCYT.framer-v-1efsp1d .framer-1whfuec { order: 1; }\",\".framer-sKCYT.framer-v-1efsp1d .framer-1b3n4au { bottom: 6px; }\",\".framer-sKCYT.framer-v-1efsp1d .framer-ry7x6c { top: 6px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sKCYT.framer-v-1efsp1d.framer-1p2wr75 { gap: 0px; } .framer-sKCYT.framer-v-1efsp1d.framer-1p2wr75 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-sKCYT.framer-v-1efsp1d.framer-1p2wr75 > :first-child { margin-top: 0px; } .framer-sKCYT.framer-v-1efsp1d.framer-1p2wr75 > :last-child { margin-bottom: 0px; } }\",\".framer-sKCYT.framer-v-ts7uk5.framer-1p2wr75 { align-content: center; align-items: center; flex-direction: row; gap: 20px; height: 70px; justify-content: center; padding: 10px 30px 10px 20px; width: min-content; }\",\".framer-sKCYT.framer-v-ts7uk5 .framer-149rk9a { order: 1; width: 271px; }\",\".framer-sKCYT.framer-v-ts7uk5 .framer-1p9ferw { flex-direction: row; gap: 40px; order: 2; width: min-content; }\",\".framer-sKCYT.framer-v-ts7uk5 .framer-1s8nzl9 { white-space: pre; width: auto; }\",\".framer-sKCYT.framer-v-ts7uk5 .framer-zoofyj-container { order: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sKCYT.framer-v-ts7uk5.framer-1p2wr75, .framer-sKCYT.framer-v-ts7uk5 .framer-1p9ferw { gap: 0px; } .framer-sKCYT.framer-v-ts7uk5.framer-1p2wr75 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-sKCYT.framer-v-ts7uk5.framer-1p2wr75 > :first-child, .framer-sKCYT.framer-v-ts7uk5 .framer-1p9ferw > :first-child { margin-left: 0px; } .framer-sKCYT.framer-v-ts7uk5.framer-1p2wr75 > :last-child, .framer-sKCYT.framer-v-ts7uk5 .framer-1p9ferw > :last-child { margin-right: 0px; } .framer-sKCYT.framer-v-ts7uk5 .framer-1p9ferw > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 479\n * @framerIntrinsicWidth 330\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"s2jawdgzx\":{\"layout\":[\"fixed\",\"fixed\"]},\"ITiYQyrX0\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSBlftUf56=withCSS(Component,css,\"framer-sKCYT\");export default FramerSBlftUf56;FramerSBlftUf56.displayName=\"Menu (For Blog ES)\";FramerSBlftUf56.defaultProps={height:479,width:330};addPropertyControls(FramerSBlftUf56,{variant:{options:[\"cy8c8w_yP\",\"s2jawdgzx\",\"ITiYQyrX0\"],optionTitles:[\"Mobile-Open\",\"Mobile-Closed\",\"Desktop\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerSBlftUf56,[{explicitInter:true,fonts:[{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KWXO5X3YW4X7OLUMPO4X24HQJGJU7E2Q/VOWUQZS3YLP66ZHPTXAFSH6YACY4WJHT/NIQ54PVBBIWVK3PFSOIOUJSXIJ5WTNDP.woff2\",weight:\"700\"},{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/K46YRH762FH3QJ25IQM3VAXAKCHEXXW4/ISLWQPUZHZF33LRIOTBMFOJL57GBGQ4B/3ZLMEXZEQPLTEPMHTQDAUXP5ZZXCZAEN.woff2\",weight:\"600\"},{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3RZHWSNONLLWJK3RLPEKUZOMM56GO4LJ/BPDRY7AHVI3MCDXXVXTQQ76H3UXA63S3/SB2OEB6IKZPRR6JT4GFJ2TFT6HBB6AZN.woff2\",weight:\"500\"},{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\"}]},...CtaGhostFonts,...CtaFonts,...LocaleSelectorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSBlftUf56\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"479\",\"framerIntrinsicWidth\":\"330\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"s2jawdgzx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ITiYQyrX0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useCallback}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import{defaultEvents,usePadding,useRadius,paddingControl,borderRadiusControl,fontControls,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * CLIPBOARD\n *\n * @framerIntrinsicWidth 90\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Clipboard({label,content,fill,color,style,onClick,...props}){const{fontFamily,fontSize,fontWeight}=useFontControls(props);const borderRadius=useRadius(props);const paddingValue=usePadding(props);const handleClick=useCallback(()=>{var ref;(ref=navigator.clipboard)===null||ref===void 0?void 0:ref.writeText(content);onClick===null||onClick===void 0?void 0:onClick();},[onClick,content]);return(/*#__PURE__*/ _jsx(motion.button,{style:{border:\"none\",outline:\"none\",resize:\"none\",width:\"max-content\",wordBreak:\"break-word\",overflowWrap:\"break-word\",WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",letterSpacing:\"-0.2px\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",background:fill,borderRadius,cursor:\"pointer\",padding:paddingValue,fontFamily,fontWeight,fontSize,color,...style},onClick:handleClick,whileHover:{opacity:0.8},whileTap:{scale:0.9},transition:{type:\"ease\",duration:0.3},...props,children:label}));};Clipboard.defaultProps={label:\"Copy to clipboard\",color:\"#fff\",fontSize:16,fontFamily:\"Inter\",fontWeight:500,padding:15,borderRadius:8};addPropertyControls(Clipboard,{content:{type:ControlType.String,title:\"Content\",displayTextArea:true,description:\"When clicked, this content will be copied to the clipboard.\"},label:{type:ControlType.String,title:\"Label\"},fill:{type:ControlType.Color,title:\"Fill\"},color:{type:ControlType.Color,title:\"Text\"},...fontControls,fontSize:{title:\"Font Size\",type:ControlType.Number,displayStepper:true,defaultValue:16},...paddingControl,...borderRadiusControl,...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Clipboard\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"90\",\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicHeight\":\"50\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Clipboard.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"FS;General Sans-medium\"]);export const fonts=[{family:\"General Sans\",moduleAsset:{localModuleIdentifier:\"local-module:css/TRoy3Agwc:default\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3RZHWSNONLLWJK3RLPEKUZOMM56GO4LJ/BPDRY7AHVI3MCDXXVXTQQ76H3UXA63S3/SB2OEB6IKZPRR6JT4GFJ2TFT6HBB6AZN.woff2\"},style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3RZHWSNONLLWJK3RLPEKUZOMM56GO4LJ/BPDRY7AHVI3MCDXXVXTQQ76H3UXA63S3/SB2OEB6IKZPRR6JT4GFJ2TFT6HBB6AZN.woff2\",weight:\"500\"}];export const css=['.framer-7iBeF .framer-styles-preset-1f3og6z:not(.rich-text-wrapper), .framer-7iBeF .framer-styles-preset-1f3og6z.rich-text-wrapper p { --framer-font-family: \"General Sans\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0px; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-217db8f8-1054-47de-ab16-d7395cb29a86, #2a2b2b); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 809px) and (min-width: 0px) { .framer-7iBeF .framer-styles-preset-1f3og6z:not(.rich-text-wrapper), .framer-7iBeF .framer-styles-preset-1f3og6z.rich-text-wrapper p { --framer-font-family: \"General Sans\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0px; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-217db8f8-1054-47de-ab16-d7395cb29a86, #2a2b2b); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-7iBeF\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f318921)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Clipboard from\"https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/EqB2oGdmJ81urPOd5L66/Clipboard.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/bN6nFyTWwsgHF6nWjPFK/chkjvn5hH5wPQtwbxtNI/TRoy3Agwc.js\";const ClipboardFonts=getFonts(Clipboard);const cycleOrder=[\"ykLlM3Nep\",\"rPFPcT7SQ\"];const serializationHash=\"framer-fDFLd\";const variantClassNames={rPFPcT7SQ:\"framer-v-1601ip8\",ykLlM3Nep:\"framer-v-1kp2muk\"};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 transition2={damping:60,delay:0,mass:1,stiffness:300,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Clicked:\"rPFPcT7SQ\",Default:\"ykLlM3Nep\"};const getProps=({content,height,id,link,tap,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1;return{...props,MtMXwCJK4:tap!==null&&tap!==void 0?tap:props.MtMXwCJK4,ryCon9jsT:link!==null&&link!==void 0?link:props.ryCon9jsT,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ykLlM3Nep\",XLA8dU_7F:(_ref1=content!==null&&content!==void 0?content:props.XLA8dU_7F)!==null&&_ref1!==void 0?_ref1:\"you@example.com\"};};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,ryCon9jsT,XLA8dU_7F,MtMXwCJK4,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ykLlM3Nep\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapk0s61l=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(MtMXwCJK4){const res=await MtMXwCJK4(...args);if(res===false)return false;}setVariant(\"rPFPcT7SQ\");});const onAppear1vhdrck=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ykLlM3Nep\"),2e3);});useOnVariantChange(baseVariant,{rPFPcT7SQ:onAppear1vhdrck});const ref1=React.useRef(null);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,...addPropertyOverrides({rPFPcT7SQ:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:ryCon9jsT,nodeId:\"ykLlM3Nep\",openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1kp2muk\",className,classNames)} framer-1qlg6t4`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ykLlM3Nep\",onTap:onTapk0s61l,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({rPFPcT7SQ:{\"data-framer-name\":\"Clicked\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-duoajf-container\",layoutDependency:layoutDependency,layoutId:\"dbNAglD_q-container\",style:{opacity:0},children:/*#__PURE__*/_jsx(Clipboard,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,color:\"rgb(255, 255, 255)\",content:XLA8dU_7F,fill:\"rgb(0, 153, 255)\",font:false,fontFamily:\"Inter\",fontSize:16,fontWeight:500,height:\"100%\",id:\"dbNAglD_q\",isMixedBorderRadius:false,label:\"\",layoutId:\"dbNAglD_q\",padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,style:{height:\"100%\",width:\"100%\"},topLeftRadius:8,topRightRadius:8,width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-qddzz0\",\"data-border\":true,\"data-framer-name\":\"Button\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"O1P9XrUqT\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-e7401411-8529-496d-bafd-88f52c3fc7d6, rgb(227, 229, 232))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-30jvy7\",\"data-framer-name\":\"copy-icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"i1QWaVQKc\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 3.25 9 C 3.25 7.475 3.856 6.012 4.934 4.934 C 6.012 3.856 7.475 3.25 9 3.25 L 16.013 3.25 C 16.212 3.25 16.403 3.329 16.543 3.47 C 16.684 3.61 16.763 3.801 16.763 4 C 16.763 4.199 16.684 4.39 16.543 4.53 C 16.403 4.671 16.212 4.75 16.013 4.75 L 9 4.75 C 7.873 4.75 6.792 5.198 5.995 5.995 C 5.198 6.792 4.75 7.873 4.75 9 L 4.75 16.107 C 4.75 16.306 4.671 16.497 4.53 16.637 C 4.39 16.778 4.199 16.857 4 16.857 C 3.801 16.857 3.61 16.778 3.47 16.637 C 3.329 16.497 3.25 16.306 3.25 16.107 Z\" fill=\"rgba(42,43,43,0.6)\"></path><path d=\"M 18.403 6.793 C 15.144 6.431 11.856 6.431 8.597 6.793 C 8.146 6.843 7.725 7.044 7.403 7.364 C 7.081 7.683 6.877 8.102 6.823 8.553 C 6.439 11.839 6.439 15.16 6.823 18.446 C 6.877 18.896 7.081 19.316 7.403 19.635 C 7.725 19.955 8.146 20.156 8.597 20.206 C 11.838 20.569 15.162 20.569 18.403 20.206 C 18.854 20.156 19.275 19.955 19.597 19.635 C 19.919 19.316 20.123 18.896 20.177 18.446 C 20.561 15.16 20.561 11.839 20.177 8.553 C 20.123 8.102 19.919 7.683 19.596 7.364 C 19.274 7.044 18.854 6.843 18.403 6.793 Z\" fill=\"rgba(42,43,43,0.6)\"></path></svg>',svgContentId:10533231731,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1f3og6z\",\"data-styles-preset\":\"TRoy3Agwc\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(42, 43, 43, 0.8))\"},children:\"Copy Link\"})}),className:\"framer-p15ofc\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tIJgbxn9b\",style:{\"--extracted-r6o4lv\":\"rgba(42, 43, 43, 0.8)\"},variants:{rPFPcT7SQ:{\"--extracted-r6o4lv\":\"var(--token-217db8f8-1054-47de-ab16-d7395cb29a86, rgb(42, 43, 43))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({rPFPcT7SQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1f3og6z\",\"data-styles-preset\":\"TRoy3Agwc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-217db8f8-1054-47de-ab16-d7395cb29a86, rgb(42, 43, 43)))\"},children:\"Copied!\"})})}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fDFLd.framer-1qlg6t4, .framer-fDFLd .framer-1qlg6t4 { display: block; }\",\".framer-fDFLd.framer-1kp2muk { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-fDFLd .framer-duoajf-container { flex: none; height: 100%; left: calc(50.00000000000002% - 159px / 2); position: absolute; top: calc(48.57142857142859% - 100% / 2); width: 159px; z-index: 4; }\",\".framer-fDFLd .framer-qddzz0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; min-width: 100px; padding: 6px 10px 6px 10px; position: relative; width: min-content; }\",\".framer-fDFLd .framer-30jvy7 { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-fDFLd .framer-p15ofc { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fDFLd.framer-1kp2muk, .framer-fDFLd .framer-qddzz0 { gap: 0px; } .framer-fDFLd.framer-1kp2muk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-fDFLd.framer-1kp2muk > :first-child, .framer-fDFLd .framer-qddzz0 > :first-child { margin-left: 0px; } .framer-fDFLd.framer-1kp2muk > :last-child, .framer-fDFLd .framer-qddzz0 > :last-child { margin-right: 0px; } .framer-fDFLd .framer-qddzz0 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",\".framer-fDFLd.framer-v-1601ip8 .framer-qddzz0 { flex: 1 0 0px; width: 1px; }\",...sharedStyle.css,'.framer-fDFLd[data-border=\"true\"]::after, .framer-fDFLd [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 36\n * @framerIntrinsicWidth 122\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"rPFPcT7SQ\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ryCon9jsT\":\"link\",\"XLA8dU_7F\":\"content\",\"MtMXwCJK4\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUVWKCWT18=withCSS(Component,css,\"framer-fDFLd\");export default FramerUVWKCWT18;FramerUVWKCWT18.displayName=\"Button / Clipboard\";FramerUVWKCWT18.defaultProps={height:36,width:122};addPropertyControls(FramerUVWKCWT18,{variant:{options:[\"ykLlM3Nep\",\"rPFPcT7SQ\"],optionTitles:[\"Default\",\"Clicked\"],title:\"Variant\",type:ControlType.Enum},ryCon9jsT:{title:\"Link\",type:ControlType.Link},XLA8dU_7F:{defaultValue:\"you@example.com\",displayTextArea:true,title:\"Content\",type:ControlType.String},MtMXwCJK4:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerUVWKCWT18,[{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\"}]},...ClipboardFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUVWKCWT18\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"122\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"rPFPcT7SQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"36\",\"framerVariables\":\"{\\\"ryCon9jsT\\\":\\\"link\\\",\\\"XLA8dU_7F\\\":\\\"content\\\",\\\"MtMXwCJK4\\\":\\\"tap\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UVWKCWT18.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"FS;General Sans-medium\"]);export const fonts=[{family:\"General Sans\",moduleAsset:{localModuleIdentifier:\"local-module:css/Bqb4Pf7eO:default\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3RZHWSNONLLWJK3RLPEKUZOMM56GO4LJ/BPDRY7AHVI3MCDXXVXTQQ76H3UXA63S3/SB2OEB6IKZPRR6JT4GFJ2TFT6HBB6AZN.woff2\"},style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3RZHWSNONLLWJK3RLPEKUZOMM56GO4LJ/BPDRY7AHVI3MCDXXVXTQQ76H3UXA63S3/SB2OEB6IKZPRR6JT4GFJ2TFT6HBB6AZN.woff2\",weight:\"500\"}];export const css=['.framer-iJw1p .framer-styles-preset-129ykke:not(.rich-text-wrapper), .framer-iJw1p .framer-styles-preset-129ykke.rich-text-wrapper h4 { --framer-font-family: \"General Sans\", sans-serif; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0px; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-217db8f8-1054-47de-ab16-d7395cb29a86, #2a2b2b); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1279px) and (min-width: 810px) { .framer-iJw1p .framer-styles-preset-129ykke:not(.rich-text-wrapper), .framer-iJw1p .framer-styles-preset-129ykke.rich-text-wrapper h4 { --framer-font-family: \"General Sans\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0px; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-217db8f8-1054-47de-ab16-d7395cb29a86, #2a2b2b); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-iJw1p .framer-styles-preset-129ykke:not(.rich-text-wrapper), .framer-iJw1p .framer-styles-preset-129ykke.rich-text-wrapper h4 { --framer-font-family: \"General Sans\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0px; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-217db8f8-1054-47de-ab16-d7395cb29a86, #2a2b2b); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-iJw1p\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([]);export const fonts=[];export const css=['.framer-hCXdS .framer-styles-preset-wuc14h:not(.rich-text-wrapper), .framer-hCXdS .framer-styles-preset-wuc14h.rich-text-wrapper a { --framer-link-current-text-color: var(--token-217db8f8-1054-47de-ab16-d7395cb29a86, #2a2b2b) /* {\"name\":\"black\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-217db8f8-1054-47de-ab16-d7395cb29a86, #2a2b2b) /* {\"name\":\"black\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-2eb07466-8e12-4b9d-b469-66ccd1d98b7d, #7f8080); --framer-link-text-decoration: none; }'];export const className=\"framer-hCXdS\";\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\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"FS;General Sans-medium\"]);export const fonts=[{family:\"General Sans\",moduleAsset:{localModuleIdentifier:\"local-module:css/SGgpQjqLk:default\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3RZHWSNONLLWJK3RLPEKUZOMM56GO4LJ/BPDRY7AHVI3MCDXXVXTQQ76H3UXA63S3/SB2OEB6IKZPRR6JT4GFJ2TFT6HBB6AZN.woff2\"},style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3RZHWSNONLLWJK3RLPEKUZOMM56GO4LJ/BPDRY7AHVI3MCDXXVXTQQ76H3UXA63S3/SB2OEB6IKZPRR6JT4GFJ2TFT6HBB6AZN.woff2\",weight:\"500\"}];export const css=['.framer-NWCoc .framer-styles-preset-1qdi2io:not(.rich-text-wrapper), .framer-NWCoc .framer-styles-preset-1qdi2io.rich-text-wrapper p { --framer-font-family: \"General Sans\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0px; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #2a2b2b; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 809px) and (min-width: 0px) { .framer-NWCoc .framer-styles-preset-1qdi2io:not(.rich-text-wrapper), .framer-NWCoc .framer-styles-preset-1qdi2io.rich-text-wrapper p { --framer-font-family: \"General Sans\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0px; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #2a2b2b; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-NWCoc\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"FS;General Sans-medium\"]);export const fonts=[{family:\"General Sans\",moduleAsset:{localModuleIdentifier:\"local-module:css/WJPPJsoSq:default\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3RZHWSNONLLWJK3RLPEKUZOMM56GO4LJ/BPDRY7AHVI3MCDXXVXTQQ76H3UXA63S3/SB2OEB6IKZPRR6JT4GFJ2TFT6HBB6AZN.woff2\"},style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3RZHWSNONLLWJK3RLPEKUZOMM56GO4LJ/BPDRY7AHVI3MCDXXVXTQQ76H3UXA63S3/SB2OEB6IKZPRR6JT4GFJ2TFT6HBB6AZN.woff2\",weight:\"500\"}];export const css=['.framer-CCziB .framer-styles-preset-10hgsho:not(.rich-text-wrapper), .framer-CCziB .framer-styles-preset-10hgsho.rich-text-wrapper h6 { --framer-font-family: \"General Sans\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0px; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-217db8f8-1054-47de-ab16-d7395cb29a86, #2a2b2b); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-CCziB\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f318921)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,LazyValue,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouter,withCSS,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import Loading from\"https://framerusercontent.com/modules/vikExTCUDLsHfAVeUryO/tQ4DQ1OrZErOFjGO01II/BYidMx2OK.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/soIAPuIiPtf4z0IwVYlq/SlideShow.js\";import BlogCard from\"#framer/local/canvasComponent/HoqRnGrFT/HoqRnGrFT.js\";import MenuForBlogES from\"#framer/local/canvasComponent/SBlftUf56/SBlftUf56.js\";import ButtonClipboard from\"#framer/local/canvasComponent/UVWKCWT18/UVWKCWT18.js\";import Footer from\"#framer/local/canvasComponent/w353A_1oN/w353A_1oN.js\";import Blog from\"#framer/local/collection/iKMqEOfxs/iKMqEOfxs.js\";import*as sharedStyle6 from\"#framer/local/css/Bqb4Pf7eO/Bqb4Pf7eO.js\";import*as sharedStyle1 from\"#framer/local/css/gdkUHc_1r/gdkUHc_1r.js\";import*as sharedStyle10 from\"#framer/local/css/GiYb6UKTA/GiYb6UKTA.js\";import*as sharedStyle4 from\"#framer/local/css/hO4rbrA_2/hO4rbrA_2.js\";import*as sharedStyle3 from\"#framer/local/css/jf1Jg1kzZ/jf1Jg1kzZ.js\";import*as sharedStyle2 from\"#framer/local/css/lV3YlvMd3/lV3YlvMd3.js\";import*as sharedStyle9 from\"#framer/local/css/q2HVp4gZd/q2HVp4gZd.js\";import*as sharedStyle from\"#framer/local/css/SGgpQjqLk/SGgpQjqLk.js\";import*as sharedStyle7 from\"#framer/local/css/Te8O7XLmO/Te8O7XLmO.js\";import*as sharedStyle8 from\"#framer/local/css/WJPPJsoSq/WJPPJsoSq.js\";import*as sharedStyle5 from\"#framer/local/css/Zeunb14kr/Zeunb14kr.js\";import metadataProvider from\"#framer/local/webPageMetadata/MiXg3kcTC/MiXg3kcTC.js\";const MenuForBlogESFonts=getFonts(MenuForBlogES);const ButtonClipboardFonts=getFonts(ButtonClipboard);const BlogCardFonts=getFonts(BlogCard);const SlideshowFonts=getFonts(Slideshow);const FooterFonts=getFonts(Footer);const LoadingFonts=getFonts(Loading);const EmbedFonts=getFonts(Embed);const PhosphorFonts=getFonts(Phosphor);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const breakpoints={pEdgemR2t:\"(min-width: 1280px)\",y3ZczbyTo:\"(max-width: 809px)\",yRbBSMZd5:\"(min-width: 810px) and (max-width: 1279px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-KygBq\";const variantClassNames={pEdgemR2t:\"framer-v-1uvstgg\",y3ZczbyTo:\"framer-v-1h0kpgo\",yRbBSMZd5:\"framer-v-ywblli\"};const valuesByLocaleId={Vm57OLZsm:new LazyValue(()=>import(\"./MiXg3kcTC-0.js\"))};function preloadLocalizedValues(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise){promises.push(promise);}}locale=locale.fallback;}if(promises.length>0){return Promise.all(promises);}}function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value){return value;}}locale=locale.fallback;}}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition1={damping:80,delay:2.1,mass:4,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={damping:30,delay:0,mass:1,stiffness:300,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition3={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={delay:0,duration:0,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition5={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition5};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 metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"pEdgemR2t\",Phone:\"y3ZczbyTo\",Tablet:\"yRbBSMZd5\"};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:\"pEdgemR2t\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"MiXg3kcTC\",data:Blog,type:\"Collection\"},select:[{collection:\"MiXg3kcTC\",name:\"K_LedhCd7\",type:\"Identifier\"},{collection:\"MiXg3kcTC\",name:\"TUb171g5k\",type:\"Identifier\"},{collection:\"MiXg3kcTC\",name:\"lywD3LpDE\",type:\"Identifier\"},{collection:\"MiXg3kcTC\",name:\"RwjuDVkDB\",type:\"Identifier\"},{collection:\"MiXg3kcTC\",name:\"iq2hrZ5Qh\",type:\"Identifier\"},{collection:\"MiXg3kcTC\",name:\"N_MXHlLDy\",type:\"Identifier\"},{collection:\"MiXg3kcTC\",name:\"cn8BlDOCB\",type:\"Identifier\"},{collection:\"MiXg3kcTC\",name:\"it1GbyzgH\",type:\"Identifier\"},{collection:\"MiXg3kcTC\",name:\"wVFBV5hVc\",type:\"Identifier\"},{collection:\"MiXg3kcTC\",name:\"TSag_ga1u\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"MiXg3kcTC\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};var _getFromCurrentRouteData,_getFromCurrentRouteData1,_getFromCurrentRouteData2,_getFromCurrentRouteData3,_getFromCurrentRouteData4,_getFromCurrentRouteData5,_getFromCurrentRouteData6;const{style,className,layoutId,variant,iq2hrZ5Qh=(_getFromCurrentRouteData=getFromCurrentRouteData(\"iq2hrZ5Qh\"))!==null&&_getFromCurrentRouteData!==void 0?_getFromCurrentRouteData:\"\",K_LedhCd7=(_getFromCurrentRouteData1=getFromCurrentRouteData(\"K_LedhCd7\"))!==null&&_getFromCurrentRouteData1!==void 0?_getFromCurrentRouteData1:\"\",cn8BlDOCB=getFromCurrentRouteData(\"cn8BlDOCB\"),it1GbyzgH=(_getFromCurrentRouteData2=getFromCurrentRouteData(\"it1GbyzgH\"))!==null&&_getFromCurrentRouteData2!==void 0?_getFromCurrentRouteData2:\"\",lywD3LpDE=getFromCurrentRouteData(\"lywD3LpDE\"),N_MXHlLDy=(_getFromCurrentRouteData3=getFromCurrentRouteData(\"N_MXHlLDy\"))!==null&&_getFromCurrentRouteData3!==void 0?_getFromCurrentRouteData3:\"\",RwjuDVkDB=getFromCurrentRouteData(\"RwjuDVkDB\"),TUb171g5k=(_getFromCurrentRouteData4=getFromCurrentRouteData(\"TUb171g5k\"))!==null&&_getFromCurrentRouteData4!==void 0?_getFromCurrentRouteData4:\"\",wVFBV5hVc=(_getFromCurrentRouteData5=getFromCurrentRouteData(\"wVFBV5hVc\"))!==null&&_getFromCurrentRouteData5!==void 0?_getFromCurrentRouteData5:\"\",TSag_ga1u=(_getFromCurrentRouteData6=getFromCurrentRouteData(\"TSag_ga1u\"))!==null&&_getFromCurrentRouteData6!==void 0?_getFromCurrentRouteData6:\"\",RwjuDVkDBQ1RO39al1,iq2hrZ5QhQ1RO39al1,K_LedhCd7Q1RO39al1,lywD3LpDEQ1RO39al1,N_MXHlLDyQ1RO39al1,idQ1RO39al1,TUb171g5kQ1RO39al1,RwjuDVkDBMYlxxGP52,iq2hrZ5QhMYlxxGP52,K_LedhCd7MYlxxGP52,lywD3LpDEMYlxxGP52,N_MXHlLDyMYlxxGP52,idMYlxxGP52,TUb171g5kMYlxxGP52,RwjuDVkDBZA0sHidTl,iq2hrZ5QhZA0sHidTl,K_LedhCd7ZA0sHidTl,lywD3LpDEZA0sHidTl,N_MXHlLDyZA0sHidTl,idZA0sHidTl,TUb171g5kZA0sHidTl,RwjuDVkDBWsozf4gR4,iq2hrZ5QhWsozf4gR4,K_LedhCd7Wsozf4gR4,lywD3LpDEWsozf4gR4,N_MXHlLDyWsozf4gR4,idWsozf4gR4,TUb171g5kWsozf4gR4,RwjuDVkDBpmHOZfUDv,iq2hrZ5QhpmHOZfUDv,K_LedhCd7pmHOZfUDv,lywD3LpDEpmHOZfUDv,N_MXHlLDypmHOZfUDv,idpmHOZfUDv,TUb171g5kpmHOZfUDv,RwjuDVkDBQzCH298ud,iq2hrZ5QhQzCH298ud,K_LedhCd7QzCH298ud,lywD3LpDEQzCH298ud,N_MXHlLDyQzCH298ud,idQzCH298ud,TUb171g5kQzCH298ud,RwjuDVkDBLI7Dqfsve,iq2hrZ5QhLI7Dqfsve,K_LedhCd7LI7Dqfsve,lywD3LpDELI7Dqfsve,N_MXHlLDyLI7Dqfsve,idLI7Dqfsve,TUb171g5kLI7Dqfsve,RwjuDVkDBkBhC0CaPW,iq2hrZ5QhkBhC0CaPW,K_LedhCd7kBhC0CaPW,lywD3LpDEkBhC0CaPW,N_MXHlLDykBhC0CaPW,idkBhC0CaPW,TUb171g5kkBhC0CaPW,RwjuDVkDBhhgLwkHfi,iq2hrZ5QhhhgLwkHfi,K_LedhCd7hhgLwkHfi,lywD3LpDEhhgLwkHfi,N_MXHlLDyhhgLwkHfi,idhhgLwkHfi,TUb171g5khhgLwkHfi,RwjuDVkDBFH9cAYVRO,iq2hrZ5QhFH9cAYVRO,K_LedhCd7FH9cAYVRO,lywD3LpDEFH9cAYVRO,N_MXHlLDyFH9cAYVRO,idFH9cAYVRO,TUb171g5kFH9cAYVRO,RwjuDVkDBWfJNxcBMb,iq2hrZ5QhWfJNxcBMb,K_LedhCd7WfJNxcBMb,lywD3LpDEWfJNxcBMb,N_MXHlLDyWfJNxcBMb,idWfJNxcBMb,TUb171g5kWfJNxcBMb,RwjuDVkDBJoGU5bf3T,iq2hrZ5QhJoGU5bf3T,K_LedhCd7JoGU5bf3T,lywD3LpDEJoGU5bf3T,N_MXHlLDyJoGU5bf3T,idJoGU5bf3T,TUb171g5kJoGU5bf3T,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-KygBq`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-KygBq`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTapwelu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wvko5h=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.hide();});const preloadPromise=preloadLocalizedValues(activeLocale);if(preloadPromise)throw preloadPromise;const ref1=React.useRef(null);const activeLocaleCode=useLocaleCode();const textContent=toDateString(lywD3LpDE,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"y3ZczbyTo\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"y3ZczbyTo\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];useCustomCursors({});var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3;return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"pEdgemR2t\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1uvstgg\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m6xatk\",\"data-framer-name\":\"menu\",name:\"menu\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:479,y:36,children:/*#__PURE__*/_jsx(Container,{className:\"framer-onqxtp-container\",children:/*#__PURE__*/_jsx(MenuForBlogES,{height:\"100%\",id:\"kWFoINJ7m\",layoutId:\"kWFoINJ7m\",variant:\"ITiYQyrX0\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-29q4tm\",\"data-framer-name\":\"gray-bg\",name:\"gray-bg\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cp94ur\",\"data-framer-name\":\"leaf\",name:\"leaf\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-g1gd3d\",\"data-framer-name\":\"leaf\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:563,intrinsicWidth:706,name:\"leaf\",svg:'<svg width=\"706\" height=\"563\" viewBox=\"-3 -3 706 563\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M484.484 327.962C551.449 344.12 692.102 251.325 700 142.004C700 142.004 509.308 148.766 484.484 327.962ZM484.484 327.962C531.875 258.087 636.135 189.114 655.994 183.704M484.484 327.962C471.221 366.332 407.776 399.38 334.413 424.994M334.413 424.994C351.201 384.778 378.184 308.941 387.673 247.944M334.413 424.994C307.45 434.408 279.147 442.818 251.503 450.119M388.574 183.704C371.648 112.702 488.997 164.545 435.965 0C384.813 33.8105 303.721 117.886 388.574 183.704ZM388.574 183.704C380.299 160.788 370.971 105.489 399.857 67.6211M388.574 183.704C392.521 200.262 391.578 222.847 387.673 247.944M387.673 247.944C411.92 233.599 451.277 208.284 484.484 182.296M540.902 125.099C539.773 152.147 510.412 162.006 484.484 182.296M484.484 182.296C476.962 129.42 586.036 27.0484 564.597 5.63509C612.44 138.172 531.123 178.633 484.484 182.296ZM251.503 450.119C270.456 458.895 297.086 470.196 324.846 480.256M251.503 450.119C215.751 449.061 133.41 453.607 90.0628 480.256M447.837 500.396C428.958 512.588 375.053 498.451 324.846 480.256M324.846 480.256C364.339 453.461 459.121 404.894 522.309 424.994C601.294 450.119 595.652 492.507 630.631 500.396C561.709 511.724 355.93 630.277 324.846 486C324.462 484.345 323.924 480.879 324.846 480.256ZM90.0628 480.256C35.8787 513.568 26.3598 528.2 0 528.2M90.0628 480.256L107.636 406.026M107.636 406.026C123.257 388.225 153.326 342.964 148.64 304.337C143.271 288.486 135.753 252.395 148.64 234.837M107.636 406.026C175.976 369.675 222.594 318.968 197.699 254.589C172.803 190.211 197.699 129.197 197.699 113.395L188.5 117.5C156.527 139.447 95.3347 190.357 90.0628 234.837C83.4728 290.437 125.209 322.626 107.636 406.026Z\" stroke=\"#F5F5F7\" stroke-width=\"5\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7qqqpy\",\"data-framer-name\":\"leaf\",name:\"leaf\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-b94ko4\",\"data-framer-name\":\"leaf\",layout:\"position\",name:\"leaf\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 706 563\"><path d=\"M 218.516 330.962 C 151.551 347.12 10.898 254.325 3 145.004 C 3 145.004 193.692 151.766 218.516 330.962 Z M 218.516 330.962 C 171.125 261.087 66.865 192.114 47.006 186.704 M 218.516 330.962 C 231.779 369.332 295.224 402.38 368.587 427.994 M 368.587 427.994 C 351.799 387.778 324.816 311.941 315.327 250.944 M 368.587 427.994 C 395.55 437.408 423.853 445.818 451.497 453.119 M 314.426 186.704 C 331.352 115.702 214.003 167.545 267.035 3 C 318.187 36.81 399.279 120.886 314.426 186.704 Z M 314.426 186.704 C 322.701 163.788 332.029 108.489 303.143 70.621 M 314.426 186.704 C 310.479 203.262 311.422 225.847 315.327 250.944 M 315.327 250.944 C 291.08 236.599 251.723 211.284 218.516 185.296 M 162.098 128.099 C 163.227 155.147 192.588 165.006 218.516 185.296 M 218.516 185.296 C 226.038 132.42 116.964 30.048 138.403 8.635 C 90.561 141.172 171.877 181.633 218.516 185.296 Z M 451.497 453.119 C 432.544 461.895 405.914 473.196 378.154 483.256 M 451.497 453.119 C 487.249 452.061 569.59 456.607 612.937 483.256 M 255.163 503.396 C 274.042 515.588 327.947 501.451 378.154 483.256 M 378.154 483.256 C 338.661 456.461 243.879 407.894 180.691 427.994 C 101.706 453.119 107.348 495.507 72.369 503.396 C 141.291 514.724 347.07 633.277 378.154 489 C 378.538 487.345 379.076 483.879 378.154 483.256 Z M 612.937 483.256 C 667.121 516.568 676.64 531.2 703 531.2 M 612.937 483.256 L 595.364 409.026 M 595.364 409.026 C 579.743 391.225 549.674 345.964 554.36 307.337 C 559.729 291.486 567.247 255.395 554.36 237.837 M 595.364 409.026 C 527.024 372.675 480.406 321.968 505.301 257.589 C 530.197 193.211 505.301 132.197 505.301 116.395 L 514.5 120.5 C 546.473 142.447 607.665 193.357 612.937 237.837 C 619.527 293.437 577.791 325.626 595.364 409.026 Z\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(245,245,247)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:9797348751,withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r6mgu5\",\"data-framer-name\":\"blog-post\",name:\"blog-post\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11jkb45\",\"data-framer-name\":\"container\",name:\"container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ub95dr\",\"data-framer-name\":\"txt-link\",name:\"txt-link\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"H1kwXKb1z\"},nodeId:\"LGllYDiw9\",children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-p2vadq framer-1klcubh\",\"data-framer-name\":\"link\",name:\"link\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ty91o5\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-t0z9nn\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,name:\"Frame\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13 5.25L6.25 12L13 18.75\" stroke=\"#DA5F6F\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wrxigh\",\"data-framer-name\":\"texts\",name:\"texts\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qdi2io\",\"data-styles-preset\":\"SGgpQjqLk\",style:{\"--framer-text-color\":\"var(--token-2ad29e09-2004-409e-b364-33879425f6ce, rgb(218, 95, 111))\"},children:\"Blog\"})}),className:\"framer-9592iy\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"Inter\"],name:\"Almost before we kne\",verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rdhp4s\",\"data-framer-name\":\"top-txt\",name:\"top-txt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xfglgg\",\"data-framer-name\":\"texts\",name:\"texts\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kdfewe\",\"data-styles-preset\":\"gdkUHc_1r\",style:{\"--framer-text-color\":\"var(--token-052eed68-9922-4146-aee5-80442c44559a, rgb(237, 169, 180))\"},children:\"Lifestyle\"})}),className:\"framer-1b3izv\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],name:\"Category\",text:iq2hrZ5Qh,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ffcgil\",\"data-framer-name\":\"headlines\",name:\"headlines\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1liw76i\",\"data-styles-preset\":\"lV3YlvMd3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Hispanic Americans Embody America First Values [EN]\"})}),className:\"framer-13ytsny\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:K_LedhCd7,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b4rmlo\",\"data-framer-name\":\"image\",name:\"image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s9kln6\",\"data-framer-name\":\"author-date-time\",name:\"author-date-time\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15sv093\",\"data-framer-name\":\"author+date\",name:\"author+date\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zn4ajg\",\"data-framer-name\":\"author\",name:\"author\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y3ZczbyTo:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(372),sizes:\"32px\",...toResponsiveImage(cn8BlDOCB)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(436),sizes:\"32px\",...toResponsiveImage(cn8BlDOCB)},className:\"framer-tkhs5d\",\"data-framer-name\":\"Banner\",name:\"Banner\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gilw74\",\"data-framer-name\":\"texts\",name:\"texts\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-j8yksx\",\"data-styles-preset\":\"jf1Jg1kzZ\",style:{\"--framer-text-color\":\"var(--token-2eb07466-8e12-4b9d-b469-66ccd1d98b7d, rgb(127, 128, 128))\"},children:\"Ashley B. Cash\"})}),className:\"framer-1rf5xot\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"Inter\"],name:\"Almost before we kne\",text:it1GbyzgH,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o7pdzo\",\"data-framer-name\":\"texts\",name:\"texts\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-j8yksx\",\"data-styles-preset\":\"jf1Jg1kzZ\",style:{\"--framer-text-color\":\"var(--token-2eb07466-8e12-4b9d-b469-66ccd1d98b7d, rgb(127, 128, 128))\"},children:\"Sep 25, 2024\"})}),className:\"framer-qii42o\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],name:\"Date\",text:textContent,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16h5oc0\",\"data-framer-name\":\"texts\",name:\"texts\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-j8yksx\",\"data-styles-preset\":\"jf1Jg1kzZ\",style:{\"--framer-text-color\":\"var(--token-2eb07466-8e12-4b9d-b469-66ccd1d98b7d, rgb(127, 128, 128))\"},children:\"5 min read\"})}),className:\"framer-eqi0u0\",\"data-framer-name\":\"Time\",fonts:[\"Inter\"],name:\"Time\",text:N_MXHlLDy,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y3ZczbyTo:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(468),sizes:\"calc(min(100vw, 1180px) - 60px)\",...toResponsiveImage(RwjuDVkDB)}},yRbBSMZd5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(492),sizes:\"calc(min(100vw, 1180px) - 120px)\",...toResponsiveImage(RwjuDVkDB)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(492),sizes:\"calc(min(100vw, 1180px) - 64px)\",...toResponsiveImage(RwjuDVkDB)},className:\"framer-rbqqx4\",\"data-framer-name\":\"Banner\",name:\"Banner\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-omce4g\",\"data-framer-name\":\"copy+socialMedia\",name:\"copy+socialMedia\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{TUb171g5k},webPageId:\"MiXg3kcTC\"},implicitPathVariables:undefined},{href:{pathVariables:{TUb171g5k},webPageId:\"MiXg3kcTC\"},implicitPathVariables:undefined},{href:{pathVariables:{TUb171g5k},webPageId:\"MiXg3kcTC\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y3ZczbyTo:{y:756},yRbBSMZd5:{y:940}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:1268,children:/*#__PURE__*/_jsx(Container,{className:\"framer-focrng-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y3ZczbyTo:{ryCon9jsT:resolvedLinks[2]},yRbBSMZd5:{ryCon9jsT:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonClipboard,{height:\"100%\",id:\"RPLpM7qQj\",layoutId:\"RPLpM7qQj\",ryCon9jsT:resolvedLinks[0],variant:\"ykLlM3Nep\",width:\"100%\",XLA8dU_7F:prefix(TUb171g5k,(_getLocalizedValue=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"https://haylie.framer.website/blog/\")})})})})});}}),/*#__PURE__*/_jsx(Link,{href:\"linkedin.com\",nodeId:\"CkRt_Axgc\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-z4ou02 framer-1klcubh\",\"data-border\":true,\"data-framer-name\":\"linkedin\",name:\"linkedin\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-tt20fz\",\"data-framer-name\":\"linkedin\",layout:\"position\",name:\"linkedin\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 20.82 1.5 L 3.294 1.5 C 2.337 1.5 1.5 2.19 1.5 3.135 L 1.5 20.701 C 1.5 21.652 2.337 22.5 3.294 22.5 L 20.815 22.5 C 21.778 22.5 22.5 21.646 22.5 20.7 L 22.5 3.136 C 22.506 2.19 21.778 1.501 20.82 1.501 Z M 8.01 19.005 L 5 19.005 L 5 9.65 L 8.01 9.65 L 8.01 19.004 Z M 6.61 8.228 L 6.588 8.228 C 5.625 8.228 5.002 7.512 5.002 6.615 C 5.002 5.7 5.642 5 6.626 5 C 7.61 5 8.213 5.695 8.234 6.614 C 8.234 7.511 7.61 8.227 6.609 8.227 Z M 19.005 19.005 L 15.996 19.005 L 15.996 13.89 C 15.996 12.665 15.558 11.827 14.47 11.827 C 13.638 11.827 13.146 12.39 12.927 12.938 C 12.845 13.135 12.823 13.403 12.823 13.677 L 12.823 19.005 L 9.815 19.005 L 9.815 9.65 L 12.823 9.65 L 12.823 10.951 C 13.261 10.328 13.945 9.431 15.536 9.431 C 17.511 9.431 19.005 10.732 19.005 13.539 L 19.005 19.004 Z\" fill=\"rgba(42, 43, 43, 0.6)\"></path></svg>',svgContentId:10775290104,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"instagram.com\",nodeId:\"Sx4T8JaB2\",openInNewTab:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-hosr6w framer-1klcubh\",\"data-border\":true,\"data-framer-name\":\"ig\",name:\"ig\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4opwcc\",\"data-framer-name\":\"Social Media\",layout:\"position\",name:\"Social Media\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(2.226 2)\" id=\"ss12180768949_1\"><path d=\"M 10 13.2 C 11.767 13.2 13.2 11.767 13.2 10 C 13.2 8.232 11.767 6.8 10 6.8 C 8.233 6.8 6.8 8.232 6.8 10 C 6.8 11.767 8.233 13.2 10 13.2 Z\" fill=\"rgba(42, 43, 43, 0.6)\"></path><path d=\"M 14.4 0 L 5.6 0 C 4.115 0 2.69 0.59 1.64 1.64 C 0.59 2.69 0 4.115 0 5.6 L 0 14.4 C 0 15.885 0.59 17.31 1.64 18.36 C 2.69 19.41 4.115 20 5.6 20 L 14.4 20 C 15.885 20 17.31 19.41 18.36 18.36 C 19.41 17.31 20 15.885 20 14.4 L 20 5.6 C 20 4.115 19.41 2.69 18.36 1.64 C 17.31 0.59 15.885 0 14.4 0 Z M 10 14.8 C 9.051 14.8 8.123 14.518 7.333 13.991 C 6.544 13.464 5.929 12.714 5.565 11.837 C 5.202 10.96 5.107 9.995 5.292 9.064 C 5.477 8.132 5.935 7.277 6.606 6.606 C 7.277 5.935 8.132 5.477 9.064 5.292 C 9.995 5.107 10.96 5.202 11.837 5.565 C 12.714 5.929 13.464 6.544 13.991 7.333 C 14.518 8.123 14.8 9.051 14.8 10 C 14.8 11.273 14.294 12.494 13.394 13.394 C 12.494 14.294 11.273 14.8 10 14.8 Z M 15.2 6 C 14.963 6 14.731 5.93 14.533 5.798 C 14.336 5.666 14.182 5.478 14.091 5.259 C 14.001 5.04 13.977 4.799 14.023 4.566 C 14.069 4.333 14.184 4.119 14.351 3.951 C 14.519 3.784 14.733 3.669 14.966 3.623 C 15.199 3.577 15.44 3.601 15.659 3.691 C 15.878 3.782 16.066 3.936 16.198 4.133 C 16.33 4.331 16.4 4.563 16.4 4.8 C 16.4 5.118 16.274 5.423 16.049 5.649 C 15.823 5.874 15.518 6 15.2 6 Z\" fill=\"rgba(42, 43, 43, 0.6)\"></path></g></svg>',svgContentId:12180768949,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"twitter.com\",nodeId:\"liLljrkua\",openInNewTab:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-e1inqq framer-1klcubh\",\"data-border\":true,\"data-framer-name\":\"twitter\",name:\"twitter\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xie9at\",\"data-framer-name\":\"twitter\",layout:\"position\",name:\"twitter\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 23.25 5.133 C 22.406 5.5 21.513 5.741 20.6 5.85 C 21.56 5.288 22.282 4.395 22.63 3.338 C 21.722 3.868 20.73 4.241 19.698 4.439 C 18.819 3.518 17.6 2.998 16.327 3 C 13.777 3 11.712 5.034 11.712 7.542 C 11.71 7.891 11.75 8.239 11.831 8.578 C 8.132 8.405 4.678 6.681 2.315 3.83 C 1.905 4.521 1.689 5.31 1.688 6.113 C 1.688 7.687 2.509 9.08 3.75 9.895 C 3.015 9.878 2.294 9.683 1.65 9.328 L 1.65 9.384 C 1.65 11.588 3.245 13.42 5.354 13.838 C 4.957 13.943 4.548 13.997 4.138 13.997 C 3.847 13.997 3.556 13.969 3.27 13.912 C 3.857 15.717 5.564 17.03 7.585 17.067 C 5.641 18.566 3.187 19.241 0.75 18.947 C 2.86 20.294 5.313 21.007 7.816 21 C 16.317 21 20.962 14.077 20.962 8.072 C 20.962 7.875 20.956 7.678 20.947 7.486 C 21.848 6.845 22.628 6.048 23.25 5.133 Z\" fill=\"rgba(42, 43, 43, 0.6)\"></path></svg>',svgContentId:12883948863,withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8r95ut\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:wVFBV5hVc,className:\"framer-11bw9mc\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],name:\"Content\",stylesPresetsClassNames:{a:\"framer-styles-preset-wuc14h\",h1:\"framer-styles-preset-1liw76i\",h2:\"framer-styles-preset-1h6znvm\",h3:\"framer-styles-preset-1lr1kj\",h4:\"framer-styles-preset-129ykke\",h5:\"framer-styles-preset-3m37wu\",h6:\"framer-styles-preset-10hgsho\",p:\"framer-styles-preset-4gz4ug\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12nsyb7\",\"data-framer-name\":\"texts\",name:\"texts\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue1=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(218, 95, 111)\"},children:\"/ / / / / / / /\"})}),className:\"framer-tj31hh\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"FS;General Sans-semibold\"],name:\"Almost before we kne\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:TSag_ga1u,className:\"framer-cs2as1\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],name:\"Content\",stylesPresetsClassNames:{a:\"framer-styles-preset-wuc14h\",h1:\"framer-styles-preset-1liw76i\",h2:\"framer-styles-preset-1h6znvm\",h3:\"framer-styles-preset-1lr1kj\",h4:\"framer-styles-preset-129ykke\",h5:\"framer-styles-preset-3m37wu\",h6:\"framer-styles-preset-10hgsho\",p:\"framer-styles-preset-4gz4ug\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11ebzt9\",\"data-framer-name\":\"leaf\",name:\"leaf\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1tiufz6\",\"data-framer-name\":\"leaf\",layout:\"position\",name:\"leaf\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 706 563\"><path d=\"M 487.484 330.962 C 554.449 347.12 695.102 254.325 703 145.004 C 703 145.004 512.308 151.766 487.484 330.962 Z M 487.484 330.962 C 534.875 261.087 639.135 192.114 658.994 186.704 M 487.484 330.962 C 474.221 369.332 410.776 402.38 337.413 427.994 M 337.413 427.994 C 354.201 387.778 381.184 311.941 390.673 250.944 M 337.413 427.994 C 310.45 437.408 282.147 445.818 254.503 453.119 M 391.574 186.704 C 374.648 115.702 491.997 167.545 438.965 3 C 387.813 36.81 306.721 120.886 391.574 186.704 Z M 391.574 186.704 C 383.299 163.788 373.971 108.489 402.857 70.621 M 391.574 186.704 C 395.521 203.262 394.578 225.847 390.673 250.944 M 390.673 250.944 C 414.92 236.599 454.277 211.284 487.484 185.296 M 543.902 128.099 C 542.773 155.147 513.412 165.006 487.484 185.296 M 487.484 185.296 C 479.962 132.42 589.036 30.048 567.597 8.635 C 615.44 141.172 534.123 181.633 487.484 185.296 Z M 254.503 453.119 C 273.456 461.895 300.086 473.196 327.846 483.256 M 254.503 453.119 C 218.751 452.061 136.41 456.607 93.063 483.256 M 450.837 503.396 C 431.958 515.588 378.053 501.451 327.846 483.256 M 327.846 483.256 C 367.339 456.461 462.121 407.894 525.309 427.994 C 604.294 453.119 598.652 495.507 633.631 503.396 C 564.709 514.724 358.93 633.277 327.846 489 C 327.462 487.345 326.924 483.879 327.846 483.256 Z M 93.063 483.256 C 38.879 516.568 29.36 531.2 3 531.2 M 93.063 483.256 L 110.636 409.026 M 110.636 409.026 C 126.257 391.225 156.326 345.964 151.64 307.337 C 146.271 291.486 138.753 255.395 151.64 237.837 M 110.636 409.026 C 178.976 372.675 225.594 321.968 200.699 257.589 C 175.803 193.211 200.699 132.197 200.699 116.395 L 191.5 120.5 C 159.527 142.447 98.335 193.357 93.063 237.837 C 86.473 293.437 128.209 325.626 110.636 409.026 Z\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(245,245,247)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:10635712177,withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4aypaa\",\"data-framer-name\":\"latest\",name:\"latest\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15ltob\",\"data-framer-name\":\"container\",name:\"container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tri4ym\",\"data-framer-name\":\"shapes\",name:\"shapes\",style:{rotate:10},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s18jv\",\"data-framer-name\":\"bold-shape1\",name:\"bold-shape1\",style:{rotate:143}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-744oj9\",\"data-framer-name\":\"bold-shape1\",name:\"bold-shape1\",style:{rotate:143}})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cuw1fo\",\"data-framer-name\":\"left\",name:\"left\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n7f0er\",\"data-framer-name\":\"txt\",name:\"txt\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jprje3\",\"data-framer-name\":\"head-txt\",name:\"head-txt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uuks14\",\"data-framer-name\":\"texts\",name:\"texts\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue2=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kdfewe\",\"data-styles-preset\":\"gdkUHc_1r\",style:{\"--framer-text-color\":\"var(--token-052eed68-9922-4146-aee5-80442c44559a, rgb(237, 169, 180))\"},children:\"Latest\"})}),className:\"framer-1ja0iql\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"Inter\"],name:\"Almost before we kne\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qajif6\",\"data-framer-name\":\"heading\",name:\"heading\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rtj8me\",\"data-framer-name\":\"headlines\",name:\"headlines\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue3=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1lr1kj\",\"data-styles-preset\":\"Zeunb14kr\",style:{\"--framer-text-alignment\":\"center\"},children:\"From the Blog\"})}),className:\"framer-jzcw9s\",\"data-framer-name\":\"Almost before\u2026\",fonts:[\"Inter\"],name:\"Almost before\u2026\",verticalAlignment:\"top\",withExternalLayout:true})})})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cel6ln-container hidden-1h0kpgo\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(42, 43, 43, 0.6)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:64,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:56,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:56,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:409,height:\"100%\",id:\"yDrqbzUWp\",intervalControl:1.5,itemAmount:6,layoutId:\"yDrqbzUWp\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"var(--token-217db8f8-1054-47de-ab16-d7395cb29a86, rgb(42, 43, 43))\",dotsGap:10,dotsInset:10,dotSize:12,dotsOpacity:.5,dotsPadding:1,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13jkwo7\",\"data-framer-name\":\"Desktop1\",name:\"Desktop1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Q1RO39al1\",data:Blog,type:\"Collection\"},select:[{collection:\"Q1RO39al1\",name:\"RwjuDVkDB\",type:\"Identifier\"},{collection:\"Q1RO39al1\",name:\"iq2hrZ5Qh\",type:\"Identifier\"},{collection:\"Q1RO39al1\",name:\"K_LedhCd7\",type:\"Identifier\"},{collection:\"Q1RO39al1\",name:\"lywD3LpDE\",type:\"Identifier\"},{collection:\"Q1RO39al1\",name:\"N_MXHlLDy\",type:\"Identifier\"},{collection:\"Q1RO39al1\",name:\"id\",type:\"Identifier\"},{collection:\"Q1RO39al1\",name:\"TUb171g5k\",type:\"Identifier\"}],where:{left:{collection:\"Q1RO39al1\",name:\"TryHN7ao8\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"1\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"RwjuDVkDB\":RwjuDVkDBQ1RO39al1,\"iq2hrZ5Qh\":iq2hrZ5QhQ1RO39al1,\"K_LedhCd7\":K_LedhCd7Q1RO39al1,\"lywD3LpDE\":lywD3LpDEQ1RO39al1,\"N_MXHlLDy\":N_MXHlLDyQ1RO39al1,\"id\":idQ1RO39al1,\"TUb171g5k\":TUb171g5kQ1RO39al1},i)=>{iq2hrZ5QhQ1RO39al1!==null&&iq2hrZ5QhQ1RO39al1!==void 0?iq2hrZ5QhQ1RO39al1:iq2hrZ5QhQ1RO39al1=\"\";K_LedhCd7Q1RO39al1!==null&&K_LedhCd7Q1RO39al1!==void 0?K_LedhCd7Q1RO39al1:K_LedhCd7Q1RO39al1=\"\";N_MXHlLDyQ1RO39al1!==null&&N_MXHlLDyQ1RO39al1!==void 0?N_MXHlLDyQ1RO39al1:N_MXHlLDyQ1RO39al1=\"\";TUb171g5kQ1RO39al1!==null&&TUb171g5kQ1RO39al1!==void 0?TUb171g5kQ1RO39al1:TUb171g5kQ1RO39al1=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Q1RO39al1-${idQ1RO39al1}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TUb171g5k:TUb171g5kQ1RO39al1},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9vfuzn-container\",children:/*#__PURE__*/_jsx(BlogCard,{category:iq2hrZ5QhQ1RO39al1,date:toDateString(lywD3LpDEQ1RO39al1,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),height:\"100%\",id:\"emhZVUUWb\",image2:toResponsiveImage(RwjuDVkDBQ1RO39al1),layoutId:\"emhZVUUWb\",style:{height:\"100%\",width:\"100%\"},time:N_MXHlLDyQ1RO39al1,title:K_LedhCd7Q1RO39al1,variant:\"jduOEZ35b\",width:\"100%\"})})})})},idQ1RO39al1);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-193d6tj\",\"data-framer-name\":\"Desktop2\",name:\"Desktop2\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"MYlxxGP52\",data:Blog,type:\"Collection\"},select:[{collection:\"MYlxxGP52\",name:\"RwjuDVkDB\",type:\"Identifier\"},{collection:\"MYlxxGP52\",name:\"iq2hrZ5Qh\",type:\"Identifier\"},{collection:\"MYlxxGP52\",name:\"K_LedhCd7\",type:\"Identifier\"},{collection:\"MYlxxGP52\",name:\"lywD3LpDE\",type:\"Identifier\"},{collection:\"MYlxxGP52\",name:\"N_MXHlLDy\",type:\"Identifier\"},{collection:\"MYlxxGP52\",name:\"id\",type:\"Identifier\"},{collection:\"MYlxxGP52\",name:\"TUb171g5k\",type:\"Identifier\"}],where:{left:{collection:\"MYlxxGP52\",name:\"TryHN7ao8\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"2\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"RwjuDVkDB\":RwjuDVkDBMYlxxGP52,\"iq2hrZ5Qh\":iq2hrZ5QhMYlxxGP52,\"K_LedhCd7\":K_LedhCd7MYlxxGP52,\"lywD3LpDE\":lywD3LpDEMYlxxGP52,\"N_MXHlLDy\":N_MXHlLDyMYlxxGP52,\"id\":idMYlxxGP52,\"TUb171g5k\":TUb171g5kMYlxxGP52},i)=>{iq2hrZ5QhMYlxxGP52!==null&&iq2hrZ5QhMYlxxGP52!==void 0?iq2hrZ5QhMYlxxGP52:iq2hrZ5QhMYlxxGP52=\"\";K_LedhCd7MYlxxGP52!==null&&K_LedhCd7MYlxxGP52!==void 0?K_LedhCd7MYlxxGP52:K_LedhCd7MYlxxGP52=\"\";N_MXHlLDyMYlxxGP52!==null&&N_MXHlLDyMYlxxGP52!==void 0?N_MXHlLDyMYlxxGP52:N_MXHlLDyMYlxxGP52=\"\";TUb171g5kMYlxxGP52!==null&&TUb171g5kMYlxxGP52!==void 0?TUb171g5kMYlxxGP52:TUb171g5kMYlxxGP52=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`MYlxxGP52-${idMYlxxGP52}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TUb171g5k:TUb171g5kMYlxxGP52},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-861kne-container\",children:/*#__PURE__*/_jsx(BlogCard,{category:iq2hrZ5QhMYlxxGP52,date:toDateString(lywD3LpDEMYlxxGP52,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),height:\"100%\",id:\"cZ8QSlWRP\",image2:toResponsiveImage(RwjuDVkDBMYlxxGP52),layoutId:\"cZ8QSlWRP\",style:{height:\"100%\",width:\"100%\"},time:N_MXHlLDyMYlxxGP52,title:K_LedhCd7MYlxxGP52,variant:\"jduOEZ35b\",width:\"100%\"})})})})},idMYlxxGP52);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-k4f3ek\",\"data-framer-name\":\"Desktop3\",name:\"Desktop3\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ZA0sHidTl\",data:Blog,type:\"Collection\"},select:[{collection:\"ZA0sHidTl\",name:\"RwjuDVkDB\",type:\"Identifier\"},{collection:\"ZA0sHidTl\",name:\"iq2hrZ5Qh\",type:\"Identifier\"},{collection:\"ZA0sHidTl\",name:\"K_LedhCd7\",type:\"Identifier\"},{collection:\"ZA0sHidTl\",name:\"lywD3LpDE\",type:\"Identifier\"},{collection:\"ZA0sHidTl\",name:\"N_MXHlLDy\",type:\"Identifier\"},{collection:\"ZA0sHidTl\",name:\"id\",type:\"Identifier\"},{collection:\"ZA0sHidTl\",name:\"TUb171g5k\",type:\"Identifier\"}],where:{left:{collection:\"ZA0sHidTl\",name:\"TryHN7ao8\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"3\"},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2.map(({\"RwjuDVkDB\":RwjuDVkDBZA0sHidTl,\"iq2hrZ5Qh\":iq2hrZ5QhZA0sHidTl,\"K_LedhCd7\":K_LedhCd7ZA0sHidTl,\"lywD3LpDE\":lywD3LpDEZA0sHidTl,\"N_MXHlLDy\":N_MXHlLDyZA0sHidTl,\"id\":idZA0sHidTl,\"TUb171g5k\":TUb171g5kZA0sHidTl},i)=>{iq2hrZ5QhZA0sHidTl!==null&&iq2hrZ5QhZA0sHidTl!==void 0?iq2hrZ5QhZA0sHidTl:iq2hrZ5QhZA0sHidTl=\"\";K_LedhCd7ZA0sHidTl!==null&&K_LedhCd7ZA0sHidTl!==void 0?K_LedhCd7ZA0sHidTl:K_LedhCd7ZA0sHidTl=\"\";N_MXHlLDyZA0sHidTl!==null&&N_MXHlLDyZA0sHidTl!==void 0?N_MXHlLDyZA0sHidTl:N_MXHlLDyZA0sHidTl=\"\";TUb171g5kZA0sHidTl!==null&&TUb171g5kZA0sHidTl!==void 0?TUb171g5kZA0sHidTl:TUb171g5kZA0sHidTl=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ZA0sHidTl-${idZA0sHidTl}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TUb171g5k:TUb171g5kZA0sHidTl},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16ovq6c-container\",children:/*#__PURE__*/_jsx(BlogCard,{category:iq2hrZ5QhZA0sHidTl,date:toDateString(lywD3LpDEZA0sHidTl,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),height:\"100%\",id:\"IRxV487I9\",image2:toResponsiveImage(RwjuDVkDBZA0sHidTl),layoutId:\"IRxV487I9\",style:{height:\"100%\",width:\"100%\"},time:N_MXHlLDyZA0sHidTl,title:K_LedhCd7ZA0sHidTl,variant:\"jduOEZ35b\",width:\"100%\"})})})})},idZA0sHidTl);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1prdx3l\",\"data-framer-name\":\"Desktop5\",name:\"Desktop5\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Wsozf4gR4\",data:Blog,type:\"Collection\"},select:[{collection:\"Wsozf4gR4\",name:\"RwjuDVkDB\",type:\"Identifier\"},{collection:\"Wsozf4gR4\",name:\"iq2hrZ5Qh\",type:\"Identifier\"},{collection:\"Wsozf4gR4\",name:\"K_LedhCd7\",type:\"Identifier\"},{collection:\"Wsozf4gR4\",name:\"lywD3LpDE\",type:\"Identifier\"},{collection:\"Wsozf4gR4\",name:\"N_MXHlLDy\",type:\"Identifier\"},{collection:\"Wsozf4gR4\",name:\"id\",type:\"Identifier\"},{collection:\"Wsozf4gR4\",name:\"TUb171g5k\",type:\"Identifier\"}],where:{left:{collection:\"Wsozf4gR4\",name:\"TryHN7ao8\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"5\"},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3.map(({\"RwjuDVkDB\":RwjuDVkDBWsozf4gR4,\"iq2hrZ5Qh\":iq2hrZ5QhWsozf4gR4,\"K_LedhCd7\":K_LedhCd7Wsozf4gR4,\"lywD3LpDE\":lywD3LpDEWsozf4gR4,\"N_MXHlLDy\":N_MXHlLDyWsozf4gR4,\"id\":idWsozf4gR4,\"TUb171g5k\":TUb171g5kWsozf4gR4},i)=>{iq2hrZ5QhWsozf4gR4!==null&&iq2hrZ5QhWsozf4gR4!==void 0?iq2hrZ5QhWsozf4gR4:iq2hrZ5QhWsozf4gR4=\"\";K_LedhCd7Wsozf4gR4!==null&&K_LedhCd7Wsozf4gR4!==void 0?K_LedhCd7Wsozf4gR4:K_LedhCd7Wsozf4gR4=\"\";N_MXHlLDyWsozf4gR4!==null&&N_MXHlLDyWsozf4gR4!==void 0?N_MXHlLDyWsozf4gR4:N_MXHlLDyWsozf4gR4=\"\";TUb171g5kWsozf4gR4!==null&&TUb171g5kWsozf4gR4!==void 0?TUb171g5kWsozf4gR4:TUb171g5kWsozf4gR4=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Wsozf4gR4-${idWsozf4gR4}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TUb171g5k:TUb171g5kWsozf4gR4},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rlnpo7-container\",children:/*#__PURE__*/_jsx(BlogCard,{category:iq2hrZ5QhWsozf4gR4,date:toDateString(lywD3LpDEWsozf4gR4,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),height:\"100%\",id:\"r2XGtQGLU\",image2:toResponsiveImage(RwjuDVkDBWsozf4gR4),layoutId:\"r2XGtQGLU\",style:{height:\"100%\",width:\"100%\"},time:N_MXHlLDyWsozf4gR4,title:K_LedhCd7Wsozf4gR4,variant:\"jduOEZ35b\",width:\"100%\"})})})})},idWsozf4gR4);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11dwelt\",\"data-framer-name\":\"Dekstop6\",name:\"Dekstop6\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"pmHOZfUDv\",data:Blog,type:\"Collection\"},select:[{collection:\"pmHOZfUDv\",name:\"RwjuDVkDB\",type:\"Identifier\"},{collection:\"pmHOZfUDv\",name:\"iq2hrZ5Qh\",type:\"Identifier\"},{collection:\"pmHOZfUDv\",name:\"K_LedhCd7\",type:\"Identifier\"},{collection:\"pmHOZfUDv\",name:\"lywD3LpDE\",type:\"Identifier\"},{collection:\"pmHOZfUDv\",name:\"N_MXHlLDy\",type:\"Identifier\"},{collection:\"pmHOZfUDv\",name:\"id\",type:\"Identifier\"},{collection:\"pmHOZfUDv\",name:\"TUb171g5k\",type:\"Identifier\"}],where:{left:{collection:\"pmHOZfUDv\",name:\"TryHN7ao8\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"6\"},type:\"BinaryOperation\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4.map(({\"RwjuDVkDB\":RwjuDVkDBpmHOZfUDv,\"iq2hrZ5Qh\":iq2hrZ5QhpmHOZfUDv,\"K_LedhCd7\":K_LedhCd7pmHOZfUDv,\"lywD3LpDE\":lywD3LpDEpmHOZfUDv,\"N_MXHlLDy\":N_MXHlLDypmHOZfUDv,\"id\":idpmHOZfUDv,\"TUb171g5k\":TUb171g5kpmHOZfUDv},i)=>{iq2hrZ5QhpmHOZfUDv!==null&&iq2hrZ5QhpmHOZfUDv!==void 0?iq2hrZ5QhpmHOZfUDv:iq2hrZ5QhpmHOZfUDv=\"\";K_LedhCd7pmHOZfUDv!==null&&K_LedhCd7pmHOZfUDv!==void 0?K_LedhCd7pmHOZfUDv:K_LedhCd7pmHOZfUDv=\"\";N_MXHlLDypmHOZfUDv!==null&&N_MXHlLDypmHOZfUDv!==void 0?N_MXHlLDypmHOZfUDv:N_MXHlLDypmHOZfUDv=\"\";TUb171g5kpmHOZfUDv!==null&&TUb171g5kpmHOZfUDv!==void 0?TUb171g5kpmHOZfUDv:TUb171g5kpmHOZfUDv=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`pmHOZfUDv-${idpmHOZfUDv}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TUb171g5k:TUb171g5kpmHOZfUDv},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6hpbjh-container\",children:/*#__PURE__*/_jsx(BlogCard,{category:iq2hrZ5QhpmHOZfUDv,date:toDateString(lywD3LpDEpmHOZfUDv,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),height:\"100%\",id:\"brNHvZxvy\",image2:toResponsiveImage(RwjuDVkDBpmHOZfUDv),layoutId:\"brNHvZxvy\",style:{height:\"100%\",width:\"100%\"},time:N_MXHlLDypmHOZfUDv,title:K_LedhCd7pmHOZfUDv,variant:\"jduOEZ35b\",width:\"100%\"})})})})},idpmHOZfUDv);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19xjzi8\",\"data-framer-name\":\"Desktop4\",name:\"Desktop4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"QzCH298ud\",data:Blog,type:\"Collection\"},select:[{collection:\"QzCH298ud\",name:\"RwjuDVkDB\",type:\"Identifier\"},{collection:\"QzCH298ud\",name:\"iq2hrZ5Qh\",type:\"Identifier\"},{collection:\"QzCH298ud\",name:\"K_LedhCd7\",type:\"Identifier\"},{collection:\"QzCH298ud\",name:\"lywD3LpDE\",type:\"Identifier\"},{collection:\"QzCH298ud\",name:\"N_MXHlLDy\",type:\"Identifier\"},{collection:\"QzCH298ud\",name:\"id\",type:\"Identifier\"},{collection:\"QzCH298ud\",name:\"TUb171g5k\",type:\"Identifier\"}],where:{left:{collection:\"QzCH298ud\",name:\"TryHN7ao8\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"4\"},type:\"BinaryOperation\"}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5.map(({\"RwjuDVkDB\":RwjuDVkDBQzCH298ud,\"iq2hrZ5Qh\":iq2hrZ5QhQzCH298ud,\"K_LedhCd7\":K_LedhCd7QzCH298ud,\"lywD3LpDE\":lywD3LpDEQzCH298ud,\"N_MXHlLDy\":N_MXHlLDyQzCH298ud,\"id\":idQzCH298ud,\"TUb171g5k\":TUb171g5kQzCH298ud},i)=>{iq2hrZ5QhQzCH298ud!==null&&iq2hrZ5QhQzCH298ud!==void 0?iq2hrZ5QhQzCH298ud:iq2hrZ5QhQzCH298ud=\"\";K_LedhCd7QzCH298ud!==null&&K_LedhCd7QzCH298ud!==void 0?K_LedhCd7QzCH298ud:K_LedhCd7QzCH298ud=\"\";N_MXHlLDyQzCH298ud!==null&&N_MXHlLDyQzCH298ud!==void 0?N_MXHlLDyQzCH298ud:N_MXHlLDyQzCH298ud=\"\";TUb171g5kQzCH298ud!==null&&TUb171g5kQzCH298ud!==void 0?TUb171g5kQzCH298ud:TUb171g5kQzCH298ud=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`QzCH298ud-${idQzCH298ud}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TUb171g5k:TUb171g5kQzCH298ud},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14rp43j-container\",children:/*#__PURE__*/_jsx(BlogCard,{category:iq2hrZ5QhQzCH298ud,date:toDateString(lywD3LpDEQzCH298ud,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),height:\"100%\",id:\"duMiSmkxr\",image2:toResponsiveImage(RwjuDVkDBQzCH298ud),layoutId:\"duMiSmkxr\",style:{height:\"100%\",width:\"100%\"},time:N_MXHlLDyQzCH298ud,title:K_LedhCd7QzCH298ud,variant:\"jduOEZ35b\",width:\"100%\"})})})})},idQzCH298ud);})})})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rpq3i5-container hidden-1uvstgg hidden-ywblli\",\"data-framer-name\":\"slideshow-mobile\",name:\"slideshow-mobile\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:338,height:\"100%\",id:\"tPtto5qKP\",intervalControl:1.5,itemAmount:6,layoutId:\"tPtto5qKP\",name:\"slideshow-mobile\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-kn83mg\",\"data-framer-name\":\"Mobile1\",name:\"Mobile1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"LI7Dqfsve\",data:Blog,type:\"Collection\"},select:[{collection:\"LI7Dqfsve\",name:\"RwjuDVkDB\",type:\"Identifier\"},{collection:\"LI7Dqfsve\",name:\"iq2hrZ5Qh\",type:\"Identifier\"},{collection:\"LI7Dqfsve\",name:\"K_LedhCd7\",type:\"Identifier\"},{collection:\"LI7Dqfsve\",name:\"lywD3LpDE\",type:\"Identifier\"},{collection:\"LI7Dqfsve\",name:\"N_MXHlLDy\",type:\"Identifier\"},{collection:\"LI7Dqfsve\",name:\"id\",type:\"Identifier\"},{collection:\"LI7Dqfsve\",name:\"TUb171g5k\",type:\"Identifier\"}],where:{left:{collection:\"LI7Dqfsve\",name:\"TryHN7ao8\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"1\"},type:\"BinaryOperation\"}},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6.map(({\"RwjuDVkDB\":RwjuDVkDBLI7Dqfsve,\"iq2hrZ5Qh\":iq2hrZ5QhLI7Dqfsve,\"K_LedhCd7\":K_LedhCd7LI7Dqfsve,\"lywD3LpDE\":lywD3LpDELI7Dqfsve,\"N_MXHlLDy\":N_MXHlLDyLI7Dqfsve,\"id\":idLI7Dqfsve,\"TUb171g5k\":TUb171g5kLI7Dqfsve},i)=>{iq2hrZ5QhLI7Dqfsve!==null&&iq2hrZ5QhLI7Dqfsve!==void 0?iq2hrZ5QhLI7Dqfsve:iq2hrZ5QhLI7Dqfsve=\"\";K_LedhCd7LI7Dqfsve!==null&&K_LedhCd7LI7Dqfsve!==void 0?K_LedhCd7LI7Dqfsve:K_LedhCd7LI7Dqfsve=\"\";N_MXHlLDyLI7Dqfsve!==null&&N_MXHlLDyLI7Dqfsve!==void 0?N_MXHlLDyLI7Dqfsve:N_MXHlLDyLI7Dqfsve=\"\";TUb171g5kLI7Dqfsve!==null&&TUb171g5kLI7Dqfsve!==void 0?TUb171g5kLI7Dqfsve:TUb171g5kLI7Dqfsve=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`LI7Dqfsve-${idLI7Dqfsve}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TUb171g5k:TUb171g5kLI7Dqfsve},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gjpahk-container\",children:/*#__PURE__*/_jsx(BlogCard,{category:iq2hrZ5QhLI7Dqfsve,date:toDateString(lywD3LpDELI7Dqfsve,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),height:\"100%\",id:\"QbqEgTpq1\",image2:toResponsiveImage(RwjuDVkDBLI7Dqfsve),layoutId:\"QbqEgTpq1\",style:{height:\"100%\",width:\"100%\"},time:N_MXHlLDyLI7Dqfsve,title:K_LedhCd7LI7Dqfsve,variant:\"oFSvjXRTz\",width:\"100%\"})})})})},idLI7Dqfsve);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b212uf\",\"data-framer-name\":\"Mobile2\",name:\"Mobile2\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"kBhC0CaPW\",data:Blog,type:\"Collection\"},select:[{collection:\"kBhC0CaPW\",name:\"RwjuDVkDB\",type:\"Identifier\"},{collection:\"kBhC0CaPW\",name:\"iq2hrZ5Qh\",type:\"Identifier\"},{collection:\"kBhC0CaPW\",name:\"K_LedhCd7\",type:\"Identifier\"},{collection:\"kBhC0CaPW\",name:\"lywD3LpDE\",type:\"Identifier\"},{collection:\"kBhC0CaPW\",name:\"N_MXHlLDy\",type:\"Identifier\"},{collection:\"kBhC0CaPW\",name:\"id\",type:\"Identifier\"},{collection:\"kBhC0CaPW\",name:\"TUb171g5k\",type:\"Identifier\"}],where:{left:{collection:\"kBhC0CaPW\",name:\"TryHN7ao8\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"2\"},type:\"BinaryOperation\"}},children:(collection7,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection7.map(({\"RwjuDVkDB\":RwjuDVkDBkBhC0CaPW,\"iq2hrZ5Qh\":iq2hrZ5QhkBhC0CaPW,\"K_LedhCd7\":K_LedhCd7kBhC0CaPW,\"lywD3LpDE\":lywD3LpDEkBhC0CaPW,\"N_MXHlLDy\":N_MXHlLDykBhC0CaPW,\"id\":idkBhC0CaPW,\"TUb171g5k\":TUb171g5kkBhC0CaPW},i)=>{iq2hrZ5QhkBhC0CaPW!==null&&iq2hrZ5QhkBhC0CaPW!==void 0?iq2hrZ5QhkBhC0CaPW:iq2hrZ5QhkBhC0CaPW=\"\";K_LedhCd7kBhC0CaPW!==null&&K_LedhCd7kBhC0CaPW!==void 0?K_LedhCd7kBhC0CaPW:K_LedhCd7kBhC0CaPW=\"\";N_MXHlLDykBhC0CaPW!==null&&N_MXHlLDykBhC0CaPW!==void 0?N_MXHlLDykBhC0CaPW:N_MXHlLDykBhC0CaPW=\"\";TUb171g5kkBhC0CaPW!==null&&TUb171g5kkBhC0CaPW!==void 0?TUb171g5kkBhC0CaPW:TUb171g5kkBhC0CaPW=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`kBhC0CaPW-${idkBhC0CaPW}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TUb171g5k:TUb171g5kkBhC0CaPW},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kl2aaz-container\",children:/*#__PURE__*/_jsx(BlogCard,{category:iq2hrZ5QhkBhC0CaPW,date:toDateString(lywD3LpDEkBhC0CaPW,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),height:\"100%\",id:\"H3XUEm2O8\",image2:toResponsiveImage(RwjuDVkDBkBhC0CaPW),layoutId:\"H3XUEm2O8\",style:{height:\"100%\",width:\"100%\"},time:N_MXHlLDykBhC0CaPW,title:K_LedhCd7kBhC0CaPW,variant:\"oFSvjXRTz\",width:\"100%\"})})})})},idkBhC0CaPW);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r0fpiv\",\"data-framer-name\":\"Mobile3\",name:\"Mobile3\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"hhgLwkHfi\",data:Blog,type:\"Collection\"},select:[{collection:\"hhgLwkHfi\",name:\"RwjuDVkDB\",type:\"Identifier\"},{collection:\"hhgLwkHfi\",name:\"iq2hrZ5Qh\",type:\"Identifier\"},{collection:\"hhgLwkHfi\",name:\"K_LedhCd7\",type:\"Identifier\"},{collection:\"hhgLwkHfi\",name:\"lywD3LpDE\",type:\"Identifier\"},{collection:\"hhgLwkHfi\",name:\"N_MXHlLDy\",type:\"Identifier\"},{collection:\"hhgLwkHfi\",name:\"id\",type:\"Identifier\"},{collection:\"hhgLwkHfi\",name:\"TUb171g5k\",type:\"Identifier\"}],where:{left:{collection:\"hhgLwkHfi\",name:\"TryHN7ao8\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"3\"},type:\"BinaryOperation\"}},children:(collection8,paginationInfo8,loadMore8)=>/*#__PURE__*/_jsx(_Fragment,{children:collection8.map(({\"RwjuDVkDB\":RwjuDVkDBhhgLwkHfi,\"iq2hrZ5Qh\":iq2hrZ5QhhhgLwkHfi,\"K_LedhCd7\":K_LedhCd7hhgLwkHfi,\"lywD3LpDE\":lywD3LpDEhhgLwkHfi,\"N_MXHlLDy\":N_MXHlLDyhhgLwkHfi,\"id\":idhhgLwkHfi,\"TUb171g5k\":TUb171g5khhgLwkHfi},i)=>{iq2hrZ5QhhhgLwkHfi!==null&&iq2hrZ5QhhhgLwkHfi!==void 0?iq2hrZ5QhhhgLwkHfi:iq2hrZ5QhhhgLwkHfi=\"\";K_LedhCd7hhgLwkHfi!==null&&K_LedhCd7hhgLwkHfi!==void 0?K_LedhCd7hhgLwkHfi:K_LedhCd7hhgLwkHfi=\"\";N_MXHlLDyhhgLwkHfi!==null&&N_MXHlLDyhhgLwkHfi!==void 0?N_MXHlLDyhhgLwkHfi:N_MXHlLDyhhgLwkHfi=\"\";TUb171g5khhgLwkHfi!==null&&TUb171g5khhgLwkHfi!==void 0?TUb171g5khhgLwkHfi:TUb171g5khhgLwkHfi=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`hhgLwkHfi-${idhhgLwkHfi}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TUb171g5k:TUb171g5khhgLwkHfi},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8j5npb-container\",children:/*#__PURE__*/_jsx(BlogCard,{category:iq2hrZ5QhhhgLwkHfi,date:toDateString(lywD3LpDEhhgLwkHfi,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),height:\"100%\",id:\"dF67ETe0i\",image2:toResponsiveImage(RwjuDVkDBhhgLwkHfi),layoutId:\"dF67ETe0i\",style:{height:\"100%\",width:\"100%\"},time:N_MXHlLDyhhgLwkHfi,title:K_LedhCd7hhgLwkHfi,variant:\"oFSvjXRTz\",width:\"100%\"})})})})},idhhgLwkHfi);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-aevhhd\",\"data-framer-name\":\"Mobile4\",name:\"Mobile4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"FH9cAYVRO\",data:Blog,type:\"Collection\"},select:[{collection:\"FH9cAYVRO\",name:\"RwjuDVkDB\",type:\"Identifier\"},{collection:\"FH9cAYVRO\",name:\"iq2hrZ5Qh\",type:\"Identifier\"},{collection:\"FH9cAYVRO\",name:\"K_LedhCd7\",type:\"Identifier\"},{collection:\"FH9cAYVRO\",name:\"lywD3LpDE\",type:\"Identifier\"},{collection:\"FH9cAYVRO\",name:\"N_MXHlLDy\",type:\"Identifier\"},{collection:\"FH9cAYVRO\",name:\"id\",type:\"Identifier\"},{collection:\"FH9cAYVRO\",name:\"TUb171g5k\",type:\"Identifier\"}],where:{left:{collection:\"FH9cAYVRO\",name:\"TryHN7ao8\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"4\"},type:\"BinaryOperation\"}},children:(collection9,paginationInfo9,loadMore9)=>/*#__PURE__*/_jsx(_Fragment,{children:collection9.map(({\"RwjuDVkDB\":RwjuDVkDBFH9cAYVRO,\"iq2hrZ5Qh\":iq2hrZ5QhFH9cAYVRO,\"K_LedhCd7\":K_LedhCd7FH9cAYVRO,\"lywD3LpDE\":lywD3LpDEFH9cAYVRO,\"N_MXHlLDy\":N_MXHlLDyFH9cAYVRO,\"id\":idFH9cAYVRO,\"TUb171g5k\":TUb171g5kFH9cAYVRO},i)=>{iq2hrZ5QhFH9cAYVRO!==null&&iq2hrZ5QhFH9cAYVRO!==void 0?iq2hrZ5QhFH9cAYVRO:iq2hrZ5QhFH9cAYVRO=\"\";K_LedhCd7FH9cAYVRO!==null&&K_LedhCd7FH9cAYVRO!==void 0?K_LedhCd7FH9cAYVRO:K_LedhCd7FH9cAYVRO=\"\";N_MXHlLDyFH9cAYVRO!==null&&N_MXHlLDyFH9cAYVRO!==void 0?N_MXHlLDyFH9cAYVRO:N_MXHlLDyFH9cAYVRO=\"\";TUb171g5kFH9cAYVRO!==null&&TUb171g5kFH9cAYVRO!==void 0?TUb171g5kFH9cAYVRO:TUb171g5kFH9cAYVRO=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`FH9cAYVRO-${idFH9cAYVRO}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TUb171g5k:TUb171g5kFH9cAYVRO},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ttg67-container\",children:/*#__PURE__*/_jsx(BlogCard,{category:iq2hrZ5QhFH9cAYVRO,date:toDateString(lywD3LpDEFH9cAYVRO,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),height:\"100%\",id:\"dXVUr07U5\",image2:toResponsiveImage(RwjuDVkDBFH9cAYVRO),layoutId:\"dXVUr07U5\",style:{height:\"100%\",width:\"100%\"},time:N_MXHlLDyFH9cAYVRO,title:K_LedhCd7FH9cAYVRO,variant:\"oFSvjXRTz\",width:\"100%\"})})})})},idFH9cAYVRO);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18idyrm\",\"data-framer-name\":\"Mobile5\",name:\"Mobile5\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"WfJNxcBMb\",data:Blog,type:\"Collection\"},select:[{collection:\"WfJNxcBMb\",name:\"RwjuDVkDB\",type:\"Identifier\"},{collection:\"WfJNxcBMb\",name:\"iq2hrZ5Qh\",type:\"Identifier\"},{collection:\"WfJNxcBMb\",name:\"K_LedhCd7\",type:\"Identifier\"},{collection:\"WfJNxcBMb\",name:\"lywD3LpDE\",type:\"Identifier\"},{collection:\"WfJNxcBMb\",name:\"N_MXHlLDy\",type:\"Identifier\"},{collection:\"WfJNxcBMb\",name:\"id\",type:\"Identifier\"},{collection:\"WfJNxcBMb\",name:\"TUb171g5k\",type:\"Identifier\"}],where:{left:{collection:\"WfJNxcBMb\",name:\"TryHN7ao8\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"5\"},type:\"BinaryOperation\"}},children:(collection10,paginationInfo10,loadMore10)=>/*#__PURE__*/_jsx(_Fragment,{children:collection10.map(({\"RwjuDVkDB\":RwjuDVkDBWfJNxcBMb,\"iq2hrZ5Qh\":iq2hrZ5QhWfJNxcBMb,\"K_LedhCd7\":K_LedhCd7WfJNxcBMb,\"lywD3LpDE\":lywD3LpDEWfJNxcBMb,\"N_MXHlLDy\":N_MXHlLDyWfJNxcBMb,\"id\":idWfJNxcBMb,\"TUb171g5k\":TUb171g5kWfJNxcBMb},i)=>{iq2hrZ5QhWfJNxcBMb!==null&&iq2hrZ5QhWfJNxcBMb!==void 0?iq2hrZ5QhWfJNxcBMb:iq2hrZ5QhWfJNxcBMb=\"\";K_LedhCd7WfJNxcBMb!==null&&K_LedhCd7WfJNxcBMb!==void 0?K_LedhCd7WfJNxcBMb:K_LedhCd7WfJNxcBMb=\"\";N_MXHlLDyWfJNxcBMb!==null&&N_MXHlLDyWfJNxcBMb!==void 0?N_MXHlLDyWfJNxcBMb:N_MXHlLDyWfJNxcBMb=\"\";TUb171g5kWfJNxcBMb!==null&&TUb171g5kWfJNxcBMb!==void 0?TUb171g5kWfJNxcBMb:TUb171g5kWfJNxcBMb=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`WfJNxcBMb-${idWfJNxcBMb}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TUb171g5k:TUb171g5kWfJNxcBMb},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bc7bvs-container\",children:/*#__PURE__*/_jsx(BlogCard,{category:iq2hrZ5QhWfJNxcBMb,date:toDateString(lywD3LpDEWfJNxcBMb,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),height:\"100%\",id:\"oKhgrx_tR\",image2:toResponsiveImage(RwjuDVkDBWfJNxcBMb),layoutId:\"oKhgrx_tR\",style:{height:\"100%\",width:\"100%\"},time:N_MXHlLDyWfJNxcBMb,title:K_LedhCd7WfJNxcBMb,variant:\"oFSvjXRTz\",width:\"100%\"})})})})},idWfJNxcBMb);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gskamx\",\"data-framer-name\":\"Mobile6\",name:\"Mobile6\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"JoGU5bf3T\",data:Blog,type:\"Collection\"},select:[{collection:\"JoGU5bf3T\",name:\"RwjuDVkDB\",type:\"Identifier\"},{collection:\"JoGU5bf3T\",name:\"iq2hrZ5Qh\",type:\"Identifier\"},{collection:\"JoGU5bf3T\",name:\"K_LedhCd7\",type:\"Identifier\"},{collection:\"JoGU5bf3T\",name:\"lywD3LpDE\",type:\"Identifier\"},{collection:\"JoGU5bf3T\",name:\"N_MXHlLDy\",type:\"Identifier\"},{collection:\"JoGU5bf3T\",name:\"id\",type:\"Identifier\"},{collection:\"JoGU5bf3T\",name:\"TUb171g5k\",type:\"Identifier\"}],where:{left:{collection:\"JoGU5bf3T\",name:\"TryHN7ao8\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"6\"},type:\"BinaryOperation\"}},children:(collection11,paginationInfo11,loadMore11)=>/*#__PURE__*/_jsx(_Fragment,{children:collection11.map(({\"RwjuDVkDB\":RwjuDVkDBJoGU5bf3T,\"iq2hrZ5Qh\":iq2hrZ5QhJoGU5bf3T,\"K_LedhCd7\":K_LedhCd7JoGU5bf3T,\"lywD3LpDE\":lywD3LpDEJoGU5bf3T,\"N_MXHlLDy\":N_MXHlLDyJoGU5bf3T,\"id\":idJoGU5bf3T,\"TUb171g5k\":TUb171g5kJoGU5bf3T},i)=>{iq2hrZ5QhJoGU5bf3T!==null&&iq2hrZ5QhJoGU5bf3T!==void 0?iq2hrZ5QhJoGU5bf3T:iq2hrZ5QhJoGU5bf3T=\"\";K_LedhCd7JoGU5bf3T!==null&&K_LedhCd7JoGU5bf3T!==void 0?K_LedhCd7JoGU5bf3T:K_LedhCd7JoGU5bf3T=\"\";N_MXHlLDyJoGU5bf3T!==null&&N_MXHlLDyJoGU5bf3T!==void 0?N_MXHlLDyJoGU5bf3T:N_MXHlLDyJoGU5bf3T=\"\";TUb171g5kJoGU5bf3T!==null&&TUb171g5kJoGU5bf3T!==void 0?TUb171g5kJoGU5bf3T:TUb171g5kJoGU5bf3T=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`JoGU5bf3T-${idJoGU5bf3T}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TUb171g5k:TUb171g5kJoGU5bf3T},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xdodtz-container\",children:/*#__PURE__*/_jsx(BlogCard,{category:iq2hrZ5QhJoGU5bf3T,date:toDateString(lywD3LpDEJoGU5bf3T,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),height:\"100%\",id:\"ySyN1MGum\",image2:toResponsiveImage(RwjuDVkDBJoGU5bf3T),layoutId:\"ySyN1MGum\",style:{height:\"100%\",width:\"100%\"},time:N_MXHlLDyJoGU5bf3T,title:K_LedhCd7JoGU5bf3T,variant:\"oFSvjXRTz\",width:\"100%\"})})})})},idJoGU5bf3T);})})})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nivajs\",\"data-framer-name\":\"footer\",name:\"footer\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-110pjft\",\"data-framer-name\":\"gray-shape\",name:\"gray-shape\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y3ZczbyTo:{width:\"100vw\",y:2035.8},yRbBSMZd5:{y:2355.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:390,width:\"max(100vw - 100px, 1px)\",y:2712.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8z5wal-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y3ZczbyTo:{variant:\"tO4ZVQzPg\"},yRbBSMZd5:{variant:\"hPZseJjAE\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"f5bXwkTjm\",layoutId:\"f5bXwkTjm\",style:{width:\"100%\"},variant:\"AeG44crad\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/{var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2;return _jsx(_Fragment,{children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1vvbsk0\",\"data-framer-appear-id\":\"1vvbsk0\",\"data-framer-name\":\"CTA Template\",id:\"1vvbsk0\",initial:animation1,name:\"CTA Template\",onTap:onTapwelu7j({overlay}),optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-6f560874-1f36-4372-8fd6-ec39184a741d, rgb(30, 21, 21))\"},children:\"Download Haylie Template\"})}),className:\"framer-1d73e5b\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1c3r8ff\",\"data-framer-portal-id\":\"1vvbsk0\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"oZEcivGpU\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{animate:animation3,className:\"framer-k671r5-container\",\"data-framer-portal-id\":\"1vvbsk0\",exit:animation2,initial:animation4,style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Loading,{height:\"100%\",id:\"SDVONuwfQ\",layoutId:\"SDVONuwfQ\",style:{height:\"100%\"},variant:\"iaqYK6kGi\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{animate:animation6,className:\"framer-1epcmfy\",\"data-framer-name\":\"Embed\",\"data-framer-portal-id\":\"1vvbsk0\",exit:animation5,initial:animation7,name:\"Embed\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jmy73u-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"aa348TIwo\",layoutId:\"aa348TIwo\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:(_getLocalizedValue1=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"https://babarogic.lemonsqueezy.com/checkout/buy/07f12819-4738-4c77-ac16-528bf545c0be?discount=0\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u4dhsf\",\"data-framer-name\":\"Close\",\"data-framer-portal-id\":\"1vvbsk0\",name:\"Close\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1inelvy\",\"data-framer-name\":\"Close-button\",name:\"Close-button\",onTap:onTap1wvko5h({overlay}),whileHover:animation8,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1je3m94-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(122, 122, 122)\",height:\"100%\",iconSearch:(_getLocalizedValue2=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:\"x\",iconSelection:\"House\",id:\"xnNwc3mKx\",layoutId:\"xnNwc3mKx\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})})]}),document.querySelector(\"#overlay\"))})})]})});}})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-KygBq { background: var(--token-765d4d1c-9f94-47f0-8b63-48d5fa27cccf, rgb(254, 254, 254)) /* {\"name\":\"white\"} */; }`,\".framer-KygBq.framer-1klcubh, .framer-KygBq .framer-1klcubh { display: block; }\",\".framer-KygBq.framer-1uvstgg { align-content: center; align-items: center; background-color: var(--token-765d4d1c-9f94-47f0-8b63-48d5fa27cccf, #fefefe); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-KygBq .framer-1m6xatk { 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: 20px 0px 0px 0px; position: fixed; top: 16px; transform: translateX(-50%); width: min-content; z-index: 10; }\",\".framer-KygBq .framer-onqxtp-container, .framer-KygBq .framer-focrng-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-KygBq .framer-29q4tm { background-color: var(--token-10848664-432d-4e73-afdb-28ccc9331cf5, #f5f5f7); flex: none; height: 462px; left: calc(50.00000000000002% - 150% / 2); overflow: hidden; position: absolute; top: 674px; width: 150%; z-index: 0; }\",\".framer-KygBq .framer-cp94ur { flex: none; height: 563px; left: -530px; overflow: hidden; position: absolute; top: 1460px; width: 706px; z-index: 0; }\",\".framer-KygBq .framer-g1gd3d, .framer-KygBq .framer-t0z9nn, .framer-KygBq .framer-jmy73u-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-KygBq .framer-7qqqpy { flex: none; height: 563px; overflow: hidden; position: absolute; right: -400px; top: 2320px; width: 706px; z-index: 0; }\",\".framer-KygBq .framer-b94ko4, .framer-KygBq .framer-1tiufz6 { flex: none; height: 563px; left: calc(50.00000000000002% - 706px / 2); position: absolute; top: calc(49.91119005328599% - 563px / 2); width: 706px; }\",\".framer-KygBq .framer-1r6mgu5, .framer-KygBq .framer-1rdhp4s, .framer-KygBq .framer-4aypaa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KygBq .framer-11jkb45 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1180px; overflow: visible; padding: 160px 32px 80px 32px; position: relative; width: 100%; }\",\".framer-KygBq .framer-1ub95dr { 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; position: relative; width: 100%; }\",\".framer-KygBq .framer-p2vadq { 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; text-decoration: none; width: min-content; }\",\".framer-KygBq .framer-ty91o5 { flex: none; height: 24px; overflow: hidden; position: relative; width: 24px; }\",\".framer-KygBq .framer-1wrxigh, .framer-KygBq .framer-xfglgg, .framer-KygBq .framer-1gilw74, .framer-KygBq .framer-1o7pdzo, .framer-KygBq .framer-16h5oc0, .framer-KygBq .framer-1uuks14 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-KygBq .framer-9592iy, .framer-KygBq .framer-1b3izv, .framer-KygBq .framer-1rf5xot, .framer-KygBq .framer-qii42o, .framer-KygBq .framer-eqi0u0, .framer-KygBq .framer-1ja0iql { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-KygBq .framer-1ffcgil { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 898px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KygBq .framer-13ytsny, .framer-KygBq .framer-jzcw9s { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-KygBq .framer-b4rmlo, .framer-KygBq .framer-1n7f0er { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KygBq .framer-s9kln6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KygBq .framer-15sv093 { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-KygBq .framer-zn4ajg { 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; position: relative; width: min-content; }\",\".framer-KygBq .framer-tkhs5d { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-KygBq .framer-rbqqx4 { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 752px; position: relative; width: 100%; }\",\".framer-KygBq .framer-omce4g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 36px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KygBq .framer-z4ou02, .framer-KygBq .framer-hosr6w, .framer-KygBq .framer-e1inqq { --border-bottom-width: 1px; --border-color: var(--token-e7401411-8529-496d-bafd-88f52c3fc7d6, #e3e5e8); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 36px; overflow: hidden; position: relative; text-decoration: none; width: 36px; will-change: var(--framer-will-change-override, transform); }\",\".framer-KygBq .framer-tt20fz, .framer-KygBq .framer-4opwcc, .framer-KygBq .framer-1xie9at { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-KygBq .framer-8r95ut { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; padding: 0px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-KygBq .framer-11bw9mc, .framer-KygBq .framer-cs2as1 { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-KygBq .framer-12nsyb7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KygBq .framer-tj31hh { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 916px; word-break: break-word; word-wrap: break-word; }\",\".framer-KygBq .framer-11ebzt9 { bottom: 799px; flex: none; height: 563px; left: -567px; overflow: hidden; position: absolute; width: 706px; z-index: 0; }\",\".framer-KygBq .framer-15ltob { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1180px; overflow: visible; padding: 80px 32px 120px 32px; position: relative; width: 100%; }\",\".framer-KygBq .framer-1tri4ym { bottom: -420px; flex: none; left: -14px; overflow: visible; position: absolute; right: -542px; top: -437px; z-index: 0; }\",\".framer-KygBq .framer-1s18jv { -webkit-filter: blur(10px); background: linear-gradient(269.9579642095413deg, #eebcc8 0%, rgba(189, 200, 222, 1) 100%); border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; border-top-left-radius: 64px; border-top-right-radius: 64px; bottom: 694px; filter: blur(10px); flex: none; height: 77px; left: calc(47.17741935483873% - 790px / 2); overflow: hidden; position: absolute; width: 790px; will-change: var(--framer-will-change-override, transform); }\",\".framer-KygBq .framer-744oj9 { -webkit-filter: blur(10px); background: linear-gradient(269.9173895347253deg, #fb9e9d 0%, rgba(209, 178, 234, 1) 100%); border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; border-top-left-radius: 64px; border-top-right-radius: 64px; filter: blur(10px); flex: none; height: 77px; left: 598px; overflow: hidden; position: absolute; top: calc(53.83670963781463% - 77px / 2); width: 849px; will-change: var(--framer-will-change-override, transform); }\",\".framer-KygBq .framer-1cuw1fo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 800px; z-index: 1; }\",\".framer-KygBq .framer-jprje3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KygBq .framer-1qajif6 { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KygBq .framer-1rtj8me { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-KygBq .framer-1cel6ln-container { flex: none; height: 572px; position: relative; width: 100%; z-index: 1; }\",\".framer-KygBq .framer-13jkwo7, .framer-KygBq .framer-193d6tj, .framer-KygBq .framer-k4f3ek, .framer-KygBq .framer-1prdx3l, .framer-KygBq .framer-11dwelt, .framer-KygBq .framer-19xjzi8, .framer-KygBq .framer-kn83mg, .framer-KygBq .framer-1b212uf, .framer-KygBq .framer-1r0fpiv, .framer-KygBq .framer-aevhhd, .framer-KygBq .framer-18idyrm, .framer-KygBq .framer-gskamx { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-KygBq .framer-9vfuzn-container, .framer-KygBq .framer-861kne-container, .framer-KygBq .framer-16ovq6c-container, .framer-KygBq .framer-1rlnpo7-container, .framer-KygBq .framer-6hpbjh-container, .framer-KygBq .framer-14rp43j-container { flex: none; height: 491px; position: relative; width: 393px; }\",\".framer-KygBq .framer-rpq3i5-container { flex: none; height: 464px; position: relative; width: 100%; z-index: 10; }\",\".framer-KygBq .framer-1gjpahk-container, .framer-KygBq .framer-1kl2aaz-container, .framer-KygBq .framer-8j5npb-container, .framer-KygBq .framer-ttg67-container, .framer-KygBq .framer-bc7bvs-container, .framer-KygBq .framer-1xdodtz-container { flex: none; height: 464px; position: relative; width: 330px; }\",\".framer-KygBq .framer-nivajs { align-content: center; align-items: center; background-color: var(--token-a36b31a6-9390-4122-90a5-ebff63767d10, #f7f6e6); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 50px 0px 50px; position: relative; width: 100%; }\",\".framer-KygBq .framer-110pjft { flex: none; height: 546px; left: -65px; overflow: hidden; position: absolute; right: 0px; top: -545px; z-index: 0; }\",\".framer-KygBq .framer-8z5wal-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-KygBq .framer-1vvbsk0 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 66px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625); cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 12px; position: fixed; right: 20px; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 10; }\",\".framer-KygBq .framer-1d73e5b { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-KygBq .framer-1c3r8ff { background-color: rgba(13, 13, 13, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 1; }\",\".framer-KygBq .framer-k671r5-container { flex: none; height: 8px; left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: auto; z-index: 1; }\",\".framer-KygBq .framer-1epcmfy { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: fixed; right: 0px; top: 60px; z-index: 1; }\",\".framer-KygBq .framer-1u4dhsf { flex: none; height: 60px; left: 0px; overflow: hidden; position: fixed; right: 0px; top: 0px; z-index: 1; }\",\".framer-KygBq .framer-1inelvy { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 20px; justify-content: center; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; padding: 0px; position: absolute; top: calc(50.00000000000002% - 20px / 2); width: 20px; }\",\".framer-KygBq .framer-1je3m94-container { flex: none; height: 20px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-KygBq.framer-1uvstgg, .framer-KygBq .framer-1m6xatk, .framer-KygBq .framer-1r6mgu5, .framer-KygBq .framer-11jkb45, .framer-KygBq .framer-1ub95dr, .framer-KygBq .framer-p2vadq, .framer-KygBq .framer-1wrxigh, .framer-KygBq .framer-1rdhp4s, .framer-KygBq .framer-xfglgg, .framer-KygBq .framer-1ffcgil, .framer-KygBq .framer-b4rmlo, .framer-KygBq .framer-s9kln6, .framer-KygBq .framer-15sv093, .framer-KygBq .framer-zn4ajg, .framer-KygBq .framer-1gilw74, .framer-KygBq .framer-1o7pdzo, .framer-KygBq .framer-16h5oc0, .framer-KygBq .framer-omce4g, .framer-KygBq .framer-8r95ut, .framer-KygBq .framer-12nsyb7, .framer-KygBq .framer-4aypaa, .framer-KygBq .framer-15ltob, .framer-KygBq .framer-1cuw1fo, .framer-KygBq .framer-1n7f0er, .framer-KygBq .framer-jprje3, .framer-KygBq .framer-1uuks14, .framer-KygBq .framer-1qajif6, .framer-KygBq .framer-1rtj8me, .framer-KygBq .framer-13jkwo7, .framer-KygBq .framer-193d6tj, .framer-KygBq .framer-k4f3ek, .framer-KygBq .framer-1prdx3l, .framer-KygBq .framer-11dwelt, .framer-KygBq .framer-19xjzi8, .framer-KygBq .framer-kn83mg, .framer-KygBq .framer-1b212uf, .framer-KygBq .framer-1r0fpiv, .framer-KygBq .framer-aevhhd, .framer-KygBq .framer-18idyrm, .framer-KygBq .framer-gskamx, .framer-KygBq .framer-nivajs, .framer-KygBq .framer-1vvbsk0, .framer-KygBq .framer-1inelvy { gap: 0px; } .framer-KygBq.framer-1uvstgg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-KygBq.framer-1uvstgg > :first-child, .framer-KygBq .framer-1r6mgu5 > :first-child, .framer-KygBq .framer-11jkb45 > :first-child, .framer-KygBq .framer-1rdhp4s > :first-child, .framer-KygBq .framer-b4rmlo > :first-child, .framer-KygBq .framer-8r95ut > :first-child, .framer-KygBq .framer-4aypaa > :first-child, .framer-KygBq .framer-15ltob > :first-child, .framer-KygBq .framer-1cuw1fo > :first-child, .framer-KygBq .framer-1n7f0er > :first-child, .framer-KygBq .framer-jprje3 > :first-child { margin-top: 0px; } .framer-KygBq.framer-1uvstgg > :last-child, .framer-KygBq .framer-1r6mgu5 > :last-child, .framer-KygBq .framer-11jkb45 > :last-child, .framer-KygBq .framer-1rdhp4s > :last-child, .framer-KygBq .framer-b4rmlo > :last-child, .framer-KygBq .framer-8r95ut > :last-child, .framer-KygBq .framer-4aypaa > :last-child, .framer-KygBq .framer-15ltob > :last-child, .framer-KygBq .framer-1cuw1fo > :last-child, .framer-KygBq .framer-1n7f0er > :last-child, .framer-KygBq .framer-jprje3 > :last-child { margin-bottom: 0px; } .framer-KygBq .framer-1m6xatk > *, .framer-KygBq .framer-p2vadq > *, .framer-KygBq .framer-1wrxigh > *, .framer-KygBq .framer-xfglgg > *, .framer-KygBq .framer-1ffcgil > *, .framer-KygBq .framer-15sv093 > *, .framer-KygBq .framer-1gilw74 > *, .framer-KygBq .framer-1o7pdzo > *, .framer-KygBq .framer-16h5oc0 > *, .framer-KygBq .framer-omce4g > *, .framer-KygBq .framer-12nsyb7 > *, .framer-KygBq .framer-1uuks14 > *, .framer-KygBq .framer-1qajif6 > *, .framer-KygBq .framer-1rtj8me > *, .framer-KygBq .framer-nivajs > *, .framer-KygBq .framer-1vvbsk0 > *, .framer-KygBq .framer-1inelvy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-KygBq .framer-1m6xatk > :first-child, .framer-KygBq .framer-1ub95dr > :first-child, .framer-KygBq .framer-p2vadq > :first-child, .framer-KygBq .framer-1wrxigh > :first-child, .framer-KygBq .framer-xfglgg > :first-child, .framer-KygBq .framer-1ffcgil > :first-child, .framer-KygBq .framer-s9kln6 > :first-child, .framer-KygBq .framer-15sv093 > :first-child, .framer-KygBq .framer-zn4ajg > :first-child, .framer-KygBq .framer-1gilw74 > :first-child, .framer-KygBq .framer-1o7pdzo > :first-child, .framer-KygBq .framer-16h5oc0 > :first-child, .framer-KygBq .framer-omce4g > :first-child, .framer-KygBq .framer-12nsyb7 > :first-child, .framer-KygBq .framer-1uuks14 > :first-child, .framer-KygBq .framer-1qajif6 > :first-child, .framer-KygBq .framer-1rtj8me > :first-child, .framer-KygBq .framer-13jkwo7 > :first-child, .framer-KygBq .framer-193d6tj > :first-child, .framer-KygBq .framer-k4f3ek > :first-child, .framer-KygBq .framer-1prdx3l > :first-child, .framer-KygBq .framer-11dwelt > :first-child, .framer-KygBq .framer-19xjzi8 > :first-child, .framer-KygBq .framer-kn83mg > :first-child, .framer-KygBq .framer-1b212uf > :first-child, .framer-KygBq .framer-1r0fpiv > :first-child, .framer-KygBq .framer-aevhhd > :first-child, .framer-KygBq .framer-18idyrm > :first-child, .framer-KygBq .framer-gskamx > :first-child, .framer-KygBq .framer-nivajs > :first-child, .framer-KygBq .framer-1vvbsk0 > :first-child, .framer-KygBq .framer-1inelvy > :first-child { margin-left: 0px; } .framer-KygBq .framer-1m6xatk > :last-child, .framer-KygBq .framer-1ub95dr > :last-child, .framer-KygBq .framer-p2vadq > :last-child, .framer-KygBq .framer-1wrxigh > :last-child, .framer-KygBq .framer-xfglgg > :last-child, .framer-KygBq .framer-1ffcgil > :last-child, .framer-KygBq .framer-s9kln6 > :last-child, .framer-KygBq .framer-15sv093 > :last-child, .framer-KygBq .framer-zn4ajg > :last-child, .framer-KygBq .framer-1gilw74 > :last-child, .framer-KygBq .framer-1o7pdzo > :last-child, .framer-KygBq .framer-16h5oc0 > :last-child, .framer-KygBq .framer-omce4g > :last-child, .framer-KygBq .framer-12nsyb7 > :last-child, .framer-KygBq .framer-1uuks14 > :last-child, .framer-KygBq .framer-1qajif6 > :last-child, .framer-KygBq .framer-1rtj8me > :last-child, .framer-KygBq .framer-13jkwo7 > :last-child, .framer-KygBq .framer-193d6tj > :last-child, .framer-KygBq .framer-k4f3ek > :last-child, .framer-KygBq .framer-1prdx3l > :last-child, .framer-KygBq .framer-11dwelt > :last-child, .framer-KygBq .framer-19xjzi8 > :last-child, .framer-KygBq .framer-kn83mg > :last-child, .framer-KygBq .framer-1b212uf > :last-child, .framer-KygBq .framer-1r0fpiv > :last-child, .framer-KygBq .framer-aevhhd > :last-child, .framer-KygBq .framer-18idyrm > :last-child, .framer-KygBq .framer-gskamx > :last-child, .framer-KygBq .framer-nivajs > :last-child, .framer-KygBq .framer-1vvbsk0 > :last-child, .framer-KygBq .framer-1inelvy > :last-child { margin-right: 0px; } .framer-KygBq .framer-1r6mgu5 > *, .framer-KygBq .framer-1rdhp4s > *, .framer-KygBq .framer-4aypaa > *, .framer-KygBq .framer-jprje3 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-KygBq .framer-11jkb45 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-KygBq .framer-1ub95dr > *, .framer-KygBq .framer-zn4ajg > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-KygBq .framer-b4rmlo > *, .framer-KygBq .framer-1n7f0er > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-KygBq .framer-s9kln6 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-KygBq .framer-8r95ut > *, .framer-KygBq .framer-1cuw1fo > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-KygBq .framer-15ltob > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-KygBq .framer-13jkwo7 > *, .framer-KygBq .framer-193d6tj > *, .framer-KygBq .framer-k4f3ek > *, .framer-KygBq .framer-1prdx3l > *, .framer-KygBq .framer-11dwelt > *, .framer-KygBq .framer-19xjzi8 > *, .framer-KygBq .framer-kn83mg > *, .framer-KygBq .framer-1b212uf > *, .framer-KygBq .framer-1r0fpiv > *, .framer-KygBq .framer-aevhhd > *, .framer-KygBq .framer-18idyrm > *, .framer-KygBq .framer-gskamx > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",`@media (min-width: 810px) and (max-width: 1279px) { .${metadata.bodyClassName}-framer-KygBq { background: var(--token-765d4d1c-9f94-47f0-8b63-48d5fa27cccf, rgb(254, 254, 254)) /* {\"name\":\"white\"} */; } .framer-KygBq.framer-1uvstgg { width: 810px; } .framer-KygBq .framer-29q4tm { height: 277px; top: 574px; } .framer-KygBq .framer-cp94ur { left: -560px; top: 1220px; } .framer-KygBq .framer-7qqqpy { right: -590px; } .framer-KygBq .framer-11jkb45 { padding: 160px 60px 80px 60px; } .framer-KygBq .framer-rbqqx4 { height: 424px; } .framer-KygBq .framer-8r95ut { padding: 0px; } .framer-KygBq .framer-tj31hh { flex: 1 0 0px; width: 1px; } .framer-KygBq .framer-15ltob { align-content: flex-start; align-items: flex-start; gap: 64px; padding: 40px 60px 120px 60px; } .framer-KygBq .framer-1tri4ym { order: 2; } .framer-KygBq .framer-1cuw1fo { order: 0; width: 100%; } .framer-KygBq .framer-1n7f0er { gap: 16px; } .framer-KygBq .framer-jprje3 { gap: 5px; } .framer-KygBq .framer-1cel6ln-container { order: 1; width: 750px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-KygBq .framer-15ltob, .framer-KygBq .framer-1n7f0er, .framer-KygBq .framer-jprje3 { gap: 0px; } .framer-KygBq .framer-15ltob > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-KygBq .framer-15ltob > :first-child, .framer-KygBq .framer-1n7f0er > :first-child, .framer-KygBq .framer-jprje3 > :first-child { margin-top: 0px; } .framer-KygBq .framer-15ltob > :last-child, .framer-KygBq .framer-1n7f0er > :last-child, .framer-KygBq .framer-jprje3 > :last-child { margin-bottom: 0px; } .framer-KygBq .framer-1n7f0er > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-KygBq .framer-jprje3 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-KygBq { background: var(--token-765d4d1c-9f94-47f0-8b63-48d5fa27cccf, rgb(254, 254, 254)) /* {\"name\":\"white\"} */; } .framer-KygBq.framer-1uvstgg { width: 390px; } .framer-KygBq .framer-1m6xatk { order: 0; } .framer-KygBq .framer-29q4tm { height: 139px; order: 1; top: 564px; } .framer-KygBq .framer-cp94ur { left: -540px; order: 2; } .framer-KygBq .framer-7qqqpy { order: 3; right: -540px; top: 2070px; } .framer-KygBq .framer-1r6mgu5 { order: 5; } .framer-KygBq .framer-11jkb45 { gap: 32px; padding: 160px 30px 80px 30px; } .framer-KygBq .framer-ty91o5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: min-content; } .framer-KygBq .framer-t0z9nn { aspect-ratio: 1 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 18px); left: unset; position: relative; right: unset; top: unset; width: 18px; } .framer-KygBq .framer-s9kln6 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 10px; justify-content: flex-start; } .framer-KygBq .framer-rbqqx4 { height: 264px; } .framer-KygBq .framer-8r95ut { padding: 0px; } .framer-KygBq .framer-11ebzt9 { bottom: 1329px; left: -627px; order: 4; } .framer-KygBq .framer-4aypaa { order: 6; padding: 0px 0px 40px 0px; } .framer-KygBq .framer-15ltob { align-content: flex-start; align-items: flex-start; padding: 60px 30px 80px 30px; } .framer-KygBq .framer-1tri4ym { order: 2; } .framer-KygBq .framer-1cuw1fo { gap: 24px; order: 0; width: 100%; } .framer-KygBq .framer-1n7f0er { gap: 16px; } .framer-KygBq .framer-jprje3 { gap: 5px; } .framer-KygBq .framer-rpq3i5-container { order: 3; } .framer-KygBq .framer-nivajs { flex-direction: column; order: 7; padding: 0px; } .framer-KygBq .framer-8z5wal-container { flex: none; width: 100%; } .framer-KygBq .framer-1vvbsk0 { order: 8; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-KygBq .framer-11jkb45, .framer-KygBq .framer-ty91o5, .framer-KygBq .framer-s9kln6, .framer-KygBq .framer-1cuw1fo, .framer-KygBq .framer-1n7f0er, .framer-KygBq .framer-jprje3, .framer-KygBq .framer-nivajs { gap: 0px; } .framer-KygBq .framer-11jkb45 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-KygBq .framer-11jkb45 > :first-child, .framer-KygBq .framer-s9kln6 > :first-child, .framer-KygBq .framer-1cuw1fo > :first-child, .framer-KygBq .framer-1n7f0er > :first-child, .framer-KygBq .framer-jprje3 > :first-child, .framer-KygBq .framer-nivajs > :first-child { margin-top: 0px; } .framer-KygBq .framer-11jkb45 > :last-child, .framer-KygBq .framer-s9kln6 > :last-child, .framer-KygBq .framer-1cuw1fo > :last-child, .framer-KygBq .framer-1n7f0er > :last-child, .framer-KygBq .framer-jprje3 > :last-child, .framer-KygBq .framer-nivajs > :last-child { margin-bottom: 0px; } .framer-KygBq .framer-ty91o5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-KygBq .framer-ty91o5 > :first-child { margin-left: 0px; } .framer-KygBq .framer-ty91o5 > :last-child { margin-right: 0px; } .framer-KygBq .framer-s9kln6 > *, .framer-KygBq .framer-nivajs > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-KygBq .framer-1cuw1fo > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-KygBq .framer-1n7f0er > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-KygBq .framer-jprje3 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,'.framer-KygBq[data-border=\"true\"]::after, .framer-KygBq [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 4441\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"yRbBSMZd5\":{\"layout\":[\"fixed\",\"auto\"]},\"y3ZczbyTo\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerMiXg3kcTC=withCSS(Component,css,\"framer-KygBq\");export default FramerMiXg3kcTC;FramerMiXg3kcTC.displayName=\"Page\";FramerMiXg3kcTC.defaultProps={height:4441,width:1280};addFonts(FramerMiXg3kcTC,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/K46YRH762FH3QJ25IQM3VAXAKCHEXXW4/ISLWQPUZHZF33LRIOTBMFOJL57GBGQ4B/3ZLMEXZEQPLTEPMHTQDAUXP5ZZXCZAEN.woff2\",weight:\"600\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.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://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.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://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.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://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.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://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...MenuForBlogESFonts,...ButtonClipboardFonts,...BlogCardFonts,...SlideshowFonts,...FooterFonts,...LoadingFonts,...EmbedFonts,...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMiXg3kcTC\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yRbBSMZd5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"y3ZczbyTo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1280\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"4441\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "emptyStateStyle", "centerTextStyle", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "hasScript", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "u", "containerStyles", "emptyStateStyle", "containerStyles", "NullState", "Y", "_", "ref", "p", "Component", "House_default", "React", "weights", "House", "props", "ref", "defaultEvents", "ControlType", "findByArray", "arr", "search", "a", "useIconSelection", "iconKeys", "selectByList", "iconSearch", "iconSelection", "lowercaseIconKeyPairs", "iconSearchResult", "se", "iconSearchTerm", "_iconSearchTerm", "findByArray", "iconKeys", "moduleBaseUrl", "weightOptions", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "weight", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "House_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "piece", "defaultEvents", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_variant", "ref", "createLayoutDependency", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearmp0x9x", "args", "onAppearzzzdal", "onAppear1bu6eta", "onAppear1stn7f8", "onAppearbhte4d", "useOnVariantChange", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "css", "FramerBYidMx2OK", "withCSS", "BYidMx2OK_default", "addPropertyControls", "ControlType", "addFonts", "ParticlesFonts", "getFonts", "ParticleWrapper", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "NoiseFonts", "Noise", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "JmBU2_9xF", "hHUmL3jls", "qNiAdx3WGJXMRpG7qa", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerHw38IBmNM", "withCSS", "Hw38IBmNM_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "CtaGhostFonts", "getFonts", "Hw38IBmNM_default", "CtaFonts", "CwnhrbFiX_default", "LocaleSelectorFonts", "LocaleSelector_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapbi08nl", "args", "onTap12unsjh", "onTap1y82chs", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "Link", "RichText2", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "css", "FramerSBlftUf56", "withCSS", "SBlftUf56_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "Clipboard", "label", "content", "fill", "color", "style", "onClick", "props", "fontFamily", "fontSize", "fontWeight", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "handleClick", "te", "ref", "navigator", "p", "motion", "addPropertyControls", "ControlType", "fontControls", "paddingControl", "borderRadiusControl", "defaultEvents", "fontStore", "fonts", "css", "className", "ClipboardFonts", "getFonts", "Clipboard", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "content", "height", "id", "link", "tap", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ryCon9jsT", "XLA8dU_7F", "MtMXwCJK4", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapk0s61l", "args", "onAppear1vhdrck", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "ComponentViewportProvider", "SVG", "RichText2", "css", "FramerUVWKCWT18", "withCSS", "UVWKCWT18_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "MenuForBlogESFonts", "getFonts", "SBlftUf56_default", "ButtonClipboardFonts", "UVWKCWT18_default", "BlogCardFonts", "HoqRnGrFT_default", "SlideshowFonts", "Slideshow", "FooterFonts", "w353A_1oN_default", "LoadingFonts", "BYidMx2OK_default", "EmbedFonts", "Embed", "PhosphorFonts", "Icon", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "valuesByLocaleId", "LazyValue", "preloadLocalizedValues", "locale", "promises", "values", "promise", "getLocalizedValue", "key", "value", "toResponsiveImage", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "prefix", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transition1", "animation", "animation1", "transition2", "animation2", "transformTemplate1", "_", "t", "animation3", "animation4", "transition3", "animation5", "transition4", "animation6", "animation7", "transition5", "animation8", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "iKMqEOfxs_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "NotFoundError", "_getFromCurrentRouteData", "_getFromCurrentRouteData1", "_getFromCurrentRouteData2", "_getFromCurrentRouteData3", "_getFromCurrentRouteData4", "_getFromCurrentRouteData5", "_getFromCurrentRouteData6", "style", "className", "layoutId", "variant", "iq2hrZ5Qh", "K_LedhCd7", "cn8BlDOCB", "it1GbyzgH", "lywD3LpDE", "N_MXHlLDy", "RwjuDVkDB", "TUb171g5k", "wVFBV5hVc", "TSag_ga1u", "RwjuDVkDBQ1RO39al1", "iq2hrZ5QhQ1RO39al1", "K_LedhCd7Q1RO39al1", "lywD3LpDEQ1RO39al1", "N_MXHlLDyQ1RO39al1", "idQ1RO39al1", "TUb171g5kQ1RO39al1", "RwjuDVkDBMYlxxGP52", "iq2hrZ5QhMYlxxGP52", "K_LedhCd7MYlxxGP52", "lywD3LpDEMYlxxGP52", "N_MXHlLDyMYlxxGP52", "idMYlxxGP52", "TUb171g5kMYlxxGP52", "RwjuDVkDBZA0sHidTl", "iq2hrZ5QhZA0sHidTl", "K_LedhCd7ZA0sHidTl", "lywD3LpDEZA0sHidTl", "N_MXHlLDyZA0sHidTl", "idZA0sHidTl", "TUb171g5kZA0sHidTl", "RwjuDVkDBWsozf4gR4", "iq2hrZ5QhWsozf4gR4", "K_LedhCd7Wsozf4gR4", "lywD3LpDEWsozf4gR4", "N_MXHlLDyWsozf4gR4", "idWsozf4gR4", "TUb171g5kWsozf4gR4", "RwjuDVkDBpmHOZfUDv", "iq2hrZ5QhpmHOZfUDv", "K_LedhCd7pmHOZfUDv", "lywD3LpDEpmHOZfUDv", "N_MXHlLDypmHOZfUDv", "idpmHOZfUDv", "TUb171g5kpmHOZfUDv", "RwjuDVkDBQzCH298ud", "iq2hrZ5QhQzCH298ud", "K_LedhCd7QzCH298ud", "lywD3LpDEQzCH298ud", "N_MXHlLDyQzCH298ud", "idQzCH298ud", "TUb171g5kQzCH298ud", "RwjuDVkDBLI7Dqfsve", "iq2hrZ5QhLI7Dqfsve", "K_LedhCd7LI7Dqfsve", "lywD3LpDELI7Dqfsve", "N_MXHlLDyLI7Dqfsve", "idLI7Dqfsve", "TUb171g5kLI7Dqfsve", "RwjuDVkDBkBhC0CaPW", "iq2hrZ5QhkBhC0CaPW", "K_LedhCd7kBhC0CaPW", "lywD3LpDEkBhC0CaPW", "N_MXHlLDykBhC0CaPW", "idkBhC0CaPW", "TUb171g5kkBhC0CaPW", "RwjuDVkDBhhgLwkHfi", "iq2hrZ5QhhhgLwkHfi", "K_LedhCd7hhgLwkHfi", "lywD3LpDEhhgLwkHfi", "N_MXHlLDyhhgLwkHfi", "idhhgLwkHfi", "TUb171g5khhgLwkHfi", "RwjuDVkDBFH9cAYVRO", "iq2hrZ5QhFH9cAYVRO", "K_LedhCd7FH9cAYVRO", "lywD3LpDEFH9cAYVRO", "N_MXHlLDyFH9cAYVRO", "idFH9cAYVRO", "TUb171g5kFH9cAYVRO", "RwjuDVkDBWfJNxcBMb", "iq2hrZ5QhWfJNxcBMb", "K_LedhCd7WfJNxcBMb", "lywD3LpDEWfJNxcBMb", "N_MXHlLDyWfJNxcBMb", "idWfJNxcBMb", "TUb171g5kWfJNxcBMb", "RwjuDVkDBJoGU5bf3T", "iq2hrZ5QhJoGU5bf3T", "K_LedhCd7JoGU5bf3T", "lywD3LpDEJoGU5bf3T", "N_MXHlLDyJoGU5bf3T", "idJoGU5bf3T", "TUb171g5kJoGU5bf3T", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapwelu7j", "overlay", "paginationInfo", "args", "onTap1wvko5h", "preloadPromise", "ref1", "pe", "activeLocaleCode", "useLocaleCode", "textContent", "router", "useRouter", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ComponentViewportProvider", "Container", "SVG", "Link", "RichText2", "x", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "ResolveLinks", "resolvedLinks", "ChildrenCanSuspend", "collection", "loadMore", "l", "i", "PathVariablesContext", "collection1", "paginationInfo1", "loadMore1", "collection2", "paginationInfo2", "loadMore2", "collection3", "paginationInfo3", "loadMore3", "collection4", "paginationInfo4", "loadMore4", "collection5", "paginationInfo5", "loadMore5", "collection6", "paginationInfo6", "loadMore6", "collection7", "paginationInfo7", "loadMore7", "collection8", "paginationInfo8", "loadMore8", "collection9", "paginationInfo9", "loadMore9", "collection10", "paginationInfo10", "loadMore10", "collection11", "paginationInfo11", "loadMore11", "AnimatePresence", "Ga", "css", "FramerMiXg3kcTC", "withCSS", "MiXg3kcTC_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
