{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js", "ssg:https://framerusercontent.com/modules/3zyueMekWraRN9ZLcVVa/3YWwhPZsSdLX6KMktO8s/icp1GH9eH.js", "ssg:https://framerusercontent.com/modules/6mAaf4lw13mwTFn4qg6K/LA19dtIpQJNHnz00kfO9/hMeMMEYO_.js", "ssg:https://framerusercontent.com/modules/GB2C2QNoHjTAZwJXxGn8/umctrnr0eCBkBZfwJa7v/nUawEgiGQ.js"],
  "sourcesContent": ["import{jsx as _jsx}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 any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}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\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,style}){const hasAutoHeight=!style.height;// 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(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},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,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}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,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";var IconType;(function(IconType){IconType[\"Default\"]=\"Default\";IconType[\"Custom\"]=\"Custom\";})(IconType||(IconType={}));var SrcType;(function(SrcType){SrcType[\"Upload\"]=\"Upload\";SrcType[\"URL\"]=\"URL\";})(SrcType||(SrcType={}));// Check for the Search Index Meta Tag\n// Currently the only way to differenciate between Preview & Publish\nconst metaTagSelector='meta[name=\"framer-search-index\"]';// We can hopefully remove this check when new Preview ships\nfunction isPublishedSiteOrSSG(){if(typeof document===\"undefined\")return true;const metaTag=document.querySelector(metaTagSelector);return!!metaTag;}/**\n *\n * DOWNLOAD\n * By Hunter\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 100\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Download(props){const{styleOptions,hoverOptions,iconOptions}=props;const{backgroundColor,color,borderRadius,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,gap}=styleOptions;const isInPublishedSiteOrSSG=isPublishedSiteOrSSG();let downloadURL=undefined;if(isInPublishedSiteOrSSG){if(props.srcType===SrcType.URL)downloadURL=props.srcURL;if(props.srcType===SrcType.Upload)downloadURL=props.srcFile;}const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;const getIcon=()=>{var ref,ref1;if(!iconOptions)return;const iconStyle={order:iconOptions.alignment===\"start\"?0:2,flexShrink:0};return iconOptions.type===IconType.Custom&&!!((ref=iconOptions.image)===null||ref===void 0?void 0:ref.src)?/*#__PURE__*/ _jsx(\"img\",{style:iconStyle,alt:((ref1=iconOptions.image)===null||ref1===void 0?void 0:ref1.alt)&&iconOptions.image.alt.length>0?iconOptions.image.alt:\"download icon\",src:iconOptions.image.src,width:iconOptions.size,height:iconOptions.size}):/*#__PURE__*/ _jsx(\"svg\",{style:iconStyle,xmlns:\"http://www.w3.org/2000/svg\",width:iconOptions.size,height:iconOptions.size,fill:iconOptions.color,viewBox:\"0 0 256 256\",children:/*#__PURE__*/ _jsx(\"path\",{d:\"M228 152v56a20 20 0 0 1-20 20H48a20 20 0 0 1-20-20v-56a12 12 0 0 1 24 0v52h152v-52a12 12 0 0 1 24 0Zm-108.49 8.49a12 12 0 0 0 17 0l40-40a12 12 0 0 0-17-17L140 123V40a12 12 0 0 0-24 0v83l-19.51-19.49a12 12 0 0 0-17 17Z\"})});};const getCursor=()=>{if(props.srcType===SrcType.URL&&props.srcURL)return\"pointer\";if(props.srcType===SrcType.Upload&&props.srcFile)return\"pointer\";return\"auto\";};const buttonTitle=isInPublishedSiteOrSSG?\"Download File\":\"Publish to Download\";return /*#__PURE__*/ _jsxs(motion.a,{target:\"_blank\",href:downloadURL,download:true,title:buttonTitle,style:{gap,fontSize:16,lineHeight:1,fontFamily:\"Inter\",fontWeight:500,width:\"max-content\",...props.style,...buttonStyles,...props.fontControl,padding:paddingValue,color:color,backgroundColor:backgroundColor,borderRadius:borderRadius,userSelect:\"none\",placeContent:flexAlignSwitch(props.fontControl),whiteSpace:\"nowrap\",cursor:getCursor()},whileHover:hoverOptions,transition:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.transition,children:[getIcon(),props.text]});};Download.displayName=\"Download\";addPropertyControls(Download,{text:{title:\"Text\",type:ControlType.String,defaultValue:\"Download\"},srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Upload,SrcType.URL]},srcURL:{type:ControlType.String,title:\" \",placeholder:\"../example.pdf\",hidden:props=>props.srcType===SrcType.Upload},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[],hidden:props=>props.srcType===SrcType.URL},fontControl:{// @ts-ignore - Internal\ntype:ControlType.Font,title:\"Font\",controls:\"extended\"},iconOptions:{type:ControlType.Object,optional:true,title:\"Icon\",buttonTitle:\"Size, Color\",controls:{type:{title:\"Type\",type:ControlType.Enum,options:Object.values(IconType),optionTitles:Object.values(IconType),displaySegmentedControl:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.type===IconType.Custom},image:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.type===IconType.Default},size:{type:ControlType.Number,displayStepper:true,min:5,defaultValue:16,max:250},alignment:{title:\"Align\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"start\",\"end\"],optionTitles:[\"Start\",\"End\"]}}},styleOptions:{type:ControlType.Object,title:\"Styles\",buttonTitle:\"Button, Font\",controls:{backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#111\"},color:{type:ControlType.Color,defaultValue:\"#FFF\"},borderRadius:{type:ControlType.Number,title:\"Radius\",displayStepper:true,defaultValue:50},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:10,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,defaultValue:5}}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,controls:{scale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#333\",optional:true},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}}});const buttonStyles={display:\"flex\",placeItems:\"center\",placeContent:\"center\",textDecoration:\"none\"};/* Match flex content alignment with text align */ const flexAlignSwitch=fontControlStyles=>{if(!(fontControlStyles===null||fontControlStyles===void 0?void 0:fontControlStyles.textAlign)){return\"left\";}if(fontControlStyles.textAlign===\"left\"){return\"flex-start\";}if(fontControlStyles.textAlign===\"right\"){return\"flex-end\";}return\"center\";};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Download\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"100\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Download.map", "// Generated by Framer (fb31e5e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-piAmX .framer-styles-preset-12tf3bl:not(.rich-text-wrapper), .framer-piAmX .framer-styles-preset-12tf3bl.rich-text-wrapper a { --framer-link-current-text-color: #949494; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #ffffff; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #dedede; --framer-link-text-decoration: none; }\"];export const className=\"framer-piAmX\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Download from\"https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/3zyueMekWraRN9ZLcVVa/3YWwhPZsSdLX6KMktO8s/icp1GH9eH.js\";const DownloadFonts=getFonts(Download);const EmbedFonts=getFonts(Embed);const cycleOrder=[\"pCZD47ILe\",\"y5Pomt_z8\",\"XVUxwMP0k\"];const serializationHash=\"framer-fiY0C\";const variantClassNames={pCZD47ILe:\"framer-v-1lgs7k\",XVUxwMP0k:\"framer-v-3mjpon\",y5Pomt_z8:\"framer-v-mgw4zo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"pCZD47ILe\",Phone:\"XVUxwMP0k\",Tablet:\"y5Pomt_z8\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"pCZD47ILe\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pCZD47ILe\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1lgs7k\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"pCZD47ILe\",ref:refBinding,style:{backgroundColor:\"var(--token-4438fc6f-ea9b-49a0-8c56-cd47d72dcc21, rgb(30, 30, 30))\",...style},...addPropertyOverrides({XVUxwMP0k:{\"data-framer-name\":\"Phone\"},y5Pomt_z8:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x64fv9\",layoutDependency:layoutDependency,layoutId:\"ya45oVipX\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yfhxe5-container\",\"data-framer-name\":\"End User Agreement\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mL7hz8oUX-container\",name:\"End User Agreement\",nodeId:\"mL7hz8oUX\",rendersWithMotion:true,scopeId:\"hMeMMEYO_\",children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"League Spartan\", \"League Spartan Placeholder\", sans-serif',fontSize:\"10px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:\"rgba(117, 103, 103, 0)\",color:\"rgb(97, 97, 97)\",scale:1,transition:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"}},id:\"mL7hz8oUX\",layoutId:\"mL7hz8oUX\",name:\"End User Agreement\",srcFile:\"https://framerusercontent.com/assets/G3ESS42FuxQgQPwkpsJ2QDAWA.pdf\",srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:\"rgba(18, 18, 18, 0)\",borderRadius:50,color:\"rgb(138, 138, 138)\",gap:5,padding:0,paddingBottom:8,paddingLeft:4,paddingPerSide:true,paddingRight:4,paddingTop:12},text:\"End User Agreement\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ex9wbn-container\",\"data-framer-name\":\"Privacy Policy\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"zN40dTjYR-container\",name:\"Privacy Policy\",nodeId:\"zN40dTjYR\",rendersWithMotion:true,scopeId:\"hMeMMEYO_\",children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"League Spartan\", \"League Spartan Placeholder\", sans-serif',fontSize:\"10px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:\"rgba(117, 103, 103, 0)\",color:\"rgb(97, 97, 97)\",scale:1,transition:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"}},id:\"zN40dTjYR\",layoutId:\"zN40dTjYR\",name:\"Privacy Policy\",srcFile:\"https://framerusercontent.com/assets/JuJAwIHi7Z7msyEfvdgVzlkIs.pdf\",srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:\"rgba(18, 18, 18, 0)\",borderRadius:50,color:\"rgb(138, 138, 138)\",gap:5,padding:0,paddingBottom:8,paddingLeft:4,paddingPerSide:true,paddingRight:4,paddingTop:12},text:\"Privacy Policy\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15d0pl6\",\"data-framer-name\":\"contact\",layoutDependency:layoutDependency,layoutId:\"xArRlAMRi\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iyk95f\",\"data-framer-name\":\"contacts\",layoutDependency:layoutDependency,layoutId:\"P1i9izlvM\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-drl924\",\"data-framer-name\":\"mail tel\",layoutDependency:layoutDependency,layoutId:\"PBuQkPQ40\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGVhZ3VlIFNwYXJ0YW4tcmVndWxhcg==\",\"--framer-font-family\":'\"League Spartan\", \"League Spartan Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(222, 222, 222))\",\"--framer-text-decoration\":\"underline\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:info@1service.live\",motionChild:true,nodeId:\"pWvpFJCUN\",openInNewTab:false,scopeId:\"hMeMMEYO_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-12tf3bl\",\"data-styles-preset\":\"icp1GH9eH\",children:\"info@1service.live\"})})})}),className:\"framer-1yr75k7\",\"data-framer-name\":\"info@1service.live +385(95) 357-50-77 Harju maakond, Tallinn, Kesklinna linnaosa, Maakri tn 19/1, 10145 SmartAI ERP O\\xdc (17033400)\",fonts:[\"GF;League Spartan-regular\"],layoutDependency:layoutDependency,layoutId:\"pWvpFJCUN\",style:{\"--extracted-r6o4lv\":\"rgb(222, 222, 222)\",\"--framer-paragraph-spacing\":\"24px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGVhZ3VlIFNwYXJ0YW4tcmVndWxhcg==\",\"--framer-font-family\":'\"League Spartan\", \"League Spartan Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(222, 222, 222))\"},children:\"+385(95) 357-50-77\"})}),className:\"framer-1hddmoe\",\"data-framer-name\":\"info@1service.live +385(95) 357-50-77 Harju maakond, Tallinn, Kesklinna linnaosa, Maakri tn 19/1, 10145 SmartAI ERP O\\xdc (17033400)\",fonts:[\"GF;League Spartan-regular\"],layoutDependency:layoutDependency,layoutId:\"GRiA41IeM\",style:{\"--extracted-r6o4lv\":\"rgb(222, 222, 222)\",\"--framer-paragraph-spacing\":\"24px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kgezln\",\"data-framer-name\":\"adress\",layoutDependency:layoutDependency,layoutId:\"kFTDLnWkx\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7TGVhZ3VlIFNwYXJ0YW4tcmVndWxhcg==\",\"--framer-font-family\":'\"League Spartan\", \"League Spartan Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(222, 222, 222))\"},children:[\"Harju maakond, \",/*#__PURE__*/_jsx(motion.br,{}),\"Tallinn, Kesklinna linnaosa, \",/*#__PURE__*/_jsx(motion.br,{}),\"Maakri tn 19/1, 10145\"]})}),className:\"framer-ip9wk0\",\"data-framer-name\":\"info@1service.live +385(95) 357-50-77 Harju maakond, Tallinn, Kesklinna linnaosa, Maakri tn 19/1, 10145 SmartAI ERP O\\xdc (17033400)\",fonts:[\"GF;League Spartan-regular\"],layoutDependency:layoutDependency,layoutId:\"H_6dmMkzv\",style:{\"--extracted-r6o4lv\":\"rgb(222, 222, 222)\",\"--framer-paragraph-spacing\":\"24px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fw6gt4\",\"data-framer-name\":\"reg\",layoutDependency:layoutDependency,layoutId:\"krsdBX0BH\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7TGVhZ3VlIFNwYXJ0YW4tcmVndWxhcg==\",\"--framer-font-family\":'\"League Spartan\", \"League Spartan Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(222, 222, 222))\"},children:[\"SmartAI ERP O\\xdc \",/*#__PURE__*/_jsx(motion.br,{}),\"(17033400)\"]})}),className:\"framer-17z38yn\",\"data-framer-name\":\"info@1service.live +385(95) 357-50-77 Harju maakond, Tallinn, Kesklinna linnaosa, Maakri tn 19/1, 10145 SmartAI ERP O\\xdc (17033400)\",fonts:[\"GF;League Spartan-regular\"],layoutDependency:layoutDependency,layoutId:\"dOjbeEQJW\",style:{\"--extracted-r6o4lv\":\"rgb(222, 222, 222)\",\"--framer-paragraph-spacing\":\"24px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/1service/\",motionChild:true,nodeId:\"Ba4hT62Ey\",scopeId:\"hMeMMEYO_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1dcrsup framer-1fnqr5q\",\"data-framer-name\":\"linkedin\",layoutDependency:layoutDependency,layoutId:\"Ba4hT62Ey\",whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-h8wy5h\",\"data-framer-name\":\"White\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"I104:215;23976:97316\",svg:'<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 2C2.89543 2 2 2.89543 2 4V28C2 29.1046 2.89543 30 4 30H28C29.1046 30 30 29.1046 30 28V4C30 2.89543 29.1046 2 28 2H4ZM10.5402 12.6798V25.4996H6.25288V12.6798H10.5402ZM10.8227 8.71508C10.8227 9.9453 9.89211 10.9298 8.3973 10.9298H8.39693H8.3692C6.93022 10.9298 6 9.9453 6 8.71508C6 7.45693 6.95832 6.5 8.42577 6.5C9.8921 6.5 10.7946 7.45693 10.8227 8.71508ZM17.2001 25.4996H12.9132C12.9135 25.4241 12.9692 13.8789 12.9136 12.6802H17.2005V14.495C17.7703 13.6216 18.7903 12.3793 21.0645 12.3793C23.8852 12.3793 26 14.2116 26 18.1492V25.4996H21.713V18.6422C21.713 16.9186 21.0923 15.7431 19.5413 15.7431C18.3567 15.7431 17.6512 16.5358 17.3414 17.3017C17.2282 17.575 17.2001 17.9585 17.2001 18.3413V25.4996ZM12.9132 25.5V25.4996Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zhfnmq\",\"data-framer-name\":\"footer\",layoutDependency:layoutDependency,layoutId:\"pHjUKiUt4\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ox2ed8-container\",\"data-framer-name\":\"like animation\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"a4UJQ2umc-container\",name:\"like animation\",nodeId:\"a4UJQ2umc\",rendersWithMotion:true,scopeId:\"hMeMMEYO_\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\\n<!-- Created with Keyshape -->\\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"579\" height=\"658\" viewBox=\"0 0 579 658\" fill=\"none\">\\n    <g transform=\"translate(289.5,333.999) translate(-289.5,-324)\">\\n        <path id=\"_a0\" d=\"M548.681,405.075C552.481,403.37,555.943,400.974,558.861,397.978C598.471,363.368,568.879,329.658,560.509,321.778C560.102,321.409,559.899,320.856,559.989,320.303C560.08,319.75,560.419,319.289,560.917,319.036L560.917,319.059C567.228,315.901,583.787,304.172,577.408,269.009C573.494,247.441,553.429,234.698,534.472,227.302C517.665,220.919,499.749,218.176,481.832,219.19L481.832,219.213C453.466,220.688,398.949,220.388,416.503,194.12C483.711,93.4892,461.701,50.2841,450.887,21.9871C438.672,-10.1349,395.736,-6.03285,396.913,27.5871C398.314,65.9541,345.608,121.604,334.682,134.347C323.755,147.089,316.087,150.315,304.98,161.399C293.849,172.483,224.242,271.91,217.818,281.75C217.501,282.234,216.981,282.533,216.415,282.51L176.217,282.51C173.412,266.403,159.658,254.651,143.597,254.628L0.003,254.628C-0.034,353.696,2.109,452.962,0,552L143.713,552C158.258,551.977,171.13,542.321,175.473,528.173L195.991,528.173C198.231,528.15,200.357,529.118,201.85,530.8L201.873,530.8C216.893,547.483,227.887,545.686,229.177,545.686L499.864,542.713C514.522,542.598,528.096,534.764,535.719,521.998C543.343,509.232,543.908,493.332,537.235,480.036L536.873,479.322C536.624,478.838,536.579,478.262,536.76,477.732C536.941,477.225,537.325,476.787,537.823,476.58C543.365,474.23,547.957,470.036,550.853,464.667C574.13,420.215,544.7,406.435,548.681,405.075Z\" stroke=\"#FF5E45\" stroke-miterlimit=\"2\" stroke-linejoin=\"round\" transform=\"translate(289.5,276) translate(0,0) translate(-289.5,-276)\"/>\\n        <path id=\"_a1\" d=\"M548.681,417.075C552.481,415.37,555.943,412.974,558.861,409.978C598.471,375.368,568.879,341.658,560.509,333.778C560.102,333.409,559.899,332.856,559.989,332.303C560.08,331.75,560.419,331.289,560.917,331.036L560.917,331.059C567.228,327.901,583.787,316.172,577.408,281.009C573.494,259.441,553.429,246.698,534.472,239.302C517.665,232.919,499.749,230.176,481.832,231.19L481.832,231.213C453.466,232.688,398.949,232.388,416.503,206.12C483.711,105.489,461.701,62.2841,450.887,33.9871C438.672,1.86514,395.736,5.96715,396.913,39.5871C398.314,77.9541,345.608,133.604,334.682,146.347C323.755,159.089,316.087,162.315,304.98,173.399C293.849,184.483,224.242,283.91,217.818,293.75C217.501,294.234,216.981,294.533,216.415,294.51L176.217,294.51C173.412,278.403,159.658,266.651,143.597,266.628L0.003,266.628C-0.034,365.696,2.109,464.962,0,564L143.713,564C158.258,563.977,171.13,554.321,175.473,540.173L195.991,540.173C198.231,540.15,200.357,541.118,201.85,542.8L201.873,542.8C216.893,559.483,227.887,557.686,229.177,557.686L499.864,554.713C514.522,554.598,528.096,546.764,535.719,533.998C543.343,521.232,543.908,505.332,537.235,492.036L536.873,491.322C536.624,490.838,536.579,490.262,536.76,489.732C536.941,489.225,537.325,488.787,537.823,488.58C543.365,486.23,547.957,482.036,550.853,476.667C574.13,432.215,544.7,418.435,548.681,417.075Z\" stroke=\"#FF5E45\" stroke-opacity=\"0.9\" stroke-miterlimit=\"2\" stroke-linejoin=\"round\" transform=\"translate(289.5,288) translate(0,0) translate(-289.5,-288)\"/>\\n        <path id=\"_a2\" d=\"M548.681,429.075C552.481,427.37,555.943,424.974,558.861,421.978C598.471,387.368,568.879,353.658,560.509,345.778C560.102,345.409,559.899,344.856,559.989,344.303C560.08,343.75,560.419,343.289,560.917,343.036L560.917,343.059C567.228,339.901,583.787,328.172,577.408,293.009C573.494,271.441,553.429,258.698,534.472,251.302C517.665,244.919,499.749,242.176,481.832,243.19L481.832,243.213C453.466,244.688,398.949,244.388,416.503,218.12C483.711,117.489,461.701,74.2841,450.887,45.9871C438.672,13.8651,395.736,17.9671,396.913,51.5871C398.314,89.9541,345.608,145.604,334.682,158.347C323.755,171.089,316.087,174.315,304.98,185.399C293.849,196.483,224.242,295.91,217.818,305.75C217.501,306.234,216.981,306.533,216.415,306.51L176.217,306.51C173.412,290.403,159.658,278.651,143.597,278.628L0.003,278.628C-0.034,377.696,2.109,476.962,0,576L143.713,576C158.258,575.977,171.13,566.321,175.473,552.173L195.991,552.173C198.231,552.15,200.357,553.118,201.85,554.8L201.873,554.8C216.893,571.483,227.887,569.686,229.177,569.686L499.864,566.713C514.522,566.598,528.096,558.764,535.719,545.998C543.343,533.232,543.908,517.332,537.235,504.036L536.873,503.322C536.624,502.838,536.579,502.262,536.76,501.732C536.941,501.225,537.325,500.787,537.823,500.58C543.365,498.23,547.957,494.036,550.853,488.667C574.13,444.215,544.7,430.435,548.681,429.075Z\" stroke=\"#FF5E45\" stroke-opacity=\"0.7\" stroke-miterlimit=\"2\" stroke-linejoin=\"round\" transform=\"translate(289.5,300) translate(0,0) translate(-289.5,-300)\"/>\\n        <path id=\"_a3\" d=\"M548.681,441.076C552.481,439.371,555.943,436.975,558.861,433.979C598.471,399.369,568.879,365.659,560.509,357.779C560.102,357.41,559.899,356.857,559.989,356.304C560.08,355.751,560.419,355.29,560.917,355.037L560.917,355.06C567.228,351.902,583.787,340.173,577.408,305.01C573.494,283.442,553.429,270.699,534.472,263.303C517.665,256.92,499.749,254.177,481.832,255.191L481.832,255.214C453.466,256.689,398.949,256.389,416.503,230.121C483.711,129.49,461.701,86.2846,450.887,57.9876C438.672,25.8656,395.736,29.9676,396.913,63.5876C398.314,101.955,345.608,157.605,334.682,170.348C323.755,183.09,316.087,186.316,304.98,197.4C293.849,208.484,224.242,307.911,217.818,317.751C217.501,318.235,216.981,318.534,216.415,318.511L176.217,318.511C173.412,302.404,159.658,290.652,143.597,290.629L0.003,290.629C-0.034,389.697,2.109,488.963,0,588.001L143.713,588.001C158.258,587.978,171.13,578.322,175.473,564.174L195.991,564.174C198.231,564.151,200.357,565.119,201.85,566.801L201.873,566.801C216.893,583.484,227.887,581.687,229.177,581.687L499.864,578.714C514.522,578.599,528.096,570.765,535.719,557.999C543.343,545.233,543.908,529.333,537.235,516.037L536.873,515.323C536.624,514.839,536.579,514.263,536.76,513.733C536.941,513.226,537.325,512.788,537.823,512.581C543.365,510.231,547.957,506.037,550.853,500.668C574.13,456.216,544.7,442.436,548.681,441.076Z\" stroke=\"#FF5E45\" stroke-opacity=\"0.6\" stroke-miterlimit=\"2\" stroke-linejoin=\"round\" transform=\"translate(289.5,312.001) translate(0,0) translate(-289.5,-312.001)\"/>\\n        <path id=\"_a4\" d=\"M548.681,453.076C552.481,451.371,555.943,448.975,558.861,445.979C598.471,411.369,568.879,377.659,560.509,369.779C560.102,369.41,559.899,368.857,559.989,368.304C560.08,367.751,560.419,367.29,560.917,367.037L560.917,367.06C567.228,363.902,583.787,352.173,577.408,317.01C573.494,295.442,553.429,282.699,534.472,275.303C517.665,268.92,499.749,266.177,481.832,267.191L481.832,267.214C453.466,268.689,398.949,268.389,416.503,242.121C483.711,141.49,461.701,98.2846,450.887,69.9876C438.672,37.8656,395.736,41.9676,396.913,75.5876C398.314,113.955,345.608,169.605,334.682,182.348C323.755,195.09,316.087,198.316,304.98,209.4C293.849,220.484,224.242,319.911,217.818,329.751C217.501,330.235,216.981,330.534,216.415,330.511L176.217,330.511C173.412,314.404,159.658,302.652,143.597,302.629L0.003,302.629C-0.034,401.697,2.109,500.963,0,600.001L143.713,600.001C158.258,599.978,171.13,590.322,175.473,576.174L195.991,576.174C198.231,576.151,200.357,577.119,201.85,578.801L201.873,578.801C216.893,595.484,227.887,593.687,229.177,593.687L499.864,590.714C514.522,590.599,528.096,582.765,535.719,569.999C543.343,557.233,543.908,541.333,537.235,528.037L536.873,527.323C536.624,526.839,536.579,526.263,536.76,525.733C536.941,525.226,537.325,524.788,537.823,524.581C543.365,522.231,547.957,518.037,550.853,512.668C574.13,468.216,544.7,454.436,548.681,453.076Z\" stroke=\"#FF5E45\" stroke-opacity=\"0.5\" stroke-miterlimit=\"2\" stroke-linejoin=\"round\" transform=\"translate(289.5,324.001) translate(0,0) translate(-289.5,-324.001)\"/>\\n        <path id=\"_a5\" d=\"M548.681,465.076C552.481,463.371,555.943,460.975,558.861,457.979C598.471,423.369,568.879,389.659,560.509,381.779C560.102,381.41,559.899,380.857,559.989,380.304C560.08,379.751,560.419,379.29,560.917,379.037L560.917,379.06C567.228,375.902,583.787,364.173,577.408,329.01C573.494,307.442,553.429,294.699,534.472,287.303C517.665,280.92,499.749,278.177,481.832,279.191L481.832,279.214C453.466,280.689,398.949,280.389,416.503,254.121C483.711,153.49,461.701,110.285,450.887,81.9876C438.672,49.8656,395.736,53.9676,396.913,87.5876C398.314,125.955,345.608,181.605,334.682,194.348C323.755,207.09,316.087,210.316,304.98,221.4C293.849,232.484,224.242,331.911,217.818,341.751C217.501,342.235,216.981,342.534,216.415,342.511L176.217,342.511C173.412,326.404,159.658,314.652,143.597,314.629L0.003,314.629C-0.034,413.697,2.109,512.963,0,612.001L143.713,612.001C158.258,611.978,171.13,602.322,175.473,588.174L195.991,588.174C198.231,588.151,200.357,589.119,201.85,590.801L201.873,590.801C216.893,607.484,227.887,605.687,229.177,605.687L499.864,602.714C514.522,602.599,528.096,594.765,535.719,581.999C543.343,569.233,543.908,553.333,537.235,540.037L536.873,539.323C536.624,538.839,536.579,538.263,536.76,537.733C536.941,537.226,537.325,536.788,537.823,536.581C543.365,534.231,547.957,530.037,550.853,524.668C574.13,480.216,544.7,466.436,548.681,465.076Z\" stroke=\"#FF5E45\" stroke-opacity=\"0.4\" stroke-miterlimit=\"2\" stroke-linejoin=\"round\" transform=\"translate(289.5,336.001) translate(0,0) translate(-289.5,-336.001)\"/>\\n        <path id=\"_a6\" d=\"M548.681,477.076C552.481,475.371,555.943,472.975,558.861,469.979C598.471,435.369,568.879,401.659,560.509,393.779C560.102,393.41,559.899,392.857,559.989,392.304C560.08,391.751,560.419,391.29,560.917,391.037L560.917,391.06C567.228,387.902,583.787,376.173,577.408,341.01C573.494,319.442,553.429,306.699,534.472,299.303C517.665,292.92,499.749,290.177,481.832,291.191L481.832,291.214C453.466,292.689,398.949,292.389,416.503,266.121C483.711,165.49,461.701,122.285,450.887,93.9881C438.672,61.8661,395.736,65.9681,396.913,99.5881C398.314,137.955,345.608,193.605,334.682,206.348C323.755,219.09,316.087,222.316,304.98,233.4C293.849,244.484,224.242,343.911,217.818,353.751C217.501,354.235,216.981,354.534,216.415,354.511L176.217,354.511C173.412,338.404,159.658,326.652,143.597,326.629L0.003,326.629C-0.034,425.697,2.109,524.963,0,624.001L143.713,624.001C158.258,623.978,171.13,614.322,175.473,600.174L195.991,600.174C198.231,600.151,200.357,601.119,201.85,602.801L201.873,602.801C216.893,619.484,227.887,617.687,229.177,617.687L499.864,614.714C514.522,614.599,528.096,606.765,535.719,593.999C543.343,581.233,543.908,565.333,537.235,552.037L536.873,551.323C536.624,550.839,536.579,550.263,536.76,549.733C536.941,549.226,537.325,548.788,537.823,548.581C543.365,546.231,547.957,542.037,550.853,536.668C574.13,492.216,544.7,478.436,548.681,477.076Z\" stroke=\"#FF5E45\" stroke-opacity=\"0.3\" stroke-miterlimit=\"2\" stroke-linejoin=\"round\" transform=\"translate(289.5,348.001) translate(0,0) translate(-289.5,-348.001)\"/>\\n        <path id=\"_a7\" d=\"M548.681,489.076C552.481,487.371,555.943,484.975,558.861,481.979C598.471,447.369,568.879,413.659,560.509,405.779C560.102,405.41,559.899,404.857,559.989,404.304C560.08,403.751,560.419,403.29,560.917,403.037L560.917,403.06C567.228,399.902,583.787,388.173,577.408,353.01C573.494,331.442,553.429,318.699,534.472,311.303C517.665,304.92,499.749,302.177,481.832,303.191L481.832,303.214C453.466,304.689,398.949,304.389,416.503,278.121C483.711,177.49,461.701,134.285,450.887,105.988C438.672,73.8661,395.736,77.9681,396.913,111.588C398.314,149.955,345.608,205.605,334.682,218.348C323.755,231.09,316.087,234.316,304.98,245.4C293.849,256.484,224.242,355.911,217.818,365.751C217.501,366.235,216.981,366.534,216.415,366.511L176.217,366.511C173.412,350.404,159.658,338.652,143.597,338.629L0.003,338.629C-0.034,437.697,2.109,536.963,0,636.001L143.713,636.001C158.258,635.978,171.13,626.322,175.473,612.174L195.991,612.174C198.231,612.151,200.357,613.119,201.85,614.801L201.873,614.801C216.893,631.484,227.887,629.687,229.177,629.687L499.864,626.714C514.522,626.599,528.096,618.765,535.719,605.999C543.343,593.233,543.908,577.333,537.235,564.037L536.873,563.323C536.624,562.839,536.579,562.263,536.76,561.733C536.941,561.226,537.325,560.788,537.823,560.581C543.365,558.231,547.957,554.037,550.853,548.668C574.13,504.216,544.7,490.436,548.681,489.076Z\" stroke=\"#FF5E45\" stroke-opacity=\"0.2\" stroke-miterlimit=\"2\" stroke-linejoin=\"round\" transform=\"translate(289.5,360.001) translate(0,0) translate(-289.5,-360.001)\"/>\\n        <path id=\"_a8\" d=\"M548.681,501.076C552.481,499.371,555.943,496.975,558.861,493.979C598.471,459.369,568.879,425.659,560.509,417.779C560.102,417.41,559.899,416.857,559.989,416.304C560.08,415.751,560.419,415.29,560.917,415.037L560.917,415.06C567.228,411.902,583.787,400.173,577.408,365.01C573.494,343.442,553.429,330.699,534.472,323.303C517.665,316.92,499.749,314.177,481.832,315.191L481.832,315.214C453.466,316.689,398.949,316.389,416.503,290.121C483.711,189.49,461.701,146.285,450.887,117.988C438.672,85.8661,395.736,89.9681,396.913,123.588C398.314,161.955,345.608,217.605,334.682,230.348C323.755,243.09,316.087,246.316,304.98,257.4C293.849,268.484,224.242,367.911,217.818,377.751C217.501,378.235,216.981,378.534,216.415,378.511L176.217,378.511C173.412,362.404,159.658,350.652,143.597,350.629L0.003,350.629C-0.034,449.697,2.109,548.963,0,648.001L143.713,648.001C158.258,647.978,171.13,638.322,175.473,624.174L195.991,624.174C198.231,624.151,200.357,625.119,201.85,626.801L201.873,626.801C216.893,643.484,227.887,641.687,229.177,641.687L499.864,638.714C514.522,638.599,528.096,630.765,535.719,617.999C543.343,605.233,543.908,589.333,537.235,576.037L536.873,575.323C536.624,574.839,536.579,574.263,536.76,573.733C536.941,573.226,537.325,572.788,537.823,572.581C543.365,570.231,547.957,566.037,550.853,560.668C574.13,516.216,544.7,502.436,548.681,501.076Z\" stroke=\"#FF5E45\" stroke-opacity=\"0.1\" stroke-miterlimit=\"2\" stroke-linejoin=\"round\" transform=\"translate(289.5,372.001) translate(0,0) translate(-289.5,-372.001)\"/>\\n    </g>\\n    <script>/*\\n KeyshapeJS v1.3.0 (c) 2018-2023 Pixofield Ltd | pixofield.com/keyshapejs/mit-license */\\nwindow.KeyshapeJS=function(){function r(a){return&quot;undefined&quot;!==typeof a}function u(a,b){return a&amp;&amp;0===a.indexOf(b)}function X(a){var b={},c;for(c in a)b[c]=a[c];return b}function F(a){if(!isFinite(a))throw Error(&quot;Non-finite value&quot;);}function Y(a){if(14&gt;=a)return 16;var b=Z[a];b||(b=r(ka[a])?0|(a.toLowerCase().indexOf(&quot;color&quot;)===a.length-5?48:0):1);return b}function N(a){return 0&lt;=a?Math.pow(a,1/3):-Math.pow(-a,1/3)}function la(a,b,c,d){if(0===a)return 0===b?b=-d/c:(a=Math.sqrt(c*c-4*b*d),d=(-c+a)/\\n(2*b),0&lt;=d&amp;&amp;1&gt;=d?b=d:(d=(-c-a)/(2*b),b=0&lt;=d&amp;&amp;1&gt;=d?d:0)),b;var e=c/a-b*b/(a*a)/3;c=b*b*b/(a*a*a)/13.5-b*c/(a*a)/3+d/a;var f=c*c/4+e*e*e/27;b=-b/(3*a);if(0&gt;=f){if(0===e&amp;&amp;0===c)return-N(d/a);a=Math.sqrt(c*c/4-f);d=Math.acos(-c/2/a);c=Math.cos(d/3);d=Math.sqrt(3)*Math.sin(d/3);a=N(a);e=2*a*c+b;if(0&lt;=e&amp;&amp;1&gt;=e)return e;e=-a*(c+d)+b;if(0&lt;=e&amp;&amp;1&gt;=e)return e;e=a*(d-c)+b;if(0&lt;=e&amp;&amp;1&gt;=e)return e}else{a=N(-c/2+Math.sqrt(f));c=N(-c/2-Math.sqrt(f));d=a+c+b;if(0&lt;=d&amp;&amp;1&gt;=d)return d;d=-(a+c)/2+b;if(0&lt;=d&amp;&amp;1&gt;=d)return d}return 0}\\nfunction ma(a,b){if(48===a&amp;&amp;&quot;number&quot;===typeof b)return&quot;rgba(&quot;+(b&gt;&gt;&gt;24)+&quot;,&quot;+(b&gt;&gt;&gt;16&amp;255)+&quot;,&quot;+(b&gt;&gt;&gt;8&amp;255)+&quot;,&quot;+(b&amp;255)/255+&quot;)&quot;;if(64===a)return b=b.map(function(f){return f+&quot;px&quot;}),b.join(&quot;,&quot;);if(96===a){for(var c=&quot;&quot;,d=b.length,e=0;e&lt;d;e+=2)c+=b[e],c+=b[e+1].join(&quot;,&quot;);return c}if(80===a){if(0===b[0])return&quot;none&quot;;c=&quot;&quot;;d=b.length;for(e=0;e&lt;d;)c+=aa[b[e]],1===b[e]?c+=&quot;(&quot;+b[e+1]+&quot;) &quot;:5===b[e]?(c+=&quot;(&quot;+b[e+1]+&quot;px &quot;+b[e+2]+&quot;px &quot;+b[e+3]+&quot;px rgba(&quot;+(b[e+4]&gt;&gt;&gt;24)+&quot;,&quot;+(b[e+4]&gt;&gt;16&amp;255)+&quot;,&quot;+(b[e+4]&gt;&gt;8&amp;255)+&quot;,&quot;+(b[e+\\n4]&amp;255)/255+&quot;)) &quot;,e+=3):c=2===b[e]?c+(&quot;(&quot;+b[e+1]+&quot;px) &quot;):7===b[e]?c+(&quot;(&quot;+b[e+1]+&quot;deg) &quot;):c+(&quot;(&quot;+(0&gt;b[e+1]?0:b[e+1])+&quot;) &quot;),e+=2;return c}return 32===a?b+&quot;px&quot;:b}function B(a){return 0&gt;=a?0:255&lt;=a?255:a}function na(a,b,c,d){if(16===a||32===a)return(c-b)*d+b;if(0===a)return.5&gt;d?b:c;if(112===a)return 0&gt;=d?b:1&lt;=d?c:&quot;visible&quot;;if(48===a){if(&quot;number&quot;===typeof b&amp;&amp;&quot;number&quot;===typeof c){a=1-d;var e=a*(b&gt;&gt;&gt;16&amp;255)+d*(c&gt;&gt;&gt;16&amp;255),f=a*(b&gt;&gt;&gt;8&amp;255)+d*(c&gt;&gt;&gt;8&amp;255),m=a*(b&amp;255)+d*(c&amp;255);return B(a*(b&gt;&gt;&gt;24)+d*(c&gt;&gt;&gt;24))&lt;&lt;\\n24|B(e)&lt;&lt;16|B(f)&lt;&lt;8|B(m)}return.5&gt;d?b:c}if(64===a){0===b.length&amp;&amp;(b=[0]);0===c.length&amp;&amp;(c=[0]);a=b.length;b.length!==c.length&amp;&amp;(a=b.length*c.length);e=[];for(f=0;f&lt;a;++f)m=b[f%b.length],m=(c[f%c.length]-m)*d+m,0&gt;m&amp;&amp;(m=0),e.push(m);return e}if(96===a){if(b.length!==c.length)return.5&gt;d?b:c;a=b.length;e=[];for(f=0;f&lt;a;f+=2){if(b[f]!==c[f])return.5&gt;d?b:c;e[f]=b[f];e[f+1]=[];for(m=0;m&lt;b[f+1].length;++m)e[f+1].push((c[f+1][m]-b[f+1][m])*d+b[f+1][m])}return e}if(80===a){a=b.length;if(a!==c.length)return.5&gt;\\nd?b:c;e=[];for(f=0;f&lt;a;){if(b[f]!==c[f]||1===b[f])return.5&gt;d?b:c;e[f]=b[f];e[f+1]=(c[f+1]-b[f+1])*d+b[f+1];if(5===b[f]){e[f+2]=(c[f+2]-b[f+2])*d+b[f+2];e[f+3]=(c[f+3]-b[f+3])*d+b[f+3];m=1-d;var k=b[f+4],h=c[f+4],g=m*(k&gt;&gt;&gt;24)+d*(h&gt;&gt;&gt;24),n=m*(k&gt;&gt;8&amp;255)+d*(h&gt;&gt;8&amp;255),p=m*(k&amp;255)+d*(h&amp;255);e[f+4]=(B(m*(k&gt;&gt;16&amp;255)+d*(h&gt;&gt;16&amp;255))&lt;&lt;16|B(n)&lt;&lt;8|B(p))+16777216*(B(g)|0);f+=3}f+=2}return e}return 0}function ba(a,b){a:{var c=a+b[2];for(var d=b[4].length,e=0;e&lt;d;++e)if(c&lt;b[4][e]){c=e;break a}c=d-1}d=b[2];e=b[4][c-\\n1]-d;d=(a-e)/(b[4][c]-d-e);if(b[6]&amp;&amp;b[6].length&gt;c-1)if(e=b[6][c-1],1===e[0])if(0&gt;=d)d=0;else if(1&lt;=d)d=1;else{var f=e[1],m=e[3];d=la(3*f-3*m+1,-6*f+3*m,3*f,-d);d=3*d*(1-d)*(1-d)*e[2]+3*d*d*(1-d)*e[4]+d*d*d}else 2===e[0]?(e=e[1],d=Math.ceil(d*e)/e):3===e[0]&amp;&amp;(e=e[1],d=Math.floor(d*e)/e);return na(b[1]&amp;240,b[5][c-1],b[5][c],d)}function O(){C||(z=(new Date).getTime()+ca)}function U(a){if(a||!J){for(var b=!1,c=0;c&lt;D.length;++c)D[c].O(a)&amp;&amp;(b=!0);if(a)for(;0&lt;K.length;)if(a=K.shift(),c=a[0],1===a[1])c.onfinish&amp;&amp;\\n(c.onfinish(),b=!0),c.N();else if(2===a[1]&amp;&amp;c.onloop)c.onloop();return b}}function da(){O();U(!0)&amp;&amp;!C?(J=!0,P(da)):J=!1}function Q(){J||(J=!0,P(da))}function ea(a,b){var c=[];a.split(b).forEach(function(d){c.push(parseFloat(d))});return c}function G(a){-1===a.indexOf(&quot;,&quot;)&amp;&amp;(a=a.replace(&quot; &quot;,&quot;,&quot;));return ea(a,&quot;,&quot;)}function fa(a){a._ks||(a._ks={});if(!a._ks.transform){for(var b=a._ks.transform=[],c=0;14&gt;=c;++c)b[c]=0;b[10]=1;b[11]=1;if(a=a.getAttribute(&quot;transform&quot;)){a=a.trim().split(&quot;) &quot;);for(c=a.length-\\n2;0&lt;=c;--c)if(u(a[c],&quot;translate(&quot;)){for(var d=0;d&lt;c;d++)a.shift();break}c=a.shift();u(c,&quot;translate(&quot;)&amp;&amp;(c=G(c.substring(10)),b[1]=c[0],b[2]=r(c[1])?c[1]:0,c=a.shift());u(c,&quot;rotate(&quot;)&amp;&amp;(c=G(c.substring(7)),b[6]=c[0],c=a.shift());u(c,&quot;skewX(&quot;)&amp;&amp;(c=G(c.substring(6)),b[7]=c[0],c=a.shift());u(c,&quot;skewY(&quot;)&amp;&amp;(c=G(c.substring(6)),b[8]=c[0],c=a.shift());u(c,&quot;scale(&quot;)&amp;&amp;(c=G(c.substring(6)),b[10]=c[0],b[11]=r(c[1])?c[1]:c[0],c=a.shift());u(c,&quot;translate(&quot;)&amp;&amp;(c=G(c.substring(10)),b[13]=c[0],b[14]=r(c[1])?c[1]:\\n0)}}}function ha(a){this.m=a;this.I=[];this.G=[];this.D=0;this.B=this.g=this.i=null;this.o=this.j=this.l=0;this.h=1;this.s=this.K=this.A=!1}function H(a,b,c){b=a[b];void 0===b&amp;&amp;(b=a[c]);return b}function oa(a){return Array.isArray(a)?a:u(a,&quot;cubic-bezier(&quot;)?(a=a.substring(13,a.length-1).split(&quot;,&quot;),[1,parseFloat(a[0]),parseFloat(a[1]),parseFloat(a[2]),parseFloat(a[3])]):u(a,&quot;steps(&quot;)?(a=a.substring(6,a.length-1).split(&quot;,&quot;),[a[1]&amp;&amp;&quot;start&quot;===a[1].trim()?2:3,parseFloat(a[0])]):[0]}function pa(a){a=a.trim();\\nreturn u(a,&quot;#&quot;)?(parseInt(a.substring(1),16)&lt;&lt;8)+255:u(a,&quot;rgba(&quot;)?(a=a.substring(5,a.length-1),a=a.split(&quot;,&quot;),(parseInt(a[0],10)&lt;&lt;24)+(parseInt(a[1],10)&lt;&lt;16)+(parseInt(a[2],10)&lt;&lt;8)+255*parseFloat(a[3])&lt;&lt;0):a}function ia(a){!1===a.s&amp;&amp;(D.push(a),a.s=!0,!1!==a.m.autoplay&amp;&amp;a.play());return this}function V(a){if(!0===a.s){a._cancel();var b=D.indexOf(a);-1&lt;b&amp;&amp;D.splice(b,1);b=K.indexOf(a);-1&lt;b&amp;&amp;K.splice(b,1);a.s=!1}return this}var W=Error(&quot;Not in timeline list&quot;),ja=&quot;mpath posX posY    rotate skewX skewY  scaleX scaleY  anchorX anchorY&quot;.split(&quot; &quot;),\\nqa=&quot; translate translate    rotate skewX skewY  scale scale  translate translate&quot;.split(&quot; &quot;),aa=&quot;none url blur brightness contrast drop-shadow grayscale hue-rotate invert opacity saturate sepia&quot;.split(&quot; &quot;),P=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||null;P||(P=function(a){window.setTimeout(a,16)});var ra=/apple/i.test(navigator.vendor),Z={d:97,fill:48,fillOpacity:16,filter:80,height:33,\\nopacity:16,offsetDistance:33,rx:33,ry:33,stroke:48,strokeDasharray:64,strokeDashoffset:32,strokeOpacity:16,strokeWidth:32,transform:1,visibility:113,width:33},ka=window.getComputedStyle(document.documentElement),J=!1,z=(new Date).getTime(),C,ca=0,D=[],K=[];ha.prototype={J:function(a){var b=0;if(null!==this.i){var c=this.u();0&lt;this.h&amp;&amp;null!==c&amp;&amp;c&gt;=this.j?this.o?(this.i=z-this.l/this.h,this.o--,b=2):(b=1,a?this.g=c:this.g=this.B?Math.max(this.B,this.j):this.j):0&gt;this.h&amp;&amp;null!==c&amp;&amp;c&lt;=this.l?this.o&amp;&amp;\\nInfinity!==this.j?(this.i=z-this.j/this.h,this.o--,b=2):(this.o=0,b=1,a?this.g=c:this.g=this.B?Math.min(this.B,this.l):this.l):null!==c&amp;&amp;0!==this.h&amp;&amp;(a&amp;&amp;null!==this.g&amp;&amp;(this.i=z-this.g/this.h),this.g=null)}this.B=this.u();return b},O:function(a){a&amp;&amp;(this.A&amp;&amp;(this.A=!1,null===this.i&amp;&amp;(0!==this.h&amp;&amp;null!==this.g?(this.i=z-this.g/this.h,this.g=null):this.i=z)),null===this.g&amp;&amp;null!==this.i&amp;&amp;(a=this.J(!1),0!==a&amp;&amp;K.push([this,a])));a=this.u();if(null===a)return!1;for(var b=this.I,c=this.G,d=0;d&lt;b.length;++d){for(var e=\\nb[d],f=!1,m=0;m&lt;c[d].length;++m){var k=c[d][m],h=k[0];if(null!==h){var g=k[2];var n=k[4].length,p=k[4][n-1]-g;g=0===p?k[5][n-1]:a&lt;g?!k[9]||k[9][0]&amp;1?k[5][0]:k[9][1]:a&gt;=g+k[3]?!k[9]||k[9][0]&amp;2?0===k[3]%p?k[5][n-1]:ba(k[3]%p,k):k[9][1]:ba((a-g)%p,k);0===h?(e._ks.mpath=k[8],e._ks.transform[h]=g,f=!0):14&gt;=h?(e._ks.transform[h]=g,f=!0):(g=ma(k[1]&amp;240,g),k[1]&amp;1?e.setAttribute(h,g):e.style[h]=g)}}if(f){f=e;fa(f);m=f._ks.transform;k=&quot;&quot;;if(h=f._ks.mpath)n=m[0],0&gt;n&amp;&amp;(n=0),100&lt;n&amp;&amp;(n=100),n=n*h[2]/100,g=h[1].getPointAtLength(n),\\nk=&quot;translate(&quot;+g.x+&quot;,&quot;+g.y+&quot;) &quot;,h[0]&amp;&amp;(.5&gt;n?(n=g,g=h[1].getPointAtLength(.5)):n=h[1].getPointAtLength(n-.5),k+=&quot;rotate(&quot;+180*Math.atan2(g.y-n.y,g.x-n.x)/Math.PI+&quot;) &quot;);for(h=1;h&lt;m.length;++h)g=m[h],g!==(10===h||11===h?1:0)&amp;&amp;(k+=&quot; &quot;+qa[h]+&quot;(&quot;,k=2&gt;=h?k+(1===h?g+&quot;,0&quot;:&quot;0,&quot;+g):13&lt;=h?k+(13===h?g+&quot;,0&quot;:&quot;0,&quot;+g):10&lt;=h?k+(10===h?g+&quot;,1&quot;:&quot;1,&quot;+g):k+g,k+=&quot;)&quot;);f.setAttribute(&quot;transform&quot;,k)}ra&amp;&amp;e.setAttribute(&quot;opacity&quot;,e.getAttribute(&quot;opacity&quot;))}return&quot;running&quot;===this.v()},N:function(){!1!==this.m.autoremove&amp;&amp;&quot;finished&quot;===\\nthis.v()&amp;&amp;V(this)},H:function(){if(!this.K){this.K=!0;for(var a=this.I,b=this.G,c=0;c&lt;a.length;++c)for(var d=a[c],e=0;e&lt;b[c].length;++e)14&gt;=b[c][e][0]&amp;&amp;fa(d)}},C:function(a){if(&quot;number&quot;===typeof a)return[a,0];if(!r(this.m.markers)||!r(this.m.markers[a]))throw Error(&quot;Invalid marker: &quot;+a);a=this.m.markers[a];return r(a.time)?[+a.time,+(a.dur||0)]:[+a,0]},play:function(a){r(a)&amp;&amp;null!==a&amp;&amp;(a=this.C(a)[0],F(a),0&gt;this.h&amp;&amp;a&lt;this.l&amp;&amp;(a=this.l),0&lt;this.h&amp;&amp;a&gt;this.j&amp;&amp;(a=this.j),this.F(a,!0));if(!this.s)throw W;\\na=this.u();if(0&lt;this.h&amp;&amp;(null===a||a&gt;=this.j||a&lt;this.l))this.g=this.l;else if(0&gt;this.h&amp;&amp;(null===a||a&lt;=this.l||a&gt;this.j)){if(Infinity===this.j)throw Error(&quot;Cannot seek to Infinity&quot;);this.g=this.j}else 0===this.h&amp;&amp;null===a&amp;&amp;(this.g=this.l);if(null===this.g)return this;this.i=null;this.A=!0;this.H();Q();return this},pause:function(a){if(!this.s)throw W;r(a)&amp;&amp;(a=this.C(a)[0],F(a));if(&quot;paused&quot;!==this.v()){O();var b=this.u();if(null===b)if(0&lt;=this.h)this.g=this.l;else{if(Infinity===this.j)throw Error(&quot;Cannot seek to Infinity&quot;);\\nthis.g=this.j}null!==this.i&amp;&amp;null===this.g&amp;&amp;(this.g=b);this.i=null;this.A=!1;this.J(!1);this.H();Q()}r(a)&amp;&amp;this.F(a,!0);return this},range:function(a,b){if(0===arguments.length)return{&quot;in&quot;:this.l,out:this.j};var c=this.C(a)[0],d=this.D;r(b)&amp;&amp;(d=this.C(b)[0]);F(c);if(0&gt;c||0&gt;d||c&gt;=d||isNaN(d))throw Error(&quot;Invalid range&quot;);var e=this.v();this.l=c;this.j=d;&quot;finished&quot;===e&amp;&amp;&quot;running&quot;===this.v()&amp;&amp;this.play();return this},loop:function(a){if(!r(a))return{count:this.o};this.o=!0===a?Infinity:Math.floor(a);\\nif(0&gt;this.o||isNaN(this.o))this.o=0;return this},u:function(){return null!==this.g?this.g:null===this.i?null:(z-this.i)*this.h},F:function(a,b){b&amp;&amp;O();null!==a&amp;&amp;(this.H(),null!==this.g||null===this.i||0===this.h?(this.g=a,U(!1)):this.i=z-a/this.h,this.s||(this.i=null),this.B=null,this.J(!0),Q())},L:function(){return this.u()},time:function(a){if(r(a)){if(!this.s)throw W;a=this.C(a)[0];F(a);this.F(a,!0);return this}return this.L()},v:function(){var a=this.u();return this.A?&quot;running&quot;:null===a?&quot;idle&quot;:\\nnull===this.i?&quot;paused&quot;:0&lt;this.h&amp;&amp;a&gt;=this.j||0&gt;this.h&amp;&amp;a&lt;=this.l?&quot;finished&quot;:&quot;running&quot;},state:function(){return this.v()},duration:function(){return this.D},M:function(a){F(a);O();var b=this.u();this.h=a;null!==b&amp;&amp;this.F(b,!1)},rate:function(a){return r(a)?(this.M(a),this):this.h},markers:function(a){return r(a)?(this.m.markers=X(a),this):r(this.m.markers)?this.m.markers:{}},marker:function(a){return r(this.m.markers)?this.m.markers[a]:void 0},_cancel:function(){if(!this.s||&quot;idle&quot;===this.v())return this;\\nthis.i=this.g=null;this.A=!1;return this}};return{version:&quot;1.3.0&quot;,animate:function(){var a={};1===arguments.length%2&amp;&amp;(a=X(arguments[arguments.length-1]));a=new ha(a);for(var b=arguments,c=0,d=0;d&lt;b.length-1;d+=2){var e=b[d];var f=e instanceof Element?e:document.getElementById(e.substring(1));if(!f)throw Error(&quot;Invalid target: &quot;+e);e=f;f=b[d+1];e._ks||(e._ks={});for(var m=[],k=0;k&lt;f.length;++k){var h=f[k],g=H(h,&quot;p&quot;,&quot;property&quot;);if(&quot;string&quot;!==typeof g||-1!==g.indexOf(&quot;-&quot;)||&quot;&quot;===g||!(0&lt;Z[g]||0&lt;=ja.indexOf(g)))throw Error(&quot;Invalid property: &quot;+\\ng);var n=ja.indexOf(g);&quot;&quot;!==g&amp;&amp;0&lt;=n&amp;&amp;(g=n);n=Y(g);var p=H(h,&quot;t&quot;,&quot;times&quot;);if(!p||2&gt;p.length)throw Error(&quot;Not enough times&quot;);p=p.slice();if(!isFinite(p[0])||0&gt;p[0])throw Error(&quot;Invalid time: &quot;+p[0]);for(var w=1;w&lt;p.length;++w)if(!isFinite(p[w])||0&gt;p[w]||p[w]&lt;p[w-1])throw Error(&quot;Invalid time: &quot;+p[w]);w=p[0];var R=p[p.length-1]-w,S=h.iterations||0;1&gt;S&amp;&amp;(S=1);R*=S;c&lt;R+w&amp;&amp;(c=R+w);var I=H(h,&quot;v&quot;,&quot;values&quot;);if(!I||I.length!==p.length)throw Error(&quot;Values do not match times&quot;);I=I.slice();for(var x=g,l=I,L=Y(x)&amp;\\n240,q=0;q&lt;l.length;++q)if(96===L){for(var E=l[q].substring(6,l[q].length-2).match(/[A-DF-Za-df-z][-+0-9eE., ]*/ig),M=[],t=0;t&lt;E.length;++t){M.push(E[t][0]);for(var v=1&lt;E[t].trim().length?E[t].substring(1).split(&quot;,&quot;):[],A=0;A&lt;v.length;++A)v[A]=parseFloat(v[A]);M.push(v)}l[q]=M}else if(48===L)u(l[q],&quot;#&quot;)?(E=9===l[q].length,l[q]=parseInt(l[q].substring(1),16),E||(l[q]=256*l[q]|255)):u(l[q],&quot;url(&quot;)||&quot;none&quot;===l[q]||(console.warn(&quot;unsupported color: &quot;+l[q]),l[q]=0);else if(80===L){E=l;M=q;t=l[q];if(&quot;none&quot;===\\nt)t=[0];else{v=[];for(var y=t.indexOf(&quot;(&quot;);0&lt;y;)if(A=aa.indexOf(t.substring(0,y)),0&lt;=A){v.push(A);var T=t.indexOf(&quot;) &quot;);0&gt;T&amp;&amp;(T=t.length-1);y=t.substring(y+1,T).split(&quot; &quot;);5===A?(v.push(parseFloat(y[0])),v.push(parseFloat(y[1])),v.push(parseFloat(y[2])),v.push(pa(y[3]))):1===A?v.push(y[0]):v.push(parseFloat(y[0]));t=t.substring(T+1).trim();y=t.indexOf(&quot;(&quot;)}else break;t=v}E[M]=t}else 64===L?&quot;none&quot;!==l[q]?/^[0-9 .]*$/.test(l[q])?l[q]=ea(l[q],&quot; &quot;):(console.warn(&quot;unsupported value: &quot;+l[q]),l[q]=[0]):\\nl[q]=[0]:32===L?(F(l[q]),l[q]=parseFloat(l[q])):0===x&amp;&amp;(l[q]=parseFloat(l[q]));x=H(h,&quot;e&quot;,&quot;easing&quot;);l=p.length;for(x||(x=[]);x.length&lt;l;)x.push([1,0,0,.58,1]);for(l=0;l&lt;x.length;++l)x[l]=oa(x[l]);n=[g,n,w,R,p,I,x,S];p=H(h,&quot;mp&quot;,&quot;motionPath&quot;);r(p)&amp;&amp;0===g&amp;&amp;(n[8]=[],n[8][0]=h.motionRotate,g=document.createElementNS(&quot;http://www.w3.org/2000/svg&quot;,&quot;path&quot;),p||(p=&quot;M0,0&quot;),g.setAttribute(&quot;d&quot;,p),n[8][1]=g,n[8][2]=g.getTotalLength());h=H(h,&quot;f&quot;,&quot;fill&quot;);r(h)&amp;&amp;(n[9]=h.slice());m.push(n)}0&lt;m.length&amp;&amp;(a.I.push(e),a.G.push(m))}a.D=\\nc;a.l=0;a.j=a.D;ia(a);return a},add:ia,remove:V,removeAll:function(){for(var a=D.length-1;0&lt;=a;--a)V(D[a]);return this},timelines:function(){return D.slice()},globalPlay:function(){C&amp;&amp;(ca=C-(new Date).getTime(),C=void 0,Q());return this},globalPause:function(){C||(C=z,U(!1));return this},globalState:function(){return C?&quot;paused&quot;:&quot;running&quot;}}}();\\n</script>\\n    <script>if(KeyshapeJS.version.indexOf(\\'1.\\')!=0)throw Error(\\'Expected KeyshapeJS v1.*.*\\');window.ks=document.ks=KeyshapeJS;(function(ks){\\nvar tl=ks.animate(\\'#_a0\\',[{p:\\'mpath\\',t:[2767,2833,2967],v:[\\'0%\\',\\'50%\\',\\'100%\\'],e:[[1,0.42,0,0.58,1],[1,0.42,0,0.58,1],[0]],mp:\\'M289.5,276L289.5,266.001L289.5,276\\'}],\\n\\'#_a1\\',[{p:\\'mpath\\',t:[2733,2800,2933],v:[\\'0%\\',\\'50%\\',\\'100%\\'],e:[[1,0.42,0,0.58,1],[1,0.42,0,0.58,1],[0]],mp:\\'M289.5,288L289.5,278.001L289.5,288\\'}],\\n\\'#_a2\\',[{p:\\'mpath\\',t:[2700,2767,2900],v:[\\'0%\\',\\'50%\\',\\'100%\\'],e:[[1,0.42,0,0.58,1],[1,0.42,0,0.58,1],[0]],mp:\\'M289.5,300L289.5,290.001L289.5,300\\'}],\\n\\'#_a3\\',[{p:\\'mpath\\',t:[2667,2733,2867],v:[\\'0%\\',\\'50%\\',\\'100%\\'],e:[[1,0.42,0,0.58,1],[1,0.42,0,0.58,1],[0]],mp:\\'M289.5,312.001L289.5,302.002L289.5,312.001\\'}],\\n\\'#_a4\\',[{p:\\'mpath\\',t:[2633,2700,2833],v:[\\'0%\\',\\'50%\\',\\'100%\\'],e:[[1,0.42,0,0.58,1],[1,0.42,0,0.58,1],[0]],mp:\\'M289.5,324.001L289.5,314.002L289.5,324.001\\'}],\\n\\'#_a5\\',[{p:\\'mpath\\',t:[2600,2667,2800],v:[\\'0%\\',\\'50%\\',\\'100%\\'],e:[[1,0.42,0,0.58,1],[1,0.42,0,0.58,1],[0]],mp:\\'M289.5,336.001L289.5,326.002L289.5,336.001\\'}],\\n\\'#_a6\\',[{p:\\'mpath\\',t:[2567,2633,2767],v:[\\'0%\\',\\'50%\\',\\'100%\\'],e:[[1,0.42,0,0.58,1],[1,0.42,0,0.58,1],[0]],mp:\\'M289.5,348.001L289.5,338.002L289.5,348.001\\'}],\\n\\'#_a7\\',[{p:\\'mpath\\',t:[2533,2600,2733],v:[\\'0%\\',\\'50%\\',\\'100%\\'],e:[[1,0.42,0,0.58,1],[1,0.42,0,0.58,1],[0]],mp:\\'M289.5,360.001L289.5,350.002L289.5,360.001\\'}],\\n\\'#_a8\\',[{p:\\'mpath\\',t:[2500,2567,2700],v:[\\'0%\\',\\'50%\\',\\'100%\\'],e:[[1,0.42,0,0.58,1],[1,0.42,0,0.58,1],[0]],mp:\\'M289.5,372.001L289.5,362.002L289.5,372.001\\'}],\\n{autoremove:false}).range(0,2967).loop(true);\\nif(document.location.search.substr(1).split(\\'&amp;\\').indexOf(\\'global=paused\\')&gt;=0)ks.globalPause();})(KeyshapeJS);\\n</script>\\n</svg>\\n',id:\"a4UJQ2umc\",layoutId:\"a4UJQ2umc\",name:\"like animation\",style:{maxHeight:\"100%\",maxWidth:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:208,intrinsicWidth:1217,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||800)-0)-205),pixelHeight:416,pixelWidth:2434,sizes:`min(${componentViewport?.width||\"100vw\"} / 1.2, 1200px)`,src:\"https://framerusercontent.com/images/K2d0lvjdXvjrNlCs5DbwcwNP4.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/K2d0lvjdXvjrNlCs5DbwcwNP4.png?scale-down-to=512 512w,https://framerusercontent.com/images/K2d0lvjdXvjrNlCs5DbwcwNP4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/K2d0lvjdXvjrNlCs5DbwcwNP4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/K2d0lvjdXvjrNlCs5DbwcwNP4.png 2434w\"},className:\"framer-1vsj4go\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"GpUlg_7OJ\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGVhZ3VlIFNwYXJ0YW4tcmVndWxhcg==\",\"--framer-font-family\":'\"League Spartan\", \"League Spartan Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"209%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(138, 138, 138))\"},children:\"\\xa9 2025\\xa0 Powered and secured by 1Service\"})}),className:\"framer-w7dfpd\",\"data-framer-name\":\"\\xa9 2022\\xa0 Powered and secured by 1Service Privacy Policy\\xa0 \\xa0End User Agreement\",fonts:[\"GF;League Spartan-regular\"],layoutDependency:layoutDependency,layoutId:\"YFHKJheeU\",style:{\"--extracted-r6o4lv\":\"rgb(138, 138, 138)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fiY0C.framer-1fnqr5q, .framer-fiY0C .framer-1fnqr5q { display: block; }\",\".framer-fiY0C.framer-1lgs7k { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 800px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-fiY0C .framer-1x64fv9 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 30px; overflow: visible; padding: 0px; position: absolute; width: min-content; z-index: 10; }\",\".framer-fiY0C .framer-yfhxe5-container, .framer-fiY0C .framer-1ex9wbn-container { flex: none; height: auto; position: relative; width: auto; z-index: 10; }\",\".framer-fiY0C .framer-15d0pl6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: visible; padding: 60px 100px 60px 100px; position: relative; width: 100%; z-index: 1; }\",\".framer-fiY0C .framer-1iyk95f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fiY0C .framer-drl924 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px; position: relative; width: min-content; }\",\".framer-fiY0C .framer-1yr75k7, .framer-fiY0C .framer-1hddmoe, .framer-fiY0C .framer-ip9wk0, .framer-fiY0C .framer-17z38yn { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-fiY0C .framer-kgezln, .framer-fiY0C .framer-1fw6gt4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: min-content; }\",\".framer-fiY0C .framer-1dcrsup { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 16px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-fiY0C .framer-h8wy5h { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-fiY0C .framer-zhfnmq { bottom: 0px; flex: none; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-fiY0C .framer-ox2ed8-container { bottom: 0px; flex: none; height: auto; left: 50%; max-height: 80%; max-width: 80%; position: absolute; width: 640px; z-index: 0; }\",\".framer-fiY0C .framer-1vsj4go { aspect-ratio: 5.850961538461538 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 205px); left: 50%; max-width: 1200px; overflow: visible; position: absolute; width: 83%; }\",\".framer-fiY0C .framer-w7dfpd { bottom: 0px; flex: none; height: auto; position: absolute; right: 30px; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fiY0C.framer-1lgs7k, .framer-fiY0C .framer-1x64fv9, .framer-fiY0C .framer-drl924, .framer-fiY0C .framer-kgezln, .framer-fiY0C .framer-1fw6gt4, .framer-fiY0C .framer-1dcrsup { gap: 0px; } .framer-fiY0C.framer-1lgs7k > *, .framer-fiY0C .framer-kgezln > *, .framer-fiY0C .framer-1fw6gt4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-fiY0C.framer-1lgs7k > :first-child, .framer-fiY0C .framer-drl924 > :first-child, .framer-fiY0C .framer-kgezln > :first-child, .framer-fiY0C .framer-1fw6gt4 > :first-child { margin-top: 0px; } .framer-fiY0C.framer-1lgs7k > :last-child, .framer-fiY0C .framer-drl924 > :last-child, .framer-fiY0C .framer-kgezln > :last-child, .framer-fiY0C .framer-1fw6gt4 > :last-child { margin-bottom: 0px; } .framer-fiY0C .framer-1x64fv9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-fiY0C .framer-1x64fv9 > :first-child, .framer-fiY0C .framer-1dcrsup > :first-child { margin-left: 0px; } .framer-fiY0C .framer-1x64fv9 > :last-child, .framer-fiY0C .framer-1dcrsup > :last-child { margin-right: 0px; } .framer-fiY0C .framer-drl924 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-fiY0C .framer-1dcrsup > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-fiY0C.framer-v-mgw4zo.framer-1lgs7k { width: 810px; }\",\".framer-fiY0C.framer-v-mgw4zo .framer-15d0pl6 { padding: 40px; }\",\".framer-fiY0C.framer-v-mgw4zo .framer-1iyk95f, .framer-fiY0C.framer-v-3mjpon .framer-1iyk95f { flex-direction: column; }\",\".framer-fiY0C.framer-v-mgw4zo .framer-1vsj4go { height: var(--framer-aspect-ratio-supported, 116px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fiY0C.framer-v-mgw4zo .framer-1iyk95f { gap: 0px; } .framer-fiY0C.framer-v-mgw4zo .framer-1iyk95f > *, .framer-fiY0C.framer-v-mgw4zo .framer-1iyk95f > :first-child, .framer-fiY0C.framer-v-mgw4zo .framer-1iyk95f > :last-child { margin: 0px; } }\",\".framer-fiY0C.framer-v-3mjpon.framer-1lgs7k { width: 390px; }\",\".framer-fiY0C.framer-v-3mjpon .framer-15d0pl6 { padding: 60px 20px 60px 20px; }\",\".framer-fiY0C.framer-v-3mjpon .framer-1vsj4go { height: var(--framer-aspect-ratio-supported, 34px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fiY0C.framer-v-3mjpon .framer-1iyk95f { gap: 0px; } .framer-fiY0C.framer-v-3mjpon .framer-1iyk95f > *, .framer-fiY0C.framer-v-3mjpon .framer-1iyk95f > :first-child, .framer-fiY0C.framer-v-3mjpon .framer-1iyk95f > :last-child { margin: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"y5Pomt_z8\":{\"layout\":[\"fixed\",\"fixed\"]},\"XVUxwMP0k\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerhMeMMEYO_=withCSS(Component,css,\"framer-fiY0C\");export default FramerhMeMMEYO_;FramerhMeMMEYO_.displayName=\"footer\";FramerhMeMMEYO_.defaultProps={height:800,width:1440};addPropertyControls(FramerhMeMMEYO_,{variant:{options:[\"pCZD47ILe\",\"y5Pomt_z8\",\"XVUxwMP0k\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerhMeMMEYO_,[{explicitInter:true,fonts:[{family:\"League Spartan\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTpAcdcFguczA.woff2\",weight:\"400\"}]},...DownloadFonts,...EmbedFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhMeMMEYO_\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"800\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"y5Pomt_z8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XVUxwMP0k\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hMeMMEYO_.map", "// Generated by Framer (915daba)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;League Spartan-regular\",\"GF;League Spartan-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"League Spartan\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTpAcdcFguczA.woff2\",weight:\"400\"},{family:\"League Spartan\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMGYPpAcdcFguczA.woff2\",weight:\"700\"}]}];export const css=['.framer-OAS2P .framer-styles-preset-1iw5m0o:not(.rich-text-wrapper), .framer-OAS2P .framer-styles-preset-1iw5m0o.rich-text-wrapper p { --framer-font-family: \"League Spartan\", \"League Spartan Placeholder\", sans-serif; --framer-font-family-bold: \"League Spartan\", \"League Spartan Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 64px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 130%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: rgba(55, 6, 6, 0.9); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 810px) { .framer-OAS2P .framer-styles-preset-1iw5m0o:not(.rich-text-wrapper), .framer-OAS2P .framer-styles-preset-1iw5m0o.rich-text-wrapper p { --framer-font-family: \"League Spartan\", \"League Spartan Placeholder\", sans-serif; --framer-font-family-bold: \"League Spartan\", \"League Spartan Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 51px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 130%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: rgba(55, 6, 6, 0.9); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-OAS2P .framer-styles-preset-1iw5m0o:not(.rich-text-wrapper), .framer-OAS2P .framer-styles-preset-1iw5m0o.rich-text-wrapper p { --framer-font-family: \"League Spartan\", \"League Spartan Placeholder\", sans-serif; --framer-font-family-bold: \"League Spartan\", \"League Spartan Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 110%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: rgba(55, 6, 6, 0.9); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-OAS2P\";\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\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "IconType", "SrcType", "metaTagSelector", "isPublishedSiteOrSSG", "Download", "props", "styleOptions", "hoverOptions", "iconOptions", "backgroundColor", "color", "borderRadius", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "gap", "isInPublishedSiteOrSSG", "downloadURL", "paddingValue", "getIcon", "ref", "ref1", "iconStyle", "p", "getCursor", "buttonTitle", "motion", "buttonStyles", "flexAlignSwitch", "addPropertyControls", "ControlType", "fontControlStyles", "fontStore", "fonts", "css", "className", "DownloadFonts", "getFonts", "Download", "EmbedFonts", "Embed", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "Link", "SVG", "Image2", "getLoadingLazyAtYPosition", "css", "FramerhMeMMEYO_", "withCSS", "hMeMMEYO_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className"]
}
