{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/5HWt2nz8rvbowdM7VfU2/5X2gWAiwfBBcga0v4SpE/FooterDate.js", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/Zmq8PA0oLMVWpoDlGDvN/apVLF5J2KyMqafGnbSTV/FooterYear.js", "ssg:https://framerusercontent.com/modules/6Q7vnp5KFJ5ozhcjXswt/vuskfNJq1PhsYu8DNXIm/CDCDH3fRd.js", "ssg:https://framerusercontent.com/modules/acDzvrafC5HQvtJabDQe/MCBYgyCW2x1GgdJA6SQK/oPQNrPgA7.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", "import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withGetAccurateYear(Component){const year=`${new Date().getFullYear()} Quickcheck.ng`;return props=>{return /*#__PURE__*/_jsx(Component,{...props,text:year});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withGetAccurateYear\":{\"type\":\"reactHoc\",\"name\":\"withGetAccurateYear\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FooterDate.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 withGetAccurateYear(Component){const year=`${new Date().getFullYear()} Quickcheck.ng`;return props=>{return /*#__PURE__*/_jsx(Component,{...props,text:year});};}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()});}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withGetAccurateYear\":{\"type\":\"reactHoc\",\"name\":\"withGetAccurateYear\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FooterYear.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([]);export const fonts=[];export const css=['.framer-Hs4RS .framer-styles-preset-x3vb9q:not(.rich-text-wrapper), .framer-Hs4RS .framer-styles-preset-x3vb9q.rich-text-wrapper a { --framer-link-current-text-color: #ffffff; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-f2757b33-f4f2-4d51-8bdd-12886c334ec3, #c64006) /* {\"name\":\"Tangelo/primary/dark\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #a3a3a3; --framer-link-text-decoration: none; }'];export const className=\"framer-Hs4RS\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1e08357)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withGetAccurateYear as withGetAccurateYear1}from\"https://framerusercontent.com/modules/5HWt2nz8rvbowdM7VfU2/5X2gWAiwfBBcga0v4SpE/FooterDate.js\";import{withGetAccurateYear}from\"https://framerusercontent.com/modules/Zmq8PA0oLMVWpoDlGDvN/apVLF5J2KyMqafGnbSTV/FooterYear.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/WNqHueHyA5IRgMM3ZT1O/EXmbtbMrJlK6lTRDb0MF/BDRbt4XHZ.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/6Q7vnp5KFJ5ozhcjXswt/vuskfNJq1PhsYu8DNXIm/CDCDH3fRd.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/vhT4uUbQr2YQpDfdXnXE/9nqp0LM8kp0DypvkpZy9/e8L9LR0do.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/y3dcb6rndVcgYQhAsmKp/EucElg3aatmAFhp7n7WZ/hEYoRGBeN.js\";const RichTextWithGetAccurateYear=withGetAccurateYear(RichText);const MotionFooterWithGetAccurateYear1=withGetAccurateYear1(motion.footer);const cycleOrder=[\"XdeD7JEvE\",\"VPEXs_aMd\",\"NS0Adpr9c\",\"f0Q308X_5\",\"EFsEtJrEB\"];const serializationHash=\"framer-O61l2\";const variantClassNames={EFsEtJrEB:\"framer-v-tsabjr\",f0Q308X_5:\"framer-v-vq02vc\",NS0Adpr9c:\"framer-v-kis9je\",VPEXs_aMd:\"framer-v-vrto1q\",XdeD7JEvE:\"framer-v-8urpwx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.03,skewX:0,skewY:0,transition:transition2};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={\"Mobile - XXS\":\"EFsEtJrEB\",\"Semi-Tab\":\"f0Q308X_5\",Desktop:\"XdeD7JEvE\",Phone:\"NS0Adpr9c\",Tablet:\"VPEXs_aMd\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"XdeD7JEvE\"};};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:\"XdeD7JEvE\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"NS0Adpr9c\",\"EFsEtJrEB\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"NS0Adpr9c\",\"EFsEtJrEB\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"VPEXs_aMd\")return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"VPEXs_aMd\")return true;return false;};const isDisplayed4=()=>{if([\"VPEXs_aMd\",\"f0Q308X_5\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(MotionFooterWithGetAccurateYear1,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-8urpwx\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"XdeD7JEvE\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0.05)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(17, 17, 17)\",...style},...addPropertyOverrides({EFsEtJrEB:{\"data-framer-name\":\"Mobile - XXS\"},f0Q308X_5:{\"data-framer-name\":\"Semi-Tab\"},NS0Adpr9c:{\"data-framer-name\":\"Phone\"},VPEXs_aMd:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1muj0un\",\"data-framer-name\":\"Group 3377\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"lEac1Pk3k\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 175 27\"><path d=\"M 60.742 12.55 C 60.674 16.037 58.963 18.785 56.081 19.97 L 58.063 22.138 C 58.234 22.312 58.33 22.544 58.333 22.787 C 58.334 22.913 58.309 23.038 58.261 23.155 C 58.213 23.272 58.142 23.378 58.052 23.468 C 57.962 23.557 57.855 23.628 57.737 23.676 C 57.619 23.724 57.493 23.748 57.366 23.747 C 57.226 23.747 57.088 23.714 56.963 23.652 C 56.838 23.59 56.729 23.5 56.645 23.389 L 54.191 20.489 C 53.744 20.553 53.292 20.583 52.841 20.578 C 48.024 20.578 45.029 17.226 44.941 12.56 C 45.03 7.89 48.032 4.543 52.841 4.543 C 57.649 4.543 60.651 7.896 60.74 12.56 Z M 52.679 18.621 C 56.363 18.621 58.484 15.956 58.484 12.535 C 58.484 9.113 56.363 6.448 52.679 6.448 C 48.996 6.448 46.883 9.114 46.883 12.535 C 46.883 15.955 48.982 18.621 52.688 18.621 Z M 68.019 20.543 C 65.443 20.543 63.967 18.534 63.967 16.119 L 63.967 9.706 C 63.972 9.436 64.084 9.178 64.279 8.99 C 64.474 8.801 64.736 8.697 65.008 8.7 C 65.142 8.7 65.275 8.726 65.399 8.777 C 65.523 8.828 65.635 8.902 65.73 8.997 C 65.824 9.091 65.9 9.203 65.95 9.326 C 66.001 9.45 66.027 9.582 66.026 9.715 L 66.026 15.893 C 66.026 17.599 66.751 18.647 68.517 18.647 C 70.145 18.647 71.323 17.608 72.228 16.48 L 72.228 9.706 C 72.232 9.436 72.344 9.178 72.539 8.99 C 72.734 8.801 72.996 8.697 73.268 8.7 C 73.403 8.699 73.535 8.725 73.659 8.776 C 73.783 8.827 73.896 8.902 73.991 8.996 C 74.085 9.091 74.16 9.203 74.211 9.326 C 74.262 9.449 74.288 9.582 74.287 9.715 L 74.287 19.401 C 74.289 19.535 74.264 19.669 74.214 19.794 C 74.164 19.919 74.089 20.034 73.995 20.13 C 73.9 20.227 73.787 20.304 73.663 20.357 C 73.538 20.41 73.404 20.438 73.268 20.439 C 73.131 20.439 72.996 20.412 72.869 20.36 C 72.742 20.308 72.627 20.231 72.531 20.135 C 72.434 20.038 72.357 19.924 72.305 19.798 C 72.253 19.672 72.227 19.537 72.228 19.401 L 72.228 18.474 C 71.276 19.513 70.033 20.552 68.019 20.552 Z M 79.114 9.01 C 79.247 9.011 79.378 9.039 79.499 9.091 C 79.621 9.144 79.731 9.22 79.822 9.316 C 79.913 9.411 79.984 9.524 80.03 9.647 C 80.077 9.771 80.097 9.902 80.091 10.034 L 80.091 19.549 C 80.091 19.804 79.989 20.048 79.808 20.228 C 79.627 20.408 79.381 20.509 79.124 20.509 C 78.868 20.509 78.622 20.408 78.441 20.228 C 78.259 20.048 78.158 19.804 78.158 19.549 L 78.158 10.03 C 78.151 9.9 78.171 9.77 78.216 9.648 C 78.261 9.526 78.33 9.414 78.419 9.318 C 78.508 9.223 78.615 9.146 78.735 9.093 C 78.854 9.039 78.983 9.01 79.114 9.007 Z M 80.414 5.288 L 80.414 5.373 C 80.414 5.965 79.865 6.451 79.197 6.451 L 79.052 6.451 C 78.384 6.451 77.835 5.965 77.835 5.373 L 77.835 5.288 C 77.835 4.696 78.384 4.21 79.052 4.21 L 79.197 4.21 C 79.865 4.21 80.414 4.696 80.414 5.288 Z M 92.793 17.795 C 93.26 17.795 93.638 18.266 93.638 18.691 C 93.636 18.848 93.594 19.002 93.516 19.139 C 93.438 19.276 93.327 19.391 93.193 19.474 C 92.126 20.194 90.861 20.569 89.571 20.547 C 86.416 20.547 83.639 18.355 83.639 14.621 C 83.639 10.887 86.416 8.7 89.571 8.7 C 90.861 8.678 92.126 9.053 93.193 9.773 C 93.327 9.856 93.438 9.971 93.516 10.108 C 93.594 10.245 93.636 10.399 93.638 10.556 C 93.638 10.981 93.26 11.45 92.793 11.45 C 92.62 11.455 92.45 11.409 92.305 11.317 C 91.527 10.914 90.905 10.6 89.75 10.6 C 87.174 10.6 85.661 12.233 85.661 14.626 C 85.661 17.019 87.172 18.652 89.75 18.652 C 90.905 18.652 91.527 18.338 92.305 17.935 C 92.45 17.843 92.62 17.796 92.793 17.8 Z M 106.313 18.949 C 106.453 19.121 106.532 19.334 106.538 19.556 C 106.538 20.165 106.112 20.547 105.508 20.547 C 105.347 20.539 105.19 20.497 105.047 20.423 C 104.905 20.349 104.78 20.245 104.682 20.119 L 100.84 14.841 L 98.896 16.627 L 98.896 19.527 C 98.893 19.796 98.784 20.054 98.591 20.244 C 98.398 20.434 98.137 20.54 97.866 20.54 C 97.732 20.54 97.6 20.513 97.478 20.462 C 97.356 20.41 97.244 20.336 97.151 20.241 C 97.058 20.147 96.984 20.036 96.934 19.913 C 96.884 19.79 96.859 19.659 96.861 19.527 L 96.861 4.921 C 96.858 4.652 96.962 4.393 97.149 4.199 C 97.337 4.005 97.595 3.893 97.866 3.886 C 98.139 3.89 98.401 4.001 98.594 4.195 C 98.786 4.388 98.894 4.649 98.896 4.921 L 98.896 14.133 L 104.22 9.186 C 104.399 9.009 104.639 8.904 104.891 8.893 C 105.65 8.893 105.873 9.433 105.873 9.884 C 105.865 10.03 105.827 10.173 105.762 10.305 C 105.696 10.436 105.605 10.554 105.494 10.65 L 102.276 13.55 L 106.32 18.952 Z M 121.436 17.468 C 121.556 17.461 121.676 17.48 121.787 17.523 C 121.9 17.565 122.002 17.631 122.087 17.715 C 122.172 17.799 122.239 17.9 122.282 18.011 C 122.325 18.122 122.344 18.241 122.34 18.36 C 122.343 18.527 122.299 18.692 122.211 18.835 C 122.123 18.977 121.995 19.092 121.843 19.163 C 120.444 19.945 118.908 20.547 116.691 20.547 C 112.199 20.547 108.791 17.512 108.791 12.538 C 108.791 7.564 112.2 4.529 116.691 4.529 C 118.903 4.529 120.438 5.131 121.843 5.912 C 121.995 5.985 122.123 6.099 122.211 6.241 C 122.298 6.384 122.343 6.549 122.34 6.716 C 122.344 6.835 122.325 6.954 122.282 7.065 C 122.239 7.176 122.172 7.277 122.087 7.361 C 122.002 7.445 121.9 7.511 121.787 7.553 C 121.676 7.596 121.556 7.614 121.436 7.608 C 121.296 7.609 121.157 7.578 121.03 7.519 C 119.77 6.814 118.345 6.452 116.898 6.47 C 112.903 6.47 110.848 9.102 110.848 12.538 C 110.848 15.974 112.91 18.606 116.898 18.606 C 118.345 18.624 119.77 18.263 121.03 17.558 C 121.157 17.498 121.296 17.467 121.436 17.468 Z M 131.511 8.729 C 134.087 8.729 135.563 10.731 135.563 13.14 L 135.563 19.534 C 135.562 19.668 135.533 19.801 135.48 19.925 C 135.427 20.048 135.35 20.16 135.253 20.254 C 135.157 20.348 135.043 20.423 134.917 20.473 C 134.791 20.523 134.657 20.548 134.521 20.547 C 134.388 20.547 134.255 20.521 134.131 20.471 C 134.008 20.42 133.895 20.345 133.8 20.251 C 133.706 20.157 133.63 20.045 133.579 19.922 C 133.528 19.799 133.503 19.667 133.503 19.534 L 133.503 13.362 C 133.503 11.656 132.779 10.615 131.014 10.615 C 129.384 10.615 128.207 11.651 127.302 12.777 L 127.302 19.53 C 127.3 19.665 127.273 19.797 127.22 19.921 C 127.167 20.045 127.09 20.157 126.993 20.251 C 126.896 20.345 126.782 20.419 126.657 20.47 C 126.531 20.52 126.397 20.545 126.261 20.543 C 126.128 20.544 125.995 20.518 125.871 20.467 C 125.747 20.416 125.634 20.342 125.54 20.248 C 125.445 20.153 125.37 20.042 125.319 19.918 C 125.268 19.795 125.242 19.663 125.243 19.53 L 125.243 4.921 C 125.24 4.787 125.264 4.653 125.314 4.527 C 125.364 4.402 125.438 4.288 125.533 4.191 C 125.628 4.095 125.742 4.018 125.866 3.966 C 125.991 3.913 126.126 3.886 126.261 3.886 C 126.399 3.886 126.534 3.912 126.661 3.964 C 126.787 4.016 126.902 4.093 126.999 4.189 C 127.095 4.285 127.172 4.399 127.224 4.525 C 127.276 4.651 127.302 4.785 127.302 4.921 L 127.302 10.796 C 128.252 9.761 129.497 8.725 131.511 8.725 Z M 148.159 17.864 C 148.276 17.862 148.391 17.883 148.499 17.926 C 148.607 17.97 148.705 18.033 148.788 18.115 C 148.871 18.196 148.937 18.292 148.981 18.399 C 149.027 18.505 149.051 18.62 149.051 18.735 C 149.051 19.093 148.783 19.384 148.471 19.563 C 147.49 20.122 146.507 20.547 144.566 20.547 C 140.929 20.547 138.788 18.377 138.788 14.621 C 138.788 11.6 140.416 8.7 144.12 8.7 C 147.554 8.7 149.43 11.361 149.43 14.329 C 149.435 14.464 149.411 14.598 149.36 14.723 C 149.31 14.849 149.234 14.962 149.137 15.057 C 149.04 15.151 148.925 15.225 148.798 15.273 C 148.67 15.321 148.535 15.342 148.399 15.336 L 140.843 15.336 C 141.066 17.348 142.339 18.647 144.749 18.647 C 145.797 18.679 146.835 18.44 147.761 17.952 C 147.885 17.889 148.023 17.859 148.162 17.864 Z M 144.097 10.612 C 142.628 10.612 140.861 11.535 140.723 13.816 L 147.495 13.816 C 147.357 11.535 145.566 10.612 144.097 10.612 Z M 161.164 17.792 C 161.63 17.792 162.008 18.263 162.008 18.688 C 162.007 18.845 161.964 18.999 161.887 19.136 C 161.809 19.273 161.697 19.388 161.563 19.471 C 160.497 20.191 159.232 20.566 157.943 20.543 C 154.788 20.543 152.011 18.352 152.011 14.617 C 152.011 10.883 154.788 8.7 157.943 8.7 C 159.232 8.677 160.497 9.052 161.563 9.773 C 161.697 9.855 161.809 9.97 161.887 10.107 C 161.964 10.244 162.007 10.399 162.008 10.556 C 162.008 10.981 161.63 11.45 161.164 11.45 C 160.991 11.455 160.821 11.409 160.675 11.317 C 159.897 10.914 159.275 10.6 158.12 10.6 C 155.543 10.6 154.033 12.233 154.033 14.626 C 154.033 17.019 155.543 18.652 158.12 18.652 C 159.275 18.652 159.897 18.338 160.675 17.935 C 160.82 17.842 160.991 17.795 161.164 17.8 Z M 174.685 18.945 C 174.823 19.118 174.902 19.331 174.908 19.552 C 174.908 20.161 174.484 20.543 173.878 20.543 C 173.717 20.536 173.56 20.493 173.417 20.419 C 173.275 20.346 173.15 20.242 173.052 20.115 L 169.21 14.841 L 167.268 16.627 L 167.268 19.527 C 167.265 19.796 167.156 20.054 166.963 20.244 C 166.77 20.434 166.509 20.54 166.238 20.54 C 166.104 20.54 165.972 20.513 165.849 20.462 C 165.727 20.411 165.615 20.336 165.521 20.242 C 165.428 20.148 165.354 20.036 165.304 19.913 C 165.254 19.791 165.229 19.659 165.231 19.527 L 165.231 4.921 C 165.228 4.652 165.332 4.392 165.52 4.198 C 165.708 4.004 165.967 3.892 166.238 3.886 C 166.511 3.89 166.773 4.001 166.966 4.194 C 167.159 4.388 167.267 4.649 167.268 4.921 L 167.268 14.133 L 172.591 9.186 C 172.77 9.009 173.009 8.904 173.262 8.893 C 174.02 8.893 174.245 9.433 174.245 9.884 C 174.236 10.03 174.199 10.174 174.133 10.305 C 174.067 10.437 173.976 10.554 173.864 10.65 L 170.647 13.55 L 174.692 18.952 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 27.477 13.457 C 27.477 6.025 21.324 0 13.739 0 C 6.153 0 0 6.025 0 13.457 C 0 20.89 6.15 26.917 13.739 26.917 C 14.166 26.917 14.577 26.748 14.879 26.447 C 15.182 26.147 15.352 25.739 15.352 25.314 C 15.352 24.889 15.182 24.481 14.879 24.181 C 14.577 23.88 14.166 23.711 13.739 23.711 C 7.956 23.711 3.263 19.119 3.263 13.452 C 3.263 7.785 7.951 3.195 13.739 3.195 C 19.526 3.195 24.214 7.787 24.214 13.452 C 24.234 13.869 24.414 14.263 24.718 14.551 C 25.022 14.839 25.426 15 25.846 15 C 26.266 15 26.67 14.839 26.974 14.551 C 27.278 14.263 27.458 13.869 27.477 13.452 Z\" fill=\"rgb(245,77,7)\"></path><path d=\"M 21.456 19.672 L 24.743 22.913 L 31.993 15.771 C 32.179 15.59 32.408 15.459 32.658 15.39 C 32.908 15.321 33.172 15.315 33.425 15.374 C 33.678 15.432 33.912 15.553 34.105 15.726 C 34.299 15.898 34.445 16.116 34.532 16.359 L 34.545 16.398 C 34.635 16.664 34.648 16.95 34.582 17.223 C 34.517 17.496 34.375 17.745 34.174 17.942 L 25.919 26.065 C 25.713 26.271 25.451 26.413 25.165 26.475 C 24.898 26.558 24.613 26.566 24.34 26.501 C 24.068 26.435 23.819 26.297 23.62 26.101 L 19.268 21.811 C 19.083 21.63 18.948 21.404 18.877 21.156 C 18.805 20.908 18.799 20.646 18.859 20.395 C 18.919 20.144 19.043 19.913 19.22 19.723 C 19.396 19.534 19.618 19.393 19.866 19.314 L 19.886 19.314 C 20.156 19.224 20.445 19.21 20.722 19.274 C 20.999 19.337 21.253 19.475 21.456 19.672 Z\" fill=\"rgb(245,77,7)\"></path></svg>',svgContentId:10347453162,withExternalLayout:true,...addPropertyOverrides({EFsEtJrEB:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 149 23\"><path d=\"M 51.718 10.691 C 51.659 13.661 50.203 16.002 47.749 17.012 L 49.437 18.859 C 49.582 19.007 49.664 19.204 49.666 19.411 C 49.667 19.519 49.646 19.625 49.605 19.725 C 49.564 19.824 49.503 19.915 49.427 19.991 C 49.35 20.067 49.259 20.127 49.159 20.168 C 49.059 20.209 48.951 20.23 48.843 20.229 C 48.724 20.229 48.607 20.201 48.5 20.148 C 48.394 20.095 48.301 20.018 48.229 19.924 L 46.139 17.454 C 45.759 17.508 45.375 17.533 44.99 17.529 C 40.889 17.529 38.339 14.674 38.264 10.699 C 38.34 6.721 40.896 3.87 44.99 3.87 C 49.084 3.87 51.64 6.727 51.716 10.699 Z M 44.853 15.862 C 47.989 15.862 49.795 13.593 49.795 10.678 C 49.795 7.763 47.989 5.493 44.853 5.493 C 41.716 5.493 39.918 7.764 39.918 10.678 C 39.918 13.591 41.705 15.862 44.86 15.862 Z M 57.913 17.5 C 55.72 17.5 54.464 15.788 54.464 13.731 L 54.464 8.268 C 54.468 8.038 54.563 7.819 54.729 7.658 C 54.895 7.497 55.118 7.409 55.35 7.411 C 55.464 7.411 55.577 7.433 55.682 7.476 C 55.788 7.52 55.884 7.584 55.964 7.664 C 56.045 7.744 56.109 7.84 56.152 7.945 C 56.195 8.05 56.217 8.162 56.217 8.276 L 56.217 13.539 C 56.217 14.992 56.834 15.884 58.337 15.884 C 59.723 15.884 60.726 14.999 61.497 14.039 L 61.497 8.268 C 61.501 8.038 61.596 7.819 61.762 7.658 C 61.928 7.497 62.151 7.409 62.383 7.411 C 62.497 7.411 62.61 7.433 62.716 7.476 C 62.821 7.519 62.917 7.583 62.998 7.663 C 63.078 7.744 63.142 7.839 63.185 7.944 C 63.229 8.049 63.251 8.162 63.25 8.276 L 63.25 16.526 C 63.252 16.641 63.231 16.755 63.188 16.862 C 63.145 16.968 63.082 17.066 63.001 17.148 C 62.921 17.23 62.825 17.296 62.718 17.341 C 62.612 17.386 62.498 17.41 62.383 17.411 C 62.266 17.411 62.15 17.388 62.043 17.344 C 61.935 17.299 61.837 17.234 61.755 17.152 C 61.672 17.07 61.607 16.972 61.563 16.865 C 61.519 16.757 61.496 16.642 61.497 16.526 L 61.497 15.737 C 60.687 16.622 59.628 17.507 57.913 17.507 Z M 67.36 7.675 C 67.473 7.676 67.584 7.7 67.688 7.744 C 67.791 7.789 67.885 7.854 67.963 7.936 C 68.04 8.017 68.101 8.113 68.14 8.218 C 68.179 8.323 68.197 8.435 68.192 8.547 L 68.192 16.653 C 68.192 16.87 68.105 17.078 67.951 17.231 C 67.797 17.385 67.587 17.471 67.369 17.471 C 67.151 17.471 66.941 17.385 66.787 17.231 C 66.632 17.078 66.546 16.87 66.546 16.653 L 66.546 8.544 C 66.54 8.434 66.557 8.323 66.595 8.219 C 66.633 8.115 66.692 8.019 66.768 7.938 C 66.844 7.857 66.935 7.791 67.037 7.746 C 67.139 7.7 67.249 7.675 67.36 7.672 Z M 68.467 4.505 L 68.467 4.577 C 68.467 5.082 67.999 5.496 67.43 5.496 L 67.307 5.496 C 66.739 5.496 66.271 5.082 66.271 4.577 L 66.271 4.505 C 66.271 4 66.739 3.586 67.307 3.586 L 67.43 3.586 C 67.999 3.586 68.467 4 68.467 4.505 Z M 79.006 15.159 C 79.404 15.159 79.726 15.56 79.726 15.922 C 79.724 16.056 79.688 16.187 79.622 16.304 C 79.556 16.42 79.461 16.518 79.347 16.589 C 78.439 17.202 77.361 17.522 76.263 17.503 C 73.577 17.503 71.213 15.636 71.213 12.455 C 71.213 9.274 73.577 7.411 76.263 7.411 C 77.361 7.392 78.439 7.712 79.347 8.325 C 79.461 8.396 79.556 8.494 79.622 8.61 C 79.688 8.727 79.724 8.858 79.726 8.992 C 79.726 9.354 79.404 9.753 79.006 9.753 C 78.86 9.758 78.715 9.718 78.591 9.64 C 77.929 9.297 77.399 9.03 76.415 9.03 C 74.222 9.03 72.934 10.42 72.934 12.459 C 72.934 14.498 74.221 15.888 76.415 15.888 C 77.399 15.888 77.929 15.621 78.591 15.278 C 78.715 15.199 78.859 15.159 79.006 15.163 Z M 90.518 16.141 C 90.637 16.288 90.704 16.47 90.709 16.659 C 90.709 17.177 90.347 17.503 89.833 17.503 C 89.695 17.496 89.562 17.46 89.44 17.397 C 89.319 17.334 89.213 17.246 89.129 17.138 L 85.858 12.642 L 84.203 14.164 L 84.203 16.634 C 84.201 16.864 84.107 17.083 83.943 17.245 C 83.779 17.406 83.557 17.497 83.326 17.497 C 83.212 17.497 83.1 17.474 82.996 17.43 C 82.891 17.387 82.796 17.323 82.717 17.243 C 82.638 17.162 82.575 17.067 82.532 16.963 C 82.49 16.858 82.468 16.747 82.47 16.634 L 82.47 4.192 C 82.468 3.963 82.556 3.742 82.715 3.577 C 82.876 3.412 83.095 3.316 83.326 3.31 C 83.559 3.314 83.781 3.408 83.945 3.573 C 84.109 3.738 84.201 3.96 84.203 4.192 L 84.203 12.039 L 88.736 7.825 C 88.888 7.674 89.093 7.585 89.308 7.575 C 89.954 7.575 90.143 8.036 90.143 8.419 C 90.137 8.544 90.104 8.666 90.048 8.778 C 89.993 8.89 89.915 8.99 89.82 9.072 L 87.081 11.542 L 90.524 16.144 Z M 103.394 14.88 C 103.496 14.875 103.598 14.891 103.693 14.927 C 103.789 14.963 103.876 15.019 103.948 15.09 C 104.021 15.162 104.078 15.248 104.114 15.343 C 104.151 15.437 104.168 15.539 104.163 15.64 C 104.167 15.782 104.129 15.923 104.054 16.044 C 103.979 16.166 103.87 16.263 103.741 16.324 C 102.549 16.99 101.241 17.503 99.354 17.503 C 95.529 17.503 92.628 14.918 92.628 10.68 C 92.628 6.443 95.53 3.858 99.354 3.858 C 101.237 3.858 102.544 4.371 103.741 5.037 C 103.87 5.098 103.979 5.195 104.054 5.317 C 104.128 5.438 104.167 5.579 104.163 5.721 C 104.168 5.822 104.151 5.924 104.114 6.018 C 104.078 6.113 104.021 6.199 103.948 6.271 C 103.876 6.342 103.789 6.398 103.693 6.434 C 103.598 6.47 103.496 6.486 103.394 6.481 C 103.274 6.481 103.157 6.456 103.049 6.405 C 101.976 5.804 100.762 5.496 99.531 5.512 C 96.129 5.512 94.379 7.754 94.379 10.68 C 94.379 13.607 96.134 15.849 99.531 15.849 C 100.762 15.865 101.976 15.557 103.049 14.957 C 103.157 14.906 103.274 14.879 103.394 14.88 Z M 111.972 7.436 C 114.166 7.436 115.422 9.142 115.422 11.193 L 115.422 16.64 C 115.421 16.754 115.396 16.867 115.352 16.973 C 115.307 17.078 115.241 17.174 115.159 17.254 C 115.077 17.334 114.979 17.397 114.872 17.44 C 114.765 17.483 114.651 17.504 114.535 17.503 C 114.422 17.503 114.309 17.481 114.203 17.438 C 114.098 17.395 114.002 17.331 113.921 17.251 C 113.841 17.171 113.776 17.075 113.733 16.97 C 113.69 16.866 113.669 16.753 113.669 16.64 L 113.669 11.382 C 113.669 9.929 113.052 9.043 111.549 9.043 C 110.161 9.043 109.159 9.925 108.389 10.884 L 108.389 16.637 C 108.387 16.751 108.364 16.865 108.319 16.97 C 108.274 17.075 108.208 17.171 108.126 17.251 C 108.043 17.331 107.946 17.394 107.839 17.437 C 107.732 17.48 107.618 17.501 107.502 17.5 C 107.389 17.5 107.276 17.478 107.17 17.435 C 107.065 17.392 106.968 17.328 106.888 17.248 C 106.807 17.168 106.744 17.072 106.7 16.967 C 106.657 16.863 106.635 16.75 106.636 16.637 L 106.636 4.192 C 106.633 4.077 106.654 3.963 106.696 3.856 C 106.739 3.75 106.802 3.652 106.883 3.57 C 106.964 3.488 107.06 3.423 107.166 3.378 C 107.273 3.333 107.387 3.31 107.502 3.31 C 107.619 3.31 107.735 3.333 107.843 3.377 C 107.95 3.421 108.048 3.486 108.13 3.568 C 108.212 3.65 108.278 3.748 108.322 3.855 C 108.367 3.962 108.389 4.076 108.389 4.192 L 108.389 9.197 C 109.198 8.315 110.258 7.433 111.972 7.433 Z M 126.147 15.217 C 126.246 15.216 126.344 15.234 126.437 15.271 C 126.528 15.307 126.612 15.362 126.683 15.431 C 126.753 15.5 126.809 15.582 126.847 15.673 C 126.886 15.764 126.906 15.861 126.906 15.96 C 126.906 16.265 126.678 16.512 126.413 16.664 C 125.577 17.141 124.74 17.503 123.088 17.503 C 119.991 17.503 118.168 15.655 118.168 12.455 C 118.168 9.881 119.554 7.411 122.708 7.411 C 125.632 7.411 127.229 9.678 127.229 12.206 C 127.233 12.321 127.213 12.435 127.169 12.542 C 127.127 12.649 127.062 12.745 126.98 12.826 C 126.897 12.907 126.799 12.969 126.691 13.01 C 126.582 13.051 126.467 13.069 126.352 13.064 L 119.918 13.064 C 120.108 14.778 121.191 15.884 123.243 15.884 C 124.135 15.912 125.019 15.708 125.808 15.293 C 125.913 15.239 126.031 15.213 126.15 15.217 Z M 122.689 9.04 C 121.437 9.04 119.933 9.826 119.816 11.769 L 125.581 11.769 C 125.464 9.826 123.939 9.04 122.689 9.04 Z M 137.22 15.156 C 137.616 15.156 137.938 15.557 137.938 15.919 C 137.937 16.053 137.901 16.184 137.835 16.301 C 137.769 16.418 137.674 16.516 137.559 16.586 C 136.651 17.2 135.574 17.519 134.477 17.5 C 131.791 17.5 129.426 15.633 129.426 12.452 C 129.426 9.271 131.791 7.411 134.477 7.411 C 135.574 7.392 136.651 7.711 137.559 8.325 C 137.674 8.395 137.769 8.493 137.835 8.61 C 137.901 8.727 137.937 8.858 137.938 8.992 C 137.938 9.354 137.616 9.753 137.22 9.753 C 137.073 9.758 136.928 9.719 136.804 9.64 C 136.141 9.297 135.611 9.03 134.627 9.03 C 132.434 9.03 131.148 10.42 131.148 12.459 C 131.148 14.498 132.434 15.888 134.627 15.888 C 135.611 15.888 136.141 15.621 136.804 15.278 C 136.927 15.199 137.073 15.159 137.22 15.163 Z M 148.732 16.138 C 148.85 16.286 148.917 16.467 148.921 16.656 C 148.921 17.174 148.561 17.5 148.045 17.5 C 147.907 17.493 147.774 17.457 147.652 17.394 C 147.531 17.331 147.425 17.243 147.342 17.135 L 144.07 12.642 L 142.417 14.164 L 142.417 16.634 C 142.414 16.864 142.321 17.083 142.157 17.245 C 141.992 17.406 141.771 17.497 141.539 17.497 C 141.426 17.497 141.314 17.474 141.209 17.431 C 141.104 17.387 141.009 17.323 140.929 17.243 C 140.85 17.163 140.787 17.068 140.744 16.963 C 140.702 16.859 140.681 16.747 140.682 16.634 L 140.682 4.192 C 140.68 3.963 140.768 3.741 140.928 3.576 C 141.089 3.411 141.309 3.316 141.539 3.31 C 141.772 3.314 141.996 3.408 142.159 3.573 C 142.324 3.738 142.416 3.96 142.417 4.192 L 142.417 12.039 L 146.949 7.825 C 147.101 7.674 147.305 7.585 147.52 7.575 C 148.166 7.575 148.357 8.036 148.357 8.419 C 148.35 8.544 148.318 8.666 148.262 8.778 C 148.206 8.891 148.128 8.99 148.033 9.072 L 145.294 11.542 L 148.737 16.144 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 23.395 11.464 C 23.395 5.132 18.156 0 11.697 0 C 5.239 0 0 5.132 0 11.464 C 0 17.795 5.236 22.929 11.697 22.929 C 12.062 22.929 12.411 22.785 12.669 22.529 C 12.926 22.273 13.071 21.926 13.071 21.564 C 13.071 21.202 12.926 20.854 12.669 20.598 C 12.411 20.342 12.062 20.198 11.697 20.198 C 6.774 20.198 2.778 16.287 2.778 11.459 C 2.778 6.632 6.77 2.722 11.697 2.722 C 16.625 2.722 20.617 6.634 20.617 11.459 C 20.633 11.815 20.787 12.15 21.045 12.395 C 21.304 12.641 21.648 12.778 22.006 12.778 C 22.364 12.778 22.708 12.641 22.966 12.395 C 23.225 12.15 23.378 11.815 23.395 11.459 Z\" fill=\"rgb(245,77,7)\"></path><path d=\"M 18.268 16.758 L 21.067 19.518 L 27.24 13.434 C 27.398 13.281 27.593 13.169 27.806 13.11 C 28.019 13.051 28.244 13.046 28.459 13.096 C 28.674 13.146 28.874 13.249 29.038 13.396 C 29.203 13.543 29.328 13.728 29.401 13.936 L 29.413 13.969 C 29.489 14.196 29.5 14.439 29.444 14.671 C 29.389 14.904 29.268 15.116 29.097 15.284 L 22.068 22.204 C 21.892 22.379 21.67 22.5 21.426 22.553 C 21.199 22.623 20.956 22.631 20.724 22.575 C 20.492 22.519 20.28 22.401 20.111 22.234 L 16.405 18.58 C 16.248 18.425 16.133 18.233 16.072 18.022 C 16.011 17.811 16.006 17.588 16.057 17.374 C 16.108 17.16 16.214 16.963 16.364 16.801 C 16.514 16.64 16.704 16.52 16.914 16.452 L 16.932 16.452 C 17.161 16.376 17.407 16.364 17.643 16.418 C 17.879 16.472 18.095 16.59 18.268 16.758 Z\" fill=\"rgb(245,77,7)\"></path></svg>',svgContentId:8796927272},NS0Adpr9c:{svgContentId:9567635541}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pmdqzk\",\"data-framer-name\":\"Horizontal\",layoutDependency:layoutDependency,layoutId:\"iLnfOZnmo\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hlptrt\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"DkKk2dHsM\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fd69d1f-8ba7-4088-bcb3-7032fe335387, rgb(153, 153, 153)))\"},children:\"Company\"})}),className:\"framer-1a5q7s\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HLTD_a_YR\",style:{\"--extracted-r6o4lv\":\"var(--token-7fd69d1f-8ba7-4088-bcb3-7032fe335387, rgb(153, 153, 153))\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17u544d\",layoutDependency:layoutDependency,layoutId:\"tTGILYkVN\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u835qf\",\"data-styles-preset\":\"BDRbt4XHZ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FsyjeqdGR\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3vb9q\",\"data-styles-preset\":\"CDCDH3fRd\",children:\"Home\"})})})}),className:\"framer-14j1u4o\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XBmGKHT7w\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u835qf\",\"data-styles-preset\":\"BDRbt4XHZ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EH62EUNJE\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3vb9q\",\"data-styles-preset\":\"CDCDH3fRd\",children:\"About us\"})})})}),className:\"framer-1tm86qu\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lqtMdCmdh\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u835qf\",\"data-styles-preset\":\"BDRbt4XHZ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TX3hpUnkS\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3vb9q\",\"data-styles-preset\":\"CDCDH3fRd\",children:\"Culture\"})})})}),className:\"framer-nmqph8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x4orVzQ2w\",verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u835qf\",\"data-styles-preset\":\"BDRbt4XHZ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GFQI4jkgT\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3vb9q\",\"data-styles-preset\":\"CDCDH3fRd\",children:\"Career\"})})})}),className:\"framer-664gj6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SoLX4FHEk\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u835qf\",\"data-styles-preset\":\"BDRbt4XHZ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"t9PL3Axcn\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3vb9q\",\"data-styles-preset\":\"CDCDH3fRd\",children:\"Blog\"})})})}),className:\"framer-hh6o65\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AABPgUwI9\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ade6pi\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"XeoaZMd4x\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fd69d1f-8ba7-4088-bcb3-7032fe335387, rgb(153, 153, 153)))\"},children:\"Help\"})}),className:\"framer-w20uld\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aDNUT30qc\",style:{\"--extracted-r6o4lv\":\"var(--token-7fd69d1f-8ba7-4088-bcb3-7032fe335387, rgb(153, 153, 153))\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ick0da\",layoutDependency:layoutDependency,layoutId:\"itKLwe6VG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u835qf\",\"data-styles-preset\":\"BDRbt4XHZ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ACiWgqds0\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3vb9q\",\"data-styles-preset\":\"CDCDH3fRd\",children:\"FAQ\"})})})}),className:\"framer-1vaoyut\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UqMEe5FQd\",verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u835qf\",\"data-styles-preset\":\"BDRbt4XHZ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"k2slBv0ZI\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3vb9q\",\"data-styles-preset\":\"CDCDH3fRd\",children:\"Community\"})})})}),className:\"framer-2ef7ty\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"g8PvGeesN\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u835qf\",\"data-styles-preset\":\"BDRbt4XHZ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jBR0xMkA5\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3vb9q\",\"data-styles-preset\":\"CDCDH3fRd\",children:\"Contact\"})})})}),className:\"framer-lvmgav\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XzAm1MVES\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i2n3cd\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"uIc8Emgxz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fd69d1f-8ba7-4088-bcb3-7032fe335387, rgb(153, 153, 153)))\"},children:\"Resources\"})}),className:\"framer-1cdh07n\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nlWVd4KCE\",style:{\"--extracted-r6o4lv\":\"var(--token-7fd69d1f-8ba7-4088-bcb3-7032fe335387, rgb(153, 153, 153))\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10n2cjx\",layoutDependency:layoutDependency,layoutId:\"ariYleYtg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u835qf\",\"data-styles-preset\":\"BDRbt4XHZ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WL0Dn5v7L\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3vb9q\",\"data-styles-preset\":\"CDCDH3fRd\",children:\"Zenith Bank upload\"})})})}),className:\"framer-20v6zr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HPrphRJF9\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u835qf\",\"data-styles-preset\":\"BDRbt4XHZ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"esxTuXkPZ\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3vb9q\",\"data-styles-preset\":\"CDCDH3fRd\",children:\"GTCO bank upload\"})})})}),className:\"framer-ezl1na\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DWUQvAbFv\",verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u835qf\",\"data-styles-preset\":\"BDRbt4XHZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fd69d1f-8ba7-4088-bcb3-7032fe335387, rgb(153, 153, 153)))\"},children:\"Others\"})}),className:\"framer-181sq3i\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wO8cAo9KG\",style:{\"--extracted-r6o4lv\":\"var(--token-7fd69d1f-8ba7-4088-bcb3-7032fe335387, rgb(153, 153, 153))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nzyjts\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"YgaA1UxrP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fd69d1f-8ba7-4088-bcb3-7032fe335387, rgb(153, 153, 153)))\"},children:\"Legal\"})}),className:\"framer-yk60l9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"B0Rsu4in5\",style:{\"--extracted-r6o4lv\":\"var(--token-7fd69d1f-8ba7-4088-bcb3-7032fe335387, rgb(153, 153, 153))\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lo8ygm\",layoutDependency:layoutDependency,layoutId:\"IJq__LZTU\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u835qf\",\"data-styles-preset\":\"BDRbt4XHZ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qVt0xd_jN\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3vb9q\",\"data-styles-preset\":\"CDCDH3fRd\",children:\"Privacy policy\"})})})}),className:\"framer-tbbu7z\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kiOuKRt0u\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u835qf\",\"data-styles-preset\":\"BDRbt4XHZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(163, 163, 163))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tv5yeuiMk\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3vb9q\",\"data-styles-preset\":\"CDCDH3fRd\",children:\"Terms and condition\"})})})}),className:\"framer-1nl3mq0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JNEZuFwuc\",style:{\"--extracted-r6o4lv\":\"rgb(163, 163, 163)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u835qf\",\"data-styles-preset\":\"BDRbt4XHZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(163, 163, 163))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"IonN_NRHV\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3vb9q\",\"data-styles-preset\":\"CDCDH3fRd\",children:\"Cookies policy\"})})})}),className:\"framer-kcr0nz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"azoH4zZOK\",style:{\"--extracted-r6o4lv\":\"rgb(163, 163, 163)\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fhmjw5\",\"data-framer-name\":\"Horizontal\",layoutDependency:layoutDependency,layoutId:\"ov8rqTIwV\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1buc5gj\",\"data-framer-name\":\"QR code container\",layoutDependency:layoutDependency,layoutId:\"I1:369;1:199\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1hn13qz\",\"data-framer-name\":\"Group 3377\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"r4fGJMCOP\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 201 31\"><path d=\"M 69.767 14.409 C 69.688 18.412 67.723 21.568 64.414 22.929 L 66.69 25.418 C 66.885 25.618 66.996 25.884 66.999 26.162 C 67.001 26.308 66.972 26.451 66.917 26.586 C 66.862 26.72 66.78 26.842 66.677 26.944 C 66.573 27.047 66.45 27.128 66.315 27.183 C 66.18 27.238 66.035 27.266 65.889 27.265 C 65.728 27.265 65.57 27.227 65.426 27.156 C 65.283 27.084 65.157 26.981 65.06 26.854 L 62.242 23.524 C 61.728 23.598 61.21 23.632 60.691 23.626 C 55.159 23.626 51.719 19.778 51.618 14.421 C 51.721 9.058 55.169 5.216 60.691 5.216 C 66.214 5.216 69.662 9.066 69.765 14.421 Z M 60.506 21.38 C 64.737 21.38 67.173 18.32 67.173 14.392 C 67.173 10.463 64.737 7.403 60.506 7.403 C 56.275 7.403 53.849 10.465 53.849 14.392 C 53.849 18.318 56.259 21.38 60.516 21.38 Z M 78.124 23.587 C 75.165 23.587 73.471 21.28 73.471 18.506 L 73.471 11.144 C 73.476 10.834 73.605 10.538 73.829 10.322 C 74.053 10.105 74.354 9.986 74.666 9.989 C 74.82 9.988 74.973 10.018 75.115 10.077 C 75.258 10.135 75.387 10.221 75.495 10.33 C 75.604 10.438 75.69 10.567 75.749 10.708 C 75.807 10.85 75.837 11.001 75.836 11.154 L 75.836 18.248 C 75.836 20.207 76.668 21.409 78.696 21.409 C 80.566 21.409 81.919 20.216 82.959 18.922 L 82.959 11.144 C 82.964 10.834 83.092 10.538 83.316 10.322 C 83.54 10.105 83.841 9.986 84.154 9.989 C 84.308 9.988 84.461 10.018 84.603 10.076 C 84.746 10.135 84.875 10.221 84.984 10.329 C 85.092 10.437 85.178 10.566 85.237 10.708 C 85.295 10.849 85.325 11.001 85.324 11.154 L 85.324 22.275 C 85.326 22.429 85.298 22.583 85.24 22.727 C 85.182 22.87 85.097 23.001 84.988 23.112 C 84.88 23.223 84.75 23.311 84.607 23.372 C 84.464 23.433 84.31 23.466 84.154 23.467 C 83.996 23.467 83.841 23.437 83.695 23.377 C 83.55 23.317 83.418 23.229 83.307 23.118 C 83.196 23.007 83.108 22.875 83.048 22.731 C 82.988 22.586 82.958 22.431 82.959 22.275 L 82.959 21.211 C 81.866 22.404 80.438 23.597 78.124 23.597 Z M 90.868 10.345 C 91.021 10.346 91.171 10.378 91.311 10.438 C 91.45 10.498 91.576 10.586 91.681 10.696 C 91.786 10.805 91.867 10.935 91.92 11.077 C 91.974 11.218 91.997 11.369 91.991 11.52 L 91.991 22.445 C 91.991 22.738 91.874 23.018 91.665 23.225 C 91.457 23.432 91.175 23.548 90.88 23.548 C 90.586 23.548 90.303 23.432 90.095 23.225 C 89.887 23.018 89.77 22.738 89.77 22.445 L 89.77 11.516 C 89.762 11.367 89.785 11.218 89.836 11.078 C 89.888 10.937 89.967 10.808 90.07 10.699 C 90.172 10.589 90.295 10.501 90.433 10.44 C 90.57 10.379 90.718 10.345 90.868 10.341 Z M 92.361 6.072 L 92.361 6.169 C 92.361 6.849 91.73 7.407 90.963 7.407 L 90.797 7.407 C 90.03 7.407 89.399 6.849 89.399 6.169 L 89.399 6.072 C 89.399 5.392 90.03 4.834 90.797 4.834 L 90.963 4.834 C 91.73 4.834 92.361 5.392 92.361 6.072 Z M 106.579 20.432 C 107.115 20.432 107.549 20.972 107.549 21.46 C 107.547 21.64 107.499 21.817 107.41 21.974 C 107.321 22.132 107.193 22.264 107.039 22.359 C 105.813 23.186 104.36 23.616 102.879 23.591 C 99.255 23.591 96.066 21.074 96.066 16.787 C 96.066 12.5 99.255 9.989 102.879 9.989 C 104.36 9.964 105.813 10.394 107.039 11.221 C 107.193 11.316 107.321 11.448 107.41 11.605 C 107.499 11.762 107.547 11.939 107.549 12.12 C 107.549 12.607 107.115 13.146 106.579 13.146 C 106.381 13.152 106.186 13.099 106.019 12.993 C 105.125 12.531 104.411 12.171 103.084 12.171 C 100.125 12.171 98.387 14.045 98.387 16.793 C 98.387 19.541 100.123 21.415 103.084 21.415 C 104.411 21.415 105.125 21.055 106.019 20.592 C 106.186 20.486 106.381 20.432 106.579 20.438 Z M 122.108 21.756 C 122.269 21.954 122.36 22.199 122.366 22.453 C 122.366 23.152 121.877 23.591 121.184 23.591 C 120.998 23.582 120.818 23.533 120.654 23.448 C 120.491 23.364 120.347 23.244 120.235 23.099 L 115.822 17.039 L 113.589 19.09 L 113.589 22.42 C 113.586 22.729 113.46 23.025 113.238 23.243 C 113.017 23.461 112.718 23.583 112.406 23.583 C 112.252 23.583 112.101 23.552 111.961 23.493 C 111.82 23.434 111.692 23.348 111.585 23.24 C 111.478 23.132 111.393 23.004 111.335 22.863 C 111.278 22.722 111.249 22.572 111.252 22.42 L 111.252 5.65 C 111.248 5.341 111.367 5.043 111.583 4.821 C 111.799 4.598 112.094 4.469 112.406 4.462 C 112.72 4.467 113.02 4.594 113.242 4.816 C 113.462 5.039 113.587 5.338 113.589 5.65 L 113.589 16.227 L 119.704 10.547 C 119.909 10.343 120.185 10.223 120.475 10.21 C 121.347 10.21 121.603 10.831 121.603 11.348 C 121.594 11.516 121.55 11.68 121.475 11.831 C 121.4 11.982 121.295 12.117 121.167 12.227 L 117.471 15.557 L 122.116 21.76 Z M 139.478 20.056 C 139.616 20.048 139.753 20.07 139.881 20.119 C 140.011 20.168 140.127 20.243 140.226 20.339 C 140.324 20.436 140.4 20.551 140.45 20.679 C 140.499 20.807 140.521 20.943 140.516 21.08 C 140.52 21.272 140.469 21.461 140.368 21.625 C 140.266 21.789 140.12 21.92 139.945 22.002 C 138.338 22.899 136.574 23.591 134.028 23.591 C 128.868 23.591 124.954 20.107 124.954 14.395 C 124.954 8.684 128.869 5.2 134.028 5.2 C 136.569 5.2 138.331 5.891 139.945 6.788 C 140.12 6.871 140.266 7.002 140.368 7.166 C 140.468 7.33 140.52 7.519 140.516 7.711 C 140.521 7.848 140.499 7.984 140.45 8.112 C 140.4 8.239 140.324 8.355 140.226 8.452 C 140.127 8.548 140.011 8.623 139.881 8.672 C 139.753 8.721 139.616 8.742 139.478 8.735 C 139.317 8.736 139.158 8.701 139.012 8.633 C 137.565 7.823 135.928 7.408 134.266 7.429 C 129.677 7.429 127.317 10.451 127.317 14.395 C 127.317 18.34 129.685 21.362 134.266 21.362 C 135.928 21.384 137.565 20.969 139.012 20.16 C 139.158 20.09 139.317 20.055 139.478 20.056 Z M 151.05 10.022 C 154.009 10.022 155.703 12.321 155.703 15.087 L 155.703 22.427 C 155.702 22.582 155.669 22.734 155.608 22.876 C 155.548 23.018 155.459 23.147 155.348 23.255 C 155.238 23.363 155.106 23.448 154.962 23.506 C 154.817 23.564 154.663 23.592 154.507 23.591 C 154.354 23.591 154.202 23.562 154.06 23.503 C 153.917 23.445 153.788 23.359 153.679 23.251 C 153.571 23.143 153.484 23.014 153.425 22.873 C 153.367 22.732 153.338 22.58 153.338 22.427 L 153.338 15.341 C 153.338 13.383 152.506 12.188 150.479 12.188 C 148.607 12.188 147.255 13.377 146.216 14.67 L 146.216 22.424 C 146.214 22.578 146.182 22.73 146.121 22.872 C 146.06 23.014 145.972 23.143 145.861 23.251 C 145.749 23.359 145.618 23.444 145.475 23.502 C 145.33 23.56 145.176 23.588 145.02 23.587 C 144.867 23.587 144.714 23.558 144.572 23.499 C 144.43 23.441 144.3 23.355 144.192 23.247 C 144.082 23.139 143.996 23.011 143.938 22.869 C 143.879 22.728 143.85 22.576 143.851 22.424 L 143.851 5.65 C 143.847 5.496 143.875 5.342 143.932 5.198 C 143.99 5.054 144.075 4.923 144.184 4.812 C 144.293 4.701 144.423 4.613 144.567 4.553 C 144.71 4.493 144.865 4.462 145.02 4.462 C 145.178 4.461 145.333 4.492 145.479 4.552 C 145.624 4.611 145.756 4.699 145.867 4.809 C 145.978 4.92 146.066 5.051 146.125 5.195 C 146.186 5.34 146.216 5.494 146.216 5.65 L 146.216 12.396 C 147.307 11.207 148.737 10.018 151.05 10.018 Z M 170.172 20.51 C 170.305 20.508 170.437 20.533 170.562 20.582 C 170.686 20.632 170.798 20.705 170.894 20.798 C 170.989 20.891 171.065 21.002 171.116 21.125 C 171.168 21.247 171.195 21.378 171.195 21.511 C 171.195 21.922 170.888 22.255 170.53 22.461 C 169.403 23.103 168.274 23.591 166.045 23.591 C 161.867 23.591 159.408 21.1 159.408 16.787 C 159.408 13.318 161.278 9.989 165.533 9.989 C 169.477 9.989 171.631 13.044 171.631 16.452 C 171.637 16.607 171.609 16.761 171.551 16.905 C 171.493 17.048 171.406 17.179 171.295 17.287 C 171.183 17.396 171.051 17.48 170.905 17.536 C 170.758 17.591 170.603 17.615 170.447 17.607 L 161.769 17.607 C 162.025 19.919 163.486 21.409 166.254 21.409 C 167.458 21.446 168.65 21.172 169.714 20.612 C 169.856 20.539 170.015 20.504 170.175 20.51 Z M 165.506 12.184 C 163.818 12.184 161.788 13.244 161.631 15.862 L 169.408 15.862 C 169.25 13.244 167.193 12.184 165.506 12.184 Z M 185.109 20.428 C 185.644 20.428 186.077 20.968 186.077 21.456 C 186.076 21.637 186.028 21.814 185.938 21.971 C 185.849 22.128 185.721 22.26 185.566 22.355 C 184.342 23.182 182.889 23.613 181.409 23.587 C 177.785 23.587 174.595 21.07 174.595 16.783 C 174.595 12.496 177.785 9.989 181.409 9.989 C 182.889 9.963 184.342 10.393 185.566 11.221 C 185.721 11.315 185.849 11.447 185.938 11.605 C 186.028 11.762 186.076 11.939 186.077 12.12 C 186.077 12.607 185.644 13.146 185.109 13.146 C 184.91 13.152 184.715 13.099 184.547 12.993 C 183.654 12.531 182.939 12.171 181.612 12.171 C 178.653 12.171 176.918 14.045 176.918 16.793 C 176.918 19.541 178.653 21.415 181.612 21.415 C 182.939 21.415 183.654 21.055 184.547 20.592 C 184.714 20.486 184.91 20.432 185.109 20.438 Z M 200.638 21.752 C 200.797 21.951 200.887 22.195 200.894 22.449 C 200.894 23.148 200.408 23.587 199.711 23.587 C 199.526 23.578 199.346 23.529 199.182 23.445 C 199.019 23.36 198.875 23.24 198.763 23.095 L 194.35 17.039 L 192.119 19.09 L 192.119 22.42 C 192.116 22.729 191.99 23.025 191.769 23.243 C 191.547 23.461 191.248 23.583 190.936 23.583 C 190.782 23.583 190.631 23.552 190.49 23.494 C 190.349 23.435 190.221 23.349 190.113 23.241 C 190.006 23.133 189.921 23.004 189.863 22.863 C 189.806 22.722 189.777 22.572 189.78 22.42 L 189.78 5.65 C 189.776 5.341 189.895 5.043 190.112 4.82 C 190.328 4.598 190.625 4.469 190.936 4.462 C 191.25 4.466 191.551 4.593 191.772 4.816 C 191.994 5.038 192.118 5.338 192.119 5.65 L 192.119 16.227 L 198.233 10.547 C 198.438 10.343 198.713 10.223 199.003 10.21 C 199.875 10.21 200.133 10.831 200.133 11.348 C 200.123 11.516 200.08 11.681 200.004 11.832 C 199.929 11.983 199.824 12.117 199.695 12.227 L 196 15.557 L 200.646 21.76 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 31.56 15.451 C 31.56 6.918 24.492 0 15.78 0 C 7.067 0 0 6.918 0 15.451 C 0 23.985 7.063 30.904 15.78 30.904 C 16.271 30.904 16.743 30.71 17.09 30.365 C 17.438 30.02 17.633 29.552 17.633 29.064 C 17.633 28.576 17.438 28.108 17.09 27.763 C 16.743 27.418 16.271 27.224 15.78 27.224 C 9.138 27.224 3.748 21.952 3.748 15.445 C 3.748 8.939 9.133 3.668 15.78 3.668 C 22.427 3.668 27.812 8.941 27.812 15.445 C 27.834 15.924 28.041 16.376 28.39 16.707 C 28.739 17.038 29.203 17.222 29.686 17.222 C 30.168 17.222 30.632 17.038 30.981 16.707 C 31.33 16.376 31.537 15.924 31.56 15.445 Z\" fill=\"rgb(245,77,7)\"></path><path d=\"M 24.644 22.586 L 28.419 26.307 L 36.747 18.107 C 36.96 17.9 37.223 17.75 37.51 17.67 C 37.797 17.59 38.1 17.584 38.391 17.651 C 38.681 17.719 38.95 17.858 39.172 18.055 C 39.395 18.253 39.563 18.503 39.662 18.783 L 39.678 18.828 C 39.781 19.133 39.796 19.461 39.72 19.775 C 39.645 20.088 39.483 20.374 39.252 20.6 L 29.77 29.927 C 29.533 30.163 29.232 30.326 28.904 30.397 C 28.597 30.492 28.269 30.502 27.957 30.427 C 27.644 30.351 27.358 30.193 27.129 29.968 L 22.131 25.042 C 21.918 24.834 21.763 24.575 21.681 24.291 C 21.599 24.006 21.592 23.705 21.661 23.417 C 21.73 23.129 21.873 22.863 22.075 22.645 C 22.278 22.428 22.533 22.266 22.817 22.175 L 22.841 22.175 C 23.15 22.072 23.482 22.056 23.8 22.129 C 24.118 22.202 24.41 22.36 24.644 22.586 Z\" fill=\"rgb(245,77,7)\"></path></svg>',svgContentId:11704117748,withExternalLayout:true,...addPropertyOverrides({f0Q308X_5:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 183 28\"><path d=\"M 63.519 13.015 C 63.447 16.631 61.659 19.48 58.645 20.71 L 60.718 22.958 C 60.896 23.138 60.997 23.379 60.999 23.631 C 61 23.762 60.975 23.892 60.924 24.013 C 60.874 24.134 60.799 24.244 60.705 24.337 C 60.611 24.43 60.5 24.503 60.376 24.553 C 60.253 24.602 60.121 24.628 59.988 24.627 C 59.842 24.626 59.698 24.592 59.567 24.528 C 59.436 24.463 59.322 24.37 59.234 24.255 L 56.668 21.248 C 56.2 21.314 55.729 21.345 55.256 21.34 C 50.219 21.34 47.087 17.864 46.996 13.025 C 47.089 8.182 50.228 4.711 55.256 4.711 C 60.285 4.711 63.424 8.189 63.517 13.025 Z M 55.088 19.311 C 58.94 19.311 61.157 16.547 61.157 12.999 C 61.157 9.45 58.94 6.687 55.088 6.687 C 51.236 6.687 49.027 9.452 49.027 12.999 C 49.027 16.546 51.221 19.311 55.097 19.311 Z M 71.128 21.304 C 68.434 21.304 66.892 19.22 66.892 16.716 L 66.892 10.066 C 66.896 9.785 67.013 9.518 67.217 9.323 C 67.421 9.127 67.695 9.019 67.98 9.022 C 68.12 9.022 68.259 9.049 68.388 9.102 C 68.518 9.155 68.636 9.232 68.735 9.33 C 68.834 9.428 68.912 9.544 68.965 9.672 C 69.018 9.8 69.046 9.936 69.045 10.075 L 69.045 16.482 C 69.045 18.251 69.803 19.337 71.649 19.337 C 73.351 19.337 74.583 18.26 75.529 17.09 L 75.529 10.066 C 75.534 9.785 75.651 9.518 75.855 9.323 C 76.059 9.127 76.333 9.019 76.618 9.022 C 76.758 9.022 76.897 9.048 77.027 9.101 C 77.156 9.154 77.274 9.232 77.373 9.329 C 77.472 9.427 77.551 9.544 77.604 9.671 C 77.657 9.799 77.684 9.936 77.683 10.075 L 77.683 20.119 C 77.685 20.259 77.659 20.398 77.607 20.527 C 77.554 20.657 77.476 20.776 77.377 20.876 C 77.278 20.976 77.16 21.056 77.03 21.111 C 76.9 21.166 76.76 21.195 76.618 21.196 C 76.474 21.196 76.332 21.168 76.2 21.114 C 76.068 21.06 75.948 20.981 75.846 20.881 C 75.745 20.78 75.665 20.662 75.611 20.531 C 75.556 20.4 75.529 20.26 75.529 20.119 L 75.529 19.159 C 74.535 20.236 73.234 21.313 71.128 21.313 Z M 82.731 9.344 C 82.869 9.345 83.006 9.374 83.134 9.428 C 83.261 9.482 83.375 9.562 83.471 9.661 C 83.566 9.76 83.64 9.877 83.689 10.005 C 83.737 10.133 83.759 10.269 83.753 10.405 L 83.753 20.273 C 83.753 20.537 83.646 20.79 83.457 20.977 C 83.267 21.164 83.01 21.269 82.742 21.269 C 82.473 21.269 82.216 21.164 82.027 20.977 C 81.837 20.79 81.73 20.537 81.73 20.273 L 81.73 10.402 C 81.724 10.267 81.744 10.132 81.791 10.005 C 81.838 9.879 81.91 9.762 82.004 9.664 C 82.097 9.565 82.209 9.485 82.334 9.43 C 82.459 9.374 82.594 9.344 82.731 9.34 Z M 84.09 5.484 L 84.09 5.572 C 84.09 6.186 83.516 6.69 82.817 6.69 L 82.666 6.69 C 81.968 6.69 81.393 6.186 81.393 5.572 L 81.393 5.484 C 81.393 4.87 81.968 4.366 82.666 4.366 L 82.817 4.366 C 83.516 4.366 84.09 4.87 84.09 5.484 Z M 97.035 18.454 C 97.523 18.454 97.918 18.943 97.918 19.383 C 97.916 19.546 97.872 19.706 97.791 19.848 C 97.71 19.99 97.594 20.109 97.453 20.195 C 96.337 20.942 95.014 21.331 93.666 21.308 C 90.367 21.308 87.463 19.035 87.463 15.162 C 87.463 11.29 90.367 9.022 93.666 9.022 C 95.014 8.999 96.337 9.388 97.453 10.135 C 97.594 10.221 97.71 10.34 97.791 10.482 C 97.872 10.624 97.916 10.784 97.918 10.947 C 97.918 11.387 97.523 11.874 97.035 11.874 C 96.854 11.879 96.677 11.831 96.525 11.736 C 95.711 11.318 95.061 10.993 93.852 10.993 C 91.159 10.993 89.576 12.686 89.576 15.168 C 89.576 17.649 91.157 19.342 93.852 19.342 C 95.061 19.342 95.711 19.017 96.525 18.6 C 96.676 18.504 96.854 18.455 97.035 18.46 Z M 111.173 19.65 C 111.32 19.829 111.402 20.05 111.408 20.28 C 111.408 20.912 110.963 21.308 110.331 21.308 C 110.163 21.3 109.999 21.256 109.849 21.179 C 109.701 21.103 109.57 20.995 109.468 20.864 L 105.45 15.391 L 103.417 17.243 L 103.417 20.25 C 103.414 20.53 103.3 20.797 103.098 20.994 C 102.896 21.19 102.624 21.301 102.339 21.301 C 102.2 21.3 102.062 21.273 101.935 21.22 C 101.806 21.166 101.69 21.089 101.592 20.991 C 101.495 20.893 101.417 20.778 101.365 20.65 C 101.313 20.523 101.287 20.387 101.289 20.25 L 101.289 5.104 C 101.286 4.825 101.394 4.555 101.59 4.354 C 101.787 4.153 102.056 4.037 102.339 4.03 C 102.626 4.034 102.899 4.149 103.101 4.35 C 103.302 4.551 103.415 4.821 103.417 5.104 L 103.417 14.656 L 108.984 9.526 C 109.171 9.342 109.422 9.234 109.687 9.222 C 110.48 9.222 110.713 9.783 110.713 10.25 C 110.705 10.402 110.665 10.55 110.596 10.687 C 110.528 10.823 110.433 10.944 110.316 11.044 L 106.952 14.051 L 111.18 19.654 Z M 126.987 18.115 C 127.113 18.108 127.238 18.128 127.355 18.172 C 127.472 18.216 127.579 18.284 127.668 18.371 C 127.758 18.458 127.827 18.563 127.872 18.678 C 127.917 18.793 127.937 18.917 127.932 19.04 C 127.936 19.213 127.89 19.385 127.798 19.532 C 127.705 19.68 127.572 19.799 127.413 19.873 C 125.95 20.683 124.344 21.308 122.025 21.308 C 117.328 21.308 113.764 18.161 113.764 13.002 C 113.764 7.844 117.329 4.697 122.025 4.697 C 124.339 4.697 125.944 5.321 127.413 6.131 C 127.572 6.206 127.705 6.325 127.798 6.472 C 127.889 6.62 127.936 6.791 127.932 6.965 C 127.937 7.088 127.917 7.212 127.872 7.327 C 127.827 7.442 127.758 7.547 127.668 7.634 C 127.579 7.721 127.472 7.789 127.355 7.833 C 127.238 7.877 127.113 7.896 126.987 7.89 C 126.84 7.89 126.696 7.859 126.563 7.798 C 125.246 7.066 123.755 6.691 122.242 6.71 C 118.064 6.71 115.916 9.44 115.916 13.002 C 115.916 16.565 118.071 19.295 122.242 19.295 C 123.755 19.314 125.246 18.939 126.563 18.209 C 126.696 18.146 126.84 18.114 126.987 18.115 Z M 137.523 9.052 C 140.217 9.052 141.76 11.129 141.76 13.627 L 141.76 20.257 C 141.759 20.396 141.729 20.534 141.673 20.663 C 141.618 20.791 141.538 20.907 141.436 21.005 C 141.336 21.102 141.216 21.179 141.085 21.231 C 140.953 21.283 140.813 21.309 140.671 21.308 C 140.531 21.308 140.393 21.281 140.263 21.229 C 140.134 21.176 140.016 21.099 139.917 21.001 C 139.818 20.903 139.739 20.787 139.686 20.66 C 139.632 20.532 139.606 20.395 139.606 20.257 L 139.606 13.857 C 139.606 12.088 138.849 11.009 137.003 11.009 C 135.298 11.009 134.068 12.082 133.122 13.25 L 133.122 20.254 C 133.12 20.393 133.091 20.531 133.036 20.659 C 132.98 20.787 132.9 20.903 132.799 21.001 C 132.697 21.099 132.578 21.176 132.447 21.228 C 132.315 21.28 132.175 21.306 132.033 21.304 C 131.894 21.305 131.755 21.278 131.625 21.225 C 131.496 21.173 131.377 21.095 131.279 20.998 C 131.179 20.9 131.101 20.784 131.048 20.656 C 130.995 20.528 130.968 20.392 130.969 20.254 L 130.969 5.104 C 130.966 4.964 130.991 4.825 131.043 4.695 C 131.095 4.565 131.172 4.446 131.272 4.346 C 131.371 4.246 131.49 4.167 131.62 4.112 C 131.751 4.058 131.892 4.03 132.033 4.03 C 132.177 4.03 132.318 4.057 132.451 4.111 C 132.583 4.165 132.703 4.244 132.805 4.344 C 132.905 4.444 132.985 4.562 133.04 4.693 C 133.095 4.823 133.122 4.963 133.122 5.104 L 133.122 11.196 C 134.115 10.122 135.417 9.049 137.523 9.049 Z M 154.932 18.525 C 155.054 18.524 155.174 18.546 155.288 18.59 C 155.4 18.635 155.503 18.701 155.59 18.785 C 155.677 18.87 155.746 18.97 155.792 19.08 C 155.839 19.191 155.864 19.309 155.864 19.429 C 155.864 19.801 155.584 20.101 155.259 20.287 C 154.232 20.867 153.205 21.308 151.175 21.308 C 147.371 21.308 145.132 19.058 145.132 15.162 C 145.132 12.029 146.835 9.022 150.709 9.022 C 154.3 9.022 156.261 11.782 156.261 14.86 C 156.266 15 156.241 15.139 156.188 15.269 C 156.136 15.399 156.056 15.516 155.955 15.614 C 155.853 15.712 155.733 15.789 155.6 15.839 C 155.467 15.888 155.325 15.91 155.183 15.904 L 147.282 15.904 C 147.515 17.991 148.846 19.337 151.366 19.337 C 152.462 19.371 153.547 19.123 154.515 18.617 C 154.645 18.552 154.79 18.52 154.935 18.525 Z M 150.685 11.005 C 149.148 11.005 147.3 11.962 147.156 14.327 L 154.237 14.327 C 154.094 11.962 152.22 11.005 150.685 11.005 Z M 168.532 18.451 C 169.019 18.451 169.414 18.939 169.414 19.38 C 169.413 19.543 169.368 19.703 169.287 19.845 C 169.206 19.987 169.089 20.106 168.949 20.192 C 167.834 20.939 166.511 21.327 165.163 21.304 C 161.864 21.304 158.96 19.031 158.96 15.159 C 158.96 11.286 161.864 9.022 165.163 9.022 C 166.511 8.999 167.834 9.388 168.949 10.135 C 169.089 10.22 169.206 10.34 169.287 10.482 C 169.368 10.624 169.413 10.784 169.414 10.947 C 169.414 11.387 169.019 11.874 168.532 11.874 C 168.351 11.88 168.173 11.831 168.021 11.736 C 167.207 11.318 166.556 10.993 165.348 10.993 C 162.654 10.993 161.074 12.686 161.074 15.168 C 161.074 17.649 162.654 19.342 165.348 19.342 C 166.556 19.342 167.207 19.017 168.021 18.6 C 168.172 18.503 168.351 18.454 168.532 18.46 Z M 182.671 19.647 C 182.815 19.826 182.898 20.047 182.904 20.277 C 182.904 20.908 182.461 21.304 181.827 21.304 C 181.658 21.296 181.494 21.252 181.345 21.176 C 181.196 21.099 181.066 20.991 180.963 20.86 L 176.946 15.391 L 174.915 17.243 L 174.915 20.25 C 174.912 20.53 174.797 20.797 174.595 20.994 C 174.393 21.19 174.121 21.301 173.837 21.301 C 173.697 21.301 173.56 21.273 173.431 21.22 C 173.303 21.167 173.186 21.089 173.088 20.992 C 172.99 20.894 172.913 20.778 172.861 20.651 C 172.808 20.524 172.782 20.387 172.784 20.25 L 172.784 5.104 C 172.781 4.824 172.89 4.555 173.087 4.354 C 173.284 4.153 173.554 4.036 173.837 4.03 C 174.123 4.034 174.397 4.149 174.598 4.35 C 174.8 4.551 174.914 4.821 174.915 5.104 L 174.915 14.656 L 180.481 9.526 C 180.668 9.342 180.918 9.234 181.182 9.222 C 181.976 9.222 182.211 9.783 182.211 10.25 C 182.202 10.402 182.162 10.55 182.093 10.687 C 182.025 10.823 181.929 10.945 181.812 11.044 L 178.448 14.051 L 182.678 19.654 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 28.733 13.956 C 28.733 6.248 22.299 0 14.367 0 C 6.434 0 0 6.248 0 13.956 C 0 21.663 6.431 27.913 14.367 27.913 C 14.814 27.913 15.243 27.738 15.56 27.427 C 15.876 27.115 16.054 26.692 16.054 26.251 C 16.054 25.811 15.876 25.388 15.56 25.076 C 15.243 24.765 14.814 24.589 14.367 24.589 C 8.32 24.589 3.412 19.827 3.412 13.951 C 3.412 8.074 8.315 3.313 14.367 3.313 C 20.419 3.313 25.321 8.076 25.321 13.951 C 25.341 14.383 25.53 14.791 25.848 15.09 C 26.165 15.389 26.588 15.556 27.027 15.556 C 27.467 15.556 27.889 15.389 28.207 15.09 C 28.525 14.791 28.713 14.383 28.733 13.951 Z\" fill=\"rgb(245,77,7)\"></path><path d=\"M 22.437 20.401 L 25.874 23.762 L 33.456 16.355 C 33.65 16.168 33.889 16.032 34.151 15.96 C 34.413 15.888 34.688 15.882 34.953 15.943 C 35.217 16.004 35.462 16.129 35.664 16.308 C 35.867 16.487 36.02 16.713 36.11 16.965 L 36.125 17.006 C 36.218 17.282 36.232 17.578 36.163 17.861 C 36.095 18.144 35.947 18.402 35.737 18.607 L 27.104 27.031 C 26.888 27.244 26.614 27.391 26.316 27.455 C 26.036 27.541 25.738 27.55 25.453 27.482 C 25.168 27.414 24.908 27.271 24.699 27.068 L 20.149 22.619 C 19.955 22.431 19.815 22.197 19.74 21.94 C 19.665 21.683 19.658 21.411 19.721 21.151 C 19.784 20.89 19.914 20.65 20.098 20.454 C 20.283 20.257 20.515 20.111 20.774 20.029 L 20.795 20.029 C 21.077 19.936 21.379 19.922 21.669 19.987 C 21.959 20.053 22.224 20.196 22.437 20.401 Z\" fill=\"rgb(245,77,7)\"></path></svg>',svgContentId:11734504303},VPEXs_aMd:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 183 28\"><path d=\"M 63.519 13.015 C 63.447 16.631 61.659 19.48 58.645 20.71 L 60.718 22.958 C 60.896 23.138 60.997 23.379 60.999 23.631 C 61 23.762 60.975 23.892 60.924 24.013 C 60.874 24.134 60.799 24.244 60.705 24.337 C 60.611 24.43 60.5 24.503 60.376 24.553 C 60.253 24.602 60.121 24.628 59.988 24.627 C 59.842 24.626 59.698 24.592 59.567 24.528 C 59.436 24.463 59.322 24.37 59.234 24.255 L 56.668 21.248 C 56.2 21.314 55.729 21.345 55.256 21.34 C 50.219 21.34 47.087 17.864 46.996 13.025 C 47.089 8.182 50.228 4.711 55.256 4.711 C 60.285 4.711 63.424 8.189 63.517 13.025 Z M 55.088 19.311 C 58.94 19.311 61.157 16.547 61.157 12.999 C 61.157 9.45 58.94 6.687 55.088 6.687 C 51.236 6.687 49.027 9.452 49.027 12.999 C 49.027 16.546 51.221 19.311 55.097 19.311 Z M 71.128 21.304 C 68.434 21.304 66.892 19.22 66.892 16.716 L 66.892 10.066 C 66.896 9.785 67.013 9.518 67.217 9.323 C 67.421 9.127 67.695 9.019 67.98 9.022 C 68.12 9.022 68.259 9.049 68.388 9.102 C 68.518 9.155 68.636 9.232 68.735 9.33 C 68.834 9.428 68.912 9.544 68.965 9.672 C 69.018 9.8 69.046 9.936 69.045 10.075 L 69.045 16.482 C 69.045 18.251 69.803 19.337 71.649 19.337 C 73.351 19.337 74.583 18.26 75.529 17.09 L 75.529 10.066 C 75.534 9.785 75.651 9.518 75.855 9.323 C 76.059 9.127 76.333 9.019 76.618 9.022 C 76.758 9.022 76.897 9.048 77.027 9.101 C 77.156 9.154 77.274 9.232 77.373 9.329 C 77.472 9.427 77.551 9.544 77.604 9.671 C 77.657 9.799 77.684 9.936 77.683 10.075 L 77.683 20.119 C 77.685 20.259 77.659 20.398 77.607 20.527 C 77.554 20.657 77.476 20.776 77.377 20.876 C 77.278 20.976 77.16 21.056 77.03 21.111 C 76.9 21.166 76.76 21.195 76.618 21.196 C 76.474 21.196 76.332 21.168 76.2 21.114 C 76.068 21.06 75.948 20.981 75.846 20.881 C 75.745 20.78 75.665 20.662 75.611 20.531 C 75.556 20.4 75.529 20.26 75.529 20.119 L 75.529 19.159 C 74.535 20.236 73.234 21.313 71.128 21.313 Z M 82.731 9.344 C 82.869 9.345 83.006 9.374 83.134 9.428 C 83.261 9.482 83.375 9.562 83.471 9.661 C 83.566 9.76 83.64 9.877 83.689 10.005 C 83.737 10.133 83.759 10.269 83.753 10.405 L 83.753 20.273 C 83.753 20.537 83.646 20.79 83.457 20.977 C 83.267 21.164 83.01 21.269 82.742 21.269 C 82.473 21.269 82.216 21.164 82.027 20.977 C 81.837 20.79 81.73 20.537 81.73 20.273 L 81.73 10.402 C 81.724 10.267 81.744 10.132 81.791 10.005 C 81.838 9.879 81.91 9.762 82.004 9.664 C 82.097 9.565 82.209 9.485 82.334 9.43 C 82.459 9.374 82.594 9.344 82.731 9.34 Z M 84.09 5.484 L 84.09 5.572 C 84.09 6.186 83.516 6.69 82.817 6.69 L 82.666 6.69 C 81.968 6.69 81.393 6.186 81.393 5.572 L 81.393 5.484 C 81.393 4.87 81.968 4.366 82.666 4.366 L 82.817 4.366 C 83.516 4.366 84.09 4.87 84.09 5.484 Z M 97.035 18.454 C 97.523 18.454 97.918 18.943 97.918 19.383 C 97.916 19.546 97.872 19.706 97.791 19.848 C 97.71 19.99 97.594 20.109 97.453 20.195 C 96.337 20.942 95.014 21.331 93.666 21.308 C 90.367 21.308 87.463 19.035 87.463 15.162 C 87.463 11.29 90.367 9.022 93.666 9.022 C 95.014 8.999 96.337 9.388 97.453 10.135 C 97.594 10.221 97.71 10.34 97.791 10.482 C 97.872 10.624 97.916 10.784 97.918 10.947 C 97.918 11.387 97.523 11.874 97.035 11.874 C 96.854 11.879 96.677 11.831 96.525 11.736 C 95.711 11.318 95.061 10.993 93.852 10.993 C 91.159 10.993 89.576 12.686 89.576 15.168 C 89.576 17.649 91.157 19.342 93.852 19.342 C 95.061 19.342 95.711 19.017 96.525 18.6 C 96.676 18.504 96.854 18.455 97.035 18.46 Z M 111.173 19.65 C 111.32 19.829 111.402 20.05 111.408 20.28 C 111.408 20.912 110.963 21.308 110.331 21.308 C 110.163 21.3 109.999 21.256 109.849 21.179 C 109.701 21.103 109.57 20.995 109.468 20.864 L 105.45 15.391 L 103.417 17.243 L 103.417 20.25 C 103.414 20.53 103.3 20.797 103.098 20.994 C 102.896 21.19 102.624 21.301 102.339 21.301 C 102.2 21.3 102.062 21.273 101.935 21.22 C 101.806 21.166 101.69 21.089 101.592 20.991 C 101.495 20.893 101.417 20.778 101.365 20.65 C 101.313 20.523 101.287 20.387 101.289 20.25 L 101.289 5.104 C 101.286 4.825 101.394 4.555 101.59 4.354 C 101.787 4.153 102.056 4.037 102.339 4.03 C 102.626 4.034 102.899 4.149 103.101 4.35 C 103.302 4.551 103.415 4.821 103.417 5.104 L 103.417 14.656 L 108.984 9.526 C 109.171 9.342 109.422 9.234 109.687 9.222 C 110.48 9.222 110.713 9.783 110.713 10.25 C 110.705 10.402 110.665 10.55 110.596 10.687 C 110.528 10.823 110.433 10.944 110.316 11.044 L 106.952 14.051 L 111.18 19.654 Z M 126.987 18.115 C 127.113 18.108 127.238 18.128 127.355 18.172 C 127.472 18.216 127.579 18.284 127.668 18.371 C 127.758 18.458 127.827 18.563 127.872 18.678 C 127.917 18.793 127.937 18.917 127.932 19.04 C 127.936 19.213 127.89 19.385 127.798 19.532 C 127.705 19.68 127.572 19.799 127.413 19.873 C 125.95 20.683 124.344 21.308 122.025 21.308 C 117.328 21.308 113.764 18.161 113.764 13.002 C 113.764 7.844 117.329 4.697 122.025 4.697 C 124.339 4.697 125.944 5.321 127.413 6.131 C 127.572 6.206 127.705 6.325 127.798 6.472 C 127.889 6.62 127.936 6.791 127.932 6.965 C 127.937 7.088 127.917 7.212 127.872 7.327 C 127.827 7.442 127.758 7.547 127.668 7.634 C 127.579 7.721 127.472 7.789 127.355 7.833 C 127.238 7.877 127.113 7.896 126.987 7.89 C 126.84 7.89 126.696 7.859 126.563 7.798 C 125.246 7.066 123.755 6.691 122.242 6.71 C 118.064 6.71 115.916 9.44 115.916 13.002 C 115.916 16.565 118.071 19.295 122.242 19.295 C 123.755 19.314 125.246 18.939 126.563 18.209 C 126.696 18.146 126.84 18.114 126.987 18.115 Z M 137.523 9.052 C 140.217 9.052 141.76 11.129 141.76 13.627 L 141.76 20.257 C 141.759 20.396 141.729 20.534 141.673 20.663 C 141.618 20.791 141.538 20.907 141.436 21.005 C 141.336 21.102 141.216 21.179 141.085 21.231 C 140.953 21.283 140.813 21.309 140.671 21.308 C 140.531 21.308 140.393 21.281 140.263 21.229 C 140.134 21.176 140.016 21.099 139.917 21.001 C 139.818 20.903 139.739 20.787 139.686 20.66 C 139.632 20.532 139.606 20.395 139.606 20.257 L 139.606 13.857 C 139.606 12.088 138.849 11.009 137.003 11.009 C 135.298 11.009 134.068 12.082 133.122 13.25 L 133.122 20.254 C 133.12 20.393 133.091 20.531 133.036 20.659 C 132.98 20.787 132.9 20.903 132.799 21.001 C 132.697 21.099 132.578 21.176 132.447 21.228 C 132.315 21.28 132.175 21.306 132.033 21.304 C 131.894 21.305 131.755 21.278 131.625 21.225 C 131.496 21.173 131.377 21.095 131.279 20.998 C 131.179 20.9 131.101 20.784 131.048 20.656 C 130.995 20.528 130.968 20.392 130.969 20.254 L 130.969 5.104 C 130.966 4.964 130.991 4.825 131.043 4.695 C 131.095 4.565 131.172 4.446 131.272 4.346 C 131.371 4.246 131.49 4.167 131.62 4.112 C 131.751 4.058 131.892 4.03 132.033 4.03 C 132.177 4.03 132.318 4.057 132.451 4.111 C 132.583 4.165 132.703 4.244 132.805 4.344 C 132.905 4.444 132.985 4.562 133.04 4.693 C 133.095 4.823 133.122 4.963 133.122 5.104 L 133.122 11.196 C 134.115 10.122 135.417 9.049 137.523 9.049 Z M 154.932 18.525 C 155.054 18.524 155.174 18.546 155.288 18.59 C 155.4 18.635 155.503 18.701 155.59 18.785 C 155.677 18.87 155.746 18.97 155.792 19.08 C 155.839 19.191 155.864 19.309 155.864 19.429 C 155.864 19.801 155.584 20.101 155.259 20.287 C 154.232 20.867 153.205 21.308 151.175 21.308 C 147.371 21.308 145.132 19.058 145.132 15.162 C 145.132 12.029 146.835 9.022 150.709 9.022 C 154.3 9.022 156.261 11.782 156.261 14.86 C 156.266 15 156.241 15.139 156.188 15.269 C 156.136 15.399 156.056 15.516 155.955 15.614 C 155.853 15.712 155.733 15.789 155.6 15.839 C 155.467 15.888 155.325 15.91 155.183 15.904 L 147.282 15.904 C 147.515 17.991 148.846 19.337 151.366 19.337 C 152.462 19.371 153.547 19.123 154.515 18.617 C 154.645 18.552 154.79 18.52 154.935 18.525 Z M 150.685 11.005 C 149.148 11.005 147.3 11.962 147.156 14.327 L 154.237 14.327 C 154.094 11.962 152.22 11.005 150.685 11.005 Z M 168.532 18.451 C 169.019 18.451 169.414 18.939 169.414 19.38 C 169.413 19.543 169.368 19.703 169.287 19.845 C 169.206 19.987 169.089 20.106 168.949 20.192 C 167.834 20.939 166.511 21.327 165.163 21.304 C 161.864 21.304 158.96 19.031 158.96 15.159 C 158.96 11.286 161.864 9.022 165.163 9.022 C 166.511 8.999 167.834 9.388 168.949 10.135 C 169.089 10.22 169.206 10.34 169.287 10.482 C 169.368 10.624 169.413 10.784 169.414 10.947 C 169.414 11.387 169.019 11.874 168.532 11.874 C 168.351 11.88 168.173 11.831 168.021 11.736 C 167.207 11.318 166.556 10.993 165.348 10.993 C 162.654 10.993 161.074 12.686 161.074 15.168 C 161.074 17.649 162.654 19.342 165.348 19.342 C 166.556 19.342 167.207 19.017 168.021 18.6 C 168.172 18.503 168.351 18.454 168.532 18.46 Z M 182.671 19.647 C 182.815 19.826 182.898 20.047 182.904 20.277 C 182.904 20.908 182.461 21.304 181.827 21.304 C 181.658 21.296 181.494 21.252 181.345 21.176 C 181.196 21.099 181.066 20.991 180.963 20.86 L 176.946 15.391 L 174.915 17.243 L 174.915 20.25 C 174.912 20.53 174.797 20.797 174.595 20.994 C 174.393 21.19 174.121 21.301 173.837 21.301 C 173.697 21.301 173.56 21.273 173.431 21.22 C 173.303 21.167 173.186 21.089 173.088 20.992 C 172.99 20.894 172.913 20.778 172.861 20.651 C 172.808 20.524 172.782 20.387 172.784 20.25 L 172.784 5.104 C 172.781 4.824 172.89 4.555 173.087 4.354 C 173.284 4.153 173.554 4.036 173.837 4.03 C 174.123 4.034 174.397 4.149 174.598 4.35 C 174.8 4.551 174.914 4.821 174.915 5.104 L 174.915 14.656 L 180.481 9.526 C 180.668 9.342 180.918 9.234 181.182 9.222 C 181.976 9.222 182.211 9.783 182.211 10.25 C 182.202 10.402 182.162 10.55 182.093 10.687 C 182.025 10.823 181.929 10.945 181.812 11.044 L 178.448 14.051 L 182.678 19.654 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 28.733 13.956 C 28.733 6.248 22.299 0 14.367 0 C 6.434 0 0 6.248 0 13.956 C 0 21.663 6.431 27.913 14.367 27.913 C 14.814 27.913 15.243 27.738 15.56 27.427 C 15.876 27.115 16.054 26.692 16.054 26.251 C 16.054 25.811 15.876 25.388 15.56 25.076 C 15.243 24.765 14.814 24.589 14.367 24.589 C 8.32 24.589 3.412 19.827 3.412 13.951 C 3.412 8.074 8.315 3.313 14.367 3.313 C 20.419 3.313 25.321 8.076 25.321 13.951 C 25.341 14.383 25.53 14.791 25.848 15.09 C 26.165 15.389 26.588 15.556 27.027 15.556 C 27.467 15.556 27.889 15.389 28.207 15.09 C 28.525 14.791 28.713 14.383 28.733 13.951 Z\" fill=\"rgb(245,77,7)\"></path><path d=\"M 22.437 20.401 L 25.874 23.762 L 33.456 16.355 C 33.65 16.168 33.889 16.032 34.151 15.96 C 34.413 15.888 34.688 15.882 34.953 15.943 C 35.217 16.004 35.462 16.129 35.664 16.308 C 35.867 16.487 36.02 16.713 36.11 16.965 L 36.125 17.006 C 36.218 17.282 36.232 17.578 36.163 17.861 C 36.095 18.144 35.947 18.402 35.737 18.607 L 27.104 27.031 C 26.888 27.244 26.614 27.391 26.316 27.455 C 26.036 27.541 25.738 27.55 25.453 27.482 C 25.168 27.414 24.908 27.271 24.699 27.068 L 20.149 22.619 C 19.955 22.431 19.815 22.197 19.74 21.94 C 19.665 21.683 19.658 21.411 19.721 21.151 C 19.784 20.89 19.914 20.65 20.098 20.454 C 20.283 20.257 20.515 20.111 20.774 20.029 L 20.795 20.029 C 21.077 19.936 21.379 19.922 21.669 19.987 C 21.959 20.053 22.224 20.196 22.437 20.401 Z\" fill=\"rgb(245,77,7)\"></path></svg>',svgContentId:11734504303}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:256,intrinsicWidth:256,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EqQNNITtxjX4mh8GcvSnQidsEIg.svg\"},className:\"framer-ai53is\",\"data-framer-name\":\"QR Code\",layoutDependency:layoutDependency,layoutId:\"x0N5YdEcV\"}),isDisplayed3()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:256,intrinsicWidth:256,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EqQNNITtxjX4mh8GcvSnQidsEIg.svg\"},className:\"framer-56bya\",\"data-framer-name\":\"QR Code\",layoutDependency:layoutDependency,layoutId:\"brPatkY_5\"}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(163, 163, 163))\"},children:\"Scan QR code to download app\"})}),className:\"framer-1vnpuwz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eMnG2bPuq\",style:{\"--extracted-r6o4lv\":\"rgb(163, 163, 163)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-e9ji3s\",\"data-styles-preset\":\"hEYoRGBeN\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(163, 163, 163))\"},children:\"Scan QR code to download app\"})}),className:\"framer-5xpvft\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"j85j2Q1sw\",style:{\"--extracted-r6o4lv\":\"rgb(163, 163, 163)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a6kzvi\",layoutDependency:layoutDependency,layoutId:\"M0_8dcxtk\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mgib89\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"a3Tlx93zG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fd69d1f-8ba7-4088-bcb3-7032fe335387, rgb(153, 153, 153)))\"},children:\"Company\"})}),className:\"framer-m44cxu\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qa_9ImjP7\",style:{\"--extracted-r6o4lv\":\"var(--token-7fd69d1f-8ba7-4088-bcb3-7032fe335387, rgb(153, 153, 153))\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h2mxco\",layoutDependency:layoutDependency,layoutId:\"ys7B5tM0D\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u835qf\",\"data-styles-preset\":\"BDRbt4XHZ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FsyjeqdGR\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3vb9q\",\"data-styles-preset\":\"CDCDH3fRd\",children:\"Home\"})})})}),className:\"framer-t5t11b\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ElZfcPvCm\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u835qf\",\"data-styles-preset\":\"BDRbt4XHZ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EH62EUNJE\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3vb9q\",\"data-styles-preset\":\"CDCDH3fRd\",children:\"About us\"})})})}),className:\"framer-tkc1ik\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mCHGEtMid\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u835qf\",\"data-styles-preset\":\"BDRbt4XHZ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TX3hpUnkS\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3vb9q\",\"data-styles-preset\":\"CDCDH3fRd\",children:\"Culture\"})})})}),className:\"framer-1ota57o\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tDaBf8dzF\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u835qf\",\"data-styles-preset\":\"BDRbt4XHZ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"t9PL3Axcn\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3vb9q\",\"data-styles-preset\":\"CDCDH3fRd\",children:\"Blog\"})})})}),className:\"framer-1x16bht\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vmbnIRNc6\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u0s787\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"D6pC31Kl7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fd69d1f-8ba7-4088-bcb3-7032fe335387, rgb(153, 153, 153)))\"},children:\"Help\"})}),className:\"framer-ade1fu\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BUFCDwBiT\",style:{\"--extracted-r6o4lv\":\"var(--token-7fd69d1f-8ba7-4088-bcb3-7032fe335387, rgb(153, 153, 153))\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6zafvr\",layoutDependency:layoutDependency,layoutId:\"strSr4rFz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u835qf\",\"data-styles-preset\":\"BDRbt4XHZ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ACiWgqds0\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3vb9q\",\"data-styles-preset\":\"CDCDH3fRd\",children:\"FAQ\"})})})}),className:\"framer-eaplou\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZzCvy8c3D\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u835qf\",\"data-styles-preset\":\"BDRbt4XHZ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jBR0xMkA5\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3vb9q\",\"data-styles-preset\":\"CDCDH3fRd\",children:\"Contact\"})})})}),className:\"framer-17bt8kk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"R5k2qnf_5\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1clj65m\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"A3jr4tKVv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fd69d1f-8ba7-4088-bcb3-7032fe335387, rgb(153, 153, 153)))\"},children:\"Resources\"})}),className:\"framer-8rpu4w\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Lkm8kDHQW\",style:{\"--extracted-r6o4lv\":\"var(--token-7fd69d1f-8ba7-4088-bcb3-7032fe335387, rgb(153, 153, 153))\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18446qg\",layoutDependency:layoutDependency,layoutId:\"hvhZk72pv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u835qf\",\"data-styles-preset\":\"BDRbt4XHZ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WL0Dn5v7L\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3vb9q\",\"data-styles-preset\":\"CDCDH3fRd\",children:\"Zenith Bank upload\"})})})}),className:\"framer-89y02q\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wgL4Pl4BK\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u835qf\",\"data-styles-preset\":\"BDRbt4XHZ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"esxTuXkPZ\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3vb9q\",\"data-styles-preset\":\"CDCDH3fRd\",children:\"GTCO bank upload\"})})})}),className:\"framer-7ji0gt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cZXJhHL7O\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6xfafl\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"iIhZ68VWq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11dt3vl\",\"data-styles-preset\":\"e8L9LR0do\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fd69d1f-8ba7-4088-bcb3-7032fe335387, rgb(153, 153, 153)))\"},children:\"Legal\"})}),className:\"framer-9f8ldg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RkuOhjmr3\",style:{\"--extracted-r6o4lv\":\"var(--token-7fd69d1f-8ba7-4088-bcb3-7032fe335387, rgb(153, 153, 153))\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xqcnl\",layoutDependency:layoutDependency,layoutId:\"IVcvw_xEf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u835qf\",\"data-styles-preset\":\"BDRbt4XHZ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qVt0xd_jN\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3vb9q\",\"data-styles-preset\":\"CDCDH3fRd\",children:\"Privacy policy\"})})})}),className:\"framer-1l3dlut\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"y_nuOrHcA\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u835qf\",\"data-styles-preset\":\"BDRbt4XHZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(163, 163, 163))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tv5yeuiMk\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3vb9q\",\"data-styles-preset\":\"CDCDH3fRd\",children:\"Terms and condition\"})})})}),className:\"framer-ligwzi\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wTq21bF8s\",style:{\"--extracted-r6o4lv\":\"rgb(163, 163, 163)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u835qf\",\"data-styles-preset\":\"BDRbt4XHZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(163, 163, 163))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"IonN_NRHV\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3vb9q\",\"data-styles-preset\":\"CDCDH3fRd\",children:\"Cookies policy\"})})})}),className:\"framer-1op4td4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"E_1yEOxoA\",style:{\"--extracted-r6o4lv\":\"rgb(163, 163, 163)\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wzte9q\",\"data-border\":true,\"data-framer-name\":\"Copyright\",layoutDependency:layoutDependency,layoutId:\"JktpP0HB2\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(255, 255, 255, 0.2)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[/*#__PURE__*/_jsx(RichTextWithGetAccurateYear,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba0f8505-1870-43c0-8d4e-7d4bc5406462, rgb(153, 153, 153)))\"},children:\"\\xa92024 Quickcheck.ng\"})}),className:\"framer-8kljl1\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"cvE88AGSU\",style:{\"--extracted-r6o4lv\":\"var(--token-ba0f8505-1870-43c0-8d4e-7d4bc5406462, rgb(153, 153, 153))\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({EFsEtJrEB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba0f8505-1870-43c0-8d4e-7d4bc5406462, rgb(153, 153, 153)))\"},children:\"\\xa92024 Quickcheck.ng\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-foumio\",layoutDependency:layoutDependency,layoutId:\"V4qNiO4x3\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://web.facebook.com/quickcheckng/?_rdc=1&_rdr\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-yhq72k framer-1vxkx5h\",layoutDependency:layoutDependency,layoutId:\"UsnpiqBqq\",whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-r4qtax\",\"data-framer-name\":\"Icon / Facebook\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:44,intrinsicWidth:44,layoutDependency:layoutDependency,layoutId:\"FrHEygcOv\",svg:'<svg width=\"44\" height=\"44\" viewBox=\"0 0 44 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"44\" height=\"44\" rx=\"8\" fill=\"white\"/>\\n<path d=\"M30.25 11H24.75C23.7375 11 22.9167 11.8208 22.9167 12.8333V18.3333H30.25C30.4585 18.3287 30.6563 18.4257 30.7802 18.5935C30.9042 18.7612 30.939 18.9787 30.8734 19.1767L29.5167 23.21C29.3917 23.5802 29.0457 23.8304 28.655 23.8333H22.9167V37.5833C22.9167 38.0895 22.5062 38.5 22 38.5H17.4167C16.9105 38.5 16.5 38.0895 16.5 37.5833V23.8333H13.75C13.2438 23.8333 12.8334 23.4229 12.8334 22.9167V19.25C12.8334 18.7438 13.2438 18.3333 13.75 18.3333H16.5V12.8333C16.5 8.78324 19.7834 5.5 23.8334 5.5H30.25C30.7562 5.5 31.1667 5.91041 31.1667 6.41667V10.0833C31.1667 10.5896 30.7562 11 30.25 11Z\" fill=\"#F54D07\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/quickcheckng/\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-hjwx15 framer-1vxkx5h\",layoutDependency:layoutDependency,layoutId:\"P7KW0JN4m\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-gqofrx\",\"data-framer-name\":\"Icon / Instagram\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ambnn2Lg_\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 3.636 20 C 1.628 20 0 20 0 20 L 0 0 C 0 0 1.628 0 3.636 0 L 16.364 0 C 18.372 0 20 0 20 0 L 20 20 C 20 20 18.372 20 16.364 20 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 13.333 2.5 L 6.667 2.5 C 4.365 2.5 2.5 4.365 2.5 6.667 L 2.5 13.333 C 2.5 15.634 4.365 17.5 6.667 17.5 L 13.333 17.5 C 15.634 17.5 17.5 15.634 17.5 13.333 L 17.5 6.667 C 17.5 4.365 15.634 2.5 13.333 2.5 Z M 16.042 13.333 C 16.037 14.827 14.827 16.037 13.333 16.042 L 6.667 16.042 C 5.173 16.037 3.963 14.827 3.958 13.333 L 3.958 6.667 C 3.963 5.173 5.173 3.963 6.667 3.958 L 13.333 3.958 C 14.827 3.963 16.037 5.173 16.042 6.667 Z M 13.958 6.875 C 14.419 6.875 14.792 6.502 14.792 6.042 C 14.792 5.581 14.419 5.208 13.958 5.208 C 13.498 5.208 13.125 5.581 13.125 6.042 C 13.125 6.502 13.498 6.875 13.958 6.875 Z M 10 6.25 C 7.929 6.25 6.25 7.929 6.25 10 C 6.25 12.071 7.929 13.75 10 13.75 C 12.071 13.75 13.75 12.071 13.75 10 C 13.752 9.005 13.358 8.05 12.654 7.346 C 11.95 6.642 10.995 6.248 10 6.25 Z M 7.708 10 C 7.708 11.266 8.734 12.292 10 12.292 C 11.266 12.292 12.292 11.266 12.292 10 C 12.292 8.734 11.266 7.708 10 7.708 C 8.734 7.708 7.708 8.734 7.708 10 Z\" fill=\"rgb(245,77,7)\"></path></svg>',svgContentId:9470588378,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/quickcheckng\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-brld1g framer-1vxkx5h\",layoutDependency:layoutDependency,layoutId:\"sAC00u1Ft\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1fq2r95\",\"data-framer-name\":\"Frame 188\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Bs0g1sQXi\",opacity:1,radius:4,style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 3.2 20 C 1.433 20 0 20 0 20 L 0 0 C 0 0 1.433 0 3.2 0 L 16.8 0 C 18.567 0 20 0 20 0 L 20 20 C 20 20 18.567 20 16.8 20 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 13.57 3.585 L 14.772 3.656 L 5.624 15.599 L 4.458 15.482 Z\" fill=\"rgb(245,77,7)\"></path><path d=\"M 7.066 3.816 L 7.423 3.794 L 7.611 4.099 L 13.902 14.259 L 14.41 15.079 L 13.45 15.172 L 12.344 15.28 L 11.972 15.316 L 11.776 14.998 L 5.46 4.798 L 4.931 3.943 L 5.935 3.883 Z\" fill=\"rgb(255,255,255)\" stroke-width=\"1.2000000000000002\" stroke=\"rgb(245,77,7)\" stroke-dasharray=\"\"></path></svg>',svgContentId:12163482168,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://ng.linkedin.com/company/quickcheck-nigeria\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-kuwfc9 framer-1vxkx5h\",layoutDependency:layoutDependency,layoutId:\"ojw8P9n_H\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6i36e9\",\"data-framer-name\":\"Icon / LinkedIn\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:44,intrinsicWidth:44,layoutDependency:layoutDependency,layoutId:\"vXSD3Kt2S\",svg:'<svg width=\"44\" height=\"44\" viewBox=\"0 0 44 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"44\" height=\"44\" rx=\"8\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.16667 5.5H34.8333C36.8584 5.5 38.5 7.14162 38.5 9.16667V34.8333C38.5 36.8584 36.8584 38.5 34.8333 38.5H9.16667C7.14162 38.5 5.5 36.8584 5.5 34.8333V9.16667C5.5 7.14162 7.14162 5.5 9.16667 5.5ZM14.6667 33C15.1729 33 15.5833 32.5895 15.5833 32.0833V19.25C15.5833 18.7438 15.1729 18.3333 14.6667 18.3333H11.9167C11.4104 18.3333 11 18.7438 11 19.25V32.0833C11 32.5895 11.4104 33 11.9167 33H14.6667ZM13.2917 16.5C11.7729 16.5 10.5417 15.2688 10.5417 13.75C10.5417 12.2312 11.7729 11 13.2917 11C14.8105 11 16.0417 12.2312 16.0417 13.75C16.0417 15.2688 14.8105 16.5 13.2917 16.5ZM32.0833 33C32.5895 33 33 32.5895 33 32.0833V23.65C33.0596 20.7365 30.9056 18.25 28.0133 17.8933C25.9912 17.7086 24.0319 18.6531 22.9167 20.35V19.25C22.9167 18.7438 22.5062 18.3333 22 18.3333H19.25C18.7438 18.3333 18.3333 18.7438 18.3333 19.25V32.0833C18.3333 32.5895 18.7438 33 19.25 33H22C22.5062 33 22.9167 32.5895 22.9167 32.0833V25.2083C22.9167 23.6896 24.1479 22.4583 25.6667 22.4583C27.1854 22.4583 28.4167 23.6896 28.4167 25.2083V32.0833C28.4167 32.5895 28.8272 33 29.3333 33H32.0833Z\" fill=\"#F54D07\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.threads.net/@quickcheckng\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-sk7zan framer-1vxkx5h\",layoutDependency:layoutDependency,layoutId:\"NvzWaRDrt\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jff0cl\",\"data-framer-name\":\"fa6-brands:square-threads\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:38,layoutDependency:layoutDependency,layoutId:\"batCEm36N\",svg:'<svg width=\"38\" height=\"38\" viewBox=\"0 0 38 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_509_655)\">\\n<rect width=\"38\" height=\"38\" rx=\"8\" fill=\"#F54D07\"/>\\n<path d=\"M5.5 -0.25C2.46641 -0.25 0 2.21641 0 5.25V32.75C0 35.7836 2.46641 38.25 5.5 38.25H33C36.0336 38.25 38.5 35.7836 38.5 32.75V5.25C38.5 2.21641 36.0336 -0.25 33 -0.25H5.5ZM25.2828 17.9945C26.9586 18.7938 28.1789 20.0141 28.8234 21.5094C29.7172 23.5977 29.8031 27.0008 27.0875 29.7078C25.0078 31.7789 22.4898 32.7156 18.9148 32.7414H18.8977C14.8758 32.7156 11.782 31.3578 9.71094 28.7195C7.86328 26.3734 6.90938 23.0992 6.875 19V18.9828C6.90938 14.8836 7.86328 11.618 9.71094 9.26328C11.7906 6.625 14.8844 5.26719 18.8977 5.24141H18.9148C22.9453 5.26719 26.0734 6.61641 28.2133 9.24609C29.2703 10.5438 30.0437 12.1078 30.5336 13.9211L28.2219 14.5398C27.818 13.0617 27.1992 11.7984 26.3828 10.793C24.7156 8.73906 22.1977 7.69062 18.9062 7.66484C15.6406 7.69062 13.1656 8.73906 11.5586 10.7758C10.0547 12.6922 9.27266 15.4508 9.24687 18.9828C9.27266 22.5148 10.0547 25.282 11.5586 27.1898C13.1656 29.2352 15.632 30.2836 18.9062 30.3008C21.8539 30.275 23.7961 29.5789 25.4203 27.9547C27.268 26.107 27.2336 23.8383 26.6406 22.4547C26.2969 21.6469 25.6609 20.968 24.8102 20.4523C24.6039 21.9992 24.1313 23.2195 23.3922 24.1648C22.4125 25.4109 21.0117 26.0898 19.2328 26.1844C17.8836 26.2617 16.5859 25.9352 15.5719 25.2648C14.3773 24.4742 13.6813 23.2711 13.6039 21.8703C13.4578 19.1031 15.6492 17.118 19.0609 16.9203C20.2727 16.8516 21.407 16.9031 22.4555 17.0836C22.318 16.2328 22.0344 15.5625 21.6133 15.0727C21.0375 14.4023 20.1437 14.0586 18.9664 14.05H18.932C17.9867 14.05 16.6977 14.3164 15.8727 15.5625L13.8961 14.2047C14.9961 12.5375 16.7836 11.618 18.9234 11.618H18.975C22.5672 11.6438 24.6984 13.8781 24.9133 17.7883C25.0336 17.8398 25.1539 17.8914 25.2742 17.9516L25.2828 17.9945ZM19.1125 23.7953C20.5734 23.718 22.2406 23.1422 22.5242 19.6016C21.768 19.4383 20.9258 19.3523 20.032 19.3523C19.757 19.3523 19.482 19.3609 19.207 19.3781C16.7492 19.5156 15.9328 20.7102 15.993 21.7758C16.0703 23.2109 17.6258 23.8812 19.1211 23.8039L19.1125 23.7953Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_509_655\">\\n<rect width=\"38\" height=\"38\" rx=\"8\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-O61l2.framer-1vxkx5h, .framer-O61l2 .framer-1vxkx5h { display: block; }\",\".framer-O61l2.framer-8urpwx { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: flex-start; overflow: visible; padding: 60px 120px 30px 120px; position: relative; width: 1200px; }\",\".framer-O61l2 .framer-1muj0un { flex: none; height: 27px; position: relative; width: 175px; }\",\".framer-O61l2 .framer-pmdqzk { display: grid; flex: none; gap: 16px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(140px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 358px; }\",\".framer-O61l2 .framer-1hlptrt, .framer-O61l2 .framer-1ade6pi, .framer-O61l2 .framer-1nzyjts { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 100%; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-O61l2 .framer-1a5q7s, .framer-O61l2 .framer-14j1u4o, .framer-O61l2 .framer-1tm86qu, .framer-O61l2 .framer-nmqph8, .framer-O61l2 .framer-664gj6, .framer-O61l2 .framer-hh6o65, .framer-O61l2 .framer-w20uld, .framer-O61l2 .framer-1vaoyut, .framer-O61l2 .framer-2ef7ty, .framer-O61l2 .framer-lvmgav, .framer-O61l2 .framer-20v6zr, .framer-O61l2 .framer-ezl1na, .framer-O61l2 .framer-181sq3i, .framer-O61l2 .framer-m44cxu, .framer-O61l2 .framer-t5t11b, .framer-O61l2 .framer-tkc1ik, .framer-O61l2 .framer-1ota57o, .framer-O61l2 .framer-1x16bht, .framer-O61l2 .framer-ade1fu, .framer-O61l2 .framer-eaplou, .framer-O61l2 .framer-17bt8kk, .framer-O61l2 .framer-8rpu4w, .framer-O61l2 .framer-89y02q, .framer-O61l2 .framer-7ji0gt, .framer-O61l2 .framer-9f8ldg, .framer-O61l2 .framer-1l3dlut, .framer-O61l2 .framer-ligwzi, .framer-O61l2 .framer-1op4td4 { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-O61l2 .framer-17u544d, .framer-O61l2 .framer-ick0da, .framer-O61l2 .framer-10n2cjx, .framer-O61l2 .framer-1h2mxco, .framer-O61l2 .framer-6zafvr, .framer-O61l2 .framer-18446qg, .framer-O61l2 .framer-1xqcnl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-O61l2 .framer-i2n3cd { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 100%; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 130px; }\",\".framer-O61l2 .framer-1cdh07n, .framer-O61l2 .framer-yk60l9, .framer-O61l2 .framer-tbbu7z, .framer-O61l2 .framer-1nl3mq0, .framer-O61l2 .framer-kcr0nz, .framer-O61l2 .framer-8kljl1 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-O61l2 .framer-lo8ygm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-O61l2 .framer-1fhmjw5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-O61l2 .framer-1buc5gj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 220px; }\",\".framer-O61l2 .framer-1hn13qz { flex: none; height: 31px; position: relative; width: 201px; }\",\".framer-O61l2 .framer-ai53is, .framer-O61l2 .framer-56bya { flex: none; height: 181px; position: relative; width: 204px; }\",\".framer-O61l2 .framer-1vnpuwz, .framer-O61l2 .framer-5xpvft { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-O61l2 .framer-1a6kzvi { flex: none; height: 265px; overflow: hidden; position: relative; width: 46px; }\",\".framer-O61l2 .framer-1mgib89, .framer-O61l2 .framer-1u0s787, .framer-O61l2 .framer-1clj65m, .framer-O61l2 .framer-6xfafl { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-O61l2 .framer-wzte9q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 30px 50px 0px 0px; position: relative; width: 100%; }\",\".framer-O61l2 .framer-foumio { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 20px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 140px; }\",\".framer-O61l2 .framer-yhq72k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-O61l2 .framer-r4qtax, .framer-O61l2 .framer-6i36e9, .framer-O61l2 .framer-jff0cl { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 20px; }\",\".framer-O61l2 .framer-hjwx15 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-O61l2 .framer-gqofrx, .framer-O61l2 .framer-1fq2r95 { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-O61l2 .framer-brld1g, .framer-O61l2 .framer-kuwfc9, .framer-O61l2 .framer-sk7zan { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 20px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 20px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-O61l2.framer-8urpwx, .framer-O61l2 .framer-1hlptrt, .framer-O61l2 .framer-17u544d, .framer-O61l2 .framer-1ade6pi, .framer-O61l2 .framer-ick0da, .framer-O61l2 .framer-i2n3cd, .framer-O61l2 .framer-10n2cjx, .framer-O61l2 .framer-1nzyjts, .framer-O61l2 .framer-lo8ygm, .framer-O61l2 .framer-1fhmjw5, .framer-O61l2 .framer-1buc5gj, .framer-O61l2 .framer-1mgib89, .framer-O61l2 .framer-1h2mxco, .framer-O61l2 .framer-1u0s787, .framer-O61l2 .framer-6zafvr, .framer-O61l2 .framer-1clj65m, .framer-O61l2 .framer-18446qg, .framer-O61l2 .framer-6xfafl, .framer-O61l2 .framer-1xqcnl, .framer-O61l2 .framer-foumio, .framer-O61l2 .framer-yhq72k, .framer-O61l2 .framer-hjwx15, .framer-O61l2 .framer-brld1g, .framer-O61l2 .framer-kuwfc9, .framer-O61l2 .framer-sk7zan { gap: 0px; } .framer-O61l2.framer-8urpwx > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-O61l2.framer-8urpwx > :first-child, .framer-O61l2 .framer-1hlptrt > :first-child, .framer-O61l2 .framer-17u544d > :first-child, .framer-O61l2 .framer-1ade6pi > :first-child, .framer-O61l2 .framer-ick0da > :first-child, .framer-O61l2 .framer-i2n3cd > :first-child, .framer-O61l2 .framer-10n2cjx > :first-child, .framer-O61l2 .framer-1nzyjts > :first-child, .framer-O61l2 .framer-lo8ygm > :first-child, .framer-O61l2 .framer-1buc5gj > :first-child, .framer-O61l2 .framer-1mgib89 > :first-child, .framer-O61l2 .framer-1h2mxco > :first-child, .framer-O61l2 .framer-1u0s787 > :first-child, .framer-O61l2 .framer-6zafvr > :first-child, .framer-O61l2 .framer-1clj65m > :first-child, .framer-O61l2 .framer-18446qg > :first-child, .framer-O61l2 .framer-6xfafl > :first-child, .framer-O61l2 .framer-1xqcnl > :first-child { margin-top: 0px; } .framer-O61l2.framer-8urpwx > :last-child, .framer-O61l2 .framer-1hlptrt > :last-child, .framer-O61l2 .framer-17u544d > :last-child, .framer-O61l2 .framer-1ade6pi > :last-child, .framer-O61l2 .framer-ick0da > :last-child, .framer-O61l2 .framer-i2n3cd > :last-child, .framer-O61l2 .framer-10n2cjx > :last-child, .framer-O61l2 .framer-1nzyjts > :last-child, .framer-O61l2 .framer-lo8ygm > :last-child, .framer-O61l2 .framer-1buc5gj > :last-child, .framer-O61l2 .framer-1mgib89 > :last-child, .framer-O61l2 .framer-1h2mxco > :last-child, .framer-O61l2 .framer-1u0s787 > :last-child, .framer-O61l2 .framer-6zafvr > :last-child, .framer-O61l2 .framer-1clj65m > :last-child, .framer-O61l2 .framer-18446qg > :last-child, .framer-O61l2 .framer-6xfafl > :last-child, .framer-O61l2 .framer-1xqcnl > :last-child { margin-bottom: 0px; } .framer-O61l2 .framer-1hlptrt > *, .framer-O61l2 .framer-1ade6pi > *, .framer-O61l2 .framer-i2n3cd > *, .framer-O61l2 .framer-1nzyjts > *, .framer-O61l2 .framer-1mgib89 > *, .framer-O61l2 .framer-1u0s787 > *, .framer-O61l2 .framer-1clj65m > *, .framer-O61l2 .framer-6xfafl > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-O61l2 .framer-17u544d > *, .framer-O61l2 .framer-ick0da > *, .framer-O61l2 .framer-10n2cjx > *, .framer-O61l2 .framer-lo8ygm > *, .framer-O61l2 .framer-1h2mxco > *, .framer-O61l2 .framer-6zafvr > *, .framer-O61l2 .framer-18446qg > *, .framer-O61l2 .framer-1xqcnl > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-O61l2 .framer-1fhmjw5 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-O61l2 .framer-1fhmjw5 > :first-child, .framer-O61l2 .framer-foumio > :first-child, .framer-O61l2 .framer-yhq72k > :first-child, .framer-O61l2 .framer-hjwx15 > :first-child, .framer-O61l2 .framer-brld1g > :first-child, .framer-O61l2 .framer-kuwfc9 > :first-child, .framer-O61l2 .framer-sk7zan > :first-child { margin-left: 0px; } .framer-O61l2 .framer-1fhmjw5 > :last-child, .framer-O61l2 .framer-foumio > :last-child, .framer-O61l2 .framer-yhq72k > :last-child, .framer-O61l2 .framer-hjwx15 > :last-child, .framer-O61l2 .framer-brld1g > :last-child, .framer-O61l2 .framer-kuwfc9 > :last-child, .framer-O61l2 .framer-sk7zan > :last-child { margin-right: 0px; } .framer-O61l2 .framer-1buc5gj > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-O61l2 .framer-foumio > *, .framer-O61l2 .framer-yhq72k > *, .framer-O61l2 .framer-hjwx15 > *, .framer-O61l2 .framer-brld1g > *, .framer-O61l2 .framer-kuwfc9 > *, .framer-O61l2 .framer-sk7zan > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-O61l2.framer-v-vrto1q.framer-8urpwx { padding: 60px 64px 30px 64px; width: 810px; }\",\".framer-O61l2.framer-v-vrto1q .framer-1buc5gj, .framer-O61l2.framer-v-vq02vc .framer-1buc5gj { width: 181px; }\",\".framer-O61l2.framer-v-vrto1q .framer-1hn13qz, .framer-O61l2.framer-v-vq02vc .framer-1hn13qz { height: 28px; width: 183px; }\",\".framer-O61l2.framer-v-kis9je.framer-8urpwx { gap: 24px; height: 522px; padding: 32px 16px 32px 16px; width: 390px; }\",\".framer-O61l2.framer-v-kis9je .framer-1vaoyut, .framer-O61l2.framer-v-tsabjr .framer-1vaoyut { order: 1; }\",\".framer-O61l2.framer-v-kis9je .framer-lvmgav, .framer-O61l2.framer-v-tsabjr .framer-lvmgav { order: 0; }\",\".framer-O61l2.framer-v-kis9je .framer-wzte9q, .framer-O61l2.framer-v-tsabjr .framer-wzte9q { flex-direction: column; gap: 10px; justify-content: center; padding: 30px 0px 0px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-O61l2.framer-v-kis9je.framer-8urpwx, .framer-O61l2.framer-v-kis9je .framer-wzte9q { gap: 0px; } .framer-O61l2.framer-v-kis9je.framer-8urpwx > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-O61l2.framer-v-kis9je.framer-8urpwx > :first-child, .framer-O61l2.framer-v-kis9je .framer-wzte9q > :first-child { margin-top: 0px; } .framer-O61l2.framer-v-kis9je.framer-8urpwx > :last-child, .framer-O61l2.framer-v-kis9je .framer-wzte9q > :last-child { margin-bottom: 0px; } .framer-O61l2.framer-v-kis9je .framer-wzte9q > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-O61l2.framer-v-vq02vc.framer-8urpwx { padding: 60px 54px 30px 64px; width: 810px; }\",\".framer-O61l2.framer-v-vq02vc .framer-1fhmjw5 { gap: 32px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-O61l2.framer-v-vq02vc .framer-1fhmjw5 { gap: 0px; } .framer-O61l2.framer-v-vq02vc .framer-1fhmjw5 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-O61l2.framer-v-vq02vc .framer-1fhmjw5 > :first-child { margin-left: 0px; } .framer-O61l2.framer-v-vq02vc .framer-1fhmjw5 > :last-child { margin-right: 0px; } }\",\".framer-O61l2.framer-v-tsabjr.framer-8urpwx { gap: 24px; height: 522px; padding: 32px 16px 32px 16px; width: 320px; }\",\".framer-O61l2.framer-v-tsabjr .framer-1muj0un { height: 23px; width: 149px; }\",\".framer-O61l2.framer-v-tsabjr .framer-pmdqzk { max-width: unset; width: min-content; }\",\".framer-O61l2.framer-v-tsabjr .framer-8kljl1 { overflow: hidden; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-O61l2.framer-v-tsabjr.framer-8urpwx, .framer-O61l2.framer-v-tsabjr .framer-wzte9q { gap: 0px; } .framer-O61l2.framer-v-tsabjr.framer-8urpwx > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-O61l2.framer-v-tsabjr.framer-8urpwx > :first-child, .framer-O61l2.framer-v-tsabjr .framer-wzte9q > :first-child { margin-top: 0px; } .framer-O61l2.framer-v-tsabjr.framer-8urpwx > :last-child, .framer-O61l2.framer-v-tsabjr .framer-wzte9q > :last-child { margin-bottom: 0px; } .framer-O61l2.framer-v-tsabjr .framer-wzte9q > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-O61l2[data-border=\"true\"]::after, .framer-O61l2 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 451\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"VPEXs_aMd\":{\"layout\":[\"fixed\",\"auto\"]},\"NS0Adpr9c\":{\"layout\":[\"fixed\",\"fixed\"]},\"f0Q308X_5\":{\"layout\":[\"fixed\",\"auto\"]},\"EFsEtJrEB\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameroPQNrPgA7=withCSS(Component,css,\"framer-O61l2\");export default FrameroPQNrPgA7;FrameroPQNrPgA7.displayName=\"Footer Dark\";FrameroPQNrPgA7.defaultProps={height:451,width:1200};addPropertyControls(FrameroPQNrPgA7,{variant:{options:[\"XdeD7JEvE\",\"VPEXs_aMd\",\"NS0Adpr9c\",\"f0Q308X_5\",\"EFsEtJrEB\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\",\"Semi-Tab\",\"Mobile - XXS\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameroPQNrPgA7,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroPQNrPgA7\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"451\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VPEXs_aMd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NS0Adpr9c\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"f0Q308X_5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EFsEtJrEB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./oPQNrPgA7.map"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "useStore", "createStore", "withGetAccurateYear", "Component", "year", "props", "p", "centerContent", "defaultContainerStyles", "centerContent", "useStore", "createStore", "withGetAccurateYear", "Component", "year", "props", "p", "fontStore", "fonts", "css", "className", "RichTextWithGetAccurateYear", "withGetAccurateYear", "RichText2", "MotionFooterWithGetAccurateYear1", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "Link", "Image2", "css", "FrameroPQNrPgA7", "withCSS", "oPQNrPgA7_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
