{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/WuHDFsKQPHBD83tGrqGb/38sM5H4JZmL16QWkaEjn/Examples.js", "ssg:https://framerusercontent.com/modules/ekB9YdWbc8Ut8BaMEtOR/qsJOiJWTyJ8d88OsKoUk/Z7IBc6LTO.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/uBYyVurJ8qc5Km6xRYTG/nfIRYxAaR0onYIqzgzwM/rabh1bzLc.js", "ssg:https://framerusercontent.com/modules/olUWle5iaGg5JPyTeGX5/gOPpZj2VZYqlz7OJHjQE/yPbwZPdMM.js", "ssg:https://framerusercontent.com/modules/n329TF9WC0RpOwO5QP64/dWNc1qd8BsoCSQkHwdmX/CjLkdId0w.js", "ssg:https://framerusercontent.com/modules/eV7eex60FFgq9RbSLOGy/PqxRMuydWKCBS6fSFNtA/CWlmmjrhn.js", "ssg:https://framerusercontent.com/modules/1aGSe1lkh9UZlZCvuNBC/HfYO3ity7Pj5Nhuv0k0X/JF1itm8c0.js", "ssg:https://framerusercontent.com/modules/uD8ltqY7lhabsPyCFmDU/khi6WbkeIr5gjBMLzFlO/RaMC2gn8L.js", "ssg:https://framerusercontent.com/modules/yogt4cUmHpjEC19bHyFe/nuNJdPexaLBpILVPm2kh/udUPwDJNB.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,whileHover:{scale:1.05}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}export function withQueryParams(Component){return props=>{const previousURL=props.href||props.link;if(!previousURL||!previousURL.includes(\"whop.com\"))return /*#__PURE__*/_jsx(Component,{...props});const params=new URLSearchParams(window.location.search);const refValue=params.get(\"ref\");if(!refValue)return /*#__PURE__*/_jsx(Component,{...props});const match=/plan_[A-Za-z0-9]+/.exec(previousURL);const planId=match?match[0]:null;var newUrl=\"https://whop.com/bet-hero/?d2c=true&directPlanId=\"+planId+\"&a=\"+refValue;return /*#__PURE__*/_jsx(Component,{...props,onClick:e=>{e.preventDefault();e.stopPropagation();window.open(newUrl,\"_blank\");}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withQueryParams\":{\"type\":\"reactHoc\",\"name\":\"withQueryParams\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Examples.map", "// Generated by Framer (2ca17d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withQueryParams}from\"https://framerusercontent.com/modules/WuHDFsKQPHBD83tGrqGb/38sM5H4JZmL16QWkaEjn/Examples.js\";const ImageWithQueryParamsWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(withQueryParams(Image)));const RichTextWithQueryParams=withQueryParams(RichText);const MotionAWithQueryParams=withQueryParams(motion.a);const enabledGestures={gGVNbU_Gk:{hover:true},kdVpTMEtP:{hover:true},l4QG0RxZu:{hover:true},LB3ImXx7Z:{hover:true},RNtz8Meav:{hover:true},UZzLizGDH:{hover:true},vyJkQ7JKX:{hover:true}};const cycleOrder=[\"l4QG0RxZu\",\"UZzLizGDH\",\"gGVNbU_Gk\",\"RNtz8Meav\",\"LB3ImXx7Z\",\"kdVpTMEtP\",\"vyJkQ7JKX\"];const serializationHash=\"framer-JiJtU\";const variantClassNames={gGVNbU_Gk:\"framer-v-4mpynx\",kdVpTMEtP:\"framer-v-1lunduu\",l4QG0RxZu:\"framer-v-ephkdn\",LB3ImXx7Z:\"framer-v-10h6jfr\",RNtz8Meav:\"framer-v-kumpot\",UZzLizGDH:\"framer-v-1k1asxa\",vyJkQ7JKX:\"framer-v-9taspr\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};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:30,delay:0,mass:1,stiffness:400,type:\"spring\"};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??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={\"Contact Discord\":\"vyJkQ7JKX\",\"Default - New Tab\":\"gGVNbU_Gk\",\"Google Play\":\"LB3ImXx7Z\",\"Transparent-New Tab\":\"kdVpTMEtP\",Default:\"l4QG0RxZu\",Discord:\"RNtz8Meav\",Transparent:\"UZzLizGDH\"};const getProps=({height,id,link,tap,title,width,...props})=>{return{...props,pAzw4efBs:link??props.pAzw4efBs,TYqbnkqDS:title??props.TYqbnkqDS??\"Button\",variant:humanReadableVariantMap[props.variant]??props.variant??\"l4QG0RxZu\",wXf8AqEVi:tap??props.wXf8AqEVi};};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,TYqbnkqDS,pAzw4efBs,wXf8AqEVi,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"l4QG0RxZu\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1vyqtfl=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(wXf8AqEVi){const res=await wXf8AqEVi(...args);if(res===false)return false;}});const onTap1trgqqo=activeVariantCallback(async(...args)=>{setVariant(\"gGVNbU_Gk\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"RNtz8Meav-hover\",\"LB3ImXx7Z-hover\",\"vyJkQ7JKX-hover\"].includes(gestureVariant))return false;if([\"RNtz8Meav\",\"LB3ImXx7Z\",\"vyJkQ7JKX\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"RNtz8Meav-hover\")return true;if(baseVariant===\"RNtz8Meav\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"LB3ImXx7Z-hover\")return true;if(baseVariant===\"LB3ImXx7Z\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:pAzw4efBs,motionChild:true,nodeId:\"l4QG0RxZu\",...addPropertyOverrides({gGVNbU_Gk:{openInNewTab:true},kdVpTMEtP:{openInNewTab:true},LB3ImXx7Z:{href:\"https://www.framer.com/pricing/?via=cristianmielu\",openInNewTab:true},RNtz8Meav:{href:\"https://www.framer.com/pricing/?via=cristianmielu\",openInNewTab:true},vyJkQ7JKX:{openInNewTab:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(MotionAWithQueryParams,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-ephkdn\",className,classNames)} framer-htfhe5`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"l4QG0RxZu\",onTap:onTap1vyqtfl,ref:ref??ref1,style:{borderBottomLeftRadius:36,borderBottomRightRadius:36,borderTopLeftRadius:36,borderTopRightRadius:36,...style},...addPropertyOverrides({\"gGVNbU_Gk-hover\":{\"data-framer-name\":undefined},\"kdVpTMEtP-hover\":{\"data-framer-name\":undefined},\"l4QG0RxZu-hover\":{\"data-framer-name\":undefined},\"LB3ImXx7Z-hover\":{\"data-framer-name\":undefined},\"RNtz8Meav-hover\":{\"data-framer-name\":undefined},\"UZzLizGDH-hover\":{\"data-framer-name\":undefined},\"vyJkQ7JKX-hover\":{\"data-framer-name\":undefined},gGVNbU_Gk:{\"data-framer-name\":\"Default - New Tab\"},kdVpTMEtP:{\"data-framer-name\":\"Transparent-New Tab\"},LB3ImXx7Z:{\"data-framer-name\":\"Google Play\"},RNtz8Meav:{\"data-framer-name\":\"Discord\"},UZzLizGDH:{\"data-framer-name\":\"Transparent\"},vyJkQ7JKX:{\"data-framer-name\":\"Contact Discord\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ImageWithQueryParamsWithFXWithOptimizedAppearEffect,{className:\"framer-els8cp\",\"data-framer-appear-id\":\"els8cp\",layoutDependency:layoutDependency,layoutId:\"CvAEzfT0r\",style:{backgroundColor:\"var(--token-c37c6141-79f9-4a09-a9ce-37be3a18d52c, rgb(31, 244, 165))\",borderBottomLeftRadius:36,borderBottomRightRadius:36,borderTopLeftRadius:36,borderTopRightRadius:36},variants:{\"gGVNbU_Gk-hover\":{backgroundColor:\"rgb(29, 181, 128)\"},\"kdVpTMEtP-hover\":{backgroundColor:\"rgba(230, 230, 230, 0.2)\"},\"l4QG0RxZu-hover\":{backgroundColor:\"rgb(18, 184, 123)\"},\"LB3ImXx7Z-hover\":{backgroundColor:\"var(--token-1cc8f184-eb6d-48f2-acf3-e41bd29b0e3d, rgb(255, 102, 227))\"},\"RNtz8Meav-hover\":{backgroundColor:\"var(--token-1cc8f184-eb6d-48f2-acf3-e41bd29b0e3d, rgb(255, 102, 227))\"},\"UZzLizGDH-hover\":{backgroundColor:\"rgba(230, 230, 230, 0.2)\"},gGVNbU_Gk:{transformPerspective:1200},kdVpTMEtP:{backgroundColor:\"rgba(230, 230, 230, 0.05)\"},UZzLizGDH:{backgroundColor:\"rgba(230, 230, 230, 0.05)\"},vyJkQ7JKX:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:22,borderBottomRightRadius:22,borderTopLeftRadius:22,borderTopRightRadius:22}},...addPropertyOverrides({\"vyJkQ7JKX-hover\":{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+2),pixelHeight:100,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xNKmFpb4d4PUCjxU9e1QiFg.png\"}},gGVNbU_Gk:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,\"data-highlight\":true,animate:animation,initial:animation1,onTap:onTap1trgqqo,optimized:true},vyJkQ7JKX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+2),pixelHeight:100,pixelWidth:300,src:\"https://framerusercontent.com/images/xNKmFpb4d4PUCjxU9e1QiFg.png\"}}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichTextWithQueryParams,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Button\"})}),className:\"framer-1ppj304\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"WMuOLFcY4\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:TYqbnkqDS,variants:{kdVpTMEtP:{\"--extracted-r6o4lv\":\"var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, rgb(230, 230, 230))\"},UZzLizGDH:{\"--extracted-r6o4lv\":\"var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, rgb(230, 230, 230))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kdVpTMEtP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, rgb(230, 230, 230)))\"},children:\"Button\"})})},UZzLizGDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, rgb(230, 230, 230)))\"},children:\"Button\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-srhhly\",\"data-framer-name\":\"Light\",layoutDependency:layoutDependency,layoutId:\"D0mZeYyXS\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,filter:\"blur(10px)\",WebkitFilter:\"blur(10px)\"},variants:{kdVpTMEtP:{backgroundColor:\"rgba(255, 255, 255, 0.4)\"},UZzLizGDH:{backgroundColor:\"rgba(255, 255, 255, 0.4)\"}}}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1wqg0c8\",\"data-framer-name\":\"app_store_5f767c31\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"xcBwgKYzh\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 90 36\"><path d=\"M 64.374 17.28 L 64.374 19.343 L 63.081 19.343 L 63.081 20.695 L 64.373 20.695 L 64.373 25.29 C 64.373 26.86 65.083 27.486 66.868 27.486 C 67.182 27.486 67.48 27.45 67.742 27.405 L 67.742 26.068 C 67.518 26.089 67.377 26.105 67.13 26.105 C 66.33 26.105 65.979 25.731 65.979 24.88 L 65.979 20.696 L 67.743 20.696 L 67.743 19.344 L 65.979 19.344 L 65.979 17.28 L 64.373 17.28 Z M 72.292 27.598 C 74.668 27.598 76.124 26.006 76.124 23.369 C 76.124 20.747 74.66 19.148 72.292 19.148 C 69.916 19.148 68.452 20.747 68.452 23.369 C 68.452 26.006 69.908 27.598 72.292 27.598 Z M 72.292 26.171 C 70.895 26.171 70.11 25.148 70.11 23.369 C 70.11 21.606 70.895 20.575 72.292 20.575 C 73.681 20.575 74.473 21.606 74.473 23.369 C 74.473 25.14 73.681 26.171 72.292 26.171 Z M 77.37 27.441 L 78.977 27.441 L 78.977 22.638 C 78.977 21.495 79.836 20.725 81.054 20.725 C 81.338 20.725 81.815 20.777 81.95 20.822 L 81.95 19.238 C 81.779 19.193 81.472 19.171 81.233 19.171 C 80.172 19.171 79.268 19.753 79.037 20.553 L 78.917 20.553 L 78.917 19.305 L 77.37 19.305 Z M 85.938 20.516 C 87.126 20.516 87.903 21.344 87.941 22.622 L 83.831 22.622 C 83.921 21.353 84.75 20.516 85.938 20.516 Z M 87.933 25.244 C 87.634 25.879 86.97 26.23 85.998 26.23 C 84.713 26.23 83.884 25.327 83.831 23.899 L 83.831 23.809 L 89.577 23.809 L 89.577 23.25 C 89.577 20.695 88.209 19.148 85.945 19.148 C 83.652 19.148 82.195 20.799 82.195 23.399 C 82.195 25.999 83.623 27.598 85.954 27.598 C 87.814 27.598 89.113 26.701 89.48 25.244 Z M 53.841 24.437 C 53.965 26.435 55.63 27.712 58.107 27.712 C 60.755 27.712 62.412 26.373 62.412 24.235 C 62.412 22.555 61.467 21.625 59.176 21.092 L 57.945 20.79 C 56.489 20.448 55.901 19.992 55.901 19.194 C 55.901 18.188 56.814 17.529 58.185 17.529 C 59.485 17.529 60.384 18.173 60.547 19.202 L 62.234 19.202 C 62.133 17.321 60.476 15.997 58.207 15.997 C 55.768 15.997 54.143 17.321 54.143 19.31 C 54.143 20.952 55.064 21.928 57.085 22.4 L 58.525 22.748 C 60.004 23.097 60.655 23.608 60.655 24.46 C 60.655 25.45 59.632 26.17 58.239 26.17 C 56.745 26.17 55.707 25.497 55.56 24.437 Z M 37.202 19.171 C 36.096 19.171 35.141 19.724 34.646 20.651 L 34.528 20.651 L 34.528 19.305 L 32.981 19.305 L 32.981 30.146 L 34.588 30.146 L 34.588 26.208 L 34.714 26.208 C 35.141 27.068 36.059 27.576 37.217 27.576 C 39.272 27.576 40.579 25.954 40.579 23.369 C 40.579 20.785 39.272 19.171 37.202 19.171 Z M 36.746 26.133 C 35.402 26.133 34.557 25.073 34.557 23.377 C 34.557 21.674 35.402 20.613 36.753 20.613 C 38.113 20.613 38.928 21.651 38.928 23.369 C 38.928 25.096 38.113 26.133 36.746 26.133 Z M 46.2 19.171 C 45.094 19.171 44.138 19.724 43.644 20.651 L 43.525 20.651 L 43.525 19.305 L 41.979 19.305 L 41.979 30.146 L 43.584 30.146 L 43.584 26.208 L 43.711 26.208 C 44.138 27.068 45.057 27.576 46.214 27.576 C 48.269 27.576 49.576 25.954 49.576 23.369 C 49.576 20.785 48.269 19.171 46.2 19.171 Z M 45.743 26.133 C 44.399 26.133 43.555 25.073 43.555 23.377 C 43.555 21.674 44.399 20.613 45.751 20.613 C 47.11 20.613 47.925 21.651 47.925 23.369 C 47.925 25.096 47.11 26.133 45.743 26.133 Z M 30.1 27.441 L 31.942 27.441 L 27.909 16.268 L 26.043 16.268 L 22.008 27.441 L 23.789 27.441 L 24.818 24.476 L 29.077 24.476 Z M 26.887 18.297 L 27.018 18.297 L 28.636 23.019 L 25.26 23.019 L 26.886 18.296 Z M 23.085 7.839 L 23.085 13.23 L 25.032 13.23 C 26.637 13.23 27.568 12.24 27.568 10.518 C 27.568 8.822 26.63 7.84 25.032 7.84 L 23.085 7.84 Z M 23.922 8.602 L 24.938 8.602 C 26.055 8.602 26.716 9.311 26.716 10.529 C 26.716 11.766 26.066 12.468 24.938 12.468 L 23.922 12.468 Z M 30.416 13.308 C 31.604 13.308 32.333 12.513 32.333 11.194 C 32.333 9.883 31.601 9.084 30.416 9.084 C 29.228 9.084 28.497 9.883 28.497 11.194 C 28.497 12.513 29.225 13.309 30.416 13.309 Z M 30.416 12.595 C 29.718 12.595 29.326 12.083 29.326 11.194 C 29.326 10.312 29.718 9.797 30.416 9.797 C 31.111 9.797 31.507 10.313 31.507 11.194 C 31.507 12.08 31.111 12.595 30.416 12.595 Z M 38.535 9.162 L 37.732 9.162 L 37.008 12.267 L 36.945 12.267 L 36.108 9.162 L 35.338 9.162 L 34.501 12.267 L 34.441 12.267 L 33.713 9.162 L 32.899 9.162 L 34.02 13.23 L 34.846 13.23 L 35.683 10.234 L 35.746 10.234 L 36.587 13.23 L 37.419 13.23 L 38.536 9.162 Z M 39.46 13.23 L 40.263 13.23 L 40.263 10.85 C 40.263 10.216 40.641 9.82 41.235 9.82 C 41.829 9.82 42.113 10.144 42.113 10.798 L 42.113 13.23 L 42.916 13.23 L 42.916 10.597 C 42.916 9.629 42.415 9.084 41.507 9.084 C 40.895 9.084 40.491 9.356 40.293 9.808 L 40.234 9.808 L 40.234 9.162 L 39.46 9.162 L 39.46 13.23 Z M 44.181 13.23 L 44.984 13.23 L 44.984 7.574 L 44.18 7.574 L 44.18 13.23 Z M 48.004 13.308 C 49.192 13.308 49.92 12.513 49.92 11.194 C 49.92 9.883 49.188 9.084 48.003 9.084 C 46.815 9.084 46.084 9.883 46.084 11.194 C 46.084 12.513 46.813 13.309 48.004 13.309 Z M 48.004 12.595 C 47.306 12.595 46.913 12.083 46.913 11.194 C 46.913 10.312 47.306 9.797 48.004 9.797 C 48.699 9.797 49.095 10.313 49.095 11.194 C 49.095 12.08 48.699 12.595 48.004 12.595 Z M 52.313 12.621 C 51.876 12.621 51.558 12.408 51.558 12.042 C 51.558 11.684 51.812 11.493 52.373 11.455 L 53.366 11.392 L 53.366 11.732 C 53.366 12.236 52.918 12.621 52.313 12.621 Z M 52.107 13.298 C 52.642 13.298 53.087 13.065 53.329 12.659 L 53.393 12.659 L 53.393 13.23 L 54.167 13.23 L 54.167 10.451 C 54.167 9.592 53.591 9.084 52.571 9.084 C 51.648 9.084 50.99 9.532 50.909 10.23 L 51.685 10.23 C 51.775 9.942 52.085 9.779 52.533 9.779 C 53.082 9.779 53.366 10.022 53.366 10.451 L 53.366 10.802 L 52.265 10.865 C 51.297 10.925 50.752 11.347 50.752 12.08 C 50.752 12.823 51.323 13.298 52.107 13.298 Z M 56.891 13.298 C 57.451 13.298 57.926 13.032 58.169 12.587 L 58.232 12.587 L 58.232 13.23 L 59.001 13.23 L 59.001 7.574 L 58.198 7.574 L 58.198 9.808 L 58.138 9.808 C 57.919 9.36 57.448 9.095 56.891 9.095 C 55.864 9.095 55.202 9.909 55.202 11.194 C 55.202 12.483 55.857 13.298 56.891 13.298 Z M 57.119 9.815 C 57.792 9.815 58.213 10.35 58.213 11.198 C 58.213 12.049 57.795 12.577 57.119 12.577 C 56.439 12.577 56.032 12.057 56.032 11.194 C 56.032 10.339 56.443 9.815 57.119 9.815 Z M 64.21 13.308 C 65.398 13.308 66.126 12.513 66.126 11.194 C 66.126 9.883 65.393 9.084 64.209 9.084 C 63.021 9.084 62.289 9.883 62.289 11.194 C 62.289 12.513 63.018 13.309 64.21 13.309 Z M 64.21 12.595 C 63.511 12.595 63.119 12.083 63.119 11.194 C 63.119 10.312 63.511 9.797 64.21 9.797 C 64.904 9.797 65.3 10.313 65.3 11.194 C 65.3 12.08 64.904 12.595 64.21 12.595 Z M 67.189 13.23 L 67.991 13.23 L 67.991 10.85 C 67.991 10.216 68.369 9.82 68.963 9.82 C 69.557 9.82 69.841 10.144 69.841 10.798 L 69.841 13.23 L 70.644 13.23 L 70.644 10.597 C 70.644 9.629 70.143 9.084 69.236 9.084 C 68.623 9.084 68.219 9.356 68.021 9.808 L 67.962 9.808 L 67.962 9.162 L 67.189 9.162 Z M 74.343 8.15 L 74.343 9.181 L 73.696 9.181 L 73.696 9.857 L 74.343 9.857 L 74.343 12.155 C 74.343 12.938 74.697 13.253 75.59 13.253 C 75.747 13.253 75.896 13.235 76.027 13.211 L 76.027 12.542 C 75.926 12.555 75.824 12.561 75.721 12.561 C 75.321 12.561 75.145 12.374 75.145 11.949 L 75.145 9.857 L 76.027 9.857 L 76.027 9.181 L 75.145 9.181 L 75.145 8.15 Z M 77.105 13.23 L 77.909 13.23 L 77.909 10.854 C 77.909 10.238 78.275 9.824 78.932 9.824 C 79.499 9.824 79.802 10.152 79.802 10.802 L 79.802 13.23 L 80.605 13.23 L 80.605 10.604 C 80.605 9.636 80.071 9.087 79.205 9.087 C 78.593 9.087 78.162 9.36 77.964 9.816 L 77.901 9.816 L 77.901 7.575 L 77.105 7.575 Z M 83.502 9.767 C 84.096 9.767 84.485 10.182 84.504 10.82 L 82.449 10.82 C 82.494 10.185 82.909 9.767 83.502 9.767 Z M 84.5 12.132 C 84.351 12.449 84.018 12.625 83.533 12.625 C 82.89 12.625 82.475 12.173 82.449 11.46 L 82.449 11.415 L 85.322 11.415 L 85.322 11.135 C 85.322 9.857 84.638 9.084 83.507 9.084 C 82.359 9.084 81.631 9.909 81.631 11.21 C 81.631 12.509 82.345 13.308 83.51 13.308 C 84.44 13.308 85.09 12.86 85.273 12.132 Z M 13.293 18.27 C 13.32 16.745 14.119 15.338 15.414 14.534 C 14.584 13.363 13.256 12.645 11.821 12.592 C 10.31 12.434 8.845 13.496 8.075 13.496 C 7.29 13.496 6.104 12.608 4.828 12.634 C 3.15 12.696 1.625 13.626 0.802 15.089 C -0.939 18.103 0.36 22.532 2.027 24.968 C 2.861 26.16 3.836 27.492 5.112 27.446 C 6.36 27.393 6.826 26.649 8.334 26.649 C 9.826 26.649 10.264 27.446 11.565 27.416 C 12.905 27.394 13.748 26.217 14.553 25.013 C 15.153 24.163 15.615 23.224 15.921 22.23 C 14.336 21.549 13.305 19.995 13.293 18.27 Z M 10.834 10.99 C 11.565 10.113 11.925 8.987 11.838 7.849 C 10.722 7.966 9.691 8.5 8.951 9.343 C 8.224 10.177 7.854 11.263 7.922 12.367 C 9.051 12.372 10.122 11.866 10.834 10.99 Z\" fill=\"var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, rgb(230, 230, 230)) /* {&quot;name&quot;:&quot;Light/90&quot;} */\"></path></svg>',svgContentId:8709440900,withExternalLayout:true,...addPropertyOverrides({RNtz8Meav:{svgContentId:10563983992}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-188y3uu\",\"data-framer-name\":\"play_store_b3d2b74a\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"TfFQxu3QI\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 104 36\"><path d=\"M 52.123 19.576 C 50.014 19.576 48.295 21.187 48.295 23.404 C 48.295 25.609 50.014 27.231 52.123 27.231 C 54.232 27.231 55.951 25.608 55.951 23.404 C 55.95 21.186 54.232 19.576 52.123 19.576 Z M 52.123 25.725 C 50.967 25.725 49.971 24.768 49.971 23.404 C 49.971 22.027 50.968 21.084 52.123 21.084 C 53.278 21.084 54.275 22.027 54.275 23.404 C 54.275 24.767 53.278 25.725 52.123 25.725 Z M 43.772 19.576 C 41.664 19.576 39.945 21.187 39.945 23.404 C 39.945 25.609 41.664 27.231 43.772 27.231 C 45.882 27.231 47.601 25.608 47.601 23.404 C 47.601 21.186 45.882 19.576 43.772 19.576 Z M 43.772 25.725 C 42.617 25.725 41.621 24.768 41.621 23.404 C 41.621 22.027 42.618 21.084 43.772 21.084 C 44.928 21.084 45.924 22.027 45.924 23.404 C 45.925 24.767 44.928 25.725 43.772 25.725 Z M 33.84 20.751 L 33.84 22.375 L 37.712 22.375 C 37.596 23.288 37.293 23.955 36.83 24.419 C 36.267 24.984 35.386 25.608 33.84 25.608 C 31.457 25.608 29.594 23.679 29.594 21.288 C 29.594 18.895 31.457 16.966 33.84 16.966 C 35.126 16.966 36.065 17.473 36.758 18.127 L 37.899 16.98 C 36.931 16.053 35.646 15.342 33.84 15.342 C 30.576 15.342 27.832 18.01 27.832 21.287 C 27.832 24.564 30.576 27.231 33.84 27.231 C 35.602 27.231 36.932 26.651 37.971 25.564 C 39.039 24.491 39.372 22.982 39.372 21.766 C 39.376 21.425 39.347 21.085 39.285 20.75 L 33.84 20.75 Z M 74.461 22.012 C 74.144 21.157 73.176 19.576 71.197 19.576 C 69.233 19.576 67.6 21.127 67.6 23.404 C 67.6 25.549 69.218 27.231 71.384 27.231 C 73.132 27.231 74.143 26.158 74.563 25.535 L 73.263 24.664 C 72.83 25.303 72.237 25.723 71.384 25.723 C 70.533 25.723 69.926 25.331 69.536 24.563 L 74.634 22.446 Z M 69.261 23.288 C 69.218 21.809 70.403 21.056 71.255 21.056 C 71.92 21.056 72.483 21.389 72.671 21.867 L 69.261 23.289 Z M 65.117 27 L 66.791 27 L 66.791 15.75 L 65.117 15.75 Z M 62.371 20.432 L 62.314 20.432 C 61.938 19.982 61.216 19.577 60.307 19.577 C 58.4 19.577 56.652 21.258 56.652 23.42 C 56.652 25.564 58.4 27.232 60.307 27.232 C 61.217 27.232 61.938 26.827 62.314 26.363 L 62.371 26.363 L 62.371 26.914 C 62.371 28.378 61.591 29.161 60.335 29.161 C 59.31 29.161 58.674 28.423 58.414 27.798 L 56.955 28.408 C 57.374 29.422 58.486 30.669 60.335 30.669 C 62.3 30.669 63.961 29.509 63.961 26.682 L 63.961 19.809 L 62.372 19.809 L 62.372 20.432 Z M 60.451 25.725 C 59.295 25.725 58.328 24.753 58.328 23.419 C 58.328 22.07 59.295 21.084 60.451 21.084 C 61.591 21.084 62.487 22.07 62.487 23.419 C 62.487 24.753 61.591 25.725 60.451 25.725 Z M 82.31 15.75 L 78.301 15.75 L 78.301 27 L 79.973 27 L 79.973 22.738 L 82.309 22.738 C 84.163 22.738 85.986 21.39 85.986 19.244 C 85.986 17.097 84.164 15.749 82.31 15.749 Z M 82.353 21.172 L 79.973 21.172 L 79.973 17.316 L 82.353 17.316 C 83.603 17.316 84.314 18.355 84.314 19.245 C 84.314 20.116 83.603 21.172 82.353 21.172 Z M 92.692 19.557 C 91.481 19.557 90.226 20.092 89.707 21.28 L 91.192 21.901 C 91.509 21.28 92.101 21.076 92.72 21.076 C 93.586 21.076 94.465 21.598 94.48 22.523 L 94.48 22.64 C 94.176 22.466 93.527 22.206 92.735 22.206 C 91.134 22.206 89.505 23.089 89.505 24.738 C 89.505 26.244 90.817 27.213 92.287 27.213 C 93.412 27.213 94.032 26.707 94.421 26.113 L 94.479 26.113 L 94.479 26.981 L 96.094 26.981 L 96.094 22.667 C 96.095 20.671 94.609 19.557 92.692 19.557 Z M 92.489 25.723 C 91.942 25.723 91.178 25.447 91.178 24.767 C 91.178 23.899 92.13 23.566 92.952 23.566 C 93.686 23.566 94.033 23.725 94.48 23.942 C 94.353 24.952 93.503 25.713 92.489 25.724 Z M 101.977 19.803 L 100.06 24.681 L 100.002 24.681 L 98.012 19.803 L 96.21 19.803 L 99.194 26.62 L 97.493 30.413 L 99.238 30.413 L 103.838 19.803 Z M 86.91 27 L 88.582 27 L 88.582 15.75 L 86.91 15.75 Z M 33.547 9.219 C 33.547 9.973 33.325 10.573 32.879 11.021 C 32.374 11.554 31.714 11.821 30.903 11.821 C 30.127 11.821 29.466 11.551 28.924 11.011 C 28.38 10.47 28.108 9.8 28.108 9.001 C 28.108 8.2 28.38 7.531 28.924 6.991 C 29.466 6.45 30.127 6.18 30.903 6.18 C 31.289 6.18 31.656 6.256 32.006 6.405 C 32.357 6.557 32.638 6.758 32.848 7.008 L 32.375 7.484 C 32.019 7.057 31.529 6.844 30.902 6.844 C 30.336 6.844 29.846 7.043 29.432 7.443 C 29.02 7.843 28.813 8.361 28.813 9 C 28.813 9.638 29.02 10.157 29.432 10.557 C 29.822 10.947 30.352 11.163 30.902 11.156 C 31.503 11.156 32.004 10.956 32.405 10.553 C 32.665 10.291 32.816 9.927 32.856 9.46 L 30.901 9.46 L 30.901 8.811 L 33.509 8.811 C 33.536 8.952 33.547 9.088 33.547 9.219 Z M 37.68 6.963 L 35.231 6.963 L 35.231 8.675 L 37.44 8.675 L 37.44 9.324 L 35.231 9.324 L 35.231 11.036 L 37.68 11.036 L 37.68 11.7 L 34.54 11.7 L 34.54 6.3 L 37.68 6.3 Z M 40.595 11.7 L 39.903 11.7 L 39.903 6.963 L 38.401 6.963 L 38.401 6.3 L 42.098 6.3 L 42.098 6.963 L 40.595 6.963 Z M 44.772 11.7 L 44.772 6.3 L 45.462 6.3 L 45.462 11.7 Z M 48.529 11.7 L 47.837 11.7 L 47.837 6.963 L 46.334 6.963 L 46.334 6.3 L 50.03 6.3 L 50.03 6.963 L 48.528 6.963 L 48.528 11.7 Z M 57.028 11.002 C 56.499 11.548 55.842 11.821 55.055 11.821 C 54.269 11.821 53.612 11.548 53.084 11.002 C 52.555 10.457 52.291 9.789 52.291 9 C 52.291 8.211 52.555 7.543 53.084 6.997 C 53.613 6.452 54.269 6.178 55.056 6.178 C 55.837 6.178 56.494 6.453 57.024 7.001 C 57.555 7.549 57.82 8.215 57.82 9 C 57.82 9.789 57.556 10.457 57.028 11.002 Z M 53.594 10.55 C 53.976 10.948 54.505 11.168 55.055 11.156 C 55.632 11.156 56.12 10.954 56.517 10.55 C 56.915 10.145 57.115 9.628 57.115 9 C 57.115 8.372 56.915 7.855 56.517 7.45 C 56.135 7.052 55.606 6.832 55.055 6.844 C 54.479 6.844 53.992 7.046 53.594 7.45 C 53.197 7.855 52.997 8.372 52.997 9 C 52.997 9.628 53.197 10.145 53.594 10.55 Z M 58.791 11.7 L 58.791 6.3 L 59.632 6.3 L 62.246 10.5 L 62.276 10.5 L 62.246 9.46 L 62.246 6.3 L 62.938 6.3 L 62.938 11.7 L 62.215 11.7 L 59.481 7.295 L 59.451 7.295 L 59.48 8.336 L 59.48 11.7 L 58.79 11.7 Z\" fill=\"var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, rgb(230, 230, 230)) /* {&quot;name&quot;:&quot;Light/90&quot;} */\"></path><path d=\"M 33.547 9.219 C 33.547 9.973 33.325 10.573 32.879 11.021 C 32.374 11.554 31.714 11.821 30.903 11.821 C 30.127 11.821 29.466 11.551 28.924 11.011 C 28.38 10.47 28.108 9.8 28.108 9.001 C 28.108 8.2 28.38 7.531 28.924 6.991 C 29.466 6.45 30.127 6.18 30.903 6.18 C 31.289 6.18 31.656 6.256 32.006 6.405 C 32.357 6.557 32.638 6.758 32.848 7.008 L 32.375 7.484 C 32.019 7.057 31.529 6.844 30.902 6.844 C 30.336 6.844 29.846 7.043 29.432 7.443 C 29.02 7.843 28.813 8.361 28.813 9 C 28.813 9.638 29.02 10.157 29.432 10.557 C 29.822 10.947 30.352 11.163 30.902 11.156 C 31.503 11.156 32.004 10.956 32.405 10.553 C 32.665 10.291 32.816 9.927 32.856 9.46 L 30.901 9.46 L 30.901 8.811 L 33.509 8.811 C 33.536 8.952 33.547 9.088 33.547 9.219 Z M 37.68 6.963 L 35.231 6.963 L 35.231 8.675 L 37.44 8.675 L 37.44 9.324 L 35.231 9.324 L 35.231 11.036 L 37.68 11.036 L 37.68 11.7 L 34.54 11.7 L 34.54 6.3 L 37.68 6.3 Z M 40.595 11.7 L 39.903 11.7 L 39.903 6.963 L 38.401 6.963 L 38.401 6.3 L 42.098 6.3 L 42.098 6.963 L 40.595 6.963 Z M 44.772 11.7 L 44.772 6.3 L 45.462 6.3 L 45.462 11.7 Z M 48.529 11.7 L 47.837 11.7 L 47.837 6.963 L 46.334 6.963 L 46.334 6.3 L 50.03 6.3 L 50.03 6.963 L 48.528 6.963 L 48.528 11.7 Z M 57.028 11.002 C 56.499 11.548 55.842 11.821 55.055 11.821 C 54.269 11.821 53.612 11.548 53.084 11.002 C 52.555 10.457 52.291 9.789 52.291 9 C 52.291 8.211 52.555 7.543 53.084 6.997 C 53.613 6.452 54.269 6.178 55.056 6.178 C 55.837 6.178 56.494 6.453 57.024 7.001 C 57.555 7.549 57.82 8.215 57.82 9 C 57.82 9.789 57.556 10.457 57.028 11.002 Z M 53.594 10.55 C 53.976 10.948 54.505 11.168 55.055 11.156 C 55.632 11.156 56.12 10.954 56.517 10.55 C 56.915 10.145 57.115 9.628 57.115 9 C 57.115 8.372 56.915 7.855 56.517 7.45 C 56.135 7.052 55.606 6.832 55.055 6.844 C 54.479 6.844 53.992 7.046 53.594 7.45 C 53.197 7.855 52.997 8.372 52.997 9 C 52.997 9.628 53.197 10.145 53.594 10.55 Z M 58.791 11.7 L 58.791 6.3 L 59.632 6.3 L 62.246 10.5 L 62.276 10.5 L 62.246 9.46 L 62.246 6.3 L 62.938 6.3 L 62.938 11.7 L 62.215 11.7 L 59.481 7.295 L 59.451 7.295 L 59.48 8.336 L 59.48 11.7 L 58.79 11.7 Z\" fill=\"transparent\" stroke-width=\"0.18\" stroke=\"rgba(255, 255, 255, 0)\" stroke-miterlimit=\"10\"></path><path d=\"M 14.215 12.809 L 3.886 6.796 C 3.483 6.553 3.023 6.426 2.553 6.426 C 1.547 6.426 0.664 7.037 0.24 7.892 L 0.317 7.97 L 9.677 17.364 L 14.215 12.81 Z M -0.023 8.901 C -0.025 8.939 -0.026 8.977 -0.026 9.015 L -0.026 26.987 C -0.026 27.024 -0.026 27.063 -0.023 27.101 L 9.044 18 L -0.023 8.9 Z M 0.24 28.109 C 0.664 28.964 1.548 29.576 2.553 29.576 C 3.029 29.576 3.477 29.446 3.861 29.219 L 3.892 29.201 L 14.233 23.209 L 9.678 18.637 L 0.318 28.031 Z M 15.037 22.743 L 19.248 20.304 C 20.082 19.854 20.604 18.982 20.607 18.032 C 20.61 17.081 20.094 16.205 19.263 15.75 L 19.254 15.744 L 15.018 13.278 L 10.31 18 L 15.036 22.743 Z\" fill=\"var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, rgb(230, 230, 230)) /* {&quot;name&quot;:&quot;Light/90&quot;} */\"></path></svg>',svgContentId:8838237549,withExternalLayout:true,...addPropertyOverrides({LB3ImXx7Z:{svgContentId:10601918979}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JiJtU.framer-htfhe5, .framer-JiJtU .framer-htfhe5 { display: block; }\",\".framer-JiJtU.framer-ephkdn { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 48px; justify-content: center; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-JiJtU .framer-els8cp { bottom: 2px; flex: none; left: 2px; overflow: hidden; position: absolute; right: 2px; top: 2px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-JiJtU .framer-1ppj304 { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-JiJtU .framer-srhhly { bottom: 15px; flex: none; left: -48px; overflow: hidden; position: absolute; top: 15px; width: 18px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-JiJtU .framer-1wqg0c8 { flex: none; height: 36px; position: relative; width: 90px; z-index: 1; }\",\".framer-JiJtU .framer-188y3uu { flex: none; height: 36px; position: relative; width: 104px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-JiJtU.framer-ephkdn { gap: 0px; } .framer-JiJtU.framer-ephkdn > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-JiJtU.framer-ephkdn > :first-child { margin-left: 0px; } .framer-JiJtU.framer-ephkdn > :last-child { margin-right: 0px; } }\",\".framer-JiJtU.framer-v-4mpynx .framer-els8cp { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-JiJtU.framer-v-4mpynx .framer-els8cp { gap: 0px; } .framer-JiJtU.framer-v-4mpynx .framer-els8cp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-JiJtU.framer-v-4mpynx .framer-els8cp > :first-child { margin-left: 0px; } .framer-JiJtU.framer-v-4mpynx .framer-els8cp > :last-child { margin-right: 0px; } }\",\".framer-JiJtU.framer-v-kumpot .framer-els8cp, .framer-JiJtU.framer-v-9taspr.hover .framer-els8cp { order: 0; }\",\".framer-JiJtU.framer-v-kumpot .framer-srhhly, .framer-JiJtU.framer-v-9taspr.hover .framer-srhhly { order: 3; }\",\".framer-JiJtU.framer-v-kumpot .framer-1wqg0c8 { order: 1; }\",\".framer-JiJtU.framer-v-9taspr.framer-ephkdn { width: 152px; }\",\".framer-JiJtU.framer-v-ephkdn.hover .framer-srhhly, .framer-JiJtU.framer-v-1k1asxa.hover .framer-srhhly, .framer-JiJtU.framer-v-4mpynx.hover .framer-srhhly { left: unset; right: -48px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 97.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"UZzLizGDH\":{\"layout\":[\"auto\",\"fixed\"]},\"gGVNbU_Gk\":{\"layout\":[\"auto\",\"fixed\"]},\"RNtz8Meav\":{\"layout\":[\"auto\",\"fixed\"]},\"LB3ImXx7Z\":{\"layout\":[\"auto\",\"fixed\"]},\"kdVpTMEtP\":{\"layout\":[\"auto\",\"fixed\"]},\"vyJkQ7JKX\":{\"layout\":[\"fixed\",\"fixed\"]},\"zlVgYDFxp\":{\"layout\":[\"auto\",\"fixed\"]},\"yUQoslLl0\":{\"layout\":[\"auto\",\"fixed\"]},\"pMO0A0o5M\":{\"layout\":[\"auto\",\"fixed\"]},\"jtkwbWBbN\":{\"layout\":[\"auto\",\"fixed\"]},\"K0XFMfKhD\":{\"layout\":[\"auto\",\"fixed\"]},\"bW9lrI6Ji\":{\"layout\":[\"auto\",\"fixed\"]},\"tdBstYaGu\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"TYqbnkqDS\":\"title\",\"pAzw4efBs\":\"link\",\"wXf8AqEVi\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZ7IBc6LTO=withCSS(Component,css,\"framer-JiJtU\");export default FramerZ7IBc6LTO;FramerZ7IBc6LTO.displayName=\"Button\";FramerZ7IBc6LTO.defaultProps={height:48,width:97.5};addPropertyControls(FramerZ7IBc6LTO,{variant:{options:[\"l4QG0RxZu\",\"UZzLizGDH\",\"gGVNbU_Gk\",\"RNtz8Meav\",\"LB3ImXx7Z\",\"kdVpTMEtP\",\"vyJkQ7JKX\"],optionTitles:[\"Default\",\"Transparent\",\"Default - New Tab\",\"Discord\",\"Google Play\",\"Transparent-New Tab\",\"Contact Discord\"],title:\"Variant\",type:ControlType.Enum},TYqbnkqDS:{defaultValue:\"Button\",displayTextArea:false,title:\"Title\",type:ControlType.String},pAzw4efBs:{title:\"Link\",type:ControlType.Link},wXf8AqEVi:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerZ7IBc6LTO,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZ7IBc6LTO\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"97.5\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"48\",\"framerVariables\":\"{\\\"TYqbnkqDS\\\":\\\"title\\\",\\\"pAzw4efBs\\\":\\\"link\\\",\\\"wXf8AqEVi\\\":\\\"tap\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"UZzLizGDH\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"gGVNbU_Gk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"RNtz8Meav\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"LB3ImXx7Z\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"kdVpTMEtP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"vyJkQ7JKX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zlVgYDFxp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"yUQoslLl0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"pMO0A0o5M\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"jtkwbWBbN\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"K0XFMfKhD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"bW9lrI6Ji\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"tdBstYaGu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Z7IBc6LTO.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 (5bbf1f3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={GLTpKNCQ9:{hover:true},qKGM07LwV:{hover:true},YB0S64uuD:{hover:true},YmrWk9Tym:{hover:true,pressed:true}};const cycleOrder=[\"YmrWk9Tym\",\"Y8vxKEw21\",\"GLTpKNCQ9\",\"YB0S64uuD\",\"qKGM07LwV\"];const serializationHash=\"framer-8JBx6\";const variantClassNames={GLTpKNCQ9:\"framer-v-1bjf98g\",qKGM07LwV:\"framer-v-1y51ulf\",Y8vxKEw21:\"framer-v-19pvvav\",YB0S64uuD:\"framer-v-1bawtn4\",YmrWk9Tym:\"framer-v-cnjetl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Link - New Tab\":\"qKGM07LwV\",\"No Link\":\"YB0S64uuD\",Default:\"YmrWk9Tym\",Link:\"GLTpKNCQ9\",Selected:\"Y8vxKEw21\"};const getProps=({height,id,link,tap,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,JjZVqrU_x:(_ref=title!==null&&title!==void 0?title:props.JjZVqrU_x)!==null&&_ref!==void 0?_ref:\"Menu Tab\",On6e6ISig:link!==null&&link!==void 0?link:props.On6e6ISig,QJmjqZfLG:tap!==null&&tap!==void 0?tap:props.QJmjqZfLG,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"YmrWk9Tym\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,JjZVqrU_x,QJmjqZfLG,On6e6ISig,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YmrWk9Tym\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap2jb5c8=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(QJmjqZfLG){const res=await QJmjqZfLG(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"GLTpKNCQ9-hover\",\"YB0S64uuD-hover\",\"qKGM07LwV-hover\"].includes(gestureVariant))return true;if([\"GLTpKNCQ9\",\"YB0S64uuD\",\"qKGM07LwV\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"GLTpKNCQ9-hover\",\"YB0S64uuD-hover\",\"qKGM07LwV-hover\"].includes(gestureVariant))return false;if([\"GLTpKNCQ9\",\"YB0S64uuD\",\"qKGM07LwV\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:On6e6ISig,nodeId:\"YmrWk9Tym\",smoothScroll:false,...addPropertyOverrides({\"YB0S64uuD-hover\":{href:undefined},GLTpKNCQ9:{openInNewTab:false},qKGM07LwV:{href:\"https://www.framer.com/pricing/?via=cristianmielu\",openInNewTab:true},YB0S64uuD:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-cnjetl\",className,classNames)} framer-1796qey`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"YmrWk9Tym\",onTap:onTap2jb5c8,ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},...addPropertyOverrides({\"GLTpKNCQ9-hover\":{\"data-framer-name\":undefined},\"qKGM07LwV-hover\":{\"data-framer-name\":undefined},\"YB0S64uuD-hover\":{\"data-framer-name\":undefined},\"YmrWk9Tym-hover\":{\"data-framer-name\":undefined},\"YmrWk9Tym-pressed\":{\"data-framer-name\":undefined},GLTpKNCQ9:{\"data-framer-name\":\"Link\"},qKGM07LwV:{\"data-framer-name\":\"Link - New Tab\"},Y8vxKEw21:{\"data-framer-name\":\"Selected\"},YB0S64uuD:{\"data-framer-name\":\"No Link\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:\"Menu Tab\"})}),className:\"framer-1sadirj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aI8OWbd9G\",style:{\"--extracted-r6o4lv\":\"var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:JjZVqrU_x,variants:{\"GLTpKNCQ9-hover\":{\"--extracted-r6o4lv\":\"var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, rgb(230, 230, 230))\"},\"qKGM07LwV-hover\":{\"--extracted-r6o4lv\":\"var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, rgb(230, 230, 230))\"},\"YB0S64uuD-hover\":{\"--extracted-r6o4lv\":\"var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, rgb(230, 230, 230))\"},\"YmrWk9Tym-hover\":{\"--extracted-r6o4lv\":\"var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, rgb(230, 230, 230))\"},Y8vxKEw21:{\"--extracted-r6o4lv\":\"var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, rgb(230, 230, 230))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"GLTpKNCQ9-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, rgb(230, 230, 230)))\"},children:\"Menu Tab\"})})},\"qKGM07LwV-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, rgb(230, 230, 230)))\"},children:\"Menu Tab\"})})},\"YB0S64uuD-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, rgb(230, 230, 230)))\"},children:\"Menu Tab\"})})},\"YmrWk9Tym-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, rgb(230, 230, 230)))\"},children:\"Menu Tab\"})})},Y8vxKEw21:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, rgb(230, 230, 230)))\"},children:\"Menu Tab\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-dm5tki\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"TQZUs_WD2\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-g9e8os-container\",layoutDependency:layoutDependency,layoutId:\"FWG1KPjc1-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowRight\",id:\"FWG1KPjc1\",layoutId:\"FWG1KPjc1\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({\"GLTpKNCQ9-hover\":{color:\"var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, rgb(230, 230, 230))\"},\"qKGM07LwV-hover\":{color:\"var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, rgb(230, 230, 230))\"},\"YB0S64uuD-hover\":{color:\"var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, rgb(230, 230, 230))\"}},baseVariant,gestureVariant)})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qpoljy\",layoutDependency:layoutDependency,layoutId:\"dwH8K9Nah\",style:{background:'linear-gradient(90deg, var(--token-3c0773e2-e4f9-4bf4-8185-514b67d01490, rgb(13, 13, 13)) /* {\"name\":\"Dark/5\"} */ 0%, var(--token-c37c6141-79f9-4a09-a9ce-37be3a18d52c, rgb(31, 244, 165)) /* {\"name\":\"Green 2\"} */ 49.99999999999999%, var(--token-3c0773e2-e4f9-4bf4-8185-514b67d01490, rgb(13, 13, 13)) /* {\"name\":\"Dark/5\"} */ 100%)'}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8JBx6.framer-1796qey, .framer-8JBx6 .framer-1796qey { display: block; }\",\".framer-8JBx6.framer-cnjetl { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 6px 12px 6px 12px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-8JBx6 .framer-1sadirj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8JBx6 .framer-dm5tki { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 16px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 16px; }\",\".framer-8JBx6 .framer-g9e8os-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-8JBx6 .framer-1qpoljy { bottom: -1px; flex: none; height: 1px; left: 0px; overflow: hidden; position: absolute; right: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8JBx6.framer-cnjetl, .framer-8JBx6 .framer-dm5tki { gap: 0px; } .framer-8JBx6.framer-cnjetl > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-8JBx6.framer-cnjetl > :first-child, .framer-8JBx6 .framer-dm5tki > :first-child { margin-left: 0px; } .framer-8JBx6.framer-cnjetl > :last-child, .framer-8JBx6 .framer-dm5tki > :last-child { margin-right: 0px; } .framer-8JBx6 .framer-dm5tki > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-8JBx6.framer-v-19pvvav .framer-1qpoljy { bottom: 0px; }\",\".framer-8JBx6.framer-v-cnjetl.hover .framer-1qpoljy { align-content: center; align-items: center; bottom: 0px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8JBx6.framer-v-cnjetl.hover .framer-1qpoljy { gap: 0px; } .framer-8JBx6.framer-v-cnjetl.hover .framer-1qpoljy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-8JBx6.framer-v-cnjetl.hover .framer-1qpoljy > :first-child { margin-left: 0px; } .framer-8JBx6.framer-v-cnjetl.hover .framer-1qpoljy > :last-child { margin-right: 0px; } }\",\".framer-8JBx6.framer-v-1bjf98g.hover .framer-g9e8os-container, .framer-8JBx6.framer-v-1y51ulf.hover .framer-g9e8os-container { left: unset; right: -4px; width: 16px; }\",\".framer-8JBx6.framer-v-1bawtn4.hover .framer-g9e8os-container { right: -4px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 31\n * @framerIntrinsicWidth 99\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Y8vxKEw21\":{\"layout\":[\"auto\",\"auto\"]},\"GLTpKNCQ9\":{\"layout\":[\"auto\",\"auto\"]},\"YB0S64uuD\":{\"layout\":[\"auto\",\"auto\"]},\"qKGM07LwV\":{\"layout\":[\"auto\",\"auto\"]},\"X4_EaQZBA\":{\"layout\":[\"auto\",\"auto\"]},\"uoVth2ONL\":{\"layout\":[\"auto\",\"auto\"]},\"C_cT3r7Wr\":{\"layout\":[\"auto\",\"auto\"]},\"CFSp8UaLK\":{\"layout\":[\"auto\",\"auto\"]},\"FegAvsXLR\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"JjZVqrU_x\":\"title\",\"QJmjqZfLG\":\"tap\",\"On6e6ISig\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerrabh1bzLc=withCSS(Component,css,\"framer-8JBx6\");export default Framerrabh1bzLc;Framerrabh1bzLc.displayName=\"Menu Tab and Link\";Framerrabh1bzLc.defaultProps={height:31,width:99};addPropertyControls(Framerrabh1bzLc,{variant:{options:[\"YmrWk9Tym\",\"Y8vxKEw21\",\"GLTpKNCQ9\",\"YB0S64uuD\",\"qKGM07LwV\"],optionTitles:[\"Default\",\"Selected\",\"Link\",\"No Link\",\"Link - New Tab\"],title:\"Variant\",type:ControlType.Enum},JjZVqrU_x:{defaultValue:\"Menu Tab\",displayTextArea:false,title:\"Title\",type:ControlType.String},QJmjqZfLG:{title:\"Tap\",type:ControlType.EventHandler},On6e6ISig:{title:\"Link\",type:ControlType.Link}});addFonts(Framerrabh1bzLc,[{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\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerrabh1bzLc\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Y8vxKEw21\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"GLTpKNCQ9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"YB0S64uuD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qKGM07LwV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"X4_EaQZBA\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uoVth2ONL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"C_cT3r7Wr\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"CFSp8UaLK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FegAvsXLR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"99\",\"framerIntrinsicHeight\":\"31\",\"framerVariables\":\"{\\\"JjZVqrU_x\\\":\\\"title\\\",\\\"QJmjqZfLG\\\":\\\"tap\\\",\\\"On6e6ISig\\\":\\\"link\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rabh1bzLc.map", "// Generated by Framer (b742ddc)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"OKZugVEvV\",\"gh6rIUMKb\"];const serializationHash=\"framer-x3Zr3\";const variantClassNames={gh6rIUMKb:\"framer-v-b6aa1x\",OKZugVEvV:\"framer-v-1o19wnr\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"OKZugVEvV\",Mobile:\"gh6rIUMKb\"};const getProps=({height,id,tap,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,gbQd0uWpc:tap!==null&&tap!==void 0?tap:props.gbQd0uWpc,OcH3_UYcV:(_ref=title!==null&&title!==void 0?title:props.OcH3_UYcV)!==null&&_ref!==void 0?_ref:\"BET HERO\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"OKZugVEvV\"};};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,OcH3_UYcV,gbQd0uWpc,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OKZugVEvV\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap2r30v4=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(gbQd0uWpc){const res=await gbQd0uWpc(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"gh6rIUMKb\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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:{webPageId:\"augiA20Il\"},children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1o19wnr\",className,classNames)} framer-1p93dcz`,\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"OKZugVEvV\",onTap:onTap2r30v4,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({gh6rIUMKb:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"The Offical Logo of Bet Hero Sports \",fit:\"fill\",intrinsicHeight:750,intrinsicWidth:750,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||56)-0-56)/2)),pixelHeight:1500,pixelWidth:1500,sizes:\"56px\",src:\"https://framerusercontent.com/images/2DgDXePepibsSOH2O44B6yxs8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/2DgDXePepibsSOH2O44B6yxs8.png?scale-down-to=512 512w,https://framerusercontent.com/images/2DgDXePepibsSOH2O44B6yxs8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2DgDXePepibsSOH2O44B6yxs8.png 1500w\"},className:\"framer-123myft\",\"data-framer-name\":\"logo\",layoutDependency:layoutDependency,layoutId:\"v2jqlgwcn\"}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, rgb(230, 230, 230)))\"},children:\"teamwave\"})}),className:\"framer-aj7bq5\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"hpENoVzsr\",style:{\"--extracted-r6o4lv\":\"var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, rgb(230, 230, 230))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:OcH3_UYcV,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-x3Zr3.framer-1p93dcz, .framer-x3Zr3 .framer-1p93dcz { display: block; }\",\".framer-x3Zr3.framer-1o19wnr { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-x3Zr3 .framer-123myft { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 56px); overflow: visible; position: relative; width: 56px; }\",\".framer-x3Zr3 .framer-aj7bq5 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-x3Zr3.framer-1o19wnr { gap: 0px; } .framer-x3Zr3.framer-1o19wnr > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-x3Zr3.framer-1o19wnr > :first-child { margin-left: 0px; } .framer-x3Zr3.framer-1o19wnr > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 56\n * @framerIntrinsicWidth 155\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"gh6rIUMKb\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"OcH3_UYcV\":\"title\",\"gbQd0uWpc\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameryPbwZPdMM=withCSS(Component,css,\"framer-x3Zr3\");export default FrameryPbwZPdMM;FrameryPbwZPdMM.displayName=\"Logo\";FrameryPbwZPdMM.defaultProps={height:56,width:155};addPropertyControls(FrameryPbwZPdMM,{variant:{options:[\"OKZugVEvV\",\"gh6rIUMKb\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},OcH3_UYcV:{defaultValue:\"BET HERO\",displayTextArea:false,title:\"Title\",type:ControlType.String},gbQd0uWpc:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FrameryPbwZPdMM,[{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/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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryPbwZPdMM\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gh6rIUMKb\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"OcH3_UYcV\\\":\\\"title\\\",\\\"gbQd0uWpc\\\":\\\"tap\\\"}\",\"framerIntrinsicWidth\":\"155\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"56\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./yPbwZPdMM.map", "// Generated by Framer (2ca17d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import MenuTabAndLink from\"https://framerusercontent.com/modules/uBYyVurJ8qc5Km6xRYTG/nfIRYxAaR0onYIqzgzwM/rabh1bzLc.js\";import Logo from\"https://framerusercontent.com/modules/olUWle5iaGg5JPyTeGX5/gOPpZj2VZYqlz7OJHjQE/yPbwZPdMM.js\";import Button from\"https://framerusercontent.com/modules/ekB9YdWbc8Ut8BaMEtOR/qsJOiJWTyJ8d88OsKoUk/Z7IBc6LTO.js\";const LogoFonts=getFonts(Logo);const MenuTabAndLinkFonts=getFonts(MenuTabAndLink);const ButtonFonts=getFonts(Button);const cycleOrder=[\"h2eGmjQnm\",\"FEMDNYzc7\",\"O_3MdqGE6\",\"WMngvwwSM\",\"SYyeGdTLR\",\"qDU7EUa69\",\"kIzqVDLra\",\"beJAwXf6Z\",\"s1EHexloJ\",\"FTRZvvIN4\",\"GYzCwZdxI\",\"G0SCObYMD\",\"thsWu1H6x\",\"tVbvhPQmB\",\"b50wNQO12\",\"usNStIx6g\",\"DFHnWB8iW\",\"pLqhalTb9\",\"kwtlY3Og8\",\"WVv4TAiHq\",\"Vspf4wdC4\",\"BMYo3mjTG\",\"HZ2yhsklD\",\"iW_yzRGLf\"];const serializationHash=\"framer-AoMH3\";const variantClassNames={b50wNQO12:\"framer-v-3p3uxh\",beJAwXf6Z:\"framer-v-t3cpou\",BMYo3mjTG:\"framer-v-181srzc\",DFHnWB8iW:\"framer-v-15lt6kp\",FEMDNYzc7:\"framer-v-120nt4c\",FTRZvvIN4:\"framer-v-eo237x\",G0SCObYMD:\"framer-v-klios6\",GYzCwZdxI:\"framer-v-zmvamb\",h2eGmjQnm:\"framer-v-1bmsvne\",HZ2yhsklD:\"framer-v-1p3p7dd\",iW_yzRGLf:\"framer-v-h54wg3\",kIzqVDLra:\"framer-v-13hze29\",kwtlY3Og8:\"framer-v-17ijb69\",O_3MdqGE6:\"framer-v-20038a\",pLqhalTb9:\"framer-v-1avusx2\",qDU7EUa69:\"framer-v-19y1znr\",s1EHexloJ:\"framer-v-1yugbd8\",SYyeGdTLR:\"framer-v-icfysz\",thsWu1H6x:\"framer-v-uzyix1\",tVbvhPQmB:\"framer-v-1j4jqog\",usNStIx6g:\"framer-v-sp2qs2\",Vspf4wdC4:\"framer-v-16jnm86\",WMngvwwSM:\"framer-v-plmwwz\",WVv4TAiHq:\"framer-v-1jz19wd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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 - Blog\":\"WMngvwwSM\",\"Desktop - Contact\":\"SYyeGdTLR\",\"Desktop - Enterprise\":\"qDU7EUa69\",\"Desktop - Features\":\"FEMDNYzc7\",\"Desktop - Home\":\"h2eGmjQnm\",\"Desktop - Pricing\":\"O_3MdqGE6\",\"Mobile - Blog - Selected\":\"WVv4TAiHq\",\"Mobile - Blog\":\"kwtlY3Og8\",\"Mobile - Contact\":\"Vspf4wdC4\",\"Mobile - Contect - Selected\":\"BMYo3mjTG\",\"Mobile - Enterprise - Selected\":\"iW_yzRGLf\",\"Mobile - Enterprise\":\"HZ2yhsklD\",\"Mobile - Features - Open\":\"usNStIx6g\",\"Mobile - Features\":\"b50wNQO12\",\"Mobile - Home - Open\":\"tVbvhPQmB\",\"Mobile - Home\":\"thsWu1H6x\",\"Mobile - Pricing - Open\":\"pLqhalTb9\",\"Mobile - Pricing\":\"DFHnWB8iW\",\"Tablet - Blog\":\"FTRZvvIN4\",\"Tablet - Contact\":\"GYzCwZdxI\",\"Tablet - Enterprise\":\"G0SCObYMD\",\"Tablet - Features\":\"beJAwXf6Z\",\"Tablet - Home\":\"kIzqVDLra\",\"Tablet - Pricing\":\"s1EHexloJ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"h2eGmjQnm\"};};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:\"h2eGmjQnm\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapwwfb9o=activeVariantCallback(async(...args)=>{setVariant(\"iW_yzRGLf\");});const gbQd0uWpcm6b7j9=activeVariantCallback(async(...args)=>{setVariant(\"thsWu1H6x\");});const gbQd0uWpc15xcfe5=activeVariantCallback(async(...args)=>{setVariant(\"b50wNQO12\");});const gbQd0uWpclg0b3a=activeVariantCallback(async(...args)=>{setVariant(\"DFHnWB8iW\");});const gbQd0uWpcwxzbce=activeVariantCallback(async(...args)=>{setVariant(\"kwtlY3Og8\");});const gbQd0uWpc1bu3wld=activeVariantCallback(async(...args)=>{setVariant(\"Vspf4wdC4\");});const onTap1q46d0k=activeVariantCallback(async(...args)=>{setVariant(\"tVbvhPQmB\");});const onTapm6b7j9=activeVariantCallback(async(...args)=>{setVariant(\"thsWu1H6x\");});const onTap1pfix2o=activeVariantCallback(async(...args)=>{setVariant(\"usNStIx6g\");});const onTap15xcfe5=activeVariantCallback(async(...args)=>{setVariant(\"b50wNQO12\");});const onTap1lgst25=activeVariantCallback(async(...args)=>{setVariant(\"pLqhalTb9\");});const onTaplg0b3a=activeVariantCallback(async(...args)=>{setVariant(\"DFHnWB8iW\");});const onTapnx9l0r=activeVariantCallback(async(...args)=>{setVariant(\"WVv4TAiHq\");});const onTapwxzbce=activeVariantCallback(async(...args)=>{setVariant(\"kwtlY3Og8\");});const onTap13czuga=activeVariantCallback(async(...args)=>{setVariant(\"BMYo3mjTG\");});const onTap1bu3wld=activeVariantCallback(async(...args)=>{setVariant(\"Vspf4wdC4\");});const QJmjqZfLG1q46d0k=activeVariantCallback(async(...args)=>{setVariant(\"tVbvhPQmB\");});const QJmjqZfLG1pfix2o=activeVariantCallback(async(...args)=>{setVariant(\"usNStIx6g\");});const QJmjqZfLG1lgst25=activeVariantCallback(async(...args)=>{setVariant(\"pLqhalTb9\");});const QJmjqZfLGnx9l0r=activeVariantCallback(async(...args)=>{setVariant(\"WVv4TAiHq\");});const QJmjqZfLG13czuga=activeVariantCallback(async(...args)=>{setVariant(\"BMYo3mjTG\");});const QJmjqZfLGwwfb9o=activeVariantCallback(async(...args)=>{setVariant(\"iW_yzRGLf\");});const wXf8AqEVi1q46d0k=activeVariantCallback(async(...args)=>{setVariant(\"tVbvhPQmB\");});const wXf8AqEVi1pfix2o=activeVariantCallback(async(...args)=>{setVariant(\"usNStIx6g\");});const wXf8AqEVi1lgst25=activeVariantCallback(async(...args)=>{setVariant(\"pLqhalTb9\");});const wXf8AqEVinx9l0r=activeVariantCallback(async(...args)=>{setVariant(\"WVv4TAiHq\");});const wXf8AqEVi13czuga=activeVariantCallback(async(...args)=>{setVariant(\"BMYo3mjTG\");});const wXf8AqEViwwfb9o=activeVariantCallback(async(...args)=>{setVariant(\"iW_yzRGLf\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"thsWu1H6x\",\"tVbvhPQmB\",\"b50wNQO12\",\"usNStIx6g\",\"DFHnWB8iW\",\"pLqhalTb9\",\"kwtlY3Og8\",\"WVv4TAiHq\",\"Vspf4wdC4\",\"BMYo3mjTG\",\"HZ2yhsklD\",\"iW_yzRGLf\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"thsWu1H6x\",\"b50wNQO12\",\"DFHnWB8iW\",\"kwtlY3Og8\",\"Vspf4wdC4\",\"HZ2yhsklD\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"G0SCObYMD\")return true;return false;};const router=useRouter();const isDisplayed3=()=>{if([\"qDU7EUa69\",\"kIzqVDLra\",\"beJAwXf6Z\",\"FTRZvvIN4\",\"G0SCObYMD\",\"iW_yzRGLf\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if([\"FTRZvvIN4\",\"GYzCwZdxI\",\"G0SCObYMD\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if([\"kIzqVDLra\",\"beJAwXf6Z\",\"s1EHexloJ\",\"GYzCwZdxI\",\"G0SCObYMD\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1bmsvne\",className,classNames),\"data-framer-name\":\"Desktop - Home\",layoutDependency:layoutDependency,layoutId:\"h2eGmjQnm\",ref:ref??ref1,style:{...style},...addPropertyOverrides({b50wNQO12:{\"data-framer-name\":\"Mobile - Features\"},beJAwXf6Z:{\"data-framer-name\":\"Tablet - Features\"},BMYo3mjTG:{\"data-framer-name\":\"Mobile - Contect - Selected\"},DFHnWB8iW:{\"data-framer-name\":\"Mobile - Pricing\"},FEMDNYzc7:{\"data-framer-name\":\"Desktop - Features\"},FTRZvvIN4:{\"data-framer-name\":\"Tablet - Blog\"},G0SCObYMD:{\"data-framer-name\":\"Tablet - Enterprise\"},GYzCwZdxI:{\"data-framer-name\":\"Tablet - Contact\"},HZ2yhsklD:{\"data-framer-name\":\"Mobile - Enterprise\"},iW_yzRGLf:{\"data-framer-name\":\"Mobile - Enterprise - Selected\"},kIzqVDLra:{\"data-framer-name\":\"Tablet - Home\"},kwtlY3Og8:{\"data-framer-name\":\"Mobile - Blog\"},O_3MdqGE6:{\"data-framer-name\":\"Desktop - Pricing\"},pLqhalTb9:{\"data-framer-name\":\"Mobile - Pricing - Open\"},qDU7EUa69:{\"data-framer-name\":\"Desktop - Enterprise\"},s1EHexloJ:{\"data-framer-name\":\"Tablet - Pricing\"},SYyeGdTLR:{\"data-framer-name\":\"Desktop - Contact\"},thsWu1H6x:{\"data-framer-name\":\"Mobile - Home\"},tVbvhPQmB:{\"data-framer-name\":\"Mobile - Home - Open\"},usNStIx6g:{\"data-framer-name\":\"Mobile - Features - Open\"},Vspf4wdC4:{\"data-framer-name\":\"Mobile - Contact\"},WMngvwwSM:{\"data-framer-name\":\"Desktop - Blog\"},WVv4TAiHq:{\"data-framer-name\":\"Mobile - Blog - Selected\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uiim3e\",layoutDependency:layoutDependency,layoutId:\"FGfjMwaqm\",style:{backdropFilter:\"blur(5px)\",backgroundColor:\"var(--token-7d180787-887f-46b3-b685-82e3174f52ca, rgba(20, 20, 20, 0.7))\",borderBottomLeftRadius:36,borderBottomRightRadius:36,borderTopLeftRadius:36,borderTopRightRadius:36,WebkitBackdropFilter:\"blur(5px)\"},variants:{b50wNQO12:{backgroundColor:\"var(--token-b17af482-efb1-42ce-8b34-6ffa57bac3f2, rgb(20, 20, 20))\"},BMYo3mjTG:{backgroundColor:\"var(--token-b17af482-efb1-42ce-8b34-6ffa57bac3f2, rgb(26, 26, 26))\"},DFHnWB8iW:{backgroundColor:\"var(--token-b17af482-efb1-42ce-8b34-6ffa57bac3f2, rgb(20, 20, 20))\"},HZ2yhsklD:{backgroundColor:\"var(--token-b17af482-efb1-42ce-8b34-6ffa57bac3f2, rgb(20, 20, 20))\"},iW_yzRGLf:{backgroundColor:\"var(--token-b17af482-efb1-42ce-8b34-6ffa57bac3f2, rgb(26, 26, 26))\"},kwtlY3Og8:{backgroundColor:\"var(--token-b17af482-efb1-42ce-8b34-6ffa57bac3f2, rgb(20, 20, 20))\"},pLqhalTb9:{backgroundColor:\"var(--token-b17af482-efb1-42ce-8b34-6ffa57bac3f2, rgb(26, 26, 26))\"},thsWu1H6x:{backgroundColor:\"var(--token-b17af482-efb1-42ce-8b34-6ffa57bac3f2, rgb(20, 20, 20))\"},tVbvhPQmB:{backgroundColor:\"var(--token-b17af482-efb1-42ce-8b34-6ffa57bac3f2, rgb(26, 26, 26))\"},usNStIx6g:{backgroundColor:\"var(--token-b17af482-efb1-42ce-8b34-6ffa57bac3f2, rgb(26, 26, 26))\"},Vspf4wdC4:{backgroundColor:\"var(--token-b17af482-efb1-42ce-8b34-6ffa57bac3f2, rgb(20, 20, 20))\"},WVv4TAiHq:{backgroundColor:\"var(--token-b17af482-efb1-42ce-8b34-6ffa57bac3f2, rgb(26, 26, 26))\"}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fgsfw3\",layoutDependency:layoutDependency,layoutId:\"LOH28grJb\",...addPropertyOverrides({HZ2yhsklD:{\"data-highlight\":true,onTap:onTapwwfb9o}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:(componentViewport?.y||0)+(12+((componentViewport?.height||104)-24-80)/2)+12+0,...addPropertyOverrides({b50wNQO12:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||120)-24-96)/2)+20+0+0},BMYo3mjTG:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-520)/2)+20+0+0},DFHnWB8iW:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-96)/2)+20+0+0},FTRZvvIN4:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+12+0},G0SCObYMD:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+12+0},GYzCwZdxI:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+12+0},HZ2yhsklD:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-96)/2)+20+0+0},iW_yzRGLf:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-470)/2)+20+0+0},kwtlY3Og8:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-96)/2)+20+0+0},O_3MdqGE6:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+12+0},pLqhalTb9:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-520)/2)+20+0+0},qDU7EUa69:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+12+0},s1EHexloJ:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+12+0},SYyeGdTLR:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+12+0},thsWu1H6x:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||120)-24-96)/2)+20+0+0},tVbvhPQmB:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||544)-24-520)/2)+20+0+0},usNStIx6g:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||544)-24-520)/2)+20+0+0},Vspf4wdC4:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-96)/2)+20+0+0},WMngvwwSM:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+12+0},WVv4TAiHq:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-520)/2)+20+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x6t4ob-container\",layoutDependency:layoutDependency,layoutId:\"vprLDG_d4-container\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"vprLDG_d4\",layoutId:\"vprLDG_d4\",OcH3_UYcV:\"BET HERO\",variant:\"OKZugVEvV\",width:\"100%\",...addPropertyOverrides({BMYo3mjTG:{gbQd0uWpc:gbQd0uWpc1bu3wld},iW_yzRGLf:{gbQd0uWpc:gbQd0uWpc1bu3wld},pLqhalTb9:{gbQd0uWpc:gbQd0uWpclg0b3a},tVbvhPQmB:{gbQd0uWpc:gbQd0uWpcm6b7j9},usNStIx6g:{gbQd0uWpc:gbQd0uWpc15xcfe5},WVv4TAiHq:{gbQd0uWpc:gbQd0uWpcwxzbce}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16d3pqq\",\"data-framer-name\":\"Hamburger menu\",layoutDependency:layoutDependency,layoutId:\"eV3Q7axm9\",...addPropertyOverrides({b50wNQO12:{\"data-highlight\":true,onTap:onTap1pfix2o},BMYo3mjTG:{\"data-highlight\":true,onTap:onTap1bu3wld},DFHnWB8iW:{\"data-highlight\":true,onTap:onTap1lgst25},HZ2yhsklD:{\"data-highlight\":true,onTap:onTapwwfb9o},iW_yzRGLf:{\"data-highlight\":true,onTap:onTap1bu3wld},kwtlY3Og8:{\"data-highlight\":true,onTap:onTapnx9l0r},pLqhalTb9:{\"data-highlight\":true,onTap:onTaplg0b3a},thsWu1H6x:{\"data-highlight\":true,onTap:onTap1q46d0k},tVbvhPQmB:{\"data-highlight\":true,onTap:onTapm6b7j9},usNStIx6g:{\"data-highlight\":true,onTap:onTap15xcfe5},Vspf4wdC4:{\"data-highlight\":true,onTap:onTap13czuga},WVv4TAiHq:{\"data-highlight\":true,onTap:onTapwxzbce}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-rbfjdd\",layoutDependency:layoutDependency,layoutId:\"ykJVj82FG\",style:{backgroundColor:\"var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179))\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1,rotate:0},variants:{b50wNQO12:{rotate:0},BMYo3mjTG:{rotate:-45},DFHnWB8iW:{rotate:0},HZ2yhsklD:{rotate:0},iW_yzRGLf:{rotate:-45},kwtlY3Og8:{rotate:0},pLqhalTb9:{rotate:-45},tVbvhPQmB:{rotate:-45},usNStIx6g:{rotate:-45},Vspf4wdC4:{rotate:0},WVv4TAiHq:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vkn26t\",layoutDependency:layoutDependency,layoutId:\"VDICrOUXc\",style:{backgroundColor:\"var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179))\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1,rotate:0},variants:{b50wNQO12:{rotate:0},BMYo3mjTG:{rotate:45},DFHnWB8iW:{rotate:0},HZ2yhsklD:{rotate:0},iW_yzRGLf:{rotate:45},kwtlY3Og8:{rotate:0},pLqhalTb9:{rotate:45},tVbvhPQmB:{rotate:45},usNStIx6g:{rotate:45},Vspf4wdC4:{rotate:0},WVv4TAiHq:{rotate:45}}})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sx828d\",layoutDependency:layoutDependency,layoutId:\"HSbuxIsJZ\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":lQmnGyDeF\",webPageId:\"uPFpc5Wzw\"},implicitPathVariables:undefined},{href:{hash:\":lQmnGyDeF\",webPageId:\"uPFpc5Wzw\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({G0SCObYMD:{height:31,y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-nysu1s-container\",layoutDependency:layoutDependency,layoutId:\"zDfMqB248-container\",children:/*#__PURE__*/_jsx(MenuTabAndLink,{height:\"100%\",id:\"zDfMqB248\",JjZVqrU_x:\"Features\",layoutId:\"zDfMqB248\",On6e6ISig:resolvedLinks[0],variant:\"YmrWk9Tym\",width:\"100%\",...addPropertyOverrides({G0SCObYMD:{On6e6ISig:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":vS4oIGudh\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":vS4oIGudh\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":vS4oIGudh\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":vS4oIGudh\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":vS4oIGudh\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":vS4oIGudh\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":vS4oIGudh\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":vS4oIGudh\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":vS4oIGudh\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":vS4oIGudh\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":vS4oIGudh\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":vS4oIGudh\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,y:(componentViewport?.y||0)+(12+((componentViewport?.height||104)-24-80)/2)+24.5+0,...addPropertyOverrides({BMYo3mjTG:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-520)/2)+20+80+0+0},GYzCwZdxI:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},O_3MdqGE6:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},pLqhalTb9:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-520)/2)+20+80+0+0},s1EHexloJ:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},SYyeGdTLR:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},tVbvhPQmB:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||544)-24-520)/2)+20+80+0+0},usNStIx6g:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||544)-24-520)/2)+20+80+0+0},WMngvwwSM:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},WVv4TAiHq:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-520)/2)+20+80+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dibdck-container\",layoutDependency:layoutDependency,layoutId:\"fB8obZYBi-container\",children:/*#__PURE__*/_jsx(MenuTabAndLink,{height:\"100%\",id:\"fB8obZYBi\",JjZVqrU_x:\"Pricing\",layoutId:\"fB8obZYBi\",On6e6ISig:resolvedLinks1[0],variant:\"YmrWk9Tym\",width:\"100%\",...addPropertyOverrides({BMYo3mjTG:{On6e6ISig:resolvedLinks1[11],QJmjqZfLG:QJmjqZfLG13czuga,style:{height:\"100%\",width:\"100%\"}},FEMDNYzc7:{On6e6ISig:resolvedLinks1[1]},GYzCwZdxI:{On6e6ISig:resolvedLinks1[6]},O_3MdqGE6:{On6e6ISig:resolvedLinks1[2],variant:\"Y8vxKEw21\"},pLqhalTb9:{On6e6ISig:resolvedLinks1[9],QJmjqZfLG:QJmjqZfLG1lgst25,style:{height:\"100%\",width:\"100%\"},variant:\"Y8vxKEw21\"},s1EHexloJ:{On6e6ISig:resolvedLinks1[5],variant:\"Y8vxKEw21\"},SYyeGdTLR:{On6e6ISig:resolvedLinks1[4]},tVbvhPQmB:{On6e6ISig:resolvedLinks1[7],QJmjqZfLG:QJmjqZfLG1q46d0k,style:{height:\"100%\",width:\"100%\"}},usNStIx6g:{On6e6ISig:resolvedLinks1[8],QJmjqZfLG:QJmjqZfLG1pfix2o,style:{height:\"100%\",width:\"100%\"}},WMngvwwSM:{On6e6ISig:resolvedLinks1[3]},WVv4TAiHq:{On6e6ISig:resolvedLinks1[10],QJmjqZfLG:QJmjqZfLGnx9l0r,style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":vlWyTjZsm\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":vlWyTjZsm\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":vlWyTjZsm\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":vlWyTjZsm\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":vlWyTjZsm\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":OvMn08S2I\",webPageId:\"uPFpc5Wzw\"},implicitPathVariables:undefined},{href:{hash:\":vlWyTjZsm\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":vlWyTjZsm\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":vlWyTjZsm\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":vlWyTjZsm\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":vlWyTjZsm\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":vlWyTjZsm\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":vlWyTjZsm\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":vlWyTjZsm\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":OvMn08S2I\",webPageId:\"uPFpc5Wzw\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,y:(componentViewport?.y||0)+(12+((componentViewport?.height||104)-24-80)/2)+24.5+0,...addPropertyOverrides({BMYo3mjTG:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-520)/2)+20+80+0+50},iW_yzRGLf:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-470)/2)+20+80+0+50},O_3MdqGE6:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},pLqhalTb9:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-520)/2)+20+80+0+50},qDU7EUa69:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},s1EHexloJ:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},SYyeGdTLR:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},tVbvhPQmB:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||544)-24-520)/2)+20+80+0+50},usNStIx6g:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||544)-24-520)/2)+20+80+0+50},WMngvwwSM:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},WVv4TAiHq:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-520)/2)+20+80+0+50}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14yfvru-container\",layoutDependency:layoutDependency,layoutId:\"tam4AAuZr-container\",children:/*#__PURE__*/_jsx(MenuTabAndLink,{height:\"100%\",id:\"tam4AAuZr\",JjZVqrU_x:\"Testimonials\",layoutId:\"tam4AAuZr\",On6e6ISig:resolvedLinks2[0],variant:\"YmrWk9Tym\",width:\"100%\",...addPropertyOverrides({beJAwXf6Z:{On6e6ISig:resolvedLinks2[7]},BMYo3mjTG:{On6e6ISig:resolvedLinks2[13],QJmjqZfLG:QJmjqZfLG13czuga,style:{height:\"100%\",width:\"100%\"}},FEMDNYzc7:{On6e6ISig:resolvedLinks2[1]},iW_yzRGLf:{On6e6ISig:resolvedLinks2[14],QJmjqZfLG:QJmjqZfLGwwfb9o,style:{height:\"100%\",width:\"100%\"}},kIzqVDLra:{On6e6ISig:resolvedLinks2[6]},O_3MdqGE6:{On6e6ISig:resolvedLinks2[2]},pLqhalTb9:{On6e6ISig:resolvedLinks2[11],QJmjqZfLG:QJmjqZfLG1lgst25,style:{height:\"100%\",width:\"100%\"}},qDU7EUa69:{On6e6ISig:resolvedLinks2[5]},s1EHexloJ:{On6e6ISig:resolvedLinks2[8]},SYyeGdTLR:{On6e6ISig:resolvedLinks2[4]},tVbvhPQmB:{On6e6ISig:resolvedLinks2[9],QJmjqZfLG:QJmjqZfLG1q46d0k,style:{height:\"100%\",width:\"100%\"}},usNStIx6g:{On6e6ISig:resolvedLinks2[10],QJmjqZfLG:QJmjqZfLG1pfix2o,style:{height:\"100%\",width:\"100%\"}},WMngvwwSM:{On6e6ISig:resolvedLinks2[3]},WVv4TAiHq:{On6e6ISig:resolvedLinks2[12],QJmjqZfLG:QJmjqZfLGnx9l0r,style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uPFpc5Wzw\"},implicitPathVariables:undefined},{href:{webPageId:\"uPFpc5Wzw\"},implicitPathVariables:undefined},{href:{webPageId:\"uPFpc5Wzw\"},implicitPathVariables:undefined},{href:{webPageId:\"uPFpc5Wzw\"},implicitPathVariables:undefined},{href:{webPageId:\"uPFpc5Wzw\"},implicitPathVariables:undefined},{href:{webPageId:\"uPFpc5Wzw\"},implicitPathVariables:undefined},{href:{webPageId:\"uPFpc5Wzw\"},implicitPathVariables:undefined},{href:{webPageId:\"uPFpc5Wzw\"},implicitPathVariables:undefined},{href:{webPageId:\"uPFpc5Wzw\"},implicitPathVariables:undefined},{href:{webPageId:\"uPFpc5Wzw\"},implicitPathVariables:undefined},{href:{webPageId:\"uPFpc5Wzw\"},implicitPathVariables:undefined},{href:{webPageId:\"uPFpc5Wzw\"},implicitPathVariables:undefined},{href:{webPageId:\"uPFpc5Wzw\"},implicitPathVariables:undefined},{href:{webPageId:\"uPFpc5Wzw\"},implicitPathVariables:undefined},{href:{webPageId:\"uPFpc5Wzw\"},implicitPathVariables:undefined},{href:{webPageId:\"uPFpc5Wzw\"},implicitPathVariables:undefined},{href:{webPageId:\"uPFpc5Wzw\"},implicitPathVariables:undefined},{href:{webPageId:\"uPFpc5Wzw\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,y:(componentViewport?.y||0)+(12+((componentViewport?.height||104)-24-80)/2)+24.5+0,...addPropertyOverrides({BMYo3mjTG:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-520)/2)+20+80+0+100},FTRZvvIN4:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},G0SCObYMD:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},GYzCwZdxI:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},iW_yzRGLf:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-470)/2)+20+80+0+0},O_3MdqGE6:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},pLqhalTb9:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-520)/2)+20+80+0+100},qDU7EUa69:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},s1EHexloJ:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},SYyeGdTLR:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},tVbvhPQmB:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||544)-24-520)/2)+20+80+0+100},usNStIx6g:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||544)-24-520)/2)+20+80+0+100},WMngvwwSM:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},WVv4TAiHq:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-520)/2)+20+80+0+100}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a33ubm-container\",layoutDependency:layoutDependency,layoutId:\"Ydztuqdge-container\",children:/*#__PURE__*/_jsx(MenuTabAndLink,{height:\"100%\",id:\"Ydztuqdge\",JjZVqrU_x:\"Enterprise\",layoutId:\"Ydztuqdge\",On6e6ISig:resolvedLinks3[0],variant:\"YmrWk9Tym\",width:\"100%\",...addPropertyOverrides({beJAwXf6Z:{On6e6ISig:resolvedLinks3[7]},BMYo3mjTG:{On6e6ISig:resolvedLinks3[16],QJmjqZfLG:QJmjqZfLG13czuga,style:{height:\"100%\",width:\"100%\"}},FEMDNYzc7:{On6e6ISig:resolvedLinks3[1]},FTRZvvIN4:{On6e6ISig:resolvedLinks3[9]},G0SCObYMD:{On6e6ISig:resolvedLinks3[11],variant:\"Y8vxKEw21\"},GYzCwZdxI:{On6e6ISig:resolvedLinks3[10]},iW_yzRGLf:{On6e6ISig:resolvedLinks3[17],QJmjqZfLG:QJmjqZfLGwwfb9o,style:{height:\"100%\",width:\"100%\"},variant:\"Y8vxKEw21\"},kIzqVDLra:{On6e6ISig:resolvedLinks3[6]},O_3MdqGE6:{On6e6ISig:resolvedLinks3[2]},pLqhalTb9:{On6e6ISig:resolvedLinks3[14],QJmjqZfLG:QJmjqZfLG1lgst25,style:{height:\"100%\",width:\"100%\"}},qDU7EUa69:{On6e6ISig:resolvedLinks3[5],variant:\"Y8vxKEw21\"},s1EHexloJ:{On6e6ISig:resolvedLinks3[8]},SYyeGdTLR:{On6e6ISig:resolvedLinks3[4]},tVbvhPQmB:{On6e6ISig:resolvedLinks3[12],QJmjqZfLG:QJmjqZfLG1q46d0k,style:{height:\"100%\",width:\"100%\"}},usNStIx6g:{On6e6ISig:resolvedLinks3[13],QJmjqZfLG:QJmjqZfLG1pfix2o,style:{height:\"100%\",width:\"100%\"}},WMngvwwSM:{On6e6ISig:resolvedLinks3[3]},WVv4TAiHq:{On6e6ISig:resolvedLinks3[15],QJmjqZfLG:QJmjqZfLGnx9l0r,style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Lv_wvduOJ\"},implicitPathVariables:undefined},{href:{webPageId:\"Lv_wvduOJ\"},implicitPathVariables:undefined},{href:{webPageId:\"Lv_wvduOJ\"},implicitPathVariables:undefined},{href:{webPageId:\"Lv_wvduOJ\"},implicitPathVariables:undefined},{href:{webPageId:\"Lv_wvduOJ\"},implicitPathVariables:undefined},{href:{webPageId:\"Lv_wvduOJ\"},implicitPathVariables:undefined},{href:{webPageId:\"Lv_wvduOJ\"},implicitPathVariables:undefined},{href:{webPageId:\"Lv_wvduOJ\"},implicitPathVariables:undefined},{href:{webPageId:\"Lv_wvduOJ\"},implicitPathVariables:undefined},{href:{webPageId:\"Lv_wvduOJ\"},implicitPathVariables:undefined},{href:{webPageId:\"Lv_wvduOJ\"},implicitPathVariables:undefined},{href:{webPageId:\"Lv_wvduOJ\"},implicitPathVariables:undefined},{href:{webPageId:\"Lv_wvduOJ\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,y:(componentViewport?.y||0)+(12+((componentViewport?.height||104)-24-80)/2)+24.5+0,...addPropertyOverrides({BMYo3mjTG:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-520)/2)+20+80+0+150},FTRZvvIN4:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},iW_yzRGLf:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-470)/2)+20+80+0+100},O_3MdqGE6:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},pLqhalTb9:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-520)/2)+20+80+0+150},qDU7EUa69:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},SYyeGdTLR:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},tVbvhPQmB:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||544)-24-520)/2)+20+80+0+150},usNStIx6g:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||544)-24-520)/2)+20+80+0+150},WMngvwwSM:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},WVv4TAiHq:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-520)/2)+20+80+0+150}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yy7zcn-container\",layoutDependency:layoutDependency,layoutId:\"lkCCMiRLp-container\",children:/*#__PURE__*/_jsx(MenuTabAndLink,{height:\"100%\",id:\"lkCCMiRLp\",JjZVqrU_x:\"Blog\",layoutId:\"lkCCMiRLp\",On6e6ISig:resolvedLinks4[0],variant:\"YmrWk9Tym\",width:\"100%\",...addPropertyOverrides({BMYo3mjTG:{On6e6ISig:resolvedLinks4[11],QJmjqZfLG:QJmjqZfLG13czuga,style:{height:\"100%\",width:\"100%\"}},FEMDNYzc7:{On6e6ISig:resolvedLinks4[1]},FTRZvvIN4:{On6e6ISig:resolvedLinks4[6],variant:\"Y8vxKEw21\"},iW_yzRGLf:{On6e6ISig:resolvedLinks4[12],QJmjqZfLG:QJmjqZfLGwwfb9o,style:{height:\"100%\",width:\"100%\"}},O_3MdqGE6:{On6e6ISig:resolvedLinks4[2]},pLqhalTb9:{On6e6ISig:resolvedLinks4[9],QJmjqZfLG:QJmjqZfLG1lgst25,style:{height:\"100%\",width:\"100%\"}},qDU7EUa69:{On6e6ISig:resolvedLinks4[5]},SYyeGdTLR:{On6e6ISig:resolvedLinks4[4]},tVbvhPQmB:{On6e6ISig:resolvedLinks4[7],QJmjqZfLG:QJmjqZfLG1q46d0k,style:{height:\"100%\",width:\"100%\"}},usNStIx6g:{On6e6ISig:resolvedLinks4[8],QJmjqZfLG:QJmjqZfLG1pfix2o,style:{height:\"100%\",width:\"100%\"}},WMngvwwSM:{On6e6ISig:resolvedLinks4[3],variant:\"Y8vxKEw21\"},WVv4TAiHq:{On6e6ISig:resolvedLinks4[10],QJmjqZfLG:QJmjqZfLGnx9l0r,style:{height:\"100%\",width:\"100%\"},variant:\"Y8vxKEw21\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,y:(componentViewport?.y||0)+(12+((componentViewport?.height||104)-24-80)/2)+24.5+0,...addPropertyOverrides({BMYo3mjTG:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-520)/2)+20+80+0+200},FTRZvvIN4:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},G0SCObYMD:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},GYzCwZdxI:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},iW_yzRGLf:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-470)/2)+20+80+0+150},O_3MdqGE6:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},pLqhalTb9:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-520)/2)+20+80+0+200},qDU7EUa69:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},s1EHexloJ:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},SYyeGdTLR:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},tVbvhPQmB:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||544)-24-520)/2)+20+80+0+200},usNStIx6g:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||544)-24-520)/2)+20+80+0+200},WMngvwwSM:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},WVv4TAiHq:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-520)/2)+20+80+0+200}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k9rrcs-container\",layoutDependency:layoutDependency,layoutId:\"Vr3958E8e-container\",children:/*#__PURE__*/_jsx(MenuTabAndLink,{height:\"100%\",id:\"Vr3958E8e\",JjZVqrU_x:\"Guides\",layoutId:\"Vr3958E8e\",On6e6ISig:\"docs.betherosports.com\",variant:\"YmrWk9Tym\",width:\"100%\",...addPropertyOverrides({BMYo3mjTG:{style:{height:\"100%\",width:\"100%\"}},iW_yzRGLf:{style:{height:\"100%\",width:\"100%\"}},pLqhalTb9:{style:{height:\"100%\",width:\"100%\"}},tVbvhPQmB:{style:{height:\"100%\",width:\"100%\"}},usNStIx6g:{style:{height:\"100%\",width:\"100%\"}},WVv4TAiHq:{style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PeRuMvwDu\"},implicitPathVariables:undefined},{href:{webPageId:\"PeRuMvwDu\"},implicitPathVariables:undefined},{href:{webPageId:\"PeRuMvwDu\"},implicitPathVariables:undefined},{href:{webPageId:\"PeRuMvwDu\"},implicitPathVariables:undefined},{href:{webPageId:\"PeRuMvwDu\"},implicitPathVariables:undefined},{href:{webPageId:\"PeRuMvwDu\"},implicitPathVariables:undefined},{href:{webPageId:\"PeRuMvwDu\"},implicitPathVariables:undefined},{href:{webPageId:\"PeRuMvwDu\"},implicitPathVariables:undefined},{href:{webPageId:\"PeRuMvwDu\"},implicitPathVariables:undefined},{href:{webPageId:\"PeRuMvwDu\"},implicitPathVariables:undefined},{href:{webPageId:\"PeRuMvwDu\"},implicitPathVariables:undefined},{href:{webPageId:\"PeRuMvwDu\"},implicitPathVariables:undefined},{href:{webPageId:\"PeRuMvwDu\"},implicitPathVariables:undefined},{href:{webPageId:\"PeRuMvwDu\"},implicitPathVariables:undefined},{href:{webPageId:\"PeRuMvwDu\"},implicitPathVariables:undefined},{href:{webPageId:\"PeRuMvwDu\"},implicitPathVariables:undefined},{href:{webPageId:\"PeRuMvwDu\"},implicitPathVariables:undefined},{href:{webPageId:\"PeRuMvwDu\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,y:(componentViewport?.y||0)+(12+((componentViewport?.height||104)-24-80)/2)+24.5+0,...addPropertyOverrides({BMYo3mjTG:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-520)/2)+20+80+0+250},FTRZvvIN4:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},G0SCObYMD:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},GYzCwZdxI:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},iW_yzRGLf:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-470)/2)+20+80+0+200},O_3MdqGE6:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},pLqhalTb9:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-520)/2)+20+80+0+250},qDU7EUa69:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},s1EHexloJ:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},SYyeGdTLR:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},tVbvhPQmB:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||544)-24-520)/2)+20+80+0+250},usNStIx6g:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||544)-24-520)/2)+20+80+0+250},WMngvwwSM:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+24.5+0},WVv4TAiHq:{height:50,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1224px) - 24px)`,y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-520)/2)+20+80+0+250}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1or8d9w-container\",layoutDependency:layoutDependency,layoutId:\"yHvctfdrk-container\",children:/*#__PURE__*/_jsx(MenuTabAndLink,{height:\"100%\",id:\"yHvctfdrk\",JjZVqrU_x:\"Contact\",layoutId:\"yHvctfdrk\",On6e6ISig:resolvedLinks5[0],variant:\"YmrWk9Tym\",width:\"100%\",...addPropertyOverrides({beJAwXf6Z:{On6e6ISig:resolvedLinks5[7]},BMYo3mjTG:{On6e6ISig:resolvedLinks5[16],style:{height:\"100%\",width:\"100%\"}},FEMDNYzc7:{On6e6ISig:resolvedLinks5[1]},FTRZvvIN4:{On6e6ISig:resolvedLinks5[9]},G0SCObYMD:{On6e6ISig:resolvedLinks5[11]},GYzCwZdxI:{On6e6ISig:resolvedLinks5[10]},iW_yzRGLf:{On6e6ISig:resolvedLinks5[17],style:{height:\"100%\",width:\"100%\"}},kIzqVDLra:{On6e6ISig:resolvedLinks5[6]},O_3MdqGE6:{On6e6ISig:resolvedLinks5[2]},pLqhalTb9:{On6e6ISig:resolvedLinks5[14],style:{height:\"100%\",width:\"100%\"}},qDU7EUa69:{On6e6ISig:resolvedLinks5[5]},s1EHexloJ:{On6e6ISig:resolvedLinks5[8]},SYyeGdTLR:{On6e6ISig:resolvedLinks5[4]},tVbvhPQmB:{On6e6ISig:resolvedLinks5[12],style:{height:\"100%\",width:\"100%\"}},usNStIx6g:{On6e6ISig:resolvedLinks5[13],style:{height:\"100%\",width:\"100%\"}},WMngvwwSM:{On6e6ISig:resolvedLinks5[3]},WVv4TAiHq:{On6e6ISig:resolvedLinks5[15],style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+(12+((componentViewport?.height||104)-24-80)/2)+16,...addPropertyOverrides({BMYo3mjTG:{width:\"240px\",y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-520)/2)+20+404},FTRZvvIN4:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+16},G0SCObYMD:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+16},GYzCwZdxI:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+16},iW_yzRGLf:{width:\"240px\",y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-470)/2)+20+354},O_3MdqGE6:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+16},pLqhalTb9:{width:\"240px\",y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-520)/2)+20+404},qDU7EUa69:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+16},s1EHexloJ:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+16},SYyeGdTLR:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+16},tVbvhPQmB:{width:\"240px\",y:(componentViewport?.y||0)+(12+((componentViewport?.height||544)-24-520)/2)+20+404},usNStIx6g:{width:\"240px\",y:(componentViewport?.y||0)+(12+((componentViewport?.height||544)-24-520)/2)+20+404},WMngvwwSM:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-80)/2)+16},WVv4TAiHq:{width:\"240px\",y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-520)/2)+20+404}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10c1tgu-container\",layoutDependency:layoutDependency,layoutId:\"M4lXp88eM-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"M4lXp88eM\",layoutId:\"M4lXp88eM\",pAzw4efBs:\"https://app.betherosports.com/\",style:{height:\"100%\"},TYqbnkqDS:\"Log In\",variant:\"UZzLizGDH\",width:\"100%\",...addPropertyOverrides({BMYo3mjTG:{style:{height:\"100%\",width:\"100%\"},wXf8AqEVi:wXf8AqEVi13czuga},iW_yzRGLf:{style:{height:\"100%\",width:\"100%\"},wXf8AqEVi:wXf8AqEViwwfb9o},pLqhalTb9:{style:{height:\"100%\",width:\"100%\"},wXf8AqEVi:wXf8AqEVi1lgst25},tVbvhPQmB:{style:{height:\"100%\",width:\"100%\"},wXf8AqEVi:wXf8AqEVi1q46d0k},usNStIx6g:{style:{height:\"100%\",width:\"100%\"},wXf8AqEVi:wXf8AqEVi1pfix2o},WVv4TAiHq:{style:{height:\"100%\",width:\"100%\"},wXf8AqEVi:wXf8AqEVinx9l0r}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AoMH3.framer-1qj6isd, .framer-AoMH3 .framer-1qj6isd { display: block; }\",\".framer-AoMH3.framer-1bmsvne { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 48px 12px 48px; position: relative; width: 1200px; }\",\".framer-AoMH3 .framer-1uiim3e { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1224px; overflow: hidden; padding: 12px 12px 12px 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-AoMH3 .framer-1fgsfw3 { 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: 152px; }\",\".framer-AoMH3 .framer-1x6t4ob-container, .framer-AoMH3 .framer-nysu1s-container, .framer-AoMH3 .framer-1dibdck-container, .framer-AoMH3 .framer-14yfvru-container, .framer-AoMH3 .framer-1a33ubm-container, .framer-AoMH3 .framer-1yy7zcn-container, .framer-AoMH3 .framer-1k9rrcs-container, .framer-AoMH3 .framer-1or8d9w-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-AoMH3 .framer-16d3pqq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 24px; }\",\".framer-AoMH3 .framer-rbfjdd { flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; top: 6px; width: 24px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-AoMH3 .framer-1vkn26t { bottom: 6px; flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; width: 24px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-AoMH3 .framer-sx828d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-AoMH3 .framer-10c1tgu-container { flex: none; height: 48px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AoMH3.framer-1bmsvne, .framer-AoMH3 .framer-1fgsfw3, .framer-AoMH3 .framer-16d3pqq, .framer-AoMH3 .framer-sx828d { gap: 0px; } .framer-AoMH3.framer-1bmsvne > *, .framer-AoMH3 .framer-1fgsfw3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-AoMH3.framer-1bmsvne > :first-child, .framer-AoMH3 .framer-1fgsfw3 > :first-child, .framer-AoMH3 .framer-sx828d > :first-child { margin-left: 0px; } .framer-AoMH3.framer-1bmsvne > :last-child, .framer-AoMH3 .framer-1fgsfw3 > :last-child, .framer-AoMH3 .framer-sx828d > :last-child { margin-right: 0px; } .framer-AoMH3 .framer-16d3pqq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-AoMH3 .framer-16d3pqq > :first-child { margin-top: 0px; } .framer-AoMH3 .framer-16d3pqq > :last-child { margin-bottom: 0px; } .framer-AoMH3 .framer-sx828d > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",\".framer-AoMH3.framer-v-19y1znr .framer-14yfvru-container { order: 4; }\",\".framer-AoMH3.framer-v-19y1znr .framer-1a33ubm-container, .framer-AoMH3.framer-v-klios6 .framer-1a33ubm-container { order: 0; }\",\".framer-AoMH3.framer-v-19y1znr .framer-1yy7zcn-container { order: 5; }\",\".framer-AoMH3.framer-v-19y1znr .framer-1k9rrcs-container, .framer-AoMH3.framer-v-klios6 .framer-1k9rrcs-container { order: 6; }\",\".framer-AoMH3.framer-v-19y1znr .framer-1or8d9w-container, .framer-AoMH3.framer-v-klios6 .framer-1or8d9w-container { order: 7; }\",\".framer-AoMH3.framer-v-13hze29.framer-1bmsvne, .framer-AoMH3.framer-v-t3cpou.framer-1bmsvne, .framer-AoMH3.framer-v-1yugbd8.framer-1bmsvne, .framer-AoMH3.framer-v-eo237x.framer-1bmsvne, .framer-AoMH3.framer-v-zmvamb.framer-1bmsvne, .framer-AoMH3.framer-v-klios6.framer-1bmsvne { padding: 12px; width: 810px; }\",\".framer-AoMH3.framer-v-klios6 .framer-nysu1s-container { order: 1; }\",\".framer-AoMH3.framer-v-uzyix1.framer-1bmsvne, .framer-AoMH3.framer-v-1j4jqog.framer-1bmsvne, .framer-AoMH3.framer-v-3p3uxh.framer-1bmsvne, .framer-AoMH3.framer-v-sp2qs2.framer-1bmsvne, .framer-AoMH3.framer-v-15lt6kp.framer-1bmsvne, .framer-AoMH3.framer-v-1avusx2.framer-1bmsvne, .framer-AoMH3.framer-v-17ijb69.framer-1bmsvne, .framer-AoMH3.framer-v-1jz19wd.framer-1bmsvne, .framer-AoMH3.framer-v-16jnm86.framer-1bmsvne, .framer-AoMH3.framer-v-181srzc.framer-1bmsvne, .framer-AoMH3.framer-v-1p3p7dd.framer-1bmsvne, .framer-AoMH3.framer-v-h54wg3.framer-1bmsvne { gap: 12px; padding: 12px; width: 390px; }\",\".framer-AoMH3.framer-v-uzyix1 .framer-1uiim3e, .framer-AoMH3.framer-v-3p3uxh .framer-1uiim3e, .framer-AoMH3.framer-v-15lt6kp .framer-1uiim3e, .framer-AoMH3.framer-v-17ijb69 .framer-1uiim3e, .framer-AoMH3.framer-v-16jnm86 .framer-1uiim3e, .framer-AoMH3.framer-v-1p3p7dd .framer-1uiim3e { flex-direction: column; gap: 20px; justify-content: flex-start; padding: 20px 12px 20px 12px; }\",\".framer-AoMH3.framer-v-uzyix1 .framer-1fgsfw3, .framer-AoMH3.framer-v-1j4jqog .framer-1fgsfw3, .framer-AoMH3.framer-v-3p3uxh .framer-1fgsfw3, .framer-AoMH3.framer-v-sp2qs2 .framer-1fgsfw3, .framer-AoMH3.framer-v-15lt6kp .framer-1fgsfw3, .framer-AoMH3.framer-v-1avusx2 .framer-1fgsfw3, .framer-AoMH3.framer-v-17ijb69 .framer-1fgsfw3, .framer-AoMH3.framer-v-1jz19wd .framer-1fgsfw3, .framer-AoMH3.framer-v-16jnm86 .framer-1fgsfw3, .framer-AoMH3.framer-v-181srzc .framer-1fgsfw3, .framer-AoMH3.framer-v-h54wg3 .framer-1fgsfw3 { gap: unset; justify-content: space-between; padding: 0px 14px 0px 8px; width: 100%; }\",\".framer-AoMH3.framer-v-uzyix1 .framer-16d3pqq, .framer-AoMH3.framer-v-1j4jqog .framer-16d3pqq, .framer-AoMH3.framer-v-3p3uxh .framer-16d3pqq, .framer-AoMH3.framer-v-sp2qs2 .framer-16d3pqq, .framer-AoMH3.framer-v-15lt6kp .framer-16d3pqq, .framer-AoMH3.framer-v-1avusx2 .framer-16d3pqq, .framer-AoMH3.framer-v-17ijb69 .framer-16d3pqq, .framer-AoMH3.framer-v-1jz19wd .framer-16d3pqq, .framer-AoMH3.framer-v-16jnm86 .framer-16d3pqq, .framer-AoMH3.framer-v-181srzc .framer-16d3pqq, .framer-AoMH3.framer-v-1p3p7dd .framer-16d3pqq, .framer-AoMH3.framer-v-h54wg3 .framer-16d3pqq { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AoMH3.framer-v-uzyix1.framer-1bmsvne, .framer-AoMH3.framer-v-uzyix1 .framer-1uiim3e, .framer-AoMH3.framer-v-uzyix1 .framer-1fgsfw3 { gap: 0px; } .framer-AoMH3.framer-v-uzyix1.framer-1bmsvne > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-AoMH3.framer-v-uzyix1.framer-1bmsvne > :first-child { margin-left: 0px; } .framer-AoMH3.framer-v-uzyix1.framer-1bmsvne > :last-child { margin-right: 0px; } .framer-AoMH3.framer-v-uzyix1 .framer-1uiim3e > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-AoMH3.framer-v-uzyix1 .framer-1uiim3e > :first-child { margin-top: 0px; } .framer-AoMH3.framer-v-uzyix1 .framer-1uiim3e > :last-child { margin-bottom: 0px; } .framer-AoMH3.framer-v-uzyix1 .framer-1fgsfw3 > *, .framer-AoMH3.framer-v-uzyix1 .framer-1fgsfw3 > :first-child, .framer-AoMH3.framer-v-uzyix1 .framer-1fgsfw3 > :last-child { margin: 0px; } }\",\".framer-AoMH3.framer-v-1j4jqog .framer-1uiim3e { flex-direction: column; gap: 24px; justify-content: flex-start; order: 0; padding: 20px 12px 48px 12px; }\",\".framer-AoMH3.framer-v-1j4jqog .framer-rbfjdd, .framer-AoMH3.framer-v-sp2qs2 .framer-rbfjdd, .framer-AoMH3.framer-v-1avusx2 .framer-rbfjdd, .framer-AoMH3.framer-v-1jz19wd .framer-rbfjdd, .framer-AoMH3.framer-v-181srzc .framer-rbfjdd, .framer-AoMH3.framer-v-h54wg3 .framer-rbfjdd { top: 11px; }\",\".framer-AoMH3.framer-v-1j4jqog .framer-1vkn26t, .framer-AoMH3.framer-v-sp2qs2 .framer-1vkn26t, .framer-AoMH3.framer-v-1avusx2 .framer-1vkn26t, .framer-AoMH3.framer-v-1jz19wd .framer-1vkn26t, .framer-AoMH3.framer-v-181srzc .framer-1vkn26t, .framer-AoMH3.framer-v-h54wg3 .framer-1vkn26t { bottom: 11px; }\",\".framer-AoMH3.framer-v-1j4jqog .framer-sx828d, .framer-AoMH3.framer-v-sp2qs2 .framer-sx828d, .framer-AoMH3.framer-v-1avusx2 .framer-sx828d, .framer-AoMH3.framer-v-1jz19wd .framer-sx828d, .framer-AoMH3.framer-v-181srzc .framer-sx828d, .framer-AoMH3.framer-v-h54wg3 .framer-sx828d { flex-direction: column; gap: 0px; width: 100%; }\",\".framer-AoMH3.framer-v-1j4jqog .framer-1dibdck-container, .framer-AoMH3.framer-v-1j4jqog .framer-14yfvru-container, .framer-AoMH3.framer-v-1j4jqog .framer-1a33ubm-container, .framer-AoMH3.framer-v-1j4jqog .framer-1yy7zcn-container, .framer-AoMH3.framer-v-1j4jqog .framer-1k9rrcs-container, .framer-AoMH3.framer-v-1j4jqog .framer-1or8d9w-container, .framer-AoMH3.framer-v-sp2qs2 .framer-1dibdck-container, .framer-AoMH3.framer-v-sp2qs2 .framer-14yfvru-container, .framer-AoMH3.framer-v-sp2qs2 .framer-1a33ubm-container, .framer-AoMH3.framer-v-sp2qs2 .framer-1yy7zcn-container, .framer-AoMH3.framer-v-sp2qs2 .framer-1k9rrcs-container, .framer-AoMH3.framer-v-sp2qs2 .framer-1or8d9w-container, .framer-AoMH3.framer-v-1avusx2 .framer-1dibdck-container, .framer-AoMH3.framer-v-1avusx2 .framer-14yfvru-container, .framer-AoMH3.framer-v-1avusx2 .framer-1a33ubm-container, .framer-AoMH3.framer-v-1avusx2 .framer-1yy7zcn-container, .framer-AoMH3.framer-v-1avusx2 .framer-1k9rrcs-container, .framer-AoMH3.framer-v-1avusx2 .framer-1or8d9w-container, .framer-AoMH3.framer-v-1jz19wd .framer-1dibdck-container, .framer-AoMH3.framer-v-1jz19wd .framer-14yfvru-container, .framer-AoMH3.framer-v-1jz19wd .framer-1a33ubm-container, .framer-AoMH3.framer-v-1jz19wd .framer-1yy7zcn-container, .framer-AoMH3.framer-v-1jz19wd .framer-1k9rrcs-container, .framer-AoMH3.framer-v-1jz19wd .framer-1or8d9w-container, .framer-AoMH3.framer-v-181srzc .framer-1dibdck-container, .framer-AoMH3.framer-v-181srzc .framer-14yfvru-container, .framer-AoMH3.framer-v-181srzc .framer-1a33ubm-container, .framer-AoMH3.framer-v-181srzc .framer-1yy7zcn-container, .framer-AoMH3.framer-v-181srzc .framer-1k9rrcs-container, .framer-AoMH3.framer-v-181srzc .framer-1or8d9w-container { height: 50px; width: 100%; }\",\".framer-AoMH3.framer-v-1j4jqog .framer-10c1tgu-container, .framer-AoMH3.framer-v-sp2qs2 .framer-10c1tgu-container, .framer-AoMH3.framer-v-1avusx2 .framer-10c1tgu-container, .framer-AoMH3.framer-v-1jz19wd .framer-10c1tgu-container, .framer-AoMH3.framer-v-181srzc .framer-10c1tgu-container, .framer-AoMH3.framer-v-h54wg3 .framer-10c1tgu-container { width: 240px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AoMH3.framer-v-1j4jqog.framer-1bmsvne, .framer-AoMH3.framer-v-1j4jqog .framer-1uiim3e, .framer-AoMH3.framer-v-1j4jqog .framer-1fgsfw3, .framer-AoMH3.framer-v-1j4jqog .framer-sx828d { gap: 0px; } .framer-AoMH3.framer-v-1j4jqog.framer-1bmsvne > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-AoMH3.framer-v-1j4jqog.framer-1bmsvne > :first-child { margin-left: 0px; } .framer-AoMH3.framer-v-1j4jqog.framer-1bmsvne > :last-child { margin-right: 0px; } .framer-AoMH3.framer-v-1j4jqog .framer-1uiim3e > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-AoMH3.framer-v-1j4jqog .framer-1uiim3e > :first-child, .framer-AoMH3.framer-v-1j4jqog .framer-sx828d > :first-child { margin-top: 0px; } .framer-AoMH3.framer-v-1j4jqog .framer-1uiim3e > :last-child, .framer-AoMH3.framer-v-1j4jqog .framer-sx828d > :last-child { margin-bottom: 0px; } .framer-AoMH3.framer-v-1j4jqog .framer-1fgsfw3 > *, .framer-AoMH3.framer-v-1j4jqog .framer-1fgsfw3 > :first-child, .framer-AoMH3.framer-v-1j4jqog .framer-1fgsfw3 > :last-child { margin: 0px; } .framer-AoMH3.framer-v-1j4jqog .framer-sx828d > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AoMH3.framer-v-3p3uxh.framer-1bmsvne, .framer-AoMH3.framer-v-3p3uxh .framer-1uiim3e, .framer-AoMH3.framer-v-3p3uxh .framer-1fgsfw3 { gap: 0px; } .framer-AoMH3.framer-v-3p3uxh.framer-1bmsvne > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-AoMH3.framer-v-3p3uxh.framer-1bmsvne > :first-child { margin-left: 0px; } .framer-AoMH3.framer-v-3p3uxh.framer-1bmsvne > :last-child { margin-right: 0px; } .framer-AoMH3.framer-v-3p3uxh .framer-1uiim3e > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-AoMH3.framer-v-3p3uxh .framer-1uiim3e > :first-child { margin-top: 0px; } .framer-AoMH3.framer-v-3p3uxh .framer-1uiim3e > :last-child { margin-bottom: 0px; } .framer-AoMH3.framer-v-3p3uxh .framer-1fgsfw3 > *, .framer-AoMH3.framer-v-3p3uxh .framer-1fgsfw3 > :first-child, .framer-AoMH3.framer-v-3p3uxh .framer-1fgsfw3 > :last-child { margin: 0px; } }\",\".framer-AoMH3.framer-v-sp2qs2 .framer-1uiim3e, .framer-AoMH3.framer-v-1avusx2 .framer-1uiim3e, .framer-AoMH3.framer-v-1jz19wd .framer-1uiim3e, .framer-AoMH3.framer-v-181srzc .framer-1uiim3e, .framer-AoMH3.framer-v-h54wg3 .framer-1uiim3e { flex-direction: column; gap: 24px; justify-content: flex-start; padding: 20px 12px 48px 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AoMH3.framer-v-sp2qs2.framer-1bmsvne, .framer-AoMH3.framer-v-sp2qs2 .framer-1uiim3e, .framer-AoMH3.framer-v-sp2qs2 .framer-1fgsfw3, .framer-AoMH3.framer-v-sp2qs2 .framer-sx828d { gap: 0px; } .framer-AoMH3.framer-v-sp2qs2.framer-1bmsvne > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-AoMH3.framer-v-sp2qs2.framer-1bmsvne > :first-child { margin-left: 0px; } .framer-AoMH3.framer-v-sp2qs2.framer-1bmsvne > :last-child { margin-right: 0px; } .framer-AoMH3.framer-v-sp2qs2 .framer-1uiim3e > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-AoMH3.framer-v-sp2qs2 .framer-1uiim3e > :first-child, .framer-AoMH3.framer-v-sp2qs2 .framer-sx828d > :first-child { margin-top: 0px; } .framer-AoMH3.framer-v-sp2qs2 .framer-1uiim3e > :last-child, .framer-AoMH3.framer-v-sp2qs2 .framer-sx828d > :last-child { margin-bottom: 0px; } .framer-AoMH3.framer-v-sp2qs2 .framer-1fgsfw3 > *, .framer-AoMH3.framer-v-sp2qs2 .framer-1fgsfw3 > :first-child, .framer-AoMH3.framer-v-sp2qs2 .framer-1fgsfw3 > :last-child { margin: 0px; } .framer-AoMH3.framer-v-sp2qs2 .framer-sx828d > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AoMH3.framer-v-15lt6kp.framer-1bmsvne, .framer-AoMH3.framer-v-15lt6kp .framer-1uiim3e, .framer-AoMH3.framer-v-15lt6kp .framer-1fgsfw3 { gap: 0px; } .framer-AoMH3.framer-v-15lt6kp.framer-1bmsvne > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-AoMH3.framer-v-15lt6kp.framer-1bmsvne > :first-child { margin-left: 0px; } .framer-AoMH3.framer-v-15lt6kp.framer-1bmsvne > :last-child { margin-right: 0px; } .framer-AoMH3.framer-v-15lt6kp .framer-1uiim3e > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-AoMH3.framer-v-15lt6kp .framer-1uiim3e > :first-child { margin-top: 0px; } .framer-AoMH3.framer-v-15lt6kp .framer-1uiim3e > :last-child { margin-bottom: 0px; } .framer-AoMH3.framer-v-15lt6kp .framer-1fgsfw3 > *, .framer-AoMH3.framer-v-15lt6kp .framer-1fgsfw3 > :first-child, .framer-AoMH3.framer-v-15lt6kp .framer-1fgsfw3 > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AoMH3.framer-v-1avusx2.framer-1bmsvne, .framer-AoMH3.framer-v-1avusx2 .framer-1uiim3e, .framer-AoMH3.framer-v-1avusx2 .framer-1fgsfw3, .framer-AoMH3.framer-v-1avusx2 .framer-sx828d { gap: 0px; } .framer-AoMH3.framer-v-1avusx2.framer-1bmsvne > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-AoMH3.framer-v-1avusx2.framer-1bmsvne > :first-child { margin-left: 0px; } .framer-AoMH3.framer-v-1avusx2.framer-1bmsvne > :last-child { margin-right: 0px; } .framer-AoMH3.framer-v-1avusx2 .framer-1uiim3e > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-AoMH3.framer-v-1avusx2 .framer-1uiim3e > :first-child, .framer-AoMH3.framer-v-1avusx2 .framer-sx828d > :first-child { margin-top: 0px; } .framer-AoMH3.framer-v-1avusx2 .framer-1uiim3e > :last-child, .framer-AoMH3.framer-v-1avusx2 .framer-sx828d > :last-child { margin-bottom: 0px; } .framer-AoMH3.framer-v-1avusx2 .framer-1fgsfw3 > *, .framer-AoMH3.framer-v-1avusx2 .framer-1fgsfw3 > :first-child, .framer-AoMH3.framer-v-1avusx2 .framer-1fgsfw3 > :last-child { margin: 0px; } .framer-AoMH3.framer-v-1avusx2 .framer-sx828d > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AoMH3.framer-v-17ijb69.framer-1bmsvne, .framer-AoMH3.framer-v-17ijb69 .framer-1uiim3e, .framer-AoMH3.framer-v-17ijb69 .framer-1fgsfw3 { gap: 0px; } .framer-AoMH3.framer-v-17ijb69.framer-1bmsvne > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-AoMH3.framer-v-17ijb69.framer-1bmsvne > :first-child { margin-left: 0px; } .framer-AoMH3.framer-v-17ijb69.framer-1bmsvne > :last-child { margin-right: 0px; } .framer-AoMH3.framer-v-17ijb69 .framer-1uiim3e > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-AoMH3.framer-v-17ijb69 .framer-1uiim3e > :first-child { margin-top: 0px; } .framer-AoMH3.framer-v-17ijb69 .framer-1uiim3e > :last-child { margin-bottom: 0px; } .framer-AoMH3.framer-v-17ijb69 .framer-1fgsfw3 > *, .framer-AoMH3.framer-v-17ijb69 .framer-1fgsfw3 > :first-child, .framer-AoMH3.framer-v-17ijb69 .framer-1fgsfw3 > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AoMH3.framer-v-1jz19wd.framer-1bmsvne, .framer-AoMH3.framer-v-1jz19wd .framer-1uiim3e, .framer-AoMH3.framer-v-1jz19wd .framer-1fgsfw3, .framer-AoMH3.framer-v-1jz19wd .framer-sx828d { gap: 0px; } .framer-AoMH3.framer-v-1jz19wd.framer-1bmsvne > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-AoMH3.framer-v-1jz19wd.framer-1bmsvne > :first-child { margin-left: 0px; } .framer-AoMH3.framer-v-1jz19wd.framer-1bmsvne > :last-child { margin-right: 0px; } .framer-AoMH3.framer-v-1jz19wd .framer-1uiim3e > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-AoMH3.framer-v-1jz19wd .framer-1uiim3e > :first-child, .framer-AoMH3.framer-v-1jz19wd .framer-sx828d > :first-child { margin-top: 0px; } .framer-AoMH3.framer-v-1jz19wd .framer-1uiim3e > :last-child, .framer-AoMH3.framer-v-1jz19wd .framer-sx828d > :last-child { margin-bottom: 0px; } .framer-AoMH3.framer-v-1jz19wd .framer-1fgsfw3 > *, .framer-AoMH3.framer-v-1jz19wd .framer-1fgsfw3 > :first-child, .framer-AoMH3.framer-v-1jz19wd .framer-1fgsfw3 > :last-child { margin: 0px; } .framer-AoMH3.framer-v-1jz19wd .framer-sx828d > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AoMH3.framer-v-16jnm86.framer-1bmsvne, .framer-AoMH3.framer-v-16jnm86 .framer-1uiim3e, .framer-AoMH3.framer-v-16jnm86 .framer-1fgsfw3 { gap: 0px; } .framer-AoMH3.framer-v-16jnm86.framer-1bmsvne > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-AoMH3.framer-v-16jnm86.framer-1bmsvne > :first-child { margin-left: 0px; } .framer-AoMH3.framer-v-16jnm86.framer-1bmsvne > :last-child { margin-right: 0px; } .framer-AoMH3.framer-v-16jnm86 .framer-1uiim3e > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-AoMH3.framer-v-16jnm86 .framer-1uiim3e > :first-child { margin-top: 0px; } .framer-AoMH3.framer-v-16jnm86 .framer-1uiim3e > :last-child { margin-bottom: 0px; } .framer-AoMH3.framer-v-16jnm86 .framer-1fgsfw3 > *, .framer-AoMH3.framer-v-16jnm86 .framer-1fgsfw3 > :first-child, .framer-AoMH3.framer-v-16jnm86 .framer-1fgsfw3 > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AoMH3.framer-v-181srzc.framer-1bmsvne, .framer-AoMH3.framer-v-181srzc .framer-1uiim3e, .framer-AoMH3.framer-v-181srzc .framer-1fgsfw3, .framer-AoMH3.framer-v-181srzc .framer-sx828d { gap: 0px; } .framer-AoMH3.framer-v-181srzc.framer-1bmsvne > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-AoMH3.framer-v-181srzc.framer-1bmsvne > :first-child { margin-left: 0px; } .framer-AoMH3.framer-v-181srzc.framer-1bmsvne > :last-child { margin-right: 0px; } .framer-AoMH3.framer-v-181srzc .framer-1uiim3e > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-AoMH3.framer-v-181srzc .framer-1uiim3e > :first-child, .framer-AoMH3.framer-v-181srzc .framer-sx828d > :first-child { margin-top: 0px; } .framer-AoMH3.framer-v-181srzc .framer-1uiim3e > :last-child, .framer-AoMH3.framer-v-181srzc .framer-sx828d > :last-child { margin-bottom: 0px; } .framer-AoMH3.framer-v-181srzc .framer-1fgsfw3 > *, .framer-AoMH3.framer-v-181srzc .framer-1fgsfw3 > :first-child, .framer-AoMH3.framer-v-181srzc .framer-1fgsfw3 > :last-child { margin: 0px; } .framer-AoMH3.framer-v-181srzc .framer-sx828d > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-AoMH3.framer-v-1p3p7dd .framer-1fgsfw3 { cursor: pointer; gap: unset; justify-content: space-between; padding: 0px 14px 0px 8px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AoMH3.framer-v-1p3p7dd.framer-1bmsvne, .framer-AoMH3.framer-v-1p3p7dd .framer-1uiim3e, .framer-AoMH3.framer-v-1p3p7dd .framer-1fgsfw3 { gap: 0px; } .framer-AoMH3.framer-v-1p3p7dd.framer-1bmsvne > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-AoMH3.framer-v-1p3p7dd.framer-1bmsvne > :first-child { margin-left: 0px; } .framer-AoMH3.framer-v-1p3p7dd.framer-1bmsvne > :last-child { margin-right: 0px; } .framer-AoMH3.framer-v-1p3p7dd .framer-1uiim3e > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-AoMH3.framer-v-1p3p7dd .framer-1uiim3e > :first-child { margin-top: 0px; } .framer-AoMH3.framer-v-1p3p7dd .framer-1uiim3e > :last-child { margin-bottom: 0px; } .framer-AoMH3.framer-v-1p3p7dd .framer-1fgsfw3 > *, .framer-AoMH3.framer-v-1p3p7dd .framer-1fgsfw3 > :first-child, .framer-AoMH3.framer-v-1p3p7dd .framer-1fgsfw3 > :last-child { margin: 0px; } }\",\".framer-AoMH3.framer-v-h54wg3 .framer-14yfvru-container { height: 50px; order: 4; width: 100%; }\",\".framer-AoMH3.framer-v-h54wg3 .framer-1a33ubm-container { height: 50px; order: 0; width: 100%; }\",\".framer-AoMH3.framer-v-h54wg3 .framer-1yy7zcn-container { height: 50px; order: 5; width: 100%; }\",\".framer-AoMH3.framer-v-h54wg3 .framer-1k9rrcs-container { height: 50px; order: 6; width: 100%; }\",\".framer-AoMH3.framer-v-h54wg3 .framer-1or8d9w-container { height: 50px; order: 7; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AoMH3.framer-v-h54wg3.framer-1bmsvne, .framer-AoMH3.framer-v-h54wg3 .framer-1uiim3e, .framer-AoMH3.framer-v-h54wg3 .framer-1fgsfw3, .framer-AoMH3.framer-v-h54wg3 .framer-sx828d { gap: 0px; } .framer-AoMH3.framer-v-h54wg3.framer-1bmsvne > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-AoMH3.framer-v-h54wg3.framer-1bmsvne > :first-child { margin-left: 0px; } .framer-AoMH3.framer-v-h54wg3.framer-1bmsvne > :last-child { margin-right: 0px; } .framer-AoMH3.framer-v-h54wg3 .framer-1uiim3e > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-AoMH3.framer-v-h54wg3 .framer-1uiim3e > :first-child, .framer-AoMH3.framer-v-h54wg3 .framer-sx828d > :first-child { margin-top: 0px; } .framer-AoMH3.framer-v-h54wg3 .framer-1uiim3e > :last-child, .framer-AoMH3.framer-v-h54wg3 .framer-sx828d > :last-child { margin-bottom: 0px; } .framer-AoMH3.framer-v-h54wg3 .framer-1fgsfw3 > *, .framer-AoMH3.framer-v-h54wg3 .framer-1fgsfw3 > :first-child, .framer-AoMH3.framer-v-h54wg3 .framer-1fgsfw3 > :last-child { margin: 0px; } .framer-AoMH3.framer-v-h54wg3 .framer-sx828d > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 104\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"FEMDNYzc7\":{\"layout\":[\"fixed\",\"auto\"]},\"O_3MdqGE6\":{\"layout\":[\"fixed\",\"auto\"]},\"WMngvwwSM\":{\"layout\":[\"fixed\",\"auto\"]},\"SYyeGdTLR\":{\"layout\":[\"fixed\",\"auto\"]},\"qDU7EUa69\":{\"layout\":[\"fixed\",\"auto\"]},\"kIzqVDLra\":{\"layout\":[\"fixed\",\"auto\"]},\"beJAwXf6Z\":{\"layout\":[\"fixed\",\"auto\"]},\"s1EHexloJ\":{\"layout\":[\"fixed\",\"auto\"]},\"FTRZvvIN4\":{\"layout\":[\"fixed\",\"auto\"]},\"GYzCwZdxI\":{\"layout\":[\"fixed\",\"auto\"]},\"G0SCObYMD\":{\"layout\":[\"fixed\",\"auto\"]},\"thsWu1H6x\":{\"layout\":[\"fixed\",\"auto\"]},\"tVbvhPQmB\":{\"layout\":[\"fixed\",\"auto\"]},\"b50wNQO12\":{\"layout\":[\"fixed\",\"auto\"]},\"usNStIx6g\":{\"layout\":[\"fixed\",\"auto\"]},\"DFHnWB8iW\":{\"layout\":[\"fixed\",\"auto\"]},\"pLqhalTb9\":{\"layout\":[\"fixed\",\"auto\"]},\"kwtlY3Og8\":{\"layout\":[\"fixed\",\"auto\"]},\"WVv4TAiHq\":{\"layout\":[\"fixed\",\"auto\"]},\"Vspf4wdC4\":{\"layout\":[\"fixed\",\"auto\"]},\"BMYo3mjTG\":{\"layout\":[\"fixed\",\"auto\"]},\"HZ2yhsklD\":{\"layout\":[\"fixed\",\"auto\"]},\"iW_yzRGLf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCjLkdId0w=withCSS(Component,css,\"framer-AoMH3\");export default FramerCjLkdId0w;FramerCjLkdId0w.displayName=\"Top Nav\";FramerCjLkdId0w.defaultProps={height:104,width:1200};addPropertyControls(FramerCjLkdId0w,{variant:{options:[\"h2eGmjQnm\",\"FEMDNYzc7\",\"O_3MdqGE6\",\"WMngvwwSM\",\"SYyeGdTLR\",\"qDU7EUa69\",\"kIzqVDLra\",\"beJAwXf6Z\",\"s1EHexloJ\",\"FTRZvvIN4\",\"GYzCwZdxI\",\"G0SCObYMD\",\"thsWu1H6x\",\"tVbvhPQmB\",\"b50wNQO12\",\"usNStIx6g\",\"DFHnWB8iW\",\"pLqhalTb9\",\"kwtlY3Og8\",\"WVv4TAiHq\",\"Vspf4wdC4\",\"BMYo3mjTG\",\"HZ2yhsklD\",\"iW_yzRGLf\"],optionTitles:[\"Desktop - Home\",\"Desktop - Features\",\"Desktop - Pricing\",\"Desktop - Blog\",\"Desktop - Contact\",\"Desktop - Enterprise\",\"Tablet - Home\",\"Tablet - Features\",\"Tablet - Pricing\",\"Tablet - Blog\",\"Tablet - Contact\",\"Tablet - Enterprise\",\"Mobile - Home\",\"Mobile - Home - Open\",\"Mobile - Features\",\"Mobile - Features - Open\",\"Mobile - Pricing\",\"Mobile - Pricing - Open\",\"Mobile - Blog\",\"Mobile - Blog - Selected\",\"Mobile - Contact\",\"Mobile - Contect - Selected\",\"Mobile - Enterprise\",\"Mobile - Enterprise - Selected\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerCjLkdId0w,[{explicitInter:true,fonts:[]},...LogoFonts,...MenuTabAndLinkFonts,...ButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCjLkdId0w\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"104\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FEMDNYzc7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"O_3MdqGE6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WMngvwwSM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SYyeGdTLR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qDU7EUa69\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kIzqVDLra\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"beJAwXf6Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"s1EHexloJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FTRZvvIN4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GYzCwZdxI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"G0SCObYMD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"thsWu1H6x\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tVbvhPQmB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"b50wNQO12\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"usNStIx6g\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DFHnWB8iW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pLqhalTb9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kwtlY3Og8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WVv4TAiHq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Vspf4wdC4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BMYo3mjTG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HZ2yhsklD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iW_yzRGLf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CjLkdId0w.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Medium\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-MediumItalic\"]);export const fonts=[];export const css=['.framer-24xrz .framer-styles-preset-3ybpz2:not(.rich-text-wrapper), .framer-24xrz .framer-styles-preset-3ybpz2.rich-text-wrapper h1 { --framer-font-family: \"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-MediumItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 74px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, #e6e6e6); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-24xrz .framer-styles-preset-3ybpz2:not(.rich-text-wrapper), .framer-24xrz .framer-styles-preset-3ybpz2.rich-text-wrapper h1 { --framer-font-family: \"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-MediumItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, #e6e6e6); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-24xrz .framer-styles-preset-3ybpz2:not(.rich-text-wrapper), .framer-24xrz .framer-styles-preset-3ybpz2.rich-text-wrapper h1 { --framer-font-family: \"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-MediumItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, #e6e6e6); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-24xrz\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[];export const css=['.framer-2vaLv .framer-styles-preset-cfdsgr:not(.rich-text-wrapper), .framer-2vaLv .framer-styles-preset-cfdsgr.rich-text-wrapper a { --framer-link-current-text-color: var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, #b3b3b3) /* {\"name\":\"Light/70\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, #e6e6e6) /* {\"name\":\"Light/90\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, #b3b3b3); --framer-link-text-decoration: none; }'];export const className=\"framer-2vaLv\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d894e1b)\nimport{jsx as e}from\"react/jsx-runtime\";import{addFonts as r,addPropertyControls as t,ControlType as a,cx as o,getFonts as i,getPropertyControls as n,Link as l,useLocaleInfo as s,useVariantState as d,withCSS as c}from\"framer\";import{LayoutGroup as f,motion as m,MotionConfigContext as h}from\"framer-motion\";import*as p from\"react\";import{Icon as u}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";let v=i(u),g=n(u),b={spvRmf5hS:{hover:!0}},x=[\"spvRmf5hS\"],S=\"framer-UhTSH\",k={spvRmf5hS:\"framer-v-3kslck\"};function w(e,...r){let t={};return null==r||r.forEach(r=>r&&Object.assign(t,e[r])),t;}let y={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},U=({value:r,children:t})=>{let a=p.useContext(h),o=null!=r?r:a.transition,i=p.useMemo(()=>({...a,transition:o}),[JSON.stringify(o)]);return /*#__PURE__*/e(h.Provider,{value:i,children:t});},H=({height:e,icon:r,id:t,link:a,width:o,...i})=>{var n;return{...i,FBB7zICte:null!==(n=null!=r?r:i.FBB7zICte)&&void 0!==n?n:\"TwitterLogo\",LzUFbbUqU:null!=a?a:i.LzUFbbUqU};},T=(e,r)=>r.join(\"-\")+e.layoutDependency,I=/*#__PURE__*/p.forwardRef(function(r,t){let{activeLocale:a}=s(),{style:i,className:n,layoutId:c,variant:h,LzUFbbUqU:v,FBB7zICte:g,...S}=H(r),{baseVariant:I,classNames:L,gestureVariant:R,setGestureState:j,setVariant:z,transition:B,variants:q}=d({cycleOrder:x,defaultVariant:\"spvRmf5hS\",enabledGestures:b,transitions:y,variant:h,variantClassNames:k}),C=T(r,q),P=p.useRef(null),F=p.useId();return /*#__PURE__*/e(f,{id:null!=c?c:F,children:/*#__PURE__*/e(m.div,{initial:h,animate:q,onHoverStart:()=>j({isHovered:!0}),onHoverEnd:()=>j({isHovered:!1}),onTapStart:()=>j({isPressed:!0}),onTap:()=>j({isPressed:!1}),onTapCancel:()=>j({isPressed:!1}),className:o(\"framer-UhTSH\",...[],L),style:{display:\"contents\"},children:/*#__PURE__*/e(U,{value:B,children:/*#__PURE__*/e(l,{href:v,openInNewTab:!0,children:/*#__PURE__*/e(m.a,{...S,className:`${o(\"framer-3kslck\",n)} framer-vp87v3`,\"data-framer-name\":\"Variant 1\",layoutDependency:C,layoutId:\"spvRmf5hS\",ref:null!=t?t:P,style:{...i},...w({\"spvRmf5hS-hover\":{\"data-framer-name\":void 0}},I,R),children:/*#__PURE__*/e(m.div,{className:\"framer-w1bcdg-container\",layoutDependency:C,layoutId:\"cqgeWt6eJ-container\",children:/*#__PURE__*/e(u,{color:'var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)) /* {\"name\":\"Light/70\"} */',height:\"100%\",iconSearch:\"House\",iconSelection:g,id:\"cqgeWt6eJ\",layoutId:\"cqgeWt6eJ\",mirrored:!1,selectByList:!0,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...w({\"spvRmf5hS-hover\":{color:'var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, rgb(230, 230, 230)) /* {\"name\":\"Light/90\"} */',weight:\"fill\"}},I,R)})})})})})})});}),L=['.framer-UhTSH [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-UhTSH .framer-vp87v3 { display: block; }\",\".framer-UhTSH .framer-3kslck { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 24px; }\",\".framer-UhTSH .framer-w1bcdg-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-UhTSH .framer-v-3kslck .framer-3kslck { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UhTSH .framer-3kslck { gap: 0px; } .framer-UhTSH .framer-3kslck > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-UhTSH .framer-3kslck > :first-child { margin-left: 0px; } .framer-UhTSH .framer-3kslck > :last-child { margin-right: 0px; } }\"],R=c(I,L,\"framer-UhTSH\");export default R;R.displayName=\"Social Icons\",R.defaultProps={height:24,width:24},t(R,{LzUFbbUqU:{title:\"Link\",type:a.Link},FBB7zICte:(null==g?void 0:g.iconSelection)&&{...g.iconSelection,defaultValue:\"TwitterLogo\",hidden:void 0,title:\"Icon\"}}),r(R,[...v]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRaMC2gn8L\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MtQtUlnC5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"LzUFbbUqU\\\":\\\"link\\\",\\\"FBB7zICte\\\":\\\"icon\\\"}\",\"framerIntrinsicHeight\":\"24\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\",\"framerImmutableVariables\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RaMC2gn8L.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/1aGSe1lkh9UZlZCvuNBC/HfYO3ity7Pj5Nhuv0k0X/JF1itm8c0.js\";import SocialIcons from\"https://framerusercontent.com/modules/uD8ltqY7lhabsPyCFmDU/khi6WbkeIr5gjBMLzFlO/RaMC2gn8L.js\";import Logo from\"https://framerusercontent.com/modules/olUWle5iaGg5JPyTeGX5/gOPpZj2VZYqlz7OJHjQE/yPbwZPdMM.js\";const MotionDivWithFX=withFX(motion.div);const LogoFonts=getFonts(Logo);const SocialIconsFonts=getFonts(SocialIcons);const cycleOrder=[\"aq_Iiypwd\",\"Ri5chqdfm\",\"JUCbyehji\"];const serializationHash=\"framer-0Pwuu\";const variantClassNames={aq_Iiypwd:\"framer-v-gggxjq\",JUCbyehji:\"framer-v-1gnq57b\",Ri5chqdfm:\"framer-v-1om31wr\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={damping:60,delay:.5,mass:1,stiffness:100,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -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:\"aq_Iiypwd\",Mobile:\"JUCbyehji\",Tablet:\"Ri5chqdfm\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"aq_Iiypwd\"};};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:\"aq_Iiypwd\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"JUCbyehji\")return true;return false;};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-gggxjq\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"aq_Iiypwd\",ref:refBinding,style:{backgroundColor:\"var(--token-3c0773e2-e4f9-4bf4-8185-514b67d01490, rgb(13, 13, 13))\",...style},...addPropertyOverrides({JUCbyehji:{\"data-framer-name\":\"Mobile\"},Ri5chqdfm:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tfi2bc\",layoutDependency:layoutDependency,layoutId:\"VZv04QSr0\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1umcc35\",\"data-framer-name\":\"Horizontal Line\",layoutDependency:layoutDependency,layoutId:\"PCPFmFJGc\",style:{background:'linear-gradient(90deg, rgba(255, 0, 208, 0) 0%, var(--token-c37c6141-79f9-4a09-a9ce-37be3a18d52c, rgb(31, 244, 165)) /* {\"name\":\"Green 2\"} */ 50.12392187964707%, rgba(255, 0, 208, 0) 100%)',transformPerspective:1200}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-w3gwml\",\"data-framer-name\":\"Footer Content\",layoutDependency:layoutDependency,layoutId:\"vckSjr7kO\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:(componentViewport?.y||0)+0+(((componentViewport?.height||569)-96-809)/2+0+0)+96+0+0,...addPropertyOverrides({JUCbyehji:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1661)-96-2640)/2+0+0)+96+0+0+0},Ri5chqdfm:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1650.5)-96-2882)/2+0+0)+96+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-icasqb-container\",layoutDependency:layoutDependency,layoutId:\"R5Fj2yILg-container\",nodeId:\"R5Fj2yILg\",rendersWithMotion:true,scopeId:\"udUPwDJNB\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"R5Fj2yILg\",layoutId:\"R5Fj2yILg\",OcH3_UYcV:\"BET HERO\",variant:\"OKZugVEvV\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-100yfye\",\"data-framer-name\":\"Footer Content\",layoutDependency:layoutDependency,layoutId:\"BOcr3UWBa\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128)))\"},children:\"MENU\"})}),className:\"framer-130yhjc\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"kTFN9zgDL\",style:{\"--extracted-r6o4lv\":\"var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({JUCbyehji:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128)))\"},children:\"MENU\"})})},Ri5chqdfm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128)))\"},children:\"MENU\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wrc5bk\",layoutDependency:layoutDependency,layoutId:\"zmP4IXEr2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"VpsRXvqdg\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Home\"})})})}),className:\"framer-1i2smfz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VpsRXvqdg\",style:{\"--extracted-r6o4lv\":\"var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JUCbyehji:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"VpsRXvqdg\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Home\"})})})})},Ri5chqdfm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"VpsRXvqdg\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Home\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":KT3w4XnVc\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"pHOx1pdsA\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Features\"})})})}),className:\"framer-hqturg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pHOx1pdsA\",style:{\"--extracted-r6o4lv\":\"var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JUCbyehji:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":KT3w4XnVc\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"pHOx1pdsA\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Features\"})})})})},Ri5chqdfm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":KT3w4XnVc\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"pHOx1pdsA\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Features\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":vS4oIGudh\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"UIIyx3o0V\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Pricing\"})})})}),className:\"framer-105s81a\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UIIyx3o0V\",style:{\"--extracted-r6o4lv\":\"var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JUCbyehji:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":vS4oIGudh\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"UIIyx3o0V\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Pricing\"})})})})},Ri5chqdfm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":vS4oIGudh\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"UIIyx3o0V\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Pricing\"})})})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Lv_wvduOJ\"},motionChild:true,nodeId:\"U1WNu5ovp\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Blog\"})})})}),className:\"framer-1wdw1b8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"U1WNu5ovp\",style:{\"--extracted-r6o4lv\":\"var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JUCbyehji:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Lv_wvduOJ\"},motionChild:true,nodeId:\"U1WNu5ovp\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Blog\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PeRuMvwDu\"},motionChild:true,nodeId:\"rfgOhC3zT\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Contact\"})})})}),className:\"framer-pmapn2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rfgOhC3zT\",style:{\"--extracted-r6o4lv\":\"var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JUCbyehji:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PeRuMvwDu\"},motionChild:true,nodeId:\"rfgOhC3zT\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Contact\"})})})})},Ri5chqdfm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PeRuMvwDu\"},motionChild:true,nodeId:\"rfgOhC3zT\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Contact\"})})})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-szs4cj\",\"data-framer-name\":\"Footer Content\",layoutDependency:layoutDependency,layoutId:\"bq3_v2pPv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128)))\"},children:\"CALCULATORS\"})}),className:\"framer-e8v7al\",\"data-framer-name\":\"Calculators\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"azs5o7Eek\",style:{\"--extracted-r6o4lv\":\"var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({JUCbyehji:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128)))\"},children:\"CALCULATORS\"})})},Ri5chqdfm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128)))\"},children:\"CALCULATORS\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z1e141\",layoutDependency:layoutDependency,layoutId:\"pb4XNCKf9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://app.betherosports.com/calculators/arbitrage\",motionChild:true,nodeId:\"eCIM0reyr\",openInNewTab:true,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Arbitrage Calculator\"})})})}),className:\"framer-e8tkey\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eCIM0reyr\",style:{\"--extracted-r6o4lv\":\"var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JUCbyehji:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://app.betherosports.com/calculators/arbitrage\",motionChild:true,nodeId:\"eCIM0reyr\",openInNewTab:true,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Arbitrage Calculator\"})})})})},Ri5chqdfm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://app.betherosports.com/calculators/arbitrage\",motionChild:true,nodeId:\"eCIM0reyr\",openInNewTab:true,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Arbitrage Calculator\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://app.betherosports.com/calculators/expected-value\",motionChild:true,nodeId:\"aAalNgVcd\",openInNewTab:true,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Expected Value Calculator\"})})})}),className:\"framer-1xct1jm\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aAalNgVcd\",style:{\"--extracted-r6o4lv\":\"var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JUCbyehji:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://app.betherosports.com/calculators/expected-value\",motionChild:true,nodeId:\"aAalNgVcd\",openInNewTab:true,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Expected Value Calculator\"})})})})},Ri5chqdfm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://app.betherosports.com/calculators/expected-value\",motionChild:true,nodeId:\"aAalNgVcd\",openInNewTab:true,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Expected Value Calculator\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://app.betherosports.com/calculators/kelly\",motionChild:true,nodeId:\"yVW55Lq6c\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Kelly Criterion Calculator\"})})})}),className:\"framer-1h3464d\",\"data-framer-name\":\"Kelly Criterion Calculator\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yVW55Lq6c\",style:{\"--extracted-r6o4lv\":\"var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JUCbyehji:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://app.betherosports.com/calculators/kelly\",motionChild:true,nodeId:\"yVW55Lq6c\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Kelly Criterion Calculator\"})})})})},Ri5chqdfm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://app.betherosports.com/calculators/kelly\",motionChild:true,nodeId:\"yVW55Lq6c\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Kelly Criterion Calculator\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://app.betherosports.com/calculators/no-vig\",motionChild:true,nodeId:\"M_EBmFkGm\",openInNewTab:true,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"No-Vig Calculator\"})})})}),className:\"framer-1gxqh72\",\"data-framer-name\":\"No-Vig Calculator\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"M_EBmFkGm\",style:{\"--extracted-r6o4lv\":\"var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JUCbyehji:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://app.betherosports.com/calculators/no-vig\",motionChild:true,nodeId:\"M_EBmFkGm\",openInNewTab:true,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"No-Vig Calculator\"})})})})},Ri5chqdfm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://app.betherosports.com/calculators/no-vig\",motionChild:true,nodeId:\"M_EBmFkGm\",openInNewTab:true,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"No-Vig Calculator\"})})})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-188pgrn\",\"data-framer-name\":\"Footer Content\",layoutDependency:layoutDependency,layoutId:\"t7mKmk83f\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128)))\"},children:\"USEFUL LINKS\"})}),className:\"framer-1qecrja\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"GwZz6FN54\",style:{\"--extracted-r6o4lv\":\"var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({JUCbyehji:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128)))\"},children:\"USEFUL LINKS\"})})},Ri5chqdfm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128)))\"},children:\"USEFUL LINKS\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h6qvdr\",layoutDependency:layoutDependency,layoutId:\"Y4sc4cxcG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"status.betherosports.com\",motionChild:true,nodeId:\"KXJOYRKyS\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Site Status\"})})})}),className:\"framer-16igjk5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KXJOYRKyS\",style:{\"--extracted-r6o4lv\":\"var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JUCbyehji:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"status.betherosports.com\",motionChild:true,nodeId:\"KXJOYRKyS\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Site Status\"})})})})},Ri5chqdfm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"status.betherosports.com\",motionChild:true,nodeId:\"KXJOYRKyS\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Site Status\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tgNT7Ized\"},motionChild:true,nodeId:\"krthokGtz\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Privacy Policy\"})})})}),className:\"framer-1qlzgu7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"krthokGtz\",style:{\"--extracted-r6o4lv\":\"var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"bukfB0fSE\"},motionChild:true,nodeId:\"mWzlWRPqw\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Cookie Policy\"})})})}),className:\"framer-skgm6h\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mWzlWRPqw\",style:{\"--extracted-r6o4lv\":\"var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JUCbyehji:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"bukfB0fSE\"},motionChild:true,nodeId:\"mWzlWRPqw\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Cookie Policy\"})})})})},Ri5chqdfm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"bukfB0fSE\"},motionChild:true,nodeId:\"mWzlWRPqw\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Cookie Policy\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xepzZw9g9\"},motionChild:true,nodeId:\"DJ8nKmEbf\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Terms\"})})})}),className:\"framer-1wag7er\",\"data-framer-name\":\"Terms\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DJ8nKmEbf\",style:{\"--extracted-r6o4lv\":\"var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JUCbyehji:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xepzZw9g9\"},motionChild:true,nodeId:\"DJ8nKmEbf\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Terms\"})})})})},Ri5chqdfm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xepzZw9g9\"},motionChild:true,nodeId:\"DJ8nKmEbf\",openInNewTab:false,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"Terms\"})})})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c4hz41\",\"data-framer-name\":\"Footer Content\",layoutDependency:layoutDependency,layoutId:\"NGgFzIdvA\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128)))\"},children:\"CONTACT US\"})}),className:\"framer-14jm608\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"WtlvdDRaR\",style:{\"--extracted-r6o4lv\":\"var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({JUCbyehji:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128)))\"},children:\"CONTACT US\"})})},Ri5chqdfm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128)))\"},children:\"CONTACT US\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n4ynxa\",layoutDependency:layoutDependency,layoutId:\"HWjidg14m\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-143yy9i\",layoutDependency:layoutDependency,layoutId:\"WBpwLn17p\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:\"Avinguda Fiter i Rossell, 4 bis, Torre Milenium planta -1, Local 1, Seccio 13\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:\"Escaldes-Engordany AD700\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:\"Andorra\"})]}),className:\"framer-n875q5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yaM5qj93A\",style:{\"--extracted-1iakedh\":\"var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179))\",\"--extracted-2gxw0f\":\"var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179))\",\"--extracted-r6o4lv\":\"var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JUCbyehji:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:\"Avinguda Fiter i Rossell, 4 bis, Torre Milenium planta -1, Local 1, Seccio 13\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:\"Escaldes-Engordany AD700\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:\"Andorra\"})]})},Ri5chqdfm:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:\"Avinguda Fiter i Rossell, 4 bis, Torre Milenium planta -1, Local 1, Seccio 13\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:\"Escaldes-Engordany AD700\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:\"Andorra\"})]})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:[/*#__PURE__*/_jsx(Link,{href:\"mailto:mielucristian@gmail.com\",motionChild:true,nodeId:\"YJ9VhSg9S\",openInNewTab:true,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"i\"})}),\"nfo@betherosports.com\"]})}),className:\"framer-v13a7w\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"YJ9VhSg9S\",style:{\"--extracted-r6o4lv\":\"var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JUCbyehji:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:[/*#__PURE__*/_jsx(Link,{href:\"mailto:mielucristian@gmail.com\",motionChild:true,nodeId:\"YJ9VhSg9S\",openInNewTab:true,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"i\"})}),\"nfo@betherosports.com\"]})})},Ri5chqdfm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e1c0d3f8-b8f5-41ca-b1a9-181d74f8ff32, rgb(179, 179, 179)))\"},children:[/*#__PURE__*/_jsx(Link,{href:\"mailto:mielucristian@gmail.com\",motionChild:true,nodeId:\"YJ9VhSg9S\",openInNewTab:true,scopeId:\"udUPwDJNB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cfdsgr\",\"data-styles-preset\":\"JF1itm8c0\",children:\"i\"})}),\"nfo@betherosports.com\"]})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n8tq1a\",layoutDependency:layoutDependency,layoutId:\"IMYjhxPhH\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vll2jg-container\",layoutDependency:layoutDependency,layoutId:\"ICkhso6q0-container\",nodeId:\"ICkhso6q0\",rendersWithMotion:true,scopeId:\"udUPwDJNB\",children:/*#__PURE__*/_jsx(SocialIcons,{FBB7zICte:\"DiscordLogo\",height:\"100%\",id:\"ICkhso6q0\",layoutId:\"ICkhso6q0\",LzUFbbUqU:\"https://discord.gg/bet-hero-https://discord.gg/bet-hero-1126871039742324758\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tkxupl-container\",layoutDependency:layoutDependency,layoutId:\"rWHCANXhI-container\",nodeId:\"rWHCANXhI\",rendersWithMotion:true,scopeId:\"udUPwDJNB\",children:/*#__PURE__*/_jsx(SocialIcons,{FBB7zICte:\"TwitterLogo\",height:\"100%\",id:\"rWHCANXhI\",layoutId:\"rWHCANXhI\",LzUFbbUqU:\"https://twitter.com/BetHeroSports\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ie6hf0-container\",layoutDependency:layoutDependency,layoutId:\"WUm5YwMBe-container\",nodeId:\"WUm5YwMBe\",rendersWithMotion:true,scopeId:\"udUPwDJNB\",children:/*#__PURE__*/_jsx(SocialIcons,{FBB7zICte:\"InstagramLogo\",height:\"100%\",id:\"WUm5YwMBe\",layoutId:\"WUm5YwMBe\",LzUFbbUqU:\"https://instagram.com/BetHeroSports\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-116ol4h-container\",layoutDependency:layoutDependency,layoutId:\"e1o3ETWAT-container\",nodeId:\"e1o3ETWAT\",rendersWithMotion:true,scopeId:\"udUPwDJNB\",children:/*#__PURE__*/_jsx(SocialIcons,{FBB7zICte:\"FacebookLogo\",height:\"100%\",id:\"e1o3ETWAT\",layoutId:\"e1o3ETWAT\",LzUFbbUqU:\"https://facebook.com/BetHeroSports\",width:\"100%\"})})})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e5yrus\",layoutDependency:layoutDependency,layoutId:\"Aq6fe_uua\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16ieeb1\",layoutDependency:layoutDependency,layoutId:\"dNUaPXkhp\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128)))\"},children:\"\\xa9 Copyright 2025. All rights Reserved. \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128)))\"},children:\"Bet Hero is not a casino, sports book or gambling operator and does not accept or place wagers of any type, in any capacity. \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128)))\"},children:\"Additionally, Bet Hero does not endorse or encourage illegal gambling of any sort. All information and services provided \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-14qxiz, var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128)))\"},children:\"by Bet Hero are for informational purposes only.\"})]}),className:\"framer-1ff1gk4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MxRJBix4j\",style:{\"--extracted-14qxiz\":\"var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128))\",\"--extracted-1iakedh\":\"var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128))\",\"--extracted-2gxw0f\":\"var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128))\",\"--extracted-r6o4lv\":\"var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JUCbyehji:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128)))\"},children:\"\\xa9 Copyright 2025. All rights Reserved. \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128)))\"},children:\"Bet Hero is not a casino, sports book or gambling operator and does not accept or place wagers of any type, in any capacity.  Additionally, Bet Hero does not endorse or encourage illegal gambling of any sort. All information and services provided  by Bet Hero are for informational purposes only.\"})]}),transformTemplate:transformTemplate1},Ri5chqdfm:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128)))\"},children:\"\\xa9 Copyright 2025. All rights Reserved. \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128)))\"},children:\"Bet Hero is not a casino, sports book or gambling operator and does not accept or place wagers of any type, in any capacity. \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128)))\"},children:\"Additionally, Bet Hero does not endorse or encourage illegal gambling of any sort. All information and services provided \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-14qxiz, var(--token-349146c5-8de8-416c-b1f0-a7ccdaa6b466, rgb(128, 128, 128)))\"},children:\"by Bet Hero are for informational purposes only.\"})]})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.begambleaware.org/\",motionChild:true,nodeId:\"WebDAlUt4\",scopeId:\"udUPwDJNB\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"The Official Logo for BeGambleAware.org gambling awarness website.\",fit:\"fill\",intrinsicHeight:134,intrinsicWidth:1032,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||569)-96-809)/2+684+48)+25),pixelHeight:134,pixelWidth:1032,sizes:\"219px\",src:\"https://framerusercontent.com/images/8yLGZ8CjxF5sWSRC9GDgzp9q0c0.png\",srcSet:\"https://framerusercontent.com/images/8yLGZ8CjxF5sWSRC9GDgzp9q0c0.png?scale-down-to=512 512w,https://framerusercontent.com/images/8yLGZ8CjxF5sWSRC9GDgzp9q0c0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8yLGZ8CjxF5sWSRC9GDgzp9q0c0.png 1032w\"},className:\"framer-1p97xld framer-19kmrhu\",layoutDependency:layoutDependency,layoutId:\"WebDAlUt4\",...addPropertyOverrides({JUCbyehji:{background:{alt:\"The Official Logo for BeGambleAware.org gambling awarness website.\",fit:\"fill\",intrinsicHeight:134,intrinsicWidth:1032,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||1661)-96-2640)/2+2444+48)+10+101),pixelHeight:134,pixelWidth:1032,sizes:\"219px\",src:\"https://framerusercontent.com/images/8yLGZ8CjxF5sWSRC9GDgzp9q0c0.png\",srcSet:\"https://framerusercontent.com/images/8yLGZ8CjxF5sWSRC9GDgzp9q0c0.png?scale-down-to=512 512w,https://framerusercontent.com/images/8yLGZ8CjxF5sWSRC9GDgzp9q0c0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8yLGZ8CjxF5sWSRC9GDgzp9q0c0.png 1032w\"}},Ri5chqdfm:{background:{alt:\"The Official Logo for BeGambleAware.org gambling awarness website.\",fit:\"fill\",intrinsicHeight:134,intrinsicWidth:1032,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||1650.5)-96-2882)/2+2677+48)+26+77),pixelHeight:134,pixelWidth:1032,sizes:\"219px\",src:\"https://framerusercontent.com/images/8yLGZ8CjxF5sWSRC9GDgzp9q0c0.png\",srcSet:\"https://framerusercontent.com/images/8yLGZ8CjxF5sWSRC9GDgzp9q0c0.png?scale-down-to=512 512w,https://framerusercontent.com/images/8yLGZ8CjxF5sWSRC9GDgzp9q0c0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8yLGZ8CjxF5sWSRC9GDgzp9q0c0.png 1032w\"}}},baseVariant,gestureVariant)})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0Pwuu.framer-19kmrhu, .framer-0Pwuu .framer-19kmrhu { display: block; }\",\".framer-0Pwuu.framer-gggxjq { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px 48px 96px 48px; position: relative; width: 1480px; }\",\".framer-0Pwuu .framer-1tfi2bc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 96px 0px 48px 0px; position: relative; width: 100%; }\",\".framer-0Pwuu .framer-1umcc35 { flex: none; height: 1px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-0Pwuu .framer-w3gwml { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 18%; z-index: 2; }\",\".framer-0Pwuu .framer-icasqb-container, .framer-0Pwuu .framer-vll2jg-container, .framer-0Pwuu .framer-1tkxupl-container, .framer-0Pwuu .framer-ie6hf0-container, .framer-0Pwuu .framer-116ol4h-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-0Pwuu .framer-100yfye { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 18%; z-index: 2; }\",\".framer-0Pwuu .framer-130yhjc, .framer-0Pwuu .framer-e8v7al, .framer-0Pwuu .framer-1qecrja, .framer-0Pwuu .framer-14jm608, .framer-0Pwuu .framer-n875q5, .framer-0Pwuu .framer-v13a7w { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0Pwuu .framer-1wrc5bk, .framer-0Pwuu .framer-z1e141, .framer-0Pwuu .framer-1h6qvdr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-0Pwuu .framer-1i2smfz, .framer-0Pwuu .framer-hqturg, .framer-0Pwuu .framer-105s81a, .framer-0Pwuu .framer-1wdw1b8, .framer-0Pwuu .framer-pmapn2, .framer-0Pwuu .framer-16igjk5, .framer-0Pwuu .framer-1qlzgu7, .framer-0Pwuu .framer-skgm6h, .framer-0Pwuu .framer-1wag7er { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100px; word-break: break-word; word-wrap: break-word; }\",\".framer-0Pwuu .framer-szs4cj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 24%; z-index: 2; }\",\".framer-0Pwuu .framer-e8tkey { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 162px; word-break: break-word; word-wrap: break-word; }\",\".framer-0Pwuu .framer-1xct1jm { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 179px; word-break: break-word; word-wrap: break-word; }\",\".framer-0Pwuu .framer-1h3464d { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 170px; word-break: break-word; word-wrap: break-word; }\",\".framer-0Pwuu .framer-1gxqh72 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 152px; word-break: break-word; word-wrap: break-word; }\",\".framer-0Pwuu .framer-188pgrn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 20%; z-index: 2; }\",\".framer-0Pwuu .framer-c4hz41 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-0Pwuu .framer-n4ynxa { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0Pwuu .framer-143yy9i { 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-0Pwuu .framer-n8tq1a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: center; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-0Pwuu .framer-1e5yrus { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0Pwuu .framer-16ieeb1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 77px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-0Pwuu .framer-1ff1gk4 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-0Pwuu .framer-1p97xld { flex: none; height: 27px; overflow: visible; position: relative; text-decoration: none; width: 219px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0Pwuu.framer-gggxjq, .framer-0Pwuu .framer-1tfi2bc, .framer-0Pwuu .framer-w3gwml, .framer-0Pwuu .framer-100yfye, .framer-0Pwuu .framer-1wrc5bk, .framer-0Pwuu .framer-szs4cj, .framer-0Pwuu .framer-z1e141, .framer-0Pwuu .framer-188pgrn, .framer-0Pwuu .framer-1h6qvdr, .framer-0Pwuu .framer-c4hz41, .framer-0Pwuu .framer-143yy9i, .framer-0Pwuu .framer-n8tq1a, .framer-0Pwuu .framer-16ieeb1 { gap: 0px; } .framer-0Pwuu.framer-gggxjq > *, .framer-0Pwuu .framer-w3gwml > *, .framer-0Pwuu .framer-szs4cj > *, .framer-0Pwuu .framer-188pgrn > *, .framer-0Pwuu .framer-c4hz41 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-0Pwuu.framer-gggxjq > :first-child, .framer-0Pwuu .framer-w3gwml > :first-child, .framer-0Pwuu .framer-100yfye > :first-child, .framer-0Pwuu .framer-1wrc5bk > :first-child, .framer-0Pwuu .framer-szs4cj > :first-child, .framer-0Pwuu .framer-z1e141 > :first-child, .framer-0Pwuu .framer-188pgrn > :first-child, .framer-0Pwuu .framer-1h6qvdr > :first-child, .framer-0Pwuu .framer-c4hz41 > :first-child, .framer-0Pwuu .framer-143yy9i > :first-child { margin-top: 0px; } .framer-0Pwuu.framer-gggxjq > :last-child, .framer-0Pwuu .framer-w3gwml > :last-child, .framer-0Pwuu .framer-100yfye > :last-child, .framer-0Pwuu .framer-1wrc5bk > :last-child, .framer-0Pwuu .framer-szs4cj > :last-child, .framer-0Pwuu .framer-z1e141 > :last-child, .framer-0Pwuu .framer-188pgrn > :last-child, .framer-0Pwuu .framer-1h6qvdr > :last-child, .framer-0Pwuu .framer-c4hz41 > :last-child, .framer-0Pwuu .framer-143yy9i > :last-child { margin-bottom: 0px; } .framer-0Pwuu .framer-1tfi2bc > *, .framer-0Pwuu .framer-16ieeb1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-0Pwuu .framer-1tfi2bc > :first-child, .framer-0Pwuu .framer-n8tq1a > :first-child, .framer-0Pwuu .framer-16ieeb1 > :first-child { margin-left: 0px; } .framer-0Pwuu .framer-1tfi2bc > :last-child, .framer-0Pwuu .framer-n8tq1a > :last-child, .framer-0Pwuu .framer-16ieeb1 > :last-child { margin-right: 0px; } .framer-0Pwuu .framer-100yfye > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-0Pwuu .framer-1wrc5bk > *, .framer-0Pwuu .framer-z1e141 > *, .framer-0Pwuu .framer-1h6qvdr > *, .framer-0Pwuu .framer-143yy9i > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-0Pwuu .framer-n8tq1a > * { margin: 0px; margin-left: calc(27px / 2); margin-right: calc(27px / 2); } }\",\".framer-0Pwuu.framer-v-1om31wr.framer-gggxjq { padding: 0px 24px 96px 24px; width: 810px; }\",\".framer-0Pwuu.framer-v-1om31wr .framer-1tfi2bc { align-content: center; align-items: center; flex-direction: column; gap: 72px; }\",\".framer-0Pwuu.framer-v-1om31wr .framer-w3gwml { align-content: center; align-items: center; width: min-content; }\",\".framer-0Pwuu.framer-v-1om31wr .framer-100yfye, .framer-0Pwuu.framer-v-1om31wr .framer-1wrc5bk, .framer-0Pwuu.framer-v-1om31wr .framer-szs4cj, .framer-0Pwuu.framer-v-1om31wr .framer-z1e141, .framer-0Pwuu.framer-v-1om31wr .framer-188pgrn, .framer-0Pwuu.framer-v-1om31wr .framer-1h6qvdr, .framer-0Pwuu.framer-v-1gnq57b .framer-1wrc5bk, .framer-0Pwuu.framer-v-1gnq57b .framer-szs4cj, .framer-0Pwuu.framer-v-1gnq57b .framer-z1e141, .framer-0Pwuu.framer-v-1gnq57b .framer-188pgrn, .framer-0Pwuu.framer-v-1gnq57b .framer-1h6qvdr { align-content: center; align-items: center; }\",\".framer-0Pwuu.framer-v-1om31wr .framer-e8tkey { width: 180px; }\",\".framer-0Pwuu.framer-v-1om31wr .framer-16igjk5 { width: 99px; }\",\".framer-0Pwuu.framer-v-1om31wr .framer-1wag7er { width: 97px; }\",\".framer-0Pwuu.framer-v-1om31wr .framer-c4hz41 { align-content: center; align-items: center; align-self: unset; flex: none; height: min-content; width: 100%; }\",\".framer-0Pwuu.framer-v-1om31wr .framer-n4ynxa { align-content: center; align-items: center; flex: none; gap: 48px; height: min-content; justify-content: flex-start; }\",\".framer-0Pwuu.framer-v-1om31wr .framer-n875q5 { width: 360px; }\",\".framer-0Pwuu.framer-v-1om31wr .framer-1e5yrus { flex-direction: column; padding: 26px 0px 26px 0px; }\",\".framer-0Pwuu.framer-v-1om31wr .framer-1p97xld { height: 28px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0Pwuu.framer-v-1om31wr .framer-1tfi2bc, .framer-0Pwuu.framer-v-1om31wr .framer-n4ynxa, .framer-0Pwuu.framer-v-1om31wr .framer-1e5yrus { gap: 0px; } .framer-0Pwuu.framer-v-1om31wr .framer-1tfi2bc > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-0Pwuu.framer-v-1om31wr .framer-1tfi2bc > :first-child, .framer-0Pwuu.framer-v-1om31wr .framer-n4ynxa > :first-child { margin-top: 0px; } .framer-0Pwuu.framer-v-1om31wr .framer-1tfi2bc > :last-child, .framer-0Pwuu.framer-v-1om31wr .framer-n4ynxa > :last-child { margin-bottom: 0px; } .framer-0Pwuu.framer-v-1om31wr .framer-n4ynxa > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-0Pwuu.framer-v-1om31wr .framer-1e5yrus > *, .framer-0Pwuu.framer-v-1om31wr .framer-1e5yrus > :first-child, .framer-0Pwuu.framer-v-1om31wr .framer-1e5yrus > :last-child { margin: 0px; } }\",\".framer-0Pwuu.framer-v-1gnq57b.framer-gggxjq { padding: 0px 24px 96px 24px; width: 390px; }\",\".framer-0Pwuu.framer-v-1gnq57b .framer-1tfi2bc { align-content: center; align-items: center; flex-direction: column; gap: 72px; justify-content: flex-start; }\",\".framer-0Pwuu.framer-v-1gnq57b .framer-w3gwml { align-content: center; align-items: center; width: 100%; }\",\".framer-0Pwuu.framer-v-1gnq57b .framer-100yfye { align-content: center; align-items: center; gap: 48px; }\",\".framer-0Pwuu.framer-v-1gnq57b .framer-e8v7al { width: 170%; }\",\".framer-0Pwuu.framer-v-1gnq57b .framer-1qecrja { width: 199%; }\",\".framer-0Pwuu.framer-v-1gnq57b .framer-c4hz41 { align-content: center; align-items: center; align-self: unset; flex: none; height: 228px; width: 100%; }\",\".framer-0Pwuu.framer-v-1gnq57b .framer-n4ynxa { align-content: center; align-items: center; flex: none; gap: 48px; height: min-content; justify-content: center; }\",\".framer-0Pwuu.framer-v-1gnq57b .framer-1e5yrus { flex-direction: column; gap: 24px; justify-content: flex-start; padding: 10px 0px 10px 0px; }\",\".framer-0Pwuu.framer-v-1gnq57b .framer-16ieeb1 { order: 0; width: 506px; }\",\".framer-0Pwuu.framer-v-1gnq57b .framer-1ff1gk4 { left: 52%; order: 0; position: absolute; top: 49%; white-space: pre-wrap; width: 71%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-0Pwuu.framer-v-1gnq57b .framer-1p97xld { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0Pwuu.framer-v-1gnq57b .framer-1tfi2bc, .framer-0Pwuu.framer-v-1gnq57b .framer-100yfye, .framer-0Pwuu.framer-v-1gnq57b .framer-n4ynxa, .framer-0Pwuu.framer-v-1gnq57b .framer-1e5yrus { gap: 0px; } .framer-0Pwuu.framer-v-1gnq57b .framer-1tfi2bc > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-0Pwuu.framer-v-1gnq57b .framer-1tfi2bc > :first-child, .framer-0Pwuu.framer-v-1gnq57b .framer-100yfye > :first-child, .framer-0Pwuu.framer-v-1gnq57b .framer-n4ynxa > :first-child, .framer-0Pwuu.framer-v-1gnq57b .framer-1e5yrus > :first-child { margin-top: 0px; } .framer-0Pwuu.framer-v-1gnq57b .framer-1tfi2bc > :last-child, .framer-0Pwuu.framer-v-1gnq57b .framer-100yfye > :last-child, .framer-0Pwuu.framer-v-1gnq57b .framer-n4ynxa > :last-child, .framer-0Pwuu.framer-v-1gnq57b .framer-1e5yrus > :last-child { margin-bottom: 0px; } .framer-0Pwuu.framer-v-1gnq57b .framer-100yfye > *, .framer-0Pwuu.framer-v-1gnq57b .framer-n4ynxa > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-0Pwuu.framer-v-1gnq57b .framer-1e5yrus > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 569\n * @framerIntrinsicWidth 1480\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Ri5chqdfm\":{\"layout\":[\"fixed\",\"auto\"]},\"JUCbyehji\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerudUPwDJNB=withCSS(Component,css,\"framer-0Pwuu\");export default FramerudUPwDJNB;FramerudUPwDJNB.displayName=\"Footer Section\";FramerudUPwDJNB.defaultProps={height:569,width:1480};addPropertyControls(FramerudUPwDJNB,{variant:{options:[\"aq_Iiypwd\",\"Ri5chqdfm\",\"JUCbyehji\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerudUPwDJNB,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...LogoFonts,...SocialIconsFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerudUPwDJNB\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1480\",\"framerIntrinsicHeight\":\"569\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ri5chqdfm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JUCbyehji\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./udUPwDJNB.map"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "useStore", "createStore", "withQueryParams", "Component", "props", "previousURL", "p", "refValue", "window", "match", "newUrl", "e", "Z7IBc6LTO_exports", "__export", "__FramerMetadata__", "Z7IBc6LTO_default", "ImageWithQueryParamsWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "withQueryParams", "Image2", "RichTextWithQueryParams", "RichText2", "MotionAWithQueryParams", "motion", "enabledGestures", "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", "tap", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "TYqbnkqDS", "pAzw4efBs", "wXf8AqEVi", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1vyqtfl", "args", "onTap1trgqqo", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "getLoadingLazyAtYPosition", "SVG", "css", "FramerZ7IBc6LTO", "withCSS", "Z7IBc6LTO_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__", "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", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "link", "tap", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Variants", "motion", "x", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "JjZVqrU_x", "QJmjqZfLG", "On6e6ISig", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap2jb5c8", "args", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "RichText2", "ComponentViewportProvider", "css", "Framerrabh1bzLc", "withCSS", "rabh1bzLc_default", "addPropertyControls", "ControlType", "addFonts", "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", "tap", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "OcH3_UYcV", "gbQd0uWpc", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap2r30v4", "args", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FrameryPbwZPdMM", "withCSS", "yPbwZPdMM_default", "addPropertyControls", "ControlType", "addFonts", "LogoFonts", "getFonts", "yPbwZPdMM_default", "MenuTabAndLinkFonts", "rabh1bzLc_default", "ButtonFonts", "Z7IBc6LTO_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", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapwwfb9o", "args", "gbQd0uWpcm6b7j9", "gbQd0uWpc15xcfe5", "gbQd0uWpclg0b3a", "gbQd0uWpcwxzbce", "gbQd0uWpc1bu3wld", "onTap1q46d0k", "onTapm6b7j9", "onTap1pfix2o", "onTap15xcfe5", "onTap1lgst25", "onTaplg0b3a", "onTapnx9l0r", "onTapwxzbce", "onTap13czuga", "onTap1bu3wld", "QJmjqZfLG1q46d0k", "QJmjqZfLG1pfix2o", "QJmjqZfLG1lgst25", "QJmjqZfLGnx9l0r", "QJmjqZfLG13czuga", "QJmjqZfLGwwfb9o", "wXf8AqEVi1q46d0k", "wXf8AqEVi1pfix2o", "wXf8AqEVi1lgst25", "wXf8AqEVinx9l0r", "wXf8AqEVi13czuga", "wXf8AqEViwwfb9o", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "router", "useRouter", "isDisplayed3", "isDisplayed4", "isDisplayed5", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "css", "FramerCjLkdId0w", "withCSS", "CjLkdId0w_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "v", "getFonts", "Icon", "g", "getPropertyControls", "b", "x", "k", "w", "e", "r", "t", "y", "U", "a", "re", "MotionConfigContext", "i", "se", "p", "H", "o", "n", "T", "I", "Y", "useLocaleInfo", "c", "h", "v", "g", "S", "L", "R", "j", "z", "B", "q", "useVariantState", "x", "b", "C", "P", "pe", "F", "ae", "LayoutGroup", "motion", "cx", "Link", "Icon", "withCSS", "RaMC2gn8L_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFX", "withFX", "motion", "LogoFonts", "getFonts", "yPbwZPdMM_default", "SocialIconsFonts", "RaMC2gn8L_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "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", "isDisplayed", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "Link", "Image2", "getLoadingLazyAtYPosition", "css", "FramerudUPwDJNB", "withCSS", "udUPwDJNB_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
