{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/icon-nullstate.js@0.7.0", "ssg:https://framer.com/m/feather-icons/home.js@0.0.29", "ssg:https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js", "ssg:https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js", "ssg:https://framerusercontent.com/modules/R9MCkchpmPH7EnbIilYq/5vKExpiTMZC8vXqq9YTe/mt0YYhbkq.js", "ssg:https://framerusercontent.com/modules/rg0NYs8C4jLJigCJoT5S/ExSyaG1XM0XNgfgrayrg/TqlaACZGc.js", "ssg:https://framerusercontent.com/modules/T1lWnkKXxY51lxcRChBy/7YVtKaWvlafRG5fHHlxa/z6uFPIhIM.js", "ssg:https://framerusercontent.com/modules/j1RMsiihinqZhrFmgk3S/dQdv3PIQIzXQ7tCgobt0/e2z90mHnl.js"],
  "sourcesContent": ["import { jsx as _jsx } from \"react/jsx-runtime\";\nimport * as React from \"react\";\nexport const containerStyles = {\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nconst nullIconStyle = {\n    minWidth: \"10px\",\n    minHeight: \"10px\",\n    maxWidth: \"20px\",\n    maxHeight: \"20px\",\n    width: \"60%\",\n    height: \"60%\"\n};\nconst emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(149, 149, 149, 0.1)\",\n    border: \"1px dashed rgba(149, 149, 149, 0.15)\",\n    color: \"#a5a5a5\",\n    flexDirection: \"column\"\n};\nexport const NullState = /*#__PURE__*/ React.forwardRef((_, ref)=>{\n    return(/*#__PURE__*/ _jsx(\"div\", {\n        style: emptyStateStyle,\n        ref: ref\n    }));\n}) /*\n\n<svg\n                xmlns=\"http://www.w3.org/2000/svg\"\n                viewBox=\"0 0 30 30\"\n                style={nullIconStyle}\n            >\n                <path\n                    d=\"M 12.857 0 C 19.958 0 25.714 5.756 25.714 12.857 C 25.714 19.958 19.958 25.714 12.857 25.714 C 5.756 25.714 0 19.958 0 12.857 C 0 5.756 5.756 0 12.857 0 Z\"\n                    fill=\"#FFFFFF\"\n                ></path>\n                <path\n                    d=\"M 20.357 20.357 L 27.857 27.857\"\n                    fill=\"transparent\"\n                    strokeWidth=\"4.28\"\n                    stroke=\"#FFFFFF\"\n                    strokeLinecap=\"round\"\n                ></path>\n                <g transform=\"translate(9.643 6.429)\">\n                    <path\n                        d=\"M 3.214 12.857 L 3.214 12.857\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.75\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                    ></path>\n                    <path\n                        d=\"M 0 3.214 C 0 1.004 1.843 0 3.214 0 C 4.586 0 6.429 0.603 6.429 3.214 C 6.429 5.826 3.214 5.913 3.214 7.232 C 3.214 8.552 3.214 8.571 3.214 8.571\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.22\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                        strokeLinejoin=\"round\"\n                    ></path>\n                </g>\n            </svg>\n            */ ;\n\nexport const __FramerMetadata__ = {\"exports\":{\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"NullState\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./nullstate.map", "let r;var s=o=>{if(!r){const n=o.forwardRef(({color:t=\"currentColor\",size:e=24,...i},l)=>o.createElement(\"svg\",{ref:l,xmlns:\"http://www.w3.org/2000/svg\",width:e,height:e,viewBox:\"0 0 24 24\",fill:\"none\",stroke:t,strokeWidth:\"2\",strokeLinecap:\"round\",strokeLinejoin:\"round\",...i},o.createElement(\"path\",{d:\"M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z\"}),o.createElement(\"polyline\",{points:\"9 22 9 12 15 12 15 22\"})));n.displayName=\"Home\",r=n}return r};export{s as default};\n", "import{useMemo}from\"react\";import{ControlType}from\"framer\";/*\n ** ICON UTILS\n ** Pull as much re-usable logic into here as possible\n ** This will make it easier to replace in all icon components\n */ export const containerStyles={width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};export const defaultEvents={onClick:{type:ControlType.EventHandler},onMouseDown:{type:ControlType.EventHandler},onMouseUp:{type:ControlType.EventHandler},onMouseEnter:{type:ControlType.EventHandler},onMouseLeave:{type:ControlType.EventHandler}};const findByArray=(arr,search)=>arr.find(a=>a.toLowerCase().includes(search));export function getIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// gotta get the exact match first THEN find\n// have a set and try to access ?\nif(selectByList)return iconSelection;if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;}export function useIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// Clean search term\nconst iconSearchResult=useMemo(()=>{if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;},[iconSelection,iconSearch]);const name=selectByList?iconSelection:iconSearchResult;return name;}\nexport const __FramerMetadata__ = {\"exports\":{\"getIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/feather-icons/home.js@0.0.29\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"activity\",\"airplay\",\"alert-circle\",\"alert-octagon\",\"alert-triangle\",\"align-center\",\"align-justify\",\"align-left\",\"align-right\",\"anchor\",\"aperture\",\"archive\",\"arrow-down\",\"arrow-down-circle\",\"arrow-down-left\",\"arrow-down-right\",\"arrow-left\",\"arrow-left-circle\",\"arrow-right\",\"arrow-right-circle\",\"arrow-up\",\"arrow-up-circle\",\"arrow-up-left\",\"arrow-up-right\",\"at-sign\",\"award\",\"bar-chart\",\"bar-chart-2\",\"battery\",\"battery-charging\",\"bell\",\"bell-off\",\"bluetooth\",\"bold\",\"book\",\"book-open\",\"bookmark\",\"box\",\"briefcase\",\"calendar\",\"camera\",\"camera-off\",\"cast\",\"check\",\"check-circle\",\"check-square\",\"chevron-down\",\"chevron-left\",\"chevron-right\",\"chevron-up\",\"chevrons-down\",\"chevrons-left\",\"chevrons-right\",\"chevrons-up\",\"chrome\",\"circle\",\"clipboard\",\"clock\",\"cloud\",\"cloud-drizzle\",\"cloud-lightning\",\"cloud-off\",\"cloud-rain\",\"cloud-snow\",\"code\",\"codepen\",\"codesandbox\",\"coffee\",\"columns\",\"command\",\"compass\",\"copy\",\"corner-down-left\",\"corner-down-right\",\"corner-left-down\",\"corner-left-up\",\"corner-right-down\",\"corner-right-up\",\"corner-up-left\",\"corner-up-right\",\"cpu\",\"credit-card\",\"crop\",\"crosshair\",\"database\",\"delete\",\"disc\",\"divide\",\"divide-circle\",\"divide-square\",\"dollar-sign\",\"download\",\"download-cloud\",\"dribbble\",\"droplet\",\"edit\",\"edit-2\",\"edit-3\",\"external-link\",\"eye\",\"eye-off\",\"facebook\",\"fast-forward\",\"feather\",\"figma\",\"file\",\"file-minus\",\"file-plus\",\"file-text\",\"film\",\"filter\",\"flag\",\"folder\",\"folder-minus\",\"folder-plus\",\"framer\",\"frown\",\"gift\",\"git-branch\",\"git-commit\",\"git-merge\",\"git-pull-request\",\"github\",\"gitlab\",\"globe\",\"grid\",\"hard-drive\",\"hash\",\"headphones\",\"heart\",\"help-circle\",\"hexagon\",\"home\",\"image\",\"inbox\",\"info\",\"instagram\",\"italic\",\"key\",\"layers\",\"layout\",\"life-buoy\",\"link\",\"link-2\",\"linkedin\",\"list\",\"loader\",\"lock\",\"log-in\",\"log-out\",\"mail\",\"map\",\"map-pin\",\"maximize\",\"maximize-2\",\"meh\",\"menu\",\"message-circle\",\"message-square\",\"mic\",\"mic-off\",\"minimize\",\"minimize-2\",\"minus\",\"minus-circle\",\"minus-square\",\"monitor\",\"moon\",\"more-horizontal\",\"more-vertical\",\"mouse-pointer\",\"move\",\"music\",\"navigation\",\"navigation-2\",\"octagon\",\"package\",\"paperclip\",\"pause\",\"pause-circle\",\"pen-tool\",\"percent\",\"phone\",\"phone-call\",\"phone-forwarded\",\"phone-incoming\",\"phone-missed\",\"phone-off\",\"phone-outgoing\",\"pie-chart\",\"play\",\"play-circle\",\"plus\",\"plus-circle\",\"plus-square\",\"pocket\",\"power\",\"printer\",\"radio\",\"refresh-ccw\",\"refresh-cw\",\"repeat\",\"rewind\",\"rotate-ccw\",\"rotate-cw\",\"rss\",\"save\",\"scissors\",\"search\",\"send\",\"server\",\"settings\",\"share\",\"share-2\",\"shield\",\"shield-off\",\"shopping-bag\",\"shopping-cart\",\"shuffle\",\"sidebar\",\"skip-back\",\"skip-forward\",\"slack\",\"slash\",\"sliders\",\"smartphone\",\"smile\",\"speaker\",\"square\",\"star\",\"stop-circle\",\"sun\",\"sunrise\",\"sunset\",\"tablet\",\"tag\",\"target\",\"terminal\",\"thermometer\",\"thumbs-down\",\"thumbs-up\",\"toggle-left\",\"toggle-right\",\"tool\",\"trash\",\"trash-2\",\"trello\",\"trending-down\",\"trending-up\",\"triangle\",\"truck\",\"tv\",\"twitch\",\"twitter\",\"type\",\"umbrella\",\"underline\",\"unlock\",\"upload\",\"upload-cloud\",\"user\",\"user-check\",\"user-minus\",\"user-plus\",\"user-x\",\"users\",\"video\",\"video-off\",\"voicemail\",\"volume\",\"volume-1\",\"volume-2\",\"volume-x\",\"watch\",\"wifi\",\"wifi-off\",\"wind\",\"x\",\"x-circle\",\"x-octagon\",\"x-square\",\"youtube\",\"zap\",\"zap-off\",\"zoom-in\",\"zoom-out\",];const moduleBaseUrl=\"https://framer.com/m/feather-icons/\";const uppercaseIconKeys=iconKeys.map(name=>name.charAt(0).toUpperCase()+name.slice(1));const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * FEATHER\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){let active=true;// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.29`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);// console.log(module.default)\nif(active)setSelectedIcon(module.default(React));}catch(e){console.log(e);if(active)setSelectedIcon(null);}return()=>{active=false;};}// Import module when new style or icon is selected\nuseEffect(()=>{importModule();},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(\"div\",{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(SelectedIcon,{style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Feather\";Icon.defaultProps={width:24,height:24,iconSelection:\"home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,optionTitles:uppercaseIconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Feather site](https://feathericons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"iconKeys\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Feather.map", "// Generated by Framer (4c8d0fb)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-LFMjR .framer-styles-preset-l469s5:not(.rich-text-wrapper), .framer-LFMjR .framer-styles-preset-l469s5.rich-text-wrapper a { --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #26cdfc; --framer-link-hover-text-decoration: none; --framer-link-text-color: #ffffff; --framer-link-text-decoration: none; }\"];export const className=\"framer-LFMjR\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ff86393)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/R9MCkchpmPH7EnbIilYq/5vKExpiTMZC8vXqq9YTe/mt0YYhbkq.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/IifgKxrksNMWd81xdrr4/4Lt4x3qzA359EnKE1hh2/P3UKMSR45.js\";const FeatherFonts=getFonts(Feather);const cycleOrder=[\"gyF3dlSur\",\"p5J8UQFXW\",\"O8qaIYAO6\",\"SSdksUDKn\",\"bKpvYE6Kd\",\"mxjpjqGpK\",\"jTHi8JlFL\",\"DQunNjngh\"];const serializationHash=\"framer-yl05j\";const variantClassNames={bKpvYE6Kd:\"framer-v-1xdcpuc\",DQunNjngh:\"framer-v-mg2c9f\",gyF3dlSur:\"framer-v-1uzyjak\",jTHi8JlFL:\"framer-v-1cun5ly\",mxjpjqGpK:\"framer-v-1tz8ke\",O8qaIYAO6:\"framer-v-1hiqbn\",p5J8UQFXW:\"framer-v-b904oo\",SSdksUDKn:\"framer-v-1ekqd0j\"};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 transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition2={bounce:.25,delay:0,duration:.7,type:\"spring\"};const animation={backgroundColor:\"rgba(255, 255, 255, 0.16)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,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 transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Main en\":\"gyF3dlSur\",\"Main-ru\":\"bKpvYE6Kd\",\"Mobile ru open\":\"DQunNjngh\",\"Mobile ru\":\"jTHi8JlFL\",\"Tablet-ru\":\"mxjpjqGpK\",\"Variant 3\":\"O8qaIYAO6\",\"Variant 4\":\"SSdksUDKn\",Tablet:\"p5J8UQFXW\"};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:\"gyF3dlSur\"};};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:\"gyF3dlSur\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onClick1dux9wo=activeVariantCallback(async(...args)=>{setVariant(\"SSdksUDKn\");});const onClick44na0n=activeVariantCallback(async(...args)=>{setVariant(\"O8qaIYAO6\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"O8qaIYAO6\",\"SSdksUDKn\",\"jTHi8JlFL\",\"DQunNjngh\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"O8qaIYAO6\",\"SSdksUDKn\",\"jTHi8JlFL\",\"DQunNjngh\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"SSdksUDKn\",\"DQunNjngh\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"O8qaIYAO6\",\"jTHi8JlFL\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1uzyjak\",className,classNames),\"data-framer-name\":\"Main en\",layoutDependency:layoutDependency,layoutId:\"gyF3dlSur\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(6, 16, 24, 0.5)\",WebkitBackdropFilter:\"blur(10px)\",...style},variants:{DQunNjngh:{backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",WebkitBackdropFilter:\"none\"},jTHi8JlFL:{backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",WebkitBackdropFilter:\"none\"},O8qaIYAO6:{backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",WebkitBackdropFilter:\"none\"},SSdksUDKn:{backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",WebkitBackdropFilter:\"none\"}},...addPropertyOverrides({bKpvYE6Kd:{\"data-framer-name\":\"Main-ru\"},DQunNjngh:{\"data-framer-name\":\"Mobile ru open\"},jTHi8JlFL:{\"data-framer-name\":\"Mobile ru\"},mxjpjqGpK:{\"data-framer-name\":\"Tablet-ru\"},O8qaIYAO6:{\"data-framer-name\":\"Variant 3\"},p5J8UQFXW:{\"data-framer-name\":\"Tablet\"},SSdksUDKn:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-eo86ym\",layoutDependency:layoutDependency,layoutId:\"quglF9Csp\",style:{backdropFilter:\"blur(10px)\",backgroundColor:\"rgb(255, 255, 255)\",WebkitBackdropFilter:\"blur(10px)\"},variants:{DQunNjngh:{backgroundColor:\"rgba(6, 16, 24, 0.5)\"},jTHi8JlFL:{backgroundColor:\"rgba(6, 16, 24, 0.5)\"},O8qaIYAO6:{backgroundColor:\"rgba(6, 16, 24, 0.5)\"},SSdksUDKn:{backgroundColor:\"rgba(6, 16, 24, 0.5)\"}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7sk3x3\",layoutDependency:layoutDependency,layoutId:\"EFKbjCin7\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WnyEBmrOH\"},nodeId:\"L2vlejiwD\",...addPropertyOverrides({bKpvYE6Kd:{href:{webPageId:\"augiA20Il\"},openInNewTab:false},DQunNjngh:{href:{webPageId:\"augiA20Il\"},openInNewTab:false},jTHi8JlFL:{href:{webPageId:\"augiA20Il\"},openInNewTab:false},mxjpjqGpK:{href:{webPageId:\"augiA20Il\"},openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1i6fu35 framer-1dfuvid\",\"data-framer-name\":\"Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:146,layoutDependency:layoutDependency,layoutId:\"L2vlejiwD\",svg:'<svg width=\"146\" height=\"36\" viewBox=\"0 0 146 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M37.8137 0.246399L30.8901 22.0312L23.9666 0.246399H15.0879L26.4508 35.9997H35.3295L42.253 14.2149L49.1766 35.9998H58.0553L62.4947 22.0313H53.616L46.6924 0.246399H37.8137Z\" fill=\"white\"/>\\n<path d=\"M77.0662 13.9685L83.9898 35.7534H92.8686L81.5056 0H72.6269L68.1875 13.9685H77.0662Z\" fill=\"white\"/>\\n<path d=\"M9.57617 16.4369L1.12006 16.4369L1.12006 35.7536L9.57616 35.7536L9.57617 16.4369Z\" fill=\"white\"/>\\n<path d=\"M5.34812 0H9.57617L5.49685 12.8357H1.12006V0H5.34812Z\" fill=\"url(#paint0_linear_12795_2791)\"/>\\n<path d=\"M87.1168 8.76302L84.4102 0.246399H113.816L113.816 8.76302H103.341V35.9998H94.8852V8.76302H87.1168Z\" fill=\"white\"/>\\n<path d=\"M116.594 8.76302L116.594 0.246399H146L146 8.76302H135.525V35.9998H127.069V8.76302H116.594Z\" fill=\"white\"/>\\n<path d=\"M54.6084 18.9081H66.6181L61.2645 35.7533L76.0741 17.0918H64.0644L69.4181 0.246399L54.6084 18.9081Z\" fill=\"url(#paint1_linear_12795_2791)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_12795_2791\" x1=\"5.33593\" y1=\"2.67205\" x2=\"8.46632\" y2=\"10.197\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#0AE8FE\"/>\\n<stop offset=\"1\" stop-color=\"#2A83FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_12795_2791\" x1=\"65.4329\" y1=\"20.081\" x2=\"65.4329\" y2=\"32.7283\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#0AE8FE\"/>\\n<stop offset=\"1\" stop-color=\"#2A83FF\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tyksnq\",\"data-framer-name\":\"Navigation\",layoutDependency:layoutDependency,layoutId:\"gYPJ7wVel\",style:{borderBottomLeftRadius:70,borderBottomRightRadius:70,borderTopLeftRadius:70,borderTopRightRadius:70},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":tTGMfDnHj\",webPageId:\"WnyEBmrOH\"},nodeId:\"e1ntvoq5S\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l469s5\",\"data-styles-preset\":\"mt0YYhbkq\",children:\"Features\"})})})}),className:\"framer-53e5t3\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"e1ntvoq5S\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bKpvYE6Kd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":wvkuttyJF\",webPageId:\"augiA20Il\"},nodeId:\"e1ntvoq5S\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l469s5\",\"data-styles-preset\":\"mt0YYhbkq\",children:\"\u0423\u0441\u043B\u0443\u0433\u0438\"})})})})},mxjpjqGpK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\u0423\u0441\u043B\u0443\u0433\u0438\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":JL8h_FEkL\",webPageId:\"WnyEBmrOH\"},nodeId:\"KeVXtO1fd\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l469s5\",\"data-styles-preset\":\"mt0YYhbkq\",children:\"Application\"})})})}),className:\"framer-1s5auqh\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KeVXtO1fd\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bKpvYE6Kd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":mnRTSTXrh\",webPageId:\"augiA20Il\"},nodeId:\"KeVXtO1fd\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l469s5\",\"data-styles-preset\":\"mt0YYhbkq\",children:\"\u041F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0438\u0435\"})})})})},mxjpjqGpK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\u041F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0438\u0435\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":EHzYKspuK\",webPageId:\"WnyEBmrOH\"},nodeId:\"XFcGlruDd\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l469s5\",\"data-styles-preset\":\"mt0YYhbkq\",children:\"Statistics\"})})})}),className:\"framer-14g72qo\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XFcGlruDd\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bKpvYE6Kd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":VECf58uyZ\",webPageId:\"augiA20Il\"},nodeId:\"XFcGlruDd\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l469s5\",\"data-styles-preset\":\"mt0YYhbkq\",children:\"\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0430\"})})})})},mxjpjqGpK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0430\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":IMP41zePY\",webPageId:\"WnyEBmrOH\"},nodeId:\"VH8STDhVn\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l469s5\",\"data-styles-preset\":\"mt0YYhbkq\",children:\"F.A.Q.\"})})})}),className:\"framer-1mzpjsr\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VH8STDhVn\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bKpvYE6Kd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":GJaJ_InP6\",webPageId:\"augiA20Il\"},nodeId:\"VH8STDhVn\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l469s5\",\"data-styles-preset\":\"mt0YYhbkq\",children:\"\u0427.\u0417.\u0412\"})})})})},mxjpjqGpK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\u0427.\u0417.\u0412\"})})}},baseVariant,gestureVariant)})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t08s6q\",layoutDependency:layoutDependency,layoutId:\"Lu3CA5Y_p\",children:[isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uto57v\",\"data-framer-name\":\"Navigation\",layoutDependency:layoutDependency,layoutId:\"Ylp0k40BQ\",style:{borderBottomLeftRadius:70,borderBottomRightRadius:70,borderTopLeftRadius:70,borderTopRightRadius:70},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"vwjmb738z\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bt4ci1\",\"data-styles-preset\":\"P3UKMSR45\",children:\"RU\"})})})}),className:\"framer-17304ic\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vwjmb738z\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bKpvYE6Kd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"RU\"})})},mxjpjqGpK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"RU\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-46byh1\",layoutDependency:layoutDependency,layoutId:\"kCkfotrbv\",style:{backgroundColor:\"rgb(140, 145, 150)\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"EN\"})}),className:\"framer-16r351a\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PjDOaarJ7\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bKpvYE6Kd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WnyEBmrOH\"},nodeId:\"PjDOaarJ7\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bt4ci1\",\"data-styles-preset\":\"P3UKMSR45\",children:\"EN\"})})})})},mxjpjqGpK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WnyEBmrOH\"},nodeId:\"PjDOaarJ7\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bt4ci1\",\"data-styles-preset\":\"P3UKMSR45\",children:\"EN\"})})})})}},baseVariant,gestureVariant)})]}),isDisplayed3()&&/*#__PURE__*/_jsx(Link,{href:{hash:\":UbSIBCY1V\",webPageId:\"WnyEBmrOH\"},nodeId:\"n9IIj69XJ\",openInNewTab:false,smoothScroll:true,...addPropertyOverrides({bKpvYE6Kd:{href:{hash:\":inxSS_aaY\",webPageId:\"augiA20Il\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-epfeg2 framer-1dfuvid\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"n9IIj69XJ\",style:{backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,WebkitBackdropFilter:\"blur(10px)\"},whileHover:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Contact us\"})}),className:\"framer-4shdd0\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"I12795:2806;12621:7908\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bKpvYE6Kd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\u0421\u0432\u044F\u0437\u0430\u0442\u044C\u0441\u044F\"})})},mxjpjqGpK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\u0421\u0432\u044F\u0437\u0430\u0442\u044C\u0441\u044F\"})})}},baseVariant,gestureVariant)})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10dlovw-container\",layoutDependency:layoutDependency,layoutId:\"QpPoRDPBX-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"menu\",iconSelection:\"home\",id:\"QpPoRDPBX\",layoutId:\"QpPoRDPBX\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({DQunNjngh:{iconSearch:\"x\",onClick:onClick44na0n},jTHi8JlFL:{onClick:onClick1dux9wo},O8qaIYAO6:{onClick:onClick1dux9wo},SSdksUDKn:{iconSearch:\"x\",onClick:onClick44na0n}},baseVariant,gestureVariant)})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a7ix8m\",\"data-framer-name\":\"Navigation\",layoutDependency:layoutDependency,layoutId:\"Wr_Z9CWnP\",style:{borderBottomLeftRadius:70,borderBottomRightRadius:70,borderTopLeftRadius:70,borderTopRightRadius:70},children:[/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({jTHi8JlFL:{value:transition1},O8qaIYAO6:{value:transition1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":wvkuttyJF\",webPageId:\"augiA20Il\"},nodeId:\"bkJC1lM0n\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bt4ci1\",\"data-styles-preset\":\"P3UKMSR45\",children:\"\u0423\u0434\u043E\u0431\u0441\u0442\u0432\u0430\"})})})}),className:\"framer-8p00gb\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"bkJC1lM0n\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:1},variants:{jTHi8JlFL:{opacity:0},O8qaIYAO6:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DQunNjngh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":wvkuttyJF\",webPageId:\"augiA20Il\"},nodeId:\"bkJC1lM0n\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bt4ci1\",\"data-styles-preset\":\"P3UKMSR45\",children:\"\u0423\u0441\u043B\u0443\u0433\u0438\"})})})})},jTHi8JlFL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":wvkuttyJF\",webPageId:\"augiA20Il\"},nodeId:\"bkJC1lM0n\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bt4ci1\",\"data-styles-preset\":\"P3UKMSR45\",children:\"\u0423\u0441\u043B\u0443\u0433\u0438\"})})})})},O8qaIYAO6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":wvkuttyJF\",webPageId:\"augiA20Il\"},nodeId:\"bkJC1lM0n\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bt4ci1\",\"data-styles-preset\":\"P3UKMSR45\",children:\"Features\"})})})})},SSdksUDKn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":wvkuttyJF\",webPageId:\"augiA20Il\"},nodeId:\"bkJC1lM0n\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bt4ci1\",\"data-styles-preset\":\"P3UKMSR45\",children:\"Features\"})})})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({jTHi8JlFL:{value:transition1},O8qaIYAO6:{value:transition1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":bzoyao2mR\",webPageId:\"augiA20Il\"},nodeId:\"YlM0sGLbG\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bt4ci1\",\"data-styles-preset\":\"P3UKMSR45\",children:\"\u041F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0438\u0435\"})})})}),className:\"framer-18i4kco\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YlM0sGLbG\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:1},variants:{jTHi8JlFL:{opacity:0},O8qaIYAO6:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({O8qaIYAO6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":bzoyao2mR\",webPageId:\"augiA20Il\"},nodeId:\"YlM0sGLbG\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bt4ci1\",\"data-styles-preset\":\"P3UKMSR45\",children:\"Application\"})})})})},SSdksUDKn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":bzoyao2mR\",webPageId:\"augiA20Il\"},nodeId:\"YlM0sGLbG\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bt4ci1\",\"data-styles-preset\":\"P3UKMSR45\",children:\"Application\"})})})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({jTHi8JlFL:{value:transition1},O8qaIYAO6:{value:transition1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":VECf58uyZ\",webPageId:\"augiA20Il\"},nodeId:\"H_iyVG9Za\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bt4ci1\",\"data-styles-preset\":\"P3UKMSR45\",children:\"\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0430\"})})})}),className:\"framer-c049kl\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"H_iyVG9Za\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:1},variants:{jTHi8JlFL:{opacity:0},O8qaIYAO6:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jTHi8JlFL:{transformTemplate:transformTemplate2},O8qaIYAO6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":VECf58uyZ\",webPageId:\"augiA20Il\"},nodeId:\"H_iyVG9Za\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bt4ci1\",\"data-styles-preset\":\"P3UKMSR45\",children:\"Statistics\"})})})}),transformTemplate:transformTemplate2},SSdksUDKn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":VECf58uyZ\",webPageId:\"augiA20Il\"},nodeId:\"H_iyVG9Za\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bt4ci1\",\"data-styles-preset\":\"P3UKMSR45\",children:\"Statistics\"})})})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({jTHi8JlFL:{value:transition1},O8qaIYAO6:{value:transition1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":GJaJ_InP6\",webPageId:\"augiA20Il\"},nodeId:\"VBzbV6LUA\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bt4ci1\",\"data-styles-preset\":\"P3UKMSR45\",children:\"\u0427.\u0417.\u0412\"})})})}),className:\"framer-1plx03c\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VBzbV6LUA\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:1},variants:{jTHi8JlFL:{opacity:0},O8qaIYAO6:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({O8qaIYAO6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":GJaJ_InP6\",webPageId:\"augiA20Il\"},nodeId:\"VBzbV6LUA\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bt4ci1\",\"data-styles-preset\":\"P3UKMSR45\",children:\"F.A.Q.\"})})})})},SSdksUDKn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":GJaJ_InP6\",webPageId:\"augiA20Il\"},nodeId:\"VBzbV6LUA\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bt4ci1\",\"data-styles-preset\":\"P3UKMSR45\",children:\"F.A.Q.\"})})})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e0z9ik\",layoutDependency:layoutDependency,layoutId:\"bs1vALODO\",style:{opacity:1},variants:{jTHi8JlFL:{opacity:0},O8qaIYAO6:{opacity:0}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fvs8mu\",\"data-framer-name\":\"Navigation\",layoutDependency:layoutDependency,layoutId:\"CxUPVfDf0\",style:{borderBottomLeftRadius:70,borderBottomRightRadius:70,borderTopLeftRadius:70,borderTopRightRadius:70},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"RU\"})}),className:\"framer-3n5mh8\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KiTHn5xyh\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({SSdksUDKn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"KiTHn5xyh\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bt4ci1\",\"data-styles-preset\":\"P3UKMSR45\",children:\"RU\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vwpmot\",layoutDependency:layoutDependency,layoutId:\"ksm64QH1U\",style:{backgroundColor:\"rgb(140, 145, 150)\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(140, 145, 150))\"},children:\"EN\"})}),className:\"framer-o08vna\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xM_xqMcDc\",style:{\"--extracted-r6o4lv\":\"rgb(140, 145, 150)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{SSdksUDKn:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DQunNjngh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(140, 145, 150))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WnyEBmrOH\"},nodeId:\"xM_xqMcDc\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bt4ci1\",\"data-styles-preset\":\"P3UKMSR45\",children:\"EN\"})})})})},SSdksUDKn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"EN\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(Link,{href:{hash:\":kRc1iBJa3\",webPageId:\"augiA20Il\"},nodeId:\"deTDPye1m\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-x5ldq6 framer-1dfuvid\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"deTDPye1m\",style:{backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,WebkitBackdropFilter:\"blur(10px)\"},whileHover:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Contact us\"})}),className:\"framer-tykh5b\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"fH9LeMIKo\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DQunNjngh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\u0421\u0432\u044F\u0437\u0430\u0442\u044C\u0441\u044F\"})})},jTHi8JlFL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\u0421\u0432\u044F\u0437\u0430\u0442\u044C\u0441\u044F\"})})}},baseVariant,gestureVariant)})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yl05j.framer-1dfuvid, .framer-yl05j .framer-1dfuvid { display: block; }\",\".framer-yl05j.framer-1uzyjak { height: 100px; overflow: visible; position: relative; width: 1440px; }\",\".framer-yl05j .framer-eo86ym { flex: none; height: calc(var(--framer-viewport-height, 100vh) * 1); left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-yl05j .framer-7sk3x3 { flex: none; height: 44px; left: calc(50.00000000000002% - min(100%, 1184px) / 2); max-width: 100%; overflow: visible; position: absolute; top: 28px; width: 1184px; }\",\".framer-yl05j .framer-1i6fu35 { flex: none; height: 36px; left: 0px; position: absolute; text-decoration: none; top: calc(50.00000000000002% - 36px / 2); width: 146px; }\",\".framer-yl05j .framer-tyksnq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; width: min-content; }\",\".framer-yl05j .framer-53e5t3, .framer-yl05j .framer-1s5auqh, .framer-yl05j .framer-14g72qo, .framer-yl05j .framer-1mzpjsr, .framer-yl05j .framer-17304ic, .framer-yl05j .framer-16r351a, .framer-yl05j .framer-4shdd0, .framer-yl05j .framer-8p00gb, .framer-yl05j .framer-18i4kco, .framer-yl05j .framer-c049kl, .framer-yl05j .framer-1plx03c, .framer-yl05j .framer-3n5mh8, .framer-yl05j .framer-o08vna, .framer-yl05j .framer-tykh5b { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-yl05j .framer-t08s6q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; width: min-content; }\",\".framer-yl05j .framer-uto57v, .framer-yl05j .framer-fvs8mu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-yl05j .framer-46byh1, .framer-yl05j .framer-1vwpmot { flex: none; height: 12px; overflow: visible; position: relative; width: 1px; }\",\".framer-yl05j .framer-epfeg2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 44px; justify-content: center; overflow: visible; padding: 10px 32px 10px 32px; position: relative; text-decoration: none; width: min-content; }\",\".framer-yl05j .framer-10dlovw-container { flex: none; height: 40px; left: -20px; position: absolute; top: -20px; width: 40px; }\",\".framer-yl05j .framer-a7ix8m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; left: 16px; overflow: visible; padding: 0px; position: absolute; top: 96px; width: min-content; }\",\".framer-yl05j .framer-1e0z9ik { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-yl05j .framer-x5ldq6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 7px 16px 7px 16px; position: relative; text-decoration: none; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yl05j .framer-tyksnq, .framer-yl05j .framer-t08s6q, .framer-yl05j .framer-uto57v, .framer-yl05j .framer-epfeg2, .framer-yl05j .framer-a7ix8m, .framer-yl05j .framer-1e0z9ik, .framer-yl05j .framer-fvs8mu, .framer-yl05j .framer-x5ldq6 { gap: 0px; } .framer-yl05j .framer-tyksnq > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-yl05j .framer-tyksnq > :first-child, .framer-yl05j .framer-t08s6q > :first-child, .framer-yl05j .framer-uto57v > :first-child, .framer-yl05j .framer-epfeg2 > :first-child, .framer-yl05j .framer-1e0z9ik > :first-child, .framer-yl05j .framer-fvs8mu > :first-child, .framer-yl05j .framer-x5ldq6 > :first-child { margin-left: 0px; } .framer-yl05j .framer-tyksnq > :last-child, .framer-yl05j .framer-t08s6q > :last-child, .framer-yl05j .framer-uto57v > :last-child, .framer-yl05j .framer-epfeg2 > :last-child, .framer-yl05j .framer-1e0z9ik > :last-child, .framer-yl05j .framer-fvs8mu > :last-child, .framer-yl05j .framer-x5ldq6 > :last-child { margin-right: 0px; } .framer-yl05j .framer-t08s6q > *, .framer-yl05j .framer-1e0z9ik > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-yl05j .framer-uto57v > *, .framer-yl05j .framer-fvs8mu > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-yl05j .framer-epfeg2 > *, .framer-yl05j .framer-x5ldq6 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-yl05j .framer-a7ix8m > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-yl05j .framer-a7ix8m > :first-child { margin-top: 0px; } .framer-yl05j .framer-a7ix8m > :last-child { margin-bottom: 0px; } }\",\".framer-yl05j.framer-v-b904oo.framer-1uzyjak, .framer-yl05j.framer-v-1tz8ke.framer-1uzyjak { width: 810px; }\",\".framer-yl05j.framer-v-b904oo .framer-7sk3x3, .framer-yl05j.framer-v-1tz8ke .framer-7sk3x3 { left: 32px; right: 32px; width: unset; }\",\".framer-yl05j.framer-v-b904oo .framer-tyksnq, .framer-yl05j.framer-v-1tz8ke .framer-tyksnq { left: 46%; }\",\".framer-yl05j.framer-v-b904oo .framer-t08s6q, .framer-yl05j.framer-v-1tz8ke .framer-t08s6q { gap: 16px; }\",\".framer-yl05j.framer-v-b904oo .framer-epfeg2, .framer-yl05j.framer-v-1tz8ke .framer-epfeg2 { padding: 10px 28px 10px 28px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yl05j.framer-v-b904oo .framer-t08s6q { gap: 0px; } .framer-yl05j.framer-v-b904oo .framer-t08s6q > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-yl05j.framer-v-b904oo .framer-t08s6q > :first-child { margin-left: 0px; } .framer-yl05j.framer-v-b904oo .framer-t08s6q > :last-child { margin-right: 0px; } }\",\".framer-yl05j.framer-v-1hiqbn.framer-1uzyjak, .framer-yl05j.framer-v-1cun5ly.framer-1uzyjak { width: 390px; }\",\".framer-yl05j.framer-v-1hiqbn .framer-eo86ym, .framer-yl05j.framer-v-1cun5ly .framer-eo86ym { bottom: 0px; height: unset; }\",\".framer-yl05j.framer-v-1hiqbn .framer-7sk3x3, .framer-yl05j.framer-v-1ekqd0j .framer-7sk3x3, .framer-yl05j.framer-v-1cun5ly .framer-7sk3x3, .framer-yl05j.framer-v-mg2c9f .framer-7sk3x3 { left: 16px; right: 16px; width: unset; }\",\".framer-yl05j.framer-v-1hiqbn .framer-1i6fu35, .framer-yl05j.framer-v-1ekqd0j .framer-1i6fu35, .framer-yl05j.framer-v-1cun5ly .framer-1i6fu35, .framer-yl05j.framer-v-mg2c9f .framer-1i6fu35 { height: 28px; top: calc(50.00000000000002% - 28px / 2); width: 113px; }\",\".framer-yl05j.framer-v-1hiqbn .framer-t08s6q, .framer-yl05j.framer-v-1cun5ly .framer-t08s6q { min-height: 44px; min-width: 218px; }\",\".framer-yl05j.framer-v-1hiqbn .framer-10dlovw-container, .framer-yl05j.framer-v-1ekqd0j .framer-10dlovw-container, .framer-yl05j.framer-v-1cun5ly .framer-10dlovw-container, .framer-yl05j.framer-v-mg2c9f .framer-10dlovw-container { left: unset; right: 0px; top: 0px; }\",\".framer-yl05j.framer-v-1hiqbn .framer-a7ix8m, .framer-yl05j.framer-v-1cun5ly .framer-a7ix8m { bottom: -318px; display: block; height: 322px; left: calc(50.00000000000002% - 299px / 2); padding: unset; top: unset; width: 299px; }\",\".framer-yl05j.framer-v-1hiqbn .framer-8p00gb, .framer-yl05j.framer-v-1cun5ly .framer-8p00gb { left: 0px; position: absolute; top: 0px; }\",\".framer-yl05j.framer-v-1hiqbn .framer-18i4kco, .framer-yl05j.framer-v-1cun5ly .framer-18i4kco { position: absolute; right: -9px; top: 87px; }\",\".framer-yl05j.framer-v-1hiqbn .framer-c049kl, .framer-yl05j.framer-v-1cun5ly .framer-c049kl { bottom: 86px; left: 52%; position: absolute; }\",\".framer-yl05j.framer-v-1hiqbn .framer-1plx03c, .framer-yl05j.framer-v-1cun5ly .framer-1plx03c { bottom: 0px; left: 30px; position: absolute; }\",\".framer-yl05j.framer-v-1hiqbn .framer-1e0z9ik, .framer-yl05j.framer-v-1cun5ly .framer-1e0z9ik { bottom: 0px; gap: 24px; height: 32px; left: 0px; position: absolute; }\",\".framer-yl05j.framer-v-1hiqbn .framer-fvs8mu, .framer-yl05j.framer-v-1ekqd0j .framer-fvs8mu, .framer-yl05j.framer-v-1cun5ly .framer-fvs8mu, .framer-yl05j.framer-v-mg2c9f .framer-fvs8mu { order: 1; }\",\".framer-yl05j.framer-v-1hiqbn .framer-x5ldq6, .framer-yl05j.framer-v-1ekqd0j .framer-x5ldq6, .framer-yl05j.framer-v-1cun5ly .framer-x5ldq6, .framer-yl05j.framer-v-mg2c9f .framer-x5ldq6 { order: 0; padding: 12px 24px 12px 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yl05j.framer-v-1hiqbn .framer-a7ix8m, .framer-yl05j.framer-v-1hiqbn .framer-1e0z9ik { gap: 0px; } .framer-yl05j.framer-v-1hiqbn .framer-a7ix8m > *, .framer-yl05j.framer-v-1hiqbn .framer-a7ix8m > :first-child, .framer-yl05j.framer-v-1hiqbn .framer-a7ix8m > :last-child { margin: 0px; } .framer-yl05j.framer-v-1hiqbn .framer-1e0z9ik > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-yl05j.framer-v-1hiqbn .framer-1e0z9ik > :first-child { margin-left: 0px; } .framer-yl05j.framer-v-1hiqbn .framer-1e0z9ik > :last-child { margin-right: 0px; } }\",\".framer-yl05j.framer-v-1ekqd0j.framer-1uzyjak, .framer-yl05j.framer-v-mg2c9f.framer-1uzyjak { height: 600px; width: 390px; }\",\".framer-yl05j.framer-v-1ekqd0j .framer-eo86ym, .framer-yl05j.framer-v-mg2c9f .framer-eo86ym { overflow: visible; }\",\".framer-yl05j.framer-v-1ekqd0j .framer-1e0z9ik, .framer-yl05j.framer-v-mg2c9f .framer-1e0z9ik { gap: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yl05j.framer-v-1ekqd0j .framer-1e0z9ik { gap: 0px; } .framer-yl05j.framer-v-1ekqd0j .framer-1e0z9ik > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-yl05j.framer-v-1ekqd0j .framer-1e0z9ik > :first-child { margin-left: 0px; } .framer-yl05j.framer-v-1ekqd0j .framer-1e0z9ik > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yl05j.framer-v-1tz8ke .framer-t08s6q { gap: 0px; } .framer-yl05j.framer-v-1tz8ke .framer-t08s6q > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-yl05j.framer-v-1tz8ke .framer-t08s6q > :first-child { margin-left: 0px; } .framer-yl05j.framer-v-1tz8ke .framer-t08s6q > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yl05j.framer-v-1cun5ly .framer-a7ix8m, .framer-yl05j.framer-v-1cun5ly .framer-1e0z9ik { gap: 0px; } .framer-yl05j.framer-v-1cun5ly .framer-a7ix8m > *, .framer-yl05j.framer-v-1cun5ly .framer-a7ix8m > :first-child, .framer-yl05j.framer-v-1cun5ly .framer-a7ix8m > :last-child { margin: 0px; } .framer-yl05j.framer-v-1cun5ly .framer-1e0z9ik > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-yl05j.framer-v-1cun5ly .framer-1e0z9ik > :first-child { margin-left: 0px; } .framer-yl05j.framer-v-1cun5ly .framer-1e0z9ik > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yl05j.framer-v-mg2c9f .framer-1e0z9ik { gap: 0px; } .framer-yl05j.framer-v-mg2c9f .framer-1e0z9ik > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-yl05j.framer-v-mg2c9f .framer-1e0z9ik > :first-child { margin-left: 0px; } .framer-yl05j.framer-v-mg2c9f .framer-1e0z9ik > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 100\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"p5J8UQFXW\":{\"layout\":[\"fixed\",\"fixed\"]},\"O8qaIYAO6\":{\"layout\":[\"fixed\",\"fixed\"]},\"SSdksUDKn\":{\"layout\":[\"fixed\",\"fixed\"]},\"bKpvYE6Kd\":{\"layout\":[\"fixed\",\"fixed\"]},\"mxjpjqGpK\":{\"layout\":[\"fixed\",\"fixed\"]},\"jTHi8JlFL\":{\"layout\":[\"fixed\",\"fixed\"]},\"DQunNjngh\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTqlaACZGc=withCSS(Component,css,\"framer-yl05j\");export default FramerTqlaACZGc;FramerTqlaACZGc.displayName=\"Header\";FramerTqlaACZGc.defaultProps={height:100,width:1440};addPropertyControls(FramerTqlaACZGc,{variant:{options:[\"gyF3dlSur\",\"p5J8UQFXW\",\"O8qaIYAO6\",\"SSdksUDKn\",\"bKpvYE6Kd\",\"mxjpjqGpK\",\"jTHi8JlFL\",\"DQunNjngh\"],optionTitles:[\"Main en\",\"Tablet\",\"Variant 3\",\"Variant 4\",\"Main-ru\",\"Tablet-ru\",\"Mobile ru\",\"Mobile ru open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerTqlaACZGc,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...FeatherFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTqlaACZGc\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"p5J8UQFXW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"O8qaIYAO6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SSdksUDKn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bKpvYE6Kd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mxjpjqGpK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jTHi8JlFL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DQunNjngh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"100\",\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TqlaACZGc.map", "// Generated by Framer (f57d8b5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={pUldO_Nj5:{hover:true,pressed:true}};const cycleOrder=[\"pUldO_Nj5\",\"PnofVkLK7\",\"aabMSEsb2\",\"n4vDrg2cm\",\"jRAlkqv4R\"];const serializationHash=\"framer-C1YdS\";const variantClassNames={aabMSEsb2:\"framer-v-1rd1uf0\",jRAlkqv4R:\"framer-v-1mvxrb7\",n4vDrg2cm:\"framer-v-waxvj8\",PnofVkLK7:\"framer-v-1la22q2\",pUldO_Nj5:\"framer-v-1p16pvr\"};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={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"pUldO_Nj5\",Disabled:\"aabMSEsb2\",Error:\"jRAlkqv4R\",Loading:\"PnofVkLK7\",Success:\"n4vDrg2cm\"};const getProps=({height,id,title,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1;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:\"pUldO_Nj5\",VKG2dvUpo:(_ref1=title!==null&&title!==void 0?title:props.VKG2dvUpo)!==null&&_ref1!==void 0?_ref1:\"\u041E\u0442\u043F\u0440\u0430\u0432\u0438\u0442\u044C\"};};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,VKG2dvUpo,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pUldO_Nj5\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"PnofVkLK7\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"PnofVkLK7\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1p16pvr\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"pUldO_Nj5\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"rgba(255, 255, 255, 0.2)\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",background:\"linear-gradient(109.82926028061993deg, rgba(10, 232, 254, 1) 0%, rgba(42, 131, 255, 1) 100%)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,opacity:1,...style},variants:{aabMSEsb2:{opacity:.5}},...addPropertyOverrides({\"pUldO_Nj5-hover\":{\"data-framer-name\":undefined},\"pUldO_Nj5-pressed\":{\"data-framer-name\":undefined},aabMSEsb2:{\"data-framer-name\":\"Disabled\"},jRAlkqv4R:{\"data-framer-name\":\"Error\"},n4vDrg2cm:{\"data-framer-name\":\"Success\"},PnofVkLK7:{\"data-framer-name\":\"Loading\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\u041E\u0442\u043F\u0440\u0430\u0432\u0438\u0442\u044C\"})}),className:\"framer-473c1p\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"Ltos7etW4\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:VKG2dvUpo,variants:{jRAlkqv4R:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jRAlkqv4R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"\u041E\u0449\u0438\u0431\u043A\u0430\"})}),text:undefined},n4vDrg2cm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"C\u043F\u0430\u0441\u0438\u0431\u043E\"})}),text:undefined}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v7amvo\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"nf1GKMgTp\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-iw7zni\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"Qs7GTKsgY\",style:{background:\"conic-gradient(from 180deg at 50% 50%, #4cf 0deg, #4cf 360deg)\",backgroundColor:\"rgb(68, 204, 255)\",mask:\"none\",WebkitMask:\"none\"},variants:{PnofVkLK7:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w5781x\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"AD6qXTkSN\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-C1YdS.framer-lt0nof, .framer-C1YdS .framer-lt0nof { display: block; }\",\".framer-C1YdS.framer-1p16pvr { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 40px; justify-content: center; overflow: visible; padding: 10px 32px 10px 32px; position: relative; width: 240px; }\",\".framer-C1YdS .framer-473c1p { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-C1YdS .framer-1v7amvo { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-C1YdS .framer-iw7zni { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-C1YdS .framer-1w5781x { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-C1YdS.framer-1p16pvr { gap: 0px; } .framer-C1YdS.framer-1p16pvr > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-C1YdS.framer-1p16pvr > :first-child { margin-left: 0px; } .framer-C1YdS.framer-1p16pvr > :last-child { margin-right: 0px; } }\",\".framer-C1YdS.framer-v-1la22q2.framer-1p16pvr, .framer-C1YdS.framer-v-1rd1uf0.framer-1p16pvr, .framer-C1YdS.framer-v-waxvj8.framer-1p16pvr, .framer-C1YdS.framer-v-1mvxrb7.framer-1p16pvr { cursor: unset; }\",\".framer-C1YdS.framer-v-1la22q2 .framer-iw7zni { overflow: hidden; }\",'.framer-C1YdS[data-border=\"true\"]::after, .framer-C1YdS [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 40\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"PnofVkLK7\":{\"layout\":[\"fixed\",\"fixed\"]},\"aabMSEsb2\":{\"layout\":[\"fixed\",\"fixed\"]},\"n4vDrg2cm\":{\"layout\":[\"fixed\",\"fixed\"]},\"jRAlkqv4R\":{\"layout\":[\"fixed\",\"fixed\"]},\"oNhi_XIhC\":{\"layout\":[\"fixed\",\"fixed\"]},\"MiJsgAjEf\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"VKG2dvUpo\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerz6uFPIhIM=withCSS(Component,css,\"framer-C1YdS\");export default Framerz6uFPIhIM;Framerz6uFPIhIM.displayName=\"Button Copy\";Framerz6uFPIhIM.defaultProps={height:40,width:240};addPropertyControls(Framerz6uFPIhIM,{variant:{options:[\"pUldO_Nj5\",\"PnofVkLK7\",\"aabMSEsb2\",\"n4vDrg2cm\",\"jRAlkqv4R\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum},VKG2dvUpo:{defaultValue:\"\u041E\u0442\u043F\u0440\u0430\u0432\u0438\u0442\u044C\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(Framerz6uFPIhIM,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerz6uFPIhIM\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PnofVkLK7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"aabMSEsb2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"n4vDrg2cm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jRAlkqv4R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oNhi_XIhC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MiJsgAjEf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"240\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"VKG2dvUpo\\\":\\\"title\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./z6uFPIhIM.map", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"dkVwKFENa\",\"m8QJN0Dkq\",\"asUQYMkvy\",\"MUXhLP7xb\",\"MfZ0sESdZ\",\"WTM1tCTDS\"];const serializationHash=\"framer-Vtued\";const variantClassNames={asUQYMkvy:\"framer-v-clsho1\",dkVwKFENa:\"framer-v-16c0obr\",m8QJN0Dkq:\"framer-v-rv91y5\",MfZ0sESdZ:\"framer-v-8aqzy5\",MUXhLP7xb:\"framer-v-awa5by\",WTM1tCTDS:\"framer-v-10ln1l4\"};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={bounce:.1,delay:0,duration:1.1,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"App gallery hover\":\"WTM1tCTDS\",\"App gallery\":\"MfZ0sESdZ\",\"aPP STORE HOVER\":\"m8QJN0Dkq\",\"App store\":\"dkVwKFENa\",\"Play market hover\":\"MUXhLP7xb\",\"Play market\":\"asUQYMkvy\"};const getProps=({background,height,id,mouseEnter,shadowButton,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,Lqm8sj2wt:mouseEnter!==null&&mouseEnter!==void 0?mouseEnter:props.Lqm8sj2wt,RaoIyxCoA:(_ref=shadowButton!==null&&shadowButton!==void 0?shadowButton:props.RaoIyxCoA)!==null&&_ref!==void 0?_ref:[{blur:5,color:\"rgba(0,0,0,0.25)\",diffusion:.5,focus:.5,inset:false,spread:0,type:\"box\",x:0,y:2}],variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"dkVwKFENa\",xV7aloHMt:(_ref2=background!==null&&background!==void 0?background:props.xV7aloHMt)!==null&&_ref2!==void 0?_ref2:\"rgba(255, 255, 255, 0.1)\"};};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,xV7aloHMt,RaoIyxCoA,Lqm8sj2wt,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dkVwKFENa\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter4ww3bu=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(Lqm8sj2wt){const res=await Lqm8sj2wt(...args);if(res===false)return false;}});const onMouseLeavehhh691=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"dkVwKFENa\");});const onMouseLeave1oucvb1=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"asUQYMkvy\");});const onMouseLeave4uyabb=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"MfZ0sESdZ\");});const onMouseEntero6lsgk=activeVariantCallback(async(...args)=>{setVariant(\"m8QJN0Dkq\");});const onMouseEnter1ldd4j0=activeVariantCallback(async(...args)=>{setVariant(\"MUXhLP7xb\");});const onMouseEntervxhiu0=activeVariantCallback(async(...args)=>{setVariant(\"WTM1tCTDS\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"asUQYMkvy\",\"MUXhLP7xb\",\"MfZ0sESdZ\",\"WTM1tCTDS\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"asUQYMkvy\",\"MUXhLP7xb\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"MfZ0sESdZ\",\"WTM1tCTDS\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/eg/app/iwatt/id6479287593\",...addPropertyOverrides({asUQYMkvy:{href:\"https://play.google.com/store/search?q=IWATT&c=apps&hl=en\",openInNewTab:true},MfZ0sESdZ:{href:\"https://play.google.com/store/search?q=IWATT&c=apps&hl=en\",openInNewTab:true},MUXhLP7xb:{href:\"https://play.google.com/store/search?q=IWATT&c=apps&hl=en\",openInNewTab:true},WTM1tCTDS:{href:\"https://play.google.com/store/search?q=IWATT&c=apps&hl=en\",openInNewTab:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-16c0obr\",className,classNames)} framer-mx1w3u`,\"data-framer-name\":\"App store\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"dkVwKFENa\",onMouseEnter:onMouseEnter4ww3bu,ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({asUQYMkvy:{\"data-framer-name\":\"Play market\"},m8QJN0Dkq:{\"data-framer-name\":\"aPP STORE HOVER\",onMouseLeave:onMouseLeavehhh691},MfZ0sESdZ:{\"data-framer-name\":\"App gallery\"},MUXhLP7xb:{\"data-framer-name\":\"Play market hover\",onMouseLeave:onMouseLeave1oucvb1},WTM1tCTDS:{\"data-framer-name\":\"App gallery hover\",onMouseLeave:onMouseLeave4uyabb}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:130,intrinsicWidth:120,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||166)-56),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xYWexUCE6lXLcOPxhF4CGzHEvA.svg\"},className:\"framer-yo231b\",\"data-framer-name\":\"QR code Google Play\",layoutDependency:layoutDependency,layoutId:\"O7A26RWR6\",style:{opacity:0},variants:{MUXhLP7xb:{opacity:1},WTM1tCTDS:{opacity:1}},...addPropertyOverrides({MUXhLP7xb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:130,intrinsicWidth:120,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xYWexUCE6lXLcOPxhF4CGzHEvA.svg\"}},WTM1tCTDS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:130,intrinsicWidth:120,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xYWexUCE6lXLcOPxhF4CGzHEvA.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-x4uzql\",\"data-framer-name\":\"QR code Apple Store\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:130,intrinsicWidth:120,layoutDependency:layoutDependency,layoutId:\"KbN805hIz\",style:{opacity:0},svg:'<svg width=\"120\" height=\"130\" viewBox=\"0 0 120 130\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_b_12860_4088)\">\\n<path d=\"M0 19.2C0 12.4794 0 9.11905 1.30792 6.55211C2.4584 4.29417 4.29417 2.4584 6.55211 1.30792C9.11905 0 12.4794 0 19.2 0H100.8C107.521 0 110.881 0 113.448 1.30792C115.706 2.4584 117.542 4.29417 118.692 6.55211C120 9.11905 120 12.4794 120 19.2V130H0V19.2Z\" fill=\"white\"/>\\n<path d=\"M13.0303 10H10V13.0303H13.0303V10Z\" fill=\"#2684FC\"/>\\n<path d=\"M16.0606 10H13.0303V13.0303H16.0606V10Z\" fill=\"#2684FC\"/>\\n<path d=\"M19.0909 10H16.0606V13.0303H19.0909V10Z\" fill=\"#2684FC\"/>\\n<path d=\"M22.1212 10H19.0909V13.0303H22.1212V10Z\" fill=\"#2684FC\"/>\\n<path d=\"M25.1515 10H22.1212V13.0303H25.1515V10Z\" fill=\"#2684FC\"/>\\n<path d=\"M28.1818 10H25.1515V13.0303H28.1818V10Z\" fill=\"#2684FC\"/>\\n<path d=\"M31.2121 10H28.1818V13.0303H31.2121V10Z\" fill=\"#2684FC\"/>\\n<path d=\"M37.2727 10H34.2424V13.0303H37.2727V10Z\" fill=\"black\"/>\\n<path d=\"M40.303 10H37.2727V13.0303H40.303V10Z\" fill=\"black\"/>\\n<path d=\"M43.3333 10H40.303V13.0303H43.3333V10Z\" fill=\"black\"/>\\n<path d=\"M46.3636 10H43.3333V13.0303H46.3636V10Z\" fill=\"black\"/>\\n<path d=\"M49.3939 10H46.3636V13.0303H49.3939V10Z\" fill=\"black\"/>\\n<path d=\"M67.5758 10H64.5455V13.0303H67.5758V10Z\" fill=\"black\"/>\\n<path d=\"M70.6061 10H67.5758V13.0303H70.6061V10Z\" fill=\"black\"/>\\n<path d=\"M76.6667 10H73.6364V13.0303H76.6667V10Z\" fill=\"black\"/>\\n<path d=\"M79.697 10H76.6667V13.0303H79.697V10Z\" fill=\"black\"/>\\n<path d=\"M82.7273 10H79.697V13.0303H82.7273V10Z\" fill=\"black\"/>\\n<path d=\"M85.7576 10H82.7273V13.0303H85.7576V10Z\" fill=\"black\"/>\\n<path d=\"M91.8182 10H88.7879V13.0303H91.8182V10Z\" fill=\"#2684FC\"/>\\n<path d=\"M94.8485 10H91.8182V13.0303H94.8485V10Z\" fill=\"#2684FC\"/>\\n<path d=\"M97.8788 10H94.8485V13.0303H97.8788V10Z\" fill=\"#2684FC\"/>\\n<path d=\"M100.909 10H97.8788V13.0303H100.909V10Z\" fill=\"#2684FC\"/>\\n<path d=\"M103.939 10H100.909V13.0303H103.939V10Z\" fill=\"#2684FC\"/>\\n<path d=\"M106.97 10H103.939V13.0303H106.97V10Z\" fill=\"#2684FC\"/>\\n<path d=\"M110 10H106.97V13.0303H110V10Z\" fill=\"#2684FC\"/>\\n<path d=\"M13.0303 13.0303H10V16.0606H13.0303V13.0303Z\" fill=\"#2684FC\"/>\\n<path d=\"M31.2121 13.0303H28.1818V16.0606H31.2121V13.0303Z\" fill=\"#2684FC\"/>\\n<path d=\"M40.303 13.0303H37.2727V16.0606H40.303V13.0303Z\" fill=\"black\"/>\\n<path d=\"M43.3333 13.0303H40.303V16.0606H43.3333V13.0303Z\" fill=\"black\"/>\\n<path d=\"M46.3636 13.0303H43.3333V16.0606H46.3636V13.0303Z\" fill=\"black\"/>\\n<path d=\"M52.4242 13.0303H49.3939V16.0606H52.4242V13.0303Z\" fill=\"black\"/>\\n<path d=\"M55.4545 13.0303H52.4242V16.0606H55.4545V13.0303Z\" fill=\"black\"/>\\n<path d=\"M58.4849 13.0303H55.4545V16.0606H58.4849V13.0303Z\" fill=\"black\"/>\\n<path d=\"M70.6061 13.0303H67.5758L67.5758 16.0606H70.6061V13.0303Z\" fill=\"black\"/>\\n<path d=\"M73.6364 13.0303H70.6061V16.0606H73.6364V13.0303Z\" fill=\"black\"/>\\n<path d=\"M76.6667 13.0303H73.6364V16.0606H76.6667V13.0303Z\" fill=\"black\"/>\\n<path d=\"M91.8182 13.0303H88.7879V16.0606H91.8182V13.0303Z\" fill=\"#2684FC\"/>\\n<path d=\"M110 13.0303H106.97V16.0606H110V13.0303Z\" fill=\"#2684FC\"/>\\n<path d=\"M13.0303 16.0606H10V19.0909H13.0303V16.0606Z\" fill=\"#2684FC\"/>\\n<path d=\"M19.0909 16.0606H16.0606V19.0909H19.0909V16.0606Z\" fill=\"#2684FC\"/>\\n<path d=\"M22.1212 16.0606H19.0909V19.0909H22.1212V16.0606Z\" fill=\"#2684FC\"/>\\n<path d=\"M25.1515 16.0606H22.1212V19.0909H25.1515V16.0606Z\" fill=\"#2684FC\"/>\\n<path d=\"M31.2121 16.0606H28.1818V19.0909H31.2121V16.0606Z\" fill=\"#2684FC\"/>\\n<path d=\"M37.2727 16.0606H34.2424V19.0909H37.2727V16.0606Z\" fill=\"black\"/>\\n<path d=\"M46.3636 16.0606H43.3333V19.0909H46.3636V16.0606Z\" fill=\"black\"/>\\n<path d=\"M49.3939 16.0606H46.3636V19.0909H49.3939V16.0606Z\" fill=\"black\"/>\\n<path d=\"M58.4849 16.0606H55.4545V19.0909H58.4849V16.0606Z\" fill=\"black\"/>\\n<path d=\"M61.5152 16.0606H58.4849V19.0909H61.5152V16.0606Z\" fill=\"black\"/>\\n<path d=\"M64.5455 16.0606H61.5152V19.0909H64.5455V16.0606Z\" fill=\"black\"/>\\n<path d=\"M70.6061 16.0606H67.5758V19.0909H70.6061V16.0606Z\" fill=\"black\"/>\\n<path d=\"M76.6667 16.0606H73.6364V19.0909H76.6667V16.0606Z\" fill=\"black\"/>\\n<path d=\"M85.7576 16.0606H82.7273V19.0909H85.7576V16.0606Z\" fill=\"black\"/>\\n<path d=\"M91.8182 16.0606H88.7879V19.0909H91.8182V16.0606Z\" fill=\"#2684FC\"/>\\n<path d=\"M97.8788 16.0606H94.8485V19.0909H97.8788V16.0606Z\" fill=\"#2684FC\"/>\\n<path d=\"M100.909 16.0606H97.8788V19.0909H100.909V16.0606Z\" fill=\"#2684FC\"/>\\n<path d=\"M103.939 16.0606H100.909V19.0909H103.939V16.0606Z\" fill=\"#2684FC\"/>\\n<path d=\"M110 16.0606H106.97V19.0909H110V16.0606Z\" fill=\"#2684FC\"/>\\n<path d=\"M13.0303 19.0909H10V22.1212H13.0303V19.0909Z\" fill=\"#2684FC\"/>\\n<path d=\"M19.0909 19.0909H16.0606V22.1212H19.0909V19.0909Z\" fill=\"#2684FC\"/>\\n<path d=\"M22.1212 19.0909H19.0909V22.1212H22.1212V19.0909Z\" fill=\"#2684FC\"/>\\n<path d=\"M25.1515 19.0909H22.1212V22.1212H25.1515V19.0909Z\" fill=\"#2684FC\"/>\\n<path d=\"M31.2121 19.0909H28.1818V22.1212H31.2121V19.0909Z\" fill=\"#2684FC\"/>\\n<path d=\"M37.2727 19.0909H34.2424V22.1212H37.2727V19.0909Z\" fill=\"black\"/>\\n<path d=\"M40.303 19.0909H37.2727V22.1212H40.303V19.0909Z\" fill=\"black\"/>\\n<path d=\"M43.3333 19.0909H40.303V22.1212H43.3333V19.0909Z\" fill=\"black\"/>\\n<path d=\"M49.3939 19.0909H46.3636V22.1212H49.3939V19.0909Z\" fill=\"black\"/>\\n<path d=\"M52.4242 19.0909H49.3939V22.1212H52.4242V19.0909Z\" fill=\"black\"/>\\n<path d=\"M55.4545 19.0909H52.4242V22.1212H55.4545V19.0909Z\" fill=\"black\"/>\\n<path d=\"M64.5455 19.0909H61.5152V22.1212H64.5455V19.0909Z\" fill=\"black\"/>\\n<path d=\"M70.6061 19.0909H67.5758V22.1212H70.6061V19.0909Z\" fill=\"black\"/>\\n<path d=\"M82.7273 19.0909H79.697V22.1212H82.7273V19.0909Z\" fill=\"black\"/>\\n<path d=\"M91.8182 19.0909H88.7879V22.1212H91.8182V19.0909Z\" fill=\"#2684FC\"/>\\n<path d=\"M97.8788 19.0909H94.8485V22.1212H97.8788V19.0909Z\" fill=\"#2684FC\"/>\\n<path d=\"M100.909 19.0909H97.8788V22.1212H100.909V19.0909Z\" fill=\"#2684FC\"/>\\n<path d=\"M103.939 19.0909H100.909V22.1212H103.939V19.0909Z\" fill=\"#2684FC\"/>\\n<path d=\"M110 19.0909H106.97V22.1212H110V19.0909Z\" fill=\"#2684FC\"/>\\n<path d=\"M13.0303 22.1212H10V25.1515H13.0303V22.1212Z\" fill=\"#2684FC\"/>\\n<path d=\"M19.0909 22.1212H16.0606V25.1515H19.0909V22.1212Z\" fill=\"#2684FC\"/>\\n<path d=\"M22.1212 22.1212H19.0909V25.1515H22.1212V22.1212Z\" fill=\"#2684FC\"/>\\n<path d=\"M25.1515 22.1212H22.1212V25.1515H25.1515V22.1212Z\" fill=\"#2684FC\"/>\\n<path d=\"M31.2121 22.1212H28.1818V25.1515H31.2121V22.1212Z\" fill=\"#2684FC\"/>\\n<path d=\"M37.2727 22.1212H34.2424V25.1515H37.2727V22.1212Z\" fill=\"black\"/>\\n<path d=\"M43.3333 22.1212H40.303V25.1515H43.3333V22.1212Z\" fill=\"black\"/>\\n<path d=\"M52.4242 22.1212H49.3939V25.1515H52.4242V22.1212Z\" fill=\"black\"/>\\n<path d=\"M55.4545 22.1212H52.4242V25.1515H55.4545V22.1212Z\" fill=\"black\"/>\\n<path d=\"M58.4849 22.1212H55.4545V25.1515H58.4849V22.1212Z\" fill=\"black\"/>\\n<path d=\"M61.5152 22.1212H58.4849V25.1515H61.5152V22.1212Z\" fill=\"black\"/>\\n<path d=\"M64.5455 22.1212H61.5152V25.1515H64.5455V22.1212Z\" fill=\"black\"/>\\n<path d=\"M67.5758 22.1212H64.5455V25.1515H67.5758L67.5758 22.1212Z\" fill=\"black\"/>\\n<path d=\"M70.6061 22.1212H67.5758L67.5758 25.1515H70.6061V22.1212Z\" fill=\"black\"/>\\n<path d=\"M73.6364 22.1212H70.6061V25.1515H73.6364V22.1212Z\" fill=\"black\"/>\\n<path d=\"M76.6667 22.1212H73.6364V25.1515H76.6667V22.1212Z\" fill=\"black\"/>\\n<path d=\"M79.697 22.1212H76.6667V25.1515H79.697V22.1212Z\" fill=\"black\"/>\\n<path d=\"M85.7576 22.1212H82.7273V25.1515H85.7576V22.1212Z\" fill=\"black\"/>\\n<path d=\"M91.8182 22.1212H88.7879V25.1515H91.8182V22.1212Z\" fill=\"#2684FC\"/>\\n<path d=\"M97.8788 22.1212H94.8485V25.1515H97.8788V22.1212Z\" fill=\"#2684FC\"/>\\n<path d=\"M100.909 22.1212H97.8788V25.1515H100.909V22.1212Z\" fill=\"#2684FC\"/>\\n<path d=\"M103.939 22.1212H100.909V25.1515H103.939V22.1212Z\" fill=\"#2684FC\"/>\\n<path d=\"M110 22.1212H106.97V25.1515H110V22.1212Z\" fill=\"#2684FC\"/>\\n<path d=\"M13.0303 25.1515H10V28.1818H13.0303V25.1515Z\" fill=\"#2684FC\"/>\\n<path d=\"M31.2121 25.1515H28.1818V28.1818H31.2121V25.1515Z\" fill=\"#2684FC\"/>\\n<path d=\"M37.2727 25.1515H34.2424V28.1818H37.2727V25.1515Z\" fill=\"black\"/>\\n<path d=\"M46.3636 25.1515H43.3333V28.1818H46.3636V25.1515Z\" fill=\"black\"/>\\n<path d=\"M49.3939 25.1515H46.3636V28.1818H49.3939V25.1515Z\" fill=\"black\"/>\\n<path d=\"M52.4242 25.1515H49.3939V28.1818H52.4242V25.1515Z\" fill=\"black\"/>\\n<path d=\"M58.4849 25.1515H55.4545V28.1818H58.4849V25.1515Z\" fill=\"black\"/>\\n<path d=\"M64.5455 25.1515H61.5152V28.1818H64.5455V25.1515Z\" fill=\"black\"/>\\n<path d=\"M67.5758 25.1515H64.5455V28.1818H67.5758V25.1515Z\" fill=\"black\"/>\\n<path d=\"M76.6667 25.1515H73.6364V28.1818H76.6667V25.1515Z\" fill=\"black\"/>\\n<path d=\"M85.7576 25.1515H82.7273V28.1818H85.7576V25.1515Z\" fill=\"black\"/>\\n<path d=\"M91.8182 25.1515H88.7879V28.1818H91.8182V25.1515Z\" fill=\"#2684FC\"/>\\n<path d=\"M110 25.1515H106.97V28.1818H110V25.1515Z\" fill=\"#2684FC\"/>\\n<path d=\"M13.0303 28.1818H10V31.2121H13.0303V28.1818Z\" fill=\"#2684FC\"/>\\n<path d=\"M16.0606 28.1818H13.0303V31.2121H16.0606V28.1818Z\" fill=\"#2684FC\"/>\\n<path d=\"M19.0909 28.1818H16.0606V31.2121H19.0909V28.1818Z\" fill=\"#2684FC\"/>\\n<path d=\"M22.1212 28.1818H19.0909V31.2121H22.1212V28.1818Z\" fill=\"#2684FC\"/>\\n<path d=\"M25.1515 28.1818H22.1212V31.2121H25.1515V28.1818Z\" fill=\"#2684FC\"/>\\n<path d=\"M28.1818 28.1818H25.1515V31.2121H28.1818V28.1818Z\" fill=\"#2684FC\"/>\\n<path d=\"M31.2121 28.1818H28.1818V31.2121H31.2121V28.1818Z\" fill=\"#2684FC\"/>\\n<path d=\"M37.2727 28.1818H34.2424V31.2121H37.2727V28.1818Z\" fill=\"black\"/>\\n<path d=\"M43.3333 28.1818H40.303V31.2121H43.3333V28.1818Z\" fill=\"black\"/>\\n<path d=\"M49.3939 28.1818H46.3636V31.2121H49.3939V28.1818Z\" fill=\"black\"/>\\n<path d=\"M55.4545 28.1818H52.4242V31.2121H55.4545V28.1818Z\" fill=\"black\"/>\\n<path d=\"M61.5152 28.1818H58.4849V31.2121H61.5152V28.1818Z\" fill=\"black\"/>\\n<path d=\"M67.5758 28.1818H64.5455V31.2121H67.5758V28.1818Z\" fill=\"black\"/>\\n<path d=\"M73.6364 28.1818H70.6061V31.2121H73.6364V28.1818Z\" fill=\"black\"/>\\n<path d=\"M79.697 28.1818H76.6667V31.2121H79.697V28.1818Z\" fill=\"black\"/>\\n<path d=\"M85.7576 28.1818H82.7273V31.2121H85.7576V28.1818Z\" fill=\"black\"/>\\n<path d=\"M91.8182 28.1818H88.7879V31.2121H91.8182V28.1818Z\" fill=\"#2684FC\"/>\\n<path d=\"M94.8485 28.1818H91.8182V31.2121H94.8485V28.1818Z\" fill=\"#2684FC\"/>\\n<path d=\"M97.8788 28.1818H94.8485V31.2121H97.8788V28.1818Z\" fill=\"#2684FC\"/>\\n<path d=\"M100.909 28.1818H97.8788V31.2121H100.909V28.1818Z\" fill=\"#2684FC\"/>\\n<path d=\"M103.939 28.1818H100.909V31.2121H103.939V28.1818Z\" fill=\"#2684FC\"/>\\n<path d=\"M106.97 28.1818H103.939V31.2121H106.97V28.1818Z\" fill=\"#2684FC\"/>\\n<path d=\"M110 28.1818H106.97V31.2121H110V28.1818Z\" fill=\"#2684FC\"/>\\n<path d=\"M43.3333 31.2121H40.303V34.2424H43.3333V31.2121Z\" fill=\"black\"/>\\n<path d=\"M49.3939 31.2121H46.3636V34.2424H49.3939V31.2121Z\" fill=\"black\"/>\\n<path d=\"M55.4545 31.2121H52.4242V34.2424H55.4545V31.2121Z\" fill=\"black\"/>\\n<path d=\"M61.5152 31.2121H58.4849V34.2424H61.5152V31.2121Z\" fill=\"black\"/>\\n<path d=\"M64.5455 31.2121H61.5152V34.2424H64.5455V31.2121Z\" fill=\"black\"/>\\n<path d=\"M67.5758 31.2121H64.5455V34.2424H67.5758V31.2121Z\" fill=\"black\"/>\\n<path d=\"M70.6061 31.2121H67.5758V34.2424H70.6061V31.2121Z\" fill=\"black\"/>\\n<path d=\"M73.6364 31.2121H70.6061V34.2424H73.6364V31.2121Z\" fill=\"black\"/>\\n<path d=\"M76.6667 31.2121H73.6364V34.2424H76.6667V31.2121Z\" fill=\"black\"/>\\n<path d=\"M19.0909 34.2424H16.0606V37.2727H19.0909V34.2424Z\" fill=\"black\"/>\\n<path d=\"M22.1212 34.2424H19.0909V37.2727H22.1212V34.2424Z\" fill=\"black\"/>\\n<path d=\"M25.1515 34.2424H22.1212V37.2727H25.1515V34.2424Z\" fill=\"black\"/>\\n<path d=\"M28.1818 34.2424H25.1515V37.2727H28.1818V34.2424Z\" fill=\"black\"/>\\n<path d=\"M31.2121 34.2424H28.1818V37.2727H31.2121V34.2424Z\" fill=\"black\"/>\\n<path d=\"M34.2424 34.2424H31.2121V37.2727H34.2424V34.2424Z\" fill=\"black\"/>\\n<path d=\"M40.303 34.2424H37.2727V37.2727H40.303V34.2424Z\" fill=\"black\"/>\\n<path d=\"M52.4242 34.2424H49.3939V37.2727H52.4242V34.2424Z\" fill=\"black\"/>\\n<path d=\"M61.5152 34.2424H58.4849V37.2727H61.5152V34.2424Z\" fill=\"black\"/>\\n<path d=\"M64.5455 34.2424H61.5152V37.2727H64.5455V34.2424Z\" fill=\"black\"/>\\n<path d=\"M73.6364 34.2424H70.6061V37.2727H73.6364V34.2424Z\" fill=\"black\"/>\\n<path d=\"M76.6667 34.2424H73.6364V37.2727H76.6667V34.2424Z\" fill=\"black\"/>\\n<path d=\"M82.7273 34.2424H79.697V37.2727H82.7273V34.2424Z\" fill=\"black\"/>\\n<path d=\"M85.7576 34.2424H82.7273V37.2727H85.7576V34.2424Z\" fill=\"black\"/>\\n<path d=\"M88.7879 34.2424H85.7576V37.2727H88.7879V34.2424Z\" fill=\"black\"/>\\n<path d=\"M94.8485 34.2424H91.8182V37.2727H94.8485V34.2424Z\" fill=\"black\"/>\\n<path d=\"M97.8788 34.2424H94.8485V37.2727H97.8788V34.2424Z\" fill=\"black\"/>\\n<path d=\"M100.909 34.2424H97.8788V37.2727H100.909V34.2424Z\" fill=\"black\"/>\\n<path d=\"M103.939 34.2424H100.909V37.2727H103.939V34.2424Z\" fill=\"black\"/>\\n<path d=\"M110 34.2424H106.97V37.2727H110V34.2424Z\" fill=\"black\"/>\\n<path d=\"M16.0606 37.2727H13.0303V40.303H16.0606V37.2727Z\" fill=\"black\"/>\\n<path d=\"M19.0909 37.2727H16.0606V40.303H19.0909V37.2727Z\" fill=\"black\"/>\\n<path d=\"M25.1515 37.2727H22.1212V40.303H25.1515V37.2727Z\" fill=\"black\"/>\\n<path d=\"M28.1818 37.2727H25.1515V40.303H28.1818V37.2727Z\" fill=\"black\"/>\\n<path d=\"M43.3333 37.2727H40.303V40.303H43.3333V37.2727Z\" fill=\"black\"/>\\n<path d=\"M46.3636 37.2727H43.3333V40.303H46.3636V37.2727Z\" fill=\"black\"/>\\n<path d=\"M52.4242 37.2727H49.3939V40.303H52.4242V37.2727Z\" fill=\"black\"/>\\n<path d=\"M58.4849 37.2727H55.4545V40.303H58.4849V37.2727Z\" fill=\"black\"/>\\n<path d=\"M76.6667 37.2727H73.6364V40.303H76.6667V37.2727Z\" fill=\"black\"/>\\n<path d=\"M79.697 37.2727H76.6667V40.303H79.697V37.2727Z\" fill=\"black\"/>\\n<path d=\"M82.7273 37.2727H79.697V40.303H82.7273V37.2727Z\" fill=\"black\"/>\\n<path d=\"M85.7576 37.2727H82.7273V40.303H85.7576V37.2727Z\" fill=\"black\"/>\\n<path d=\"M91.8182 37.2727H88.7879V40.303H91.8182V37.2727Z\" fill=\"black\"/>\\n<path d=\"M97.8788 37.2727H94.8485V40.303H97.8788V37.2727Z\" fill=\"black\"/>\\n<path d=\"M103.939 37.2727H100.909V40.303H103.939V37.2727Z\" fill=\"black\"/>\\n<path d=\"M106.97 37.2727H103.939V40.303H106.97V37.2727Z\" fill=\"black\"/>\\n<path d=\"M110 37.2727H106.97V40.303H110V37.2727Z\" fill=\"black\"/>\\n<path d=\"M13.0303 40.303H10V43.3333H13.0303V40.303Z\" fill=\"black\"/>\\n<path d=\"M19.0909 40.303H16.0606V43.3333H19.0909V40.303Z\" fill=\"black\"/>\\n<path d=\"M28.1818 40.303H25.1515V43.3333H28.1818V40.303Z\" fill=\"black\"/>\\n<path d=\"M31.2121 40.303H28.1818V43.3333H31.2121V40.303Z\" fill=\"black\"/>\\n<path d=\"M46.3636 40.303H43.3333V43.3333H46.3636V40.303Z\" fill=\"black\"/>\\n<path d=\"M49.3939 40.303H46.3636V43.3333H49.3939V40.303Z\" fill=\"black\"/>\\n<path d=\"M61.5152 40.303H58.4849V43.3333H61.5152V40.303Z\" fill=\"black\"/>\\n<path d=\"M64.5455 40.303H61.5152V43.3333H64.5455V40.303Z\" fill=\"black\"/>\\n<path d=\"M79.697 40.303H76.6667V43.3333H79.697V40.303Z\" fill=\"black\"/>\\n<path d=\"M82.7273 40.303H79.697V43.3333H82.7273V40.303Z\" fill=\"black\"/>\\n<path d=\"M97.8788 40.303H94.8485V43.3333H97.8788V40.303Z\" fill=\"black\"/>\\n<path d=\"M100.909 40.303H97.8788V43.3333H100.909V40.303Z\" fill=\"black\"/>\\n<path d=\"M103.939 40.303H100.909V43.3333H103.939V40.303Z\" fill=\"black\"/>\\n<path d=\"M110 40.303H106.97V43.3333H110V40.303Z\" fill=\"black\"/>\\n<path d=\"M22.1212 43.3333H19.0909V46.3636H22.1212V43.3333Z\" fill=\"black\"/>\\n<path d=\"M25.1515 43.3333H22.1212V46.3636H25.1515V43.3333Z\" fill=\"black\"/>\\n<path d=\"M37.2727 43.3333H34.2424V46.3636H37.2727V43.3333Z\" fill=\"black\"/>\\n<path d=\"M40.303 43.3333H37.2727V46.3636H40.303V43.3333Z\" fill=\"black\"/>\\n<path d=\"M43.3333 43.3333H40.303V46.3636H43.3333V43.3333Z\" fill=\"black\"/>\\n<path d=\"M46.3636 43.3333H43.3333V46.3636H46.3636V43.3333Z\" fill=\"black\"/>\\n<path d=\"M55.4545 43.3333H52.4242V46.3636H55.4545V43.3333Z\" fill=\"black\"/>\\n<path d=\"M61.5152 43.3333H58.4849V46.3636H61.5152V43.3333Z\" fill=\"black\"/>\\n<path d=\"M70.6061 43.3333H67.5758V46.3636H70.6061V43.3333Z\" fill=\"black\"/>\\n<path d=\"M73.6364 43.3333H70.6061V46.3636H73.6364V43.3333Z\" fill=\"black\"/>\\n<path d=\"M76.6667 43.3333H73.6364V46.3636H76.6667V43.3333Z\" fill=\"black\"/>\\n<path d=\"M79.697 43.3333H76.6667V46.3636H79.697V43.3333Z\" fill=\"black\"/>\\n<path d=\"M82.7273 43.3333H79.697V46.3636H82.7273V43.3333Z\" fill=\"black\"/>\\n<path d=\"M85.7576 43.3333H82.7273V46.3636H85.7576V43.3333Z\" fill=\"black\"/>\\n<path d=\"M88.7879 43.3333H85.7576V46.3636H88.7879V43.3333Z\" fill=\"black\"/>\\n<path d=\"M94.8485 43.3333H91.8182V46.3636H94.8485V43.3333Z\" fill=\"black\"/>\\n<path d=\"M106.97 43.3333H103.939V46.3636H106.97V43.3333Z\" fill=\"black\"/>\\n<path d=\"M13.0303 46.3636H10V49.3939H13.0303V46.3636Z\" fill=\"black\"/>\\n<path d=\"M25.1515 46.3636H22.1212V49.3939H25.1515V46.3636Z\" fill=\"black\"/>\\n<path d=\"M31.2121 46.3636H28.1818V49.3939H31.2121V46.3636Z\" fill=\"black\"/>\\n<path d=\"M43.3333 46.3636H40.303V49.3939H43.3333V46.3636Z\" fill=\"black\"/>\\n<path d=\"M61.5152 46.3636H58.4849V49.3939H61.5152V46.3636Z\" fill=\"black\"/>\\n<path d=\"M64.5455 46.3636H61.5152V49.3939H64.5455V46.3636Z\" fill=\"black\"/>\\n<path d=\"M73.6364 46.3636H70.6061V49.3939H73.6364V46.3636Z\" fill=\"black\"/>\\n<path d=\"M76.6667 46.3636H73.6364V49.3939H76.6667V46.3636Z\" fill=\"black\"/>\\n<path d=\"M79.697 46.3636H76.6667V49.3939H79.697V46.3636Z\" fill=\"black\"/>\\n<path d=\"M97.8788 46.3636H94.8485V49.3939H97.8788V46.3636Z\" fill=\"black\"/>\\n<path d=\"M103.939 46.3636H100.909V49.3939H103.939V46.3636Z\" fill=\"black\"/>\\n<path d=\"M110 46.3636H106.97V49.3939H110V46.3636Z\" fill=\"black\"/>\\n<path d=\"M13.0303 49.3939H10V52.4242H13.0303V49.3939Z\" fill=\"black\"/>\\n<path d=\"M16.0606 49.3939H13.0303V52.4242H16.0606V49.3939Z\" fill=\"black\"/>\\n<path d=\"M19.0909 49.3939H16.0606V52.4242H19.0909V49.3939Z\" fill=\"black\"/>\\n<path d=\"M25.1515 49.3939H22.1212V52.4242H25.1515V49.3939Z\" fill=\"black\"/>\\n<path d=\"M28.1818 49.3939H25.1515V52.4242H28.1818V49.3939Z\" fill=\"black\"/>\\n<path d=\"M37.2727 49.3939H34.2424V52.4242H37.2727V49.3939Z\" fill=\"black\"/>\\n<path d=\"M52.4242 49.3939H49.3939V52.4242H52.4242V49.3939Z\" fill=\"black\"/>\\n<path d=\"M55.4545 49.3939H52.4242V52.4242H55.4545V49.3939Z\" fill=\"black\"/>\\n<path d=\"M61.5152 49.3939H58.4849V52.4242H61.5152V49.3939Z\" fill=\"black\"/>\\n<path d=\"M64.5455 49.3939H61.5152V52.4242H64.5455V49.3939Z\" fill=\"black\"/>\\n<path d=\"M73.6364 49.3939H70.6061V52.4242H73.6364V49.3939Z\" fill=\"black\"/>\\n<path d=\"M79.697 49.3939H76.6667V52.4242H79.697V49.3939Z\" fill=\"black\"/>\\n<path d=\"M82.7273 49.3939H79.697V52.4242H82.7273V49.3939Z\" fill=\"black\"/>\\n<path d=\"M94.8485 49.3939H91.8182V52.4242H94.8485V49.3939Z\" fill=\"black\"/>\\n<path d=\"M97.8788 49.3939H94.8485V52.4242H97.8788V49.3939Z\" fill=\"black\"/>\\n<path d=\"M103.939 49.3939H100.909V52.4242H103.939V49.3939Z\" fill=\"black\"/>\\n<path d=\"M106.97 49.3939H103.939V52.4242H106.97V49.3939Z\" fill=\"black\"/>\\n<path d=\"M16.0606 52.4242H13.0303V55.4545H16.0606V52.4242Z\" fill=\"black\"/>\\n<path d=\"M22.1212 52.4242H19.0909V55.4545H22.1212V52.4242Z\" fill=\"black\"/>\\n<path d=\"M28.1818 52.4242H25.1515V55.4545H28.1818V52.4242Z\" fill=\"black\"/>\\n<path d=\"M31.2121 52.4242H28.1818V55.4545H31.2121V52.4242Z\" fill=\"black\"/>\\n<path d=\"M34.2424 52.4242H31.2121V55.4545H34.2424V52.4242Z\" fill=\"black\"/>\\n<path d=\"M37.2727 52.4242H34.2424V55.4545H37.2727V52.4242Z\" fill=\"black\"/>\\n<path d=\"M46.3636 52.4242H43.3333V55.4545H46.3636V52.4242Z\" fill=\"black\"/>\\n<path d=\"M52.4242 52.4242H49.3939V55.4545H52.4242V52.4242Z\" fill=\"black\"/>\\n<path d=\"M55.4545 52.4242H52.4242V55.4545H55.4545V52.4242Z\" fill=\"black\"/>\\n<path d=\"M58.4849 52.4242H55.4545V55.4545H58.4849V52.4242Z\" fill=\"black\"/>\\n<path d=\"M61.5152 52.4242H58.4849V55.4545H61.5152V52.4242Z\" fill=\"black\"/>\\n<path d=\"M67.5758 52.4242H64.5455V55.4545H67.5758V52.4242Z\" fill=\"black\"/>\\n<path d=\"M73.6364 52.4242H70.6061V55.4545H73.6364V52.4242Z\" fill=\"black\"/>\\n<path d=\"M79.697 52.4242H76.6667V55.4545H79.697V52.4242Z\" fill=\"black\"/>\\n<path d=\"M82.7273 52.4242H79.697V55.4545H82.7273V52.4242Z\" fill=\"black\"/>\\n<path d=\"M88.7879 52.4242H85.7576V55.4545H88.7879V52.4242Z\" fill=\"black\"/>\\n<path d=\"M97.8788 52.4242H94.8485V55.4545H97.8788V52.4242Z\" fill=\"black\"/>\\n<path d=\"M100.909 52.4242H97.8788V55.4545H100.909V52.4242Z\" fill=\"black\"/>\\n<path d=\"M106.97 52.4242H103.939V55.4545H106.97V52.4242Z\" fill=\"black\"/>\\n<path d=\"M110 52.4242H106.97V55.4545H110V52.4242Z\" fill=\"black\"/>\\n<path d=\"M16.0606 55.4545H13.0303V58.4849H16.0606V55.4545Z\" fill=\"black\"/>\\n<path d=\"M19.0909 55.4545H16.0606V58.4849H19.0909V55.4545Z\" fill=\"black\"/>\\n<path d=\"M22.1212 55.4545H19.0909V58.4849H22.1212V55.4545Z\" fill=\"black\"/>\\n<path d=\"M25.1515 55.4545H22.1212V58.4849H25.1515V55.4545Z\" fill=\"black\"/>\\n<path d=\"M28.1818 55.4545H25.1515V58.4849H28.1818V55.4545Z\" fill=\"black\"/>\\n<path d=\"M34.2424 55.4545H31.2121V58.4849H34.2424V55.4545Z\" fill=\"black\"/>\\n<path d=\"M37.2727 55.4545H34.2424V58.4849H37.2727V55.4545Z\" fill=\"black\"/>\\n<path d=\"M43.3333 55.4545H40.303V58.4849H43.3333V55.4545Z\" fill=\"black\"/>\\n<path d=\"M46.3636 55.4545H43.3333V58.4849H46.3636V55.4545Z\" fill=\"black\"/>\\n<path d=\"M49.3939 55.4545H46.3636V58.4849H49.3939V55.4545Z\" fill=\"black\"/>\\n<path d=\"M52.4242 55.4545H49.3939V58.4849H52.4242V55.4545Z\" fill=\"black\"/>\\n<path d=\"M67.5758 55.4545H64.5455V58.4849H67.5758V55.4545Z\" fill=\"black\"/>\\n<path d=\"M70.6061 55.4545H67.5758V58.4849H70.6061V55.4545Z\" fill=\"black\"/>\\n<path d=\"M73.6364 55.4545H70.6061V58.4849H73.6364V55.4545Z\" fill=\"black\"/>\\n<path d=\"M76.6667 55.4545H73.6364V58.4849H76.6667V55.4545Z\" fill=\"black\"/>\\n<path d=\"M79.697 55.4545H76.6667V58.4849H79.697V55.4545Z\" fill=\"black\"/>\\n<path d=\"M82.7273 55.4545H79.697V58.4849H82.7273V55.4545Z\" fill=\"black\"/>\\n<path d=\"M85.7576 55.4545H82.7273V58.4849H85.7576V55.4545Z\" fill=\"black\"/>\\n<path d=\"M91.8182 55.4545H88.7879V58.4849H91.8182V55.4545Z\" fill=\"black\"/>\\n<path d=\"M100.909 55.4545H97.8788V58.4849H100.909V55.4545Z\" fill=\"black\"/>\\n<path d=\"M22.1212 58.4849H19.0909V61.5152H22.1212V58.4849Z\" fill=\"black\"/>\\n<path d=\"M28.1818 58.4849H25.1515V61.5152H28.1818V58.4849Z\" fill=\"black\"/>\\n<path d=\"M31.2121 58.4849H28.1818V61.5152H31.2121V58.4849Z\" fill=\"black\"/>\\n<path d=\"M37.2727 58.4849H34.2424V61.5152H37.2727V58.4849Z\" fill=\"black\"/>\\n<path d=\"M40.303 58.4849H37.2727V61.5152H40.303V58.4849Z\" fill=\"black\"/>\\n<path d=\"M52.4242 58.4849H49.3939V61.5152H52.4242V58.4849Z\" fill=\"black\"/>\\n<path d=\"M58.4849 58.4849H55.4545V61.5152H58.4849V58.4849Z\" fill=\"black\"/>\\n<path d=\"M61.5152 58.4849H58.4849V61.5152H61.5152V58.4849Z\" fill=\"black\"/>\\n<path d=\"M64.5455 58.4849H61.5152V61.5152H64.5455V58.4849Z\" fill=\"black\"/>\\n<path d=\"M67.5758 58.4849H64.5455V61.5152H67.5758V58.4849Z\" fill=\"black\"/>\\n<path d=\"M73.6364 58.4849H70.6061V61.5152H73.6364V58.4849Z\" fill=\"black\"/>\\n<path d=\"M79.697 58.4849H76.6667V61.5152H79.697V58.4849Z\" fill=\"black\"/>\\n<path d=\"M88.7879 58.4849H85.7576V61.5152H88.7879V58.4849Z\" fill=\"black\"/>\\n<path d=\"M91.8182 58.4849H88.7879V61.5152H91.8182V58.4849Z\" fill=\"black\"/>\\n<path d=\"M94.8485 58.4849H91.8182V61.5152H94.8485V58.4849Z\" fill=\"black\"/>\\n<path d=\"M100.909 58.4849H97.8788V61.5152H100.909V58.4849Z\" fill=\"black\"/>\\n<path d=\"M106.97 58.4849H103.939V61.5152H106.97V58.4849Z\" fill=\"black\"/>\\n<path d=\"M13.0303 61.5152H10V64.5455H13.0303V61.5152Z\" fill=\"black\"/>\\n<path d=\"M16.0606 61.5152H13.0303V64.5455H16.0606V61.5152Z\" fill=\"black\"/>\\n<path d=\"M19.0909 61.5152H16.0606V64.5455H19.0909V61.5152Z\" fill=\"black\"/>\\n<path d=\"M25.1515 61.5152H22.1212V64.5455H25.1515V61.5152Z\" fill=\"black\"/>\\n<path d=\"M37.2727 61.5152H34.2424V64.5455H37.2727V61.5152Z\" fill=\"black\"/>\\n<path d=\"M52.4242 61.5152H49.3939V64.5455H52.4242V61.5152Z\" fill=\"black\"/>\\n<path d=\"M55.4545 61.5152H52.4242V64.5455H55.4545V61.5152Z\" fill=\"black\"/>\\n<path d=\"M61.5152 61.5152H58.4849V64.5455H61.5152V61.5152Z\" fill=\"black\"/>\\n<path d=\"M64.5455 61.5152H61.5152V64.5455H64.5455V61.5152Z\" fill=\"black\"/>\\n<path d=\"M67.5758 61.5152H64.5455V64.5455H67.5758V61.5152Z\" fill=\"black\"/>\\n<path d=\"M70.6061 61.5152H67.5758V64.5455H70.6061V61.5152Z\" fill=\"black\"/>\\n<path d=\"M85.7576 61.5152H82.7273V64.5455H85.7576V61.5152Z\" fill=\"black\"/>\\n<path d=\"M103.939 61.5152H100.909V64.5455H103.939V61.5152Z\" fill=\"black\"/>\\n<path d=\"M110 61.5152H106.97V64.5455H110V61.5152Z\" fill=\"black\"/>\\n<path d=\"M13.0303 64.5455H10V67.5758H13.0303V64.5455Z\" fill=\"black\"/>\\n<path d=\"M19.0909 64.5455H16.0606V67.5758H19.0909V64.5455Z\" fill=\"black\"/>\\n<path d=\"M25.1515 64.5455H22.1212V67.5758H25.1515V64.5455Z\" fill=\"black\"/>\\n<path d=\"M31.2121 64.5455H28.1818V67.5758H31.2121V64.5455Z\" fill=\"black\"/>\\n<path d=\"M37.2727 64.5455H34.2424V67.5758H37.2727V64.5455Z\" fill=\"black\"/>\\n<path d=\"M40.303 64.5455H37.2727V67.5758H40.303V64.5455Z\" fill=\"black\"/>\\n<path d=\"M43.3333 64.5455H40.303V67.5758H43.3333V64.5455Z\" fill=\"black\"/>\\n<path d=\"M49.3939 64.5455H46.3636V67.5758H49.3939V64.5455Z\" fill=\"black\"/>\\n<path d=\"M70.6061 64.5455H67.5758L67.5758 67.5758H70.6061V64.5455Z\" fill=\"black\"/>\\n<path d=\"M76.6667 64.5455H73.6364V67.5758H76.6667V64.5455Z\" fill=\"black\"/>\\n<path d=\"M91.8182 64.5455H88.7879V67.5758H91.8182V64.5455Z\" fill=\"black\"/>\\n<path d=\"M97.8788 64.5455H94.8485V67.5758H97.8788V64.5455Z\" fill=\"black\"/>\\n<path d=\"M103.939 64.5455H100.909V67.5758H103.939V64.5455Z\" fill=\"black\"/>\\n<path d=\"M110 64.5455H106.97V67.5758H110V64.5455Z\" fill=\"black\"/>\\n<path d=\"M13.0303 67.5758H10V70.6061H13.0303V67.5758Z\" fill=\"black\"/>\\n<path d=\"M19.0909 67.5758H16.0606V70.6061H19.0909V67.5758Z\" fill=\"black\"/>\\n<path d=\"M22.1212 67.5758H19.0909V70.6061H22.1212V67.5758Z\" fill=\"black\"/>\\n<path d=\"M40.303 67.5758H37.2727V70.6061H40.303V67.5758Z\" fill=\"black\"/>\\n<path d=\"M46.3636 67.5758H43.3333V70.6061H46.3636V67.5758Z\" fill=\"black\"/>\\n<path d=\"M55.4545 67.5758H52.4242V70.6061H55.4545V67.5758Z\" fill=\"black\"/>\\n<path d=\"M58.4849 67.5758H55.4545V70.6061H58.4849V67.5758Z\" fill=\"black\"/>\\n<path d=\"M61.5152 67.5758H58.4849V70.6061H61.5152V67.5758Z\" fill=\"black\"/>\\n<path d=\"M64.5455 67.5758H61.5152V70.6061H64.5455V67.5758Z\" fill=\"black\"/>\\n<path d=\"M70.6061 67.5758H67.5758V70.6061H70.6061V67.5758Z\" fill=\"black\"/>\\n<path d=\"M73.6364 67.5758H70.6061V70.6061H73.6364V67.5758Z\" fill=\"black\"/>\\n<path d=\"M88.7879 67.5758L85.7576 67.5758V70.6061H88.7879V67.5758Z\" fill=\"black\"/>\\n<path d=\"M103.939 67.5758H100.909V70.6061H103.939V67.5758Z\" fill=\"black\"/>\\n<path d=\"M106.97 67.5758H103.939V70.6061H106.97V67.5758Z\" fill=\"black\"/>\\n<path d=\"M110 67.5758H106.97V70.6061H110V67.5758Z\" fill=\"black\"/>\\n<path d=\"M13.0303 70.6061H10V73.6364H13.0303V70.6061Z\" fill=\"black\"/>\\n<path d=\"M16.0606 70.6061H13.0303V73.6364H16.0606V70.6061Z\" fill=\"black\"/>\\n<path d=\"M19.0909 70.6061H16.0606V73.6364H19.0909V70.6061Z\" fill=\"black\"/>\\n<path d=\"M22.1212 70.6061H19.0909V73.6364H22.1212V70.6061Z\" fill=\"black\"/>\\n<path d=\"M28.1818 70.6061H25.1515V73.6364H28.1818V70.6061Z\" fill=\"black\"/>\\n<path d=\"M31.2121 70.6061H28.1818V73.6364H31.2121V70.6061Z\" fill=\"black\"/>\\n<path d=\"M40.303 70.6061H37.2727V73.6364H40.303V70.6061Z\" fill=\"black\"/>\\n<path d=\"M43.3333 70.6061H40.303V73.6364H43.3333V70.6061Z\" fill=\"black\"/>\\n<path d=\"M52.4242 70.6061H49.3939V73.6364H52.4242V70.6061Z\" fill=\"black\"/>\\n<path d=\"M58.4849 70.6061H55.4545V73.6364H58.4849V70.6061Z\" fill=\"black\"/>\\n<path d=\"M64.5455 70.6061H61.5152V73.6364H64.5455V70.6061Z\" fill=\"black\"/>\\n<path d=\"M70.6061 70.6061H67.5758V73.6364H70.6061V70.6061Z\" fill=\"black\"/>\\n<path d=\"M73.6364 70.6061H70.6061V73.6364H73.6364V70.6061Z\" fill=\"black\"/>\\n<path d=\"M79.697 70.6061H76.6667V73.6364H79.697V70.6061Z\" fill=\"black\"/>\\n<path d=\"M91.8182 70.6061H88.7879V73.6364H91.8182V70.6061Z\" fill=\"black\"/>\\n<path d=\"M94.8485 70.6061H91.8182V73.6364H94.8485V70.6061Z\" fill=\"black\"/>\\n<path d=\"M100.909 70.6061H97.8788V73.6364H100.909V70.6061Z\" fill=\"black\"/>\\n<path d=\"M106.97 70.6061H103.939V73.6364H106.97V70.6061Z\" fill=\"black\"/>\\n<path d=\"M13.0303 73.6364H10V76.6667H13.0303V73.6364Z\" fill=\"black\"/>\\n<path d=\"M19.0909 73.6364H16.0606V76.6667H19.0909V73.6364Z\" fill=\"black\"/>\\n<path d=\"M25.1515 73.6364H22.1212V76.6667H25.1515V73.6364Z\" fill=\"black\"/>\\n<path d=\"M28.1818 73.6364H25.1515V76.6667H28.1818V73.6364Z\" fill=\"black\"/>\\n<path d=\"M34.2424 73.6364H31.2121V76.6667H34.2424V73.6364Z\" fill=\"black\"/>\\n<path d=\"M40.303 73.6364H37.2727V76.6667H40.303V73.6364Z\" fill=\"black\"/>\\n<path d=\"M43.3333 73.6364H40.303V76.6667H43.3333V73.6364Z\" fill=\"black\"/>\\n<path d=\"M46.3636 73.6364H43.3333V76.6667H46.3636V73.6364Z\" fill=\"black\"/>\\n<path d=\"M52.4242 73.6364H49.3939V76.6667H52.4242V73.6364Z\" fill=\"black\"/>\\n<path d=\"M55.4545 73.6364H52.4242V76.6667H55.4545V73.6364Z\" fill=\"black\"/>\\n<path d=\"M58.4849 73.6364H55.4545V76.6667H58.4849V73.6364Z\" fill=\"black\"/>\\n<path d=\"M67.5758 73.6364H64.5455V76.6667H67.5758L67.5758 73.6364Z\" fill=\"black\"/>\\n<path d=\"M70.6061 73.6364H67.5758L67.5758 76.6667H70.6061V73.6364Z\" fill=\"black\"/>\\n<path d=\"M76.6667 73.6364H73.6364V76.6667H76.6667V73.6364Z\" fill=\"black\"/>\\n<path d=\"M79.697 73.6364H76.6667V76.6667H79.697V73.6364Z\" fill=\"black\"/>\\n<path d=\"M82.7273 73.6364H79.697V76.6667H82.7273V73.6364Z\" fill=\"black\"/>\\n<path d=\"M88.7879 73.6364H85.7576V76.6667H88.7879V73.6364Z\" fill=\"black\"/>\\n<path d=\"M94.8485 73.6364H91.8182V76.6667H94.8485V73.6364Z\" fill=\"black\"/>\\n<path d=\"M97.8788 73.6364H94.8485V76.6667H97.8788V73.6364Z\" fill=\"black\"/>\\n<path d=\"M103.939 73.6364H100.909V76.6667H103.939V73.6364Z\" fill=\"black\"/>\\n<path d=\"M106.97 73.6364H103.939V76.6667H106.97V73.6364Z\" fill=\"black\"/>\\n<path d=\"M16.0606 76.6667H13.0303V79.697H16.0606V76.6667Z\" fill=\"black\"/>\\n<path d=\"M19.0909 76.6667H16.0606V79.697H19.0909V76.6667Z\" fill=\"black\"/>\\n<path d=\"M25.1515 76.6667H22.1212V79.697H25.1515V76.6667Z\" fill=\"black\"/>\\n<path d=\"M31.2121 76.6667H28.1818V79.697H31.2121V76.6667Z\" fill=\"black\"/>\\n<path d=\"M34.2424 76.6667H31.2121V79.697H34.2424V76.6667Z\" fill=\"black\"/>\\n<path d=\"M37.2727 76.6667H34.2424V79.697H37.2727V76.6667Z\" fill=\"black\"/>\\n<path d=\"M40.303 76.6667H37.2727V79.697H40.303V76.6667Z\" fill=\"black\"/>\\n<path d=\"M43.3333 76.6667H40.303V79.697H43.3333V76.6667Z\" fill=\"black\"/>\\n<path d=\"M46.3636 76.6667H43.3333V79.697H46.3636V76.6667Z\" fill=\"black\"/>\\n<path d=\"M52.4242 76.6667H49.3939V79.697H52.4242V76.6667Z\" fill=\"black\"/>\\n<path d=\"M61.5152 76.6667H58.4849V79.697H61.5152V76.6667Z\" fill=\"black\"/>\\n<path d=\"M64.5455 76.6667H61.5152V79.697H64.5455V76.6667Z\" fill=\"black\"/>\\n<path d=\"M70.6061 76.6667H67.5758L67.5758 79.697H70.6061V76.6667Z\" fill=\"black\"/>\\n<path d=\"M76.6667 76.6667H73.6364V79.697H76.6667V76.6667Z\" fill=\"black\"/>\\n<path d=\"M85.7576 76.6667H82.7273V79.697H85.7576V76.6667Z\" fill=\"black\"/>\\n<path d=\"M94.8485 76.6667H91.8182V79.697H94.8485V76.6667Z\" fill=\"black\"/>\\n<path d=\"M103.939 76.6667H100.909V79.697H103.939V76.6667Z\" fill=\"black\"/>\\n<path d=\"M110 76.6667H106.97V79.697H110V76.6667Z\" fill=\"black\"/>\\n<path d=\"M13.0303 79.697H10V82.7273H13.0303V79.697Z\" fill=\"black\"/>\\n<path d=\"M19.0909 79.697H16.0606V82.7273H19.0909V79.697Z\" fill=\"black\"/>\\n<path d=\"M22.1212 79.697H19.0909V82.7273H22.1212V79.697Z\" fill=\"black\"/>\\n<path d=\"M25.1515 79.697H22.1212V82.7273H25.1515V79.697Z\" fill=\"black\"/>\\n<path d=\"M37.2727 79.697H34.2424V82.7273H37.2727V79.697Z\" fill=\"black\"/>\\n<path d=\"M40.303 79.697H37.2727V82.7273H40.303V79.697Z\" fill=\"black\"/>\\n<path d=\"M46.3636 79.697H43.3333V82.7273H46.3636V79.697Z\" fill=\"black\"/>\\n<path d=\"M52.4242 79.697H49.3939V82.7273H52.4242V79.697Z\" fill=\"black\"/>\\n<path d=\"M58.4849 79.697H55.4545V82.7273H58.4849V79.697Z\" fill=\"black\"/>\\n<path d=\"M64.5455 79.697H61.5152V82.7273H64.5455V79.697Z\" fill=\"black\"/>\\n<path d=\"M76.6667 79.697H73.6364V82.7273H76.6667V79.697Z\" fill=\"black\"/>\\n<path d=\"M85.7576 79.697H82.7273V82.7273H85.7576V79.697Z\" fill=\"black\"/>\\n<path d=\"M88.7879 79.697H85.7576V82.7273H88.7879V79.697Z\" fill=\"black\"/>\\n<path d=\"M91.8182 79.697H88.7879V82.7273H91.8182V79.697Z\" fill=\"black\"/>\\n<path d=\"M94.8485 79.697H91.8182V82.7273H94.8485V79.697Z\" fill=\"black\"/>\\n<path d=\"M106.97 79.697H103.939V82.7273H106.97V79.697Z\" fill=\"black\"/>\\n<path d=\"M16.0606 82.7273H13.0303V85.7576H16.0606V82.7273Z\" fill=\"black\"/>\\n<path d=\"M25.1515 82.7273H22.1212V85.7576H25.1515V82.7273Z\" fill=\"black\"/>\\n<path d=\"M28.1818 82.7273H25.1515V85.7576H28.1818V82.7273Z\" fill=\"black\"/>\\n<path d=\"M31.2121 82.7273H28.1818V85.7576H31.2121V82.7273Z\" fill=\"black\"/>\\n<path d=\"M34.2424 82.7273H31.2121V85.7576H34.2424V82.7273Z\" fill=\"black\"/>\\n<path d=\"M37.2727 82.7273H34.2424V85.7576H37.2727V82.7273Z\" fill=\"black\"/>\\n<path d=\"M40.303 82.7273H37.2727V85.7576H40.303V82.7273Z\" fill=\"black\"/>\\n<path d=\"M46.3636 82.7273H43.3333V85.7576H46.3636V82.7273Z\" fill=\"black\"/>\\n<path d=\"M52.4242 82.7273H49.3939V85.7576H52.4242V82.7273Z\" fill=\"black\"/>\\n<path d=\"M55.4545 82.7273H52.4242V85.7576H55.4545V82.7273Z\" fill=\"black\"/>\\n<path d=\"M58.4849 82.7273H55.4545V85.7576H58.4849V82.7273Z\" fill=\"black\"/>\\n<path d=\"M67.5758 82.7273H64.5455V85.7576H67.5758V82.7273Z\" fill=\"black\"/>\\n<path d=\"M70.6061 82.7273H67.5758V85.7576H70.6061V82.7273Z\" fill=\"black\"/>\\n<path d=\"M76.6667 82.7273H73.6364V85.7576H76.6667V82.7273Z\" fill=\"black\"/>\\n<path d=\"M82.7273 82.7273H79.697V85.7576H82.7273V82.7273Z\" fill=\"black\"/>\\n<path d=\"M85.7576 82.7273H82.7273V85.7576H85.7576V82.7273Z\" fill=\"black\"/>\\n<path d=\"M88.7879 82.7273H85.7576V85.7576H88.7879V82.7273Z\" fill=\"black\"/>\\n<path d=\"M91.8182 82.7273H88.7879V85.7576H91.8182V82.7273Z\" fill=\"black\"/>\\n<path d=\"M94.8485 82.7273H91.8182V85.7576H94.8485V82.7273Z\" fill=\"black\"/>\\n<path d=\"M97.8788 82.7273H94.8485V85.7576H97.8788V82.7273Z\" fill=\"black\"/>\\n<path d=\"M100.909 82.7273H97.8788V85.7576H100.909V82.7273Z\" fill=\"black\"/>\\n<path d=\"M103.939 82.7273H100.909V85.7576H103.939V82.7273Z\" fill=\"black\"/>\\n<path d=\"M110 82.7273H106.97V85.7576H110V82.7273Z\" fill=\"black\"/>\\n<path d=\"M43.3333 85.7576H40.303V88.7879H43.3333V85.7576Z\" fill=\"black\"/>\\n<path d=\"M52.4242 85.7576H49.3939V88.7879H52.4242V85.7576Z\" fill=\"black\"/>\\n<path d=\"M55.4545 85.7576H52.4242V88.7879H55.4545V85.7576Z\" fill=\"black\"/>\\n<path d=\"M58.4849 85.7576H55.4545V88.7879H58.4849V85.7576Z\" fill=\"black\"/>\\n<path d=\"M61.5152 85.7576H58.4849V88.7879H61.5152V85.7576Z\" fill=\"black\"/>\\n<path d=\"M67.5758 85.7576H64.5455V88.7879H67.5758V85.7576Z\" fill=\"black\"/>\\n<path d=\"M76.6667 85.7576H73.6364V88.7879H76.6667V85.7576Z\" fill=\"black\"/>\\n<path d=\"M82.7273 85.7576H79.697V88.7879H82.7273V85.7576Z\" fill=\"black\"/>\\n<path d=\"M85.7576 85.7576H82.7273V88.7879H85.7576V85.7576Z\" fill=\"black\"/>\\n<path d=\"M97.8788 85.7576H94.8485V88.7879H97.8788V85.7576Z\" fill=\"black\"/>\\n<path d=\"M100.909 85.7576H97.8788V88.7879H100.909V85.7576Z\" fill=\"black\"/>\\n<path d=\"M103.939 85.7576H100.909V88.7879H103.939V85.7576Z\" fill=\"black\"/>\\n<path d=\"M106.97 85.7576H103.939V88.7879H106.97V85.7576Z\" fill=\"black\"/>\\n<path d=\"M110 85.7576H106.97V88.7879H110V85.7576Z\" fill=\"black\"/>\\n<path d=\"M13.0303 88.7879H10V91.8182H13.0303V88.7879Z\" fill=\"#2684FC\"/>\\n<path d=\"M16.0606 88.7879H13.0303V91.8182H16.0606V88.7879Z\" fill=\"#2684FC\"/>\\n<path d=\"M19.0909 88.7879H16.0606V91.8182H19.0909V88.7879Z\" fill=\"#2684FC\"/>\\n<path d=\"M22.1212 88.7879H19.0909V91.8182H22.1212V88.7879Z\" fill=\"#2684FC\"/>\\n<path d=\"M25.1515 88.7879H22.1212V91.8182H25.1515V88.7879Z\" fill=\"#2684FC\"/>\\n<path d=\"M28.1818 88.7879H25.1515V91.8182H28.1818V88.7879Z\" fill=\"#2684FC\"/>\\n<path d=\"M31.2121 88.7879H28.1818V91.8182H31.2121V88.7879Z\" fill=\"#2684FC\"/>\\n<path d=\"M37.2727 88.7879H34.2424V91.8182H37.2727V88.7879Z\" fill=\"black\"/>\\n<path d=\"M40.303 88.7879H37.2727V91.8182H40.303V88.7879Z\" fill=\"black\"/>\\n<path d=\"M46.3636 88.7879H43.3333V91.8182H46.3636V88.7879Z\" fill=\"black\"/>\\n<path d=\"M52.4242 88.7879H49.3939V91.8182H52.4242V88.7879Z\" fill=\"black\"/>\\n<path d=\"M55.4545 88.7879H52.4242V91.8182H55.4545V88.7879Z\" fill=\"black\"/>\\n<path d=\"M58.4849 88.7879H55.4545V91.8182H58.4849V88.7879Z\" fill=\"black\"/>\\n<path d=\"M64.5455 88.7879H61.5152V91.8182H64.5455V88.7879Z\" fill=\"black\"/>\\n<path d=\"M76.6667 88.7879H73.6364V91.8182H76.6667V88.7879Z\" fill=\"black\"/>\\n<path d=\"M85.7576 88.7879H82.7273V91.8182H85.7576V88.7879Z\" fill=\"black\"/>\\n<path d=\"M91.8182 88.7879H88.7879V91.8182H91.8182V88.7879Z\" fill=\"black\"/>\\n<path d=\"M97.8788 88.7879H94.8485V91.8182H97.8788V88.7879Z\" fill=\"black\"/>\\n<path d=\"M103.939 88.7879H100.909V91.8182H103.939V88.7879Z\" fill=\"black\"/>\\n<path d=\"M110 88.7879H106.97V91.8182H110V88.7879Z\" fill=\"black\"/>\\n<path d=\"M13.0303 91.8182H10V94.8485H13.0303V91.8182Z\" fill=\"#2684FC\"/>\\n<path d=\"M31.2121 91.8182H28.1818V94.8485H31.2121V91.8182Z\" fill=\"#2684FC\"/>\\n<path d=\"M37.2727 91.8182H34.2424V94.8485H37.2727V91.8182Z\" fill=\"black\"/>\\n<path d=\"M40.303 91.8182H37.2727V94.8485H40.303V91.8182Z\" fill=\"black\"/>\\n<path d=\"M52.4242 91.8182H49.3939V94.8485H52.4242V91.8182Z\" fill=\"black\"/>\\n<path d=\"M55.4545 91.8182H52.4242V94.8485H55.4545V91.8182Z\" fill=\"black\"/>\\n<path d=\"M61.5152 91.8182H58.4849V94.8485H61.5152V91.8182Z\" fill=\"black\"/>\\n<path d=\"M64.5455 91.8182H61.5152V94.8485H64.5455V91.8182Z\" fill=\"black\"/>\\n<path d=\"M67.5758 91.8182H64.5455V94.8485H67.5758V91.8182Z\" fill=\"black\"/>\\n<path d=\"M70.6061 91.8182H67.5758V94.8485H70.6061V91.8182Z\" fill=\"black\"/>\\n<path d=\"M73.6364 91.8182H70.6061V94.8485H73.6364V91.8182Z\" fill=\"black\"/>\\n<path d=\"M82.7273 91.8182H79.697V94.8485H82.7273V91.8182Z\" fill=\"black\"/>\\n<path d=\"M85.7576 91.8182H82.7273V94.8485H85.7576V91.8182Z\" fill=\"black\"/>\\n<path d=\"M97.8788 91.8182H94.8485V94.8485H97.8788V91.8182Z\" fill=\"black\"/>\\n<path d=\"M103.939 91.8182H100.909V94.8485H103.939V91.8182Z\" fill=\"black\"/>\\n<path d=\"M110 91.8182H106.97V94.8485H110V91.8182Z\" fill=\"black\"/>\\n<path d=\"M13.0303 94.8485H10V97.8788H13.0303V94.8485Z\" fill=\"#2684FC\"/>\\n<path d=\"M19.0909 94.8485H16.0606V97.8788H19.0909V94.8485Z\" fill=\"#2684FC\"/>\\n<path d=\"M22.1212 94.8485H19.0909V97.8788H22.1212V94.8485Z\" fill=\"#2684FC\"/>\\n<path d=\"M25.1515 94.8485H22.1212V97.8788H25.1515V94.8485Z\" fill=\"#2684FC\"/>\\n<path d=\"M31.2121 94.8485H28.1818V97.8788H31.2121V94.8485Z\" fill=\"#2684FC\"/>\\n<path d=\"M37.2727 94.8485H34.2424V97.8788H37.2727V94.8485Z\" fill=\"black\"/>\\n<path d=\"M43.3333 94.8485H40.303V97.8788H43.3333V94.8485Z\" fill=\"black\"/>\\n<path d=\"M46.3636 94.8485H43.3333V97.8788H46.3636V94.8485Z\" fill=\"black\"/>\\n<path d=\"M49.3939 94.8485H46.3636V97.8788H49.3939V94.8485Z\" fill=\"black\"/>\\n<path d=\"M61.5152 94.8485H58.4849V97.8788H61.5152V94.8485Z\" fill=\"black\"/>\\n<path d=\"M67.5758 94.8485H64.5455V97.8788H67.5758V94.8485Z\" fill=\"black\"/>\\n<path d=\"M70.6061 94.8485H67.5758V97.8788H70.6061V94.8485Z\" fill=\"black\"/>\\n<path d=\"M73.6364 94.8485H70.6061V97.8788H73.6364V94.8485Z\" fill=\"black\"/>\\n<path d=\"M82.7273 94.8485H79.697V97.8788H82.7273V94.8485Z\" fill=\"black\"/>\\n<path d=\"M85.7576 94.8485H82.7273V97.8788H85.7576V94.8485Z\" fill=\"black\"/>\\n<path d=\"M88.7879 94.8485H85.7576V97.8788H88.7879V94.8485Z\" fill=\"black\"/>\\n<path d=\"M91.8182 94.8485H88.7879V97.8788H91.8182V94.8485Z\" fill=\"black\"/>\\n<path d=\"M94.8485 94.8485H91.8182V97.8788H94.8485V94.8485Z\" fill=\"black\"/>\\n<path d=\"M97.8788 94.8485H94.8485V97.8788H97.8788V94.8485Z\" fill=\"black\"/>\\n<path d=\"M100.909 94.8485H97.8788V97.8788H100.909V94.8485Z\" fill=\"black\"/>\\n<path d=\"M106.97 94.8485H103.939V97.8788H106.97V94.8485Z\" fill=\"black\"/>\\n<path d=\"M13.0303 97.8788H10V100.909H13.0303V97.8788Z\" fill=\"#2684FC\"/>\\n<path d=\"M19.0909 97.8788H16.0606V100.909H19.0909V97.8788Z\" fill=\"#2684FC\"/>\\n<path d=\"M22.1212 97.8788H19.0909V100.909H22.1212V97.8788Z\" fill=\"#2684FC\"/>\\n<path d=\"M25.1515 97.8788H22.1212V100.909H25.1515V97.8788Z\" fill=\"#2684FC\"/>\\n<path d=\"M31.2121 97.8788H28.1818V100.909H31.2121V97.8788Z\" fill=\"#2684FC\"/>\\n<path d=\"M37.2727 97.8788H34.2424V100.909H37.2727V97.8788Z\" fill=\"black\"/>\\n<path d=\"M40.303 97.8788H37.2727V100.909H40.303V97.8788Z\" fill=\"black\"/>\\n<path d=\"M46.3636 97.8788H43.3333V100.909H46.3636V97.8788Z\" fill=\"black\"/>\\n<path d=\"M49.3939 97.8788H46.3636V100.909H49.3939V97.8788Z\" fill=\"black\"/>\\n<path d=\"M52.4242 97.8788H49.3939V100.909H52.4242V97.8788Z\" fill=\"black\"/>\\n<path d=\"M58.4849 97.8788H55.4545V100.909H58.4849V97.8788Z\" fill=\"black\"/>\\n<path d=\"M61.5152 97.8788H58.4849V100.909H61.5152V97.8788Z\" fill=\"black\"/>\\n<path d=\"M64.5455 97.8788H61.5152V100.909H64.5455V97.8788Z\" fill=\"black\"/>\\n<path d=\"M70.6061 97.8788H67.5758L67.5758 100.909H70.6061V97.8788Z\" fill=\"black\"/>\\n<path d=\"M73.6364 97.8788H70.6061V100.909H73.6364V97.8788Z\" fill=\"black\"/>\\n<path d=\"M76.6667 97.8788H73.6364V100.909H76.6667V97.8788Z\" fill=\"black\"/>\\n<path d=\"M94.8485 97.8788H91.8182V100.909H94.8485V97.8788Z\" fill=\"black\"/>\\n<path d=\"M97.8788 97.8788H94.8485V100.909H97.8788V97.8788Z\" fill=\"black\"/>\\n<path d=\"M100.909 97.8788H97.8788V100.909H100.909V97.8788Z\" fill=\"black\"/>\\n<path d=\"M103.939 97.8788H100.909V100.909H103.939V97.8788Z\" fill=\"black\"/>\\n<path d=\"M106.97 97.8788H103.939V100.909H106.97V97.8788Z\" fill=\"black\"/>\\n<path d=\"M13.0303 100.909H10V103.939H13.0303V100.909Z\" fill=\"#2684FC\"/>\\n<path d=\"M19.0909 100.909H16.0606V103.939H19.0909V100.909Z\" fill=\"#2684FC\"/>\\n<path d=\"M22.1212 100.909H19.0909V103.939H22.1212V100.909Z\" fill=\"#2684FC\"/>\\n<path d=\"M25.1515 100.909H22.1212V103.939H25.1515V100.909Z\" fill=\"#2684FC\"/>\\n<path d=\"M31.2121 100.909H28.1818V103.939H31.2121V100.909Z\" fill=\"#2684FC\"/>\\n<path d=\"M37.2727 100.909H34.2424V103.939H37.2727V100.909Z\" fill=\"black\"/>\\n<path d=\"M40.303 100.909H37.2727V103.939H40.303V100.909Z\" fill=\"black\"/>\\n<path d=\"M43.3333 100.909H40.303V103.939H43.3333V100.909Z\" fill=\"black\"/>\\n<path d=\"M46.3636 100.909H43.3333V103.939H46.3636V100.909Z\" fill=\"black\"/>\\n<path d=\"M52.4242 100.909H49.3939V103.939H52.4242V100.909Z\" fill=\"black\"/>\\n<path d=\"M55.4545 100.909H52.4242V103.939H55.4545V100.909Z\" fill=\"black\"/>\\n<path d=\"M58.4849 100.909H55.4545V103.939H58.4849V100.909Z\" fill=\"black\"/>\\n<path d=\"M64.5455 100.909H61.5152V103.939H64.5455V100.909Z\" fill=\"black\"/>\\n<path d=\"M67.5758 100.909H64.5455V103.939H67.5758L67.5758 100.909Z\" fill=\"black\"/>\\n<path d=\"M70.6061 100.909H67.5758L67.5758 103.939H70.6061V100.909Z\" fill=\"black\"/>\\n<path d=\"M76.6667 100.909H73.6364V103.939H76.6667V100.909Z\" fill=\"black\"/>\\n<path d=\"M79.697 100.909H76.6667V103.939H79.697V100.909Z\" fill=\"black\"/>\\n<path d=\"M82.7273 100.909H79.697V103.939H82.7273V100.909Z\" fill=\"black\"/>\\n<path d=\"M88.7879 100.909H85.7576V103.939H88.7879V100.909Z\" fill=\"black\"/>\\n<path d=\"M91.8182 100.909H88.7879V103.939H91.8182V100.909Z\" fill=\"black\"/>\\n<path d=\"M94.8485 100.909H91.8182V103.939H94.8485V100.909Z\" fill=\"black\"/>\\n<path d=\"M106.97 100.909H103.939V103.939H106.97V100.909Z\" fill=\"black\"/>\\n<path d=\"M13.0303 103.939H10V106.97H13.0303V103.939Z\" fill=\"#2684FC\"/>\\n<path d=\"M31.2121 103.939H28.1818V106.97H31.2121V103.939Z\" fill=\"#2684FC\"/>\\n<path d=\"M40.303 103.939H37.2727V106.97H40.303V103.939Z\" fill=\"black\"/>\\n<path d=\"M43.3333 103.939H40.303V106.97H43.3333V103.939Z\" fill=\"black\"/>\\n<path d=\"M46.3636 103.939H43.3333V106.97H46.3636V103.939Z\" fill=\"black\"/>\\n<path d=\"M52.4242 103.939H49.3939V106.97H52.4242V103.939Z\" fill=\"black\"/>\\n<path d=\"M55.4545 103.939H52.4242V106.97H55.4545V103.939Z\" fill=\"black\"/>\\n<path d=\"M67.5758 103.939H64.5455V106.97H67.5758V103.939Z\" fill=\"black\"/>\\n<path d=\"M70.6061 103.939H67.5758V106.97H70.6061V103.939Z\" fill=\"black\"/>\\n<path d=\"M73.6364 103.939H70.6061V106.97H73.6364V103.939Z\" fill=\"black\"/>\\n<path d=\"M79.697 103.939H76.6667V106.97H79.697V103.939Z\" fill=\"black\"/>\\n<path d=\"M88.7879 103.939H85.7576V106.97H88.7879V103.939Z\" fill=\"black\"/>\\n<path d=\"M91.8182 103.939H88.7879V106.97H91.8182V103.939Z\" fill=\"black\"/>\\n<path d=\"M94.8485 103.939H91.8182V106.97H94.8485V103.939Z\" fill=\"black\"/>\\n<path d=\"M100.909 103.939H97.8788V106.97H100.909V103.939Z\" fill=\"black\"/>\\n<path d=\"M110 103.939H106.97V106.97H110V103.939Z\" fill=\"black\"/>\\n<path d=\"M13.0303 106.97H10V110H13.0303V106.97Z\" fill=\"#2684FC\"/>\\n<path d=\"M16.0606 106.97H13.0303V110H16.0606V106.97Z\" fill=\"#2684FC\"/>\\n<path d=\"M19.0909 106.97H16.0606V110H19.0909V106.97Z\" fill=\"#2684FC\"/>\\n<path d=\"M22.1212 106.97H19.0909V110H22.1212V106.97Z\" fill=\"#2684FC\"/>\\n<path d=\"M25.1515 106.97H22.1212V110H25.1515V106.97Z\" fill=\"#2684FC\"/>\\n<path d=\"M28.1818 106.97H25.1515V110H28.1818V106.97Z\" fill=\"#2684FC\"/>\\n<path d=\"M31.2121 106.97H28.1818V110H31.2121V106.97Z\" fill=\"#2684FC\"/>\\n<path d=\"M40.303 106.97H37.2727V110H40.303V106.97Z\" fill=\"black\"/>\\n<path d=\"M52.4242 106.97H49.3939V110H52.4242V106.97Z\" fill=\"black\"/>\\n<path d=\"M61.5152 106.97H58.4849V110H61.5152V106.97Z\" fill=\"black\"/>\\n<path d=\"M64.5455 106.97H61.5152V110H64.5455V106.97Z\" fill=\"black\"/>\\n<path d=\"M70.6061 106.97H67.5758L67.5758 110H70.6061V106.97Z\" fill=\"black\"/>\\n<path d=\"M76.6667 106.97H73.6364V110H76.6667V106.97Z\" fill=\"black\"/>\\n<path d=\"M88.7879 106.97H85.7576V110H88.7879V106.97Z\" fill=\"black\"/>\\n<path d=\"M97.8788 106.97H94.8485V110H97.8788V106.97Z\" fill=\"black\"/>\\n<path d=\"M100.909 106.97H97.8788V110H100.909V106.97Z\" fill=\"black\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_b_12860_4088\" x=\"-30\" y=\"-30\" width=\"180\" height=\"190\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"15\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_12860_4088\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_backgroundBlur_12860_4088\" result=\"shape\"/>\\n</filter>\\n</defs>\\n</svg>\\n',variants:{m8QJN0Dkq:{opacity:1}},withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17fjy8l\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"fWRWQih9g\",onMouseEnter:onMouseEntero6lsgk,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",\"--qxb4f\":RaoIyxCoA,backdropFilter:\"blur(15px)\",backgroundColor:xV7aloHMt,borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"var(--qxb4f)\",WebkitBackdropFilter:\"blur(15px)\"},variants:{m8QJN0Dkq:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},MUXhLP7xb:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},WTM1tCTDS:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"}},...addPropertyOverrides({asUQYMkvy:{onMouseEnter:onMouseEnter1ldd4j0},m8QJN0Dkq:{\"data-border\":true},MfZ0sESdZ:{onMouseEnter:onMouseEntervxhiu0},MUXhLP7xb:{\"data-border\":true,\"data-highlight\":undefined,onMouseEnter:undefined},WTM1tCTDS:{\"data-border\":true,\"data-highlight\":undefined,onMouseEnter:undefined}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-9sis0n\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:95,layoutDependency:layoutDependency,layoutId:\"DjRjz5yRh\",svg:'<svg width=\"95\" height=\"24\" viewBox=\"0 0 95 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.1258 11.3645C14.136 10.565 14.3477 9.78101 14.741 9.0856C15.1343 8.39019 15.6966 7.80592 16.3754 7.38714C15.9442 6.76913 15.3753 6.26053 14.7139 5.90173C14.0525 5.54294 13.3168 5.34384 12.5654 5.32025C10.9623 5.1514 9.40826 6.2828 8.59138 6.2828C7.7587 6.2828 6.50099 5.33701 5.14664 5.36497C4.27061 5.39337 3.41686 5.649 2.66855 6.10694C1.92025 6.56489 1.30292 7.20953 0.876714 7.97806C-0.969517 11.1856 0.407605 15.8996 2.17614 18.4923C3.06097 19.7619 4.09509 21.18 5.44822 21.1298C6.77233 21.0746 7.26686 20.2825 8.86518 20.2825C10.4487 20.2825 10.9126 21.1298 12.2932 21.0978C13.714 21.0746 14.6092 19.8226 15.463 18.5409C16.0988 17.6363 16.588 16.6365 16.9125 15.5786C16.0871 15.2282 15.3826 14.6418 14.8871 13.8924C14.3915 13.143 14.1267 12.2639 14.1258 11.3645Z\" fill=\"white\"/>\\n<path d=\"M11.5181 3.6151C12.2928 2.68188 12.6745 1.48239 12.5821 0.271351C11.3985 0.396092 10.3052 0.963718 9.52004 1.86113C9.13615 2.29954 8.84213 2.80957 8.65479 3.36207C8.46745 3.91457 8.39047 4.49871 8.42824 5.08108C9.02024 5.0872 9.6059 4.95844 10.1411 4.70451C10.6763 4.45058 11.1472 4.07809 11.5181 3.6151Z\" fill=\"white\"/>\\n<path d=\"M30.8635 17.9157H26.3449L25.2597 21.1309H23.3458L27.6258 9.23543H29.6143L33.8942 21.1309H31.9477L30.8635 17.9157ZM26.8129 16.432H30.3946L28.6289 11.214H28.5795L26.8129 16.432Z\" fill=\"white\"/>\\n<path d=\"M43.1374 16.795C43.1374 19.4901 41.6999 21.2217 39.5305 21.2217C38.981 21.2505 38.4345 21.1235 37.9536 20.8551C37.4726 20.5868 37.0767 20.188 36.8112 19.7043H36.7701V24H34.9961V12.4582H36.7133V13.9007H36.7459C37.0237 13.4193 37.4263 13.0226 37.9109 12.7526C38.3955 12.4826 38.9439 12.3495 39.4979 12.3674C41.6914 12.3674 43.1374 14.1074 43.1374 16.795ZM41.3139 16.795C41.3139 15.0391 40.4096 13.8848 39.0299 13.8848C37.6744 13.8848 36.7627 15.0634 36.7627 16.795C36.7627 18.5425 37.6744 19.7127 39.0299 19.7127C40.4096 19.7127 41.3139 18.5668 41.3139 16.795Z\" fill=\"white\"/>\\n<path d=\"M52.65 16.795C52.65 19.4901 51.2125 21.2217 49.0432 21.2217C48.4936 21.2505 47.9471 21.1235 47.4662 20.8551C46.9852 20.5868 46.5893 20.188 46.3238 19.7043H46.2827V24H44.5087V12.4582H46.2259V13.9007H46.2585C46.5363 13.4193 46.9388 13.0226 47.4234 12.7526C47.908 12.4826 48.4565 12.3495 49.0105 12.3674C51.2041 12.3674 52.65 14.1074 52.65 16.795ZM50.8265 16.795C50.8265 15.0391 49.9222 13.8848 48.5425 13.8848C47.187 13.8848 46.2753 15.0634 46.2753 16.795C46.2753 18.5425 47.187 19.7127 48.5425 19.7127C49.9223 19.7127 50.8265 18.5668 50.8265 16.795Z\" fill=\"white\"/>\\n<path d=\"M58.9371 17.8165C59.0685 18.9962 60.2105 19.7707 61.7711 19.7707C63.2664 19.7707 64.3422 18.9961 64.3422 17.9325C64.3422 17.0092 63.6934 16.4563 62.157 16.0775L60.6207 15.7061C58.4439 15.1785 57.4334 14.1569 57.4334 12.4993C57.4334 10.4468 59.2158 9.03709 61.7468 9.03709C64.2518 9.03709 65.969 10.4468 66.0268 12.4993H64.2359C64.1287 11.3122 63.1508 10.5956 61.7217 10.5956C60.2925 10.5956 59.3146 11.3206 59.3146 12.3758C59.3146 13.2168 59.9392 13.7116 61.4672 14.0905L62.7732 14.4123C65.2054 14.9895 66.216 15.9699 66.216 17.7098C66.216 19.9353 64.4494 21.3292 61.6396 21.3292C59.0107 21.3292 57.2357 19.968 57.121 17.8165L58.9371 17.8165Z\" fill=\"white\"/>\\n<path d=\"M70.0447 10.4057V12.4582H71.6883V13.8679H70.0447V18.6491C70.0447 19.3919 70.3738 19.738 71.0963 19.738C71.2914 19.7346 71.4862 19.7208 71.6799 19.6968V21.0981C71.3551 21.159 71.0249 21.1866 70.6945 21.1805C68.9447 21.1805 68.2623 20.521 68.2623 18.839V13.8679H67.0056V12.4582H68.2623V10.4057H70.0447Z\" fill=\"white\"/>\\n<path d=\"M72.6402 16.795C72.6402 14.0662 74.2417 12.3515 76.7392 12.3515C79.2451 12.3515 80.8392 14.0662 80.8392 16.795C80.8392 19.5313 79.2535 21.2385 76.7392 21.2385C74.2259 21.2385 72.6402 19.5313 72.6402 16.795ZM79.0316 16.795C79.0316 14.9231 78.1767 13.8183 76.7392 13.8183C75.3017 13.8183 74.4478 14.9316 74.4478 16.795C74.4478 18.6744 75.3017 19.7708 76.7392 19.7708C78.1767 19.7708 79.0316 18.6744 79.0316 16.795Z\" fill=\"white\"/>\\n<path d=\"M82.3019 12.4582H83.9939V13.9343H84.035C84.1494 13.4733 84.4186 13.0658 84.7972 12.7805C85.1758 12.4951 85.6407 12.3493 86.1139 12.3674C86.3183 12.3667 86.5222 12.389 86.7217 12.4338V14.099C86.4636 14.0198 86.1944 13.9835 85.9246 13.9914C85.6669 13.9809 85.4099 14.0265 85.1714 14.1251C84.9329 14.2236 84.7185 14.3728 84.5429 14.5624C84.3672 14.7519 84.2346 14.9774 84.154 15.2232C84.0734 15.4691 84.0468 15.7296 84.076 15.9867V21.1309H82.3019L82.3019 12.4582Z\" fill=\"white\"/>\\n<path d=\"M94.9012 18.5836C94.6625 20.158 93.1346 21.2385 91.1797 21.2385C88.6654 21.2385 87.1048 19.5481 87.1048 16.8362C87.1048 14.1158 88.6738 12.3515 91.1051 12.3515C93.4963 12.3515 95 13.9998 95 16.6294V17.2394H88.8957V17.3469C88.8675 17.6661 88.9073 17.9876 89.0125 18.2902C89.1177 18.5928 89.2858 18.8694 89.5057 19.1017C89.7256 19.3341 89.9922 19.5168 90.2879 19.6378C90.5836 19.7588 90.9016 19.8153 91.2207 19.8035C91.6399 19.8429 92.0606 19.7455 92.4202 19.5257C92.7799 19.3059 93.0592 18.9755 93.2166 18.5836L94.9012 18.5836ZM88.904 15.9952H93.225C93.2409 15.7082 93.1976 15.421 93.0976 15.1516C92.9977 14.8822 92.8434 14.6365 92.6443 14.4298C92.4453 14.2231 92.2058 14.0599 91.9409 13.9505C91.676 13.8411 91.3914 13.7878 91.1051 13.794C90.8162 13.7923 90.5298 13.848 90.2625 13.9579C89.9951 14.0678 89.7521 14.2298 89.5475 14.4344C89.3429 14.639 89.1807 14.8823 89.0702 15.1502C88.9598 15.4181 88.9033 15.7053 88.904 15.9952Z\" fill=\"white\"/>\\n<path d=\"M26.5905 0.281629C26.9625 0.254846 27.3357 0.311229 27.6833 0.446711C28.0308 0.582193 28.3441 0.793397 28.6005 1.06509C28.8569 1.33678 29.05 1.66218 29.1659 2.01783C29.2818 2.37348 29.3176 2.75051 29.2707 3.12172C29.2707 4.94776 28.2872 5.9974 26.5905 5.9974H24.5331V0.281629H26.5905ZM25.4178 5.18907H26.4917C26.7575 5.20501 27.0234 5.16128 27.2702 5.06107C27.517 4.96086 27.7385 4.80668 27.9184 4.60977C28.0984 4.41285 28.2323 4.17815 28.3104 3.92275C28.3886 3.66735 28.409 3.39768 28.3702 3.13337C28.4062 2.8701 28.3837 2.6021 28.3043 2.34857C28.225 2.09504 28.0907 1.86226 27.9112 1.66691C27.7317 1.47156 27.5113 1.31848 27.2659 1.21863C27.0205 1.11878 26.7561 1.07463 26.4917 1.08936H25.4178V5.18907Z\" fill=\"white\"/>\\n<path d=\"M30.2701 3.83872C30.2431 3.55526 30.2754 3.26925 30.365 2.99905C30.4545 2.72885 30.5994 2.48042 30.7903 2.26969C30.9811 2.05897 31.2138 1.8906 31.4733 1.77538C31.7328 1.66017 32.0135 1.60065 32.2973 1.60065C32.581 1.60065 32.8617 1.66017 33.1212 1.77538C33.3807 1.8906 33.6134 2.05897 33.8042 2.26969C33.9951 2.48042 34.14 2.72885 34.2295 2.99905C34.3191 3.26925 34.3514 3.55526 34.3244 3.83872C34.352 4.12248 34.32 4.40888 34.2307 4.67952C34.1413 4.95016 33.9966 5.19904 33.8056 5.41018C33.6147 5.62132 33.3819 5.79005 33.1221 5.90551C32.8623 6.02097 32.5814 6.08062 32.2973 6.08062C32.0131 6.08062 31.7322 6.02097 31.4724 5.90551C31.2126 5.79005 30.9798 5.62132 30.7889 5.41018C30.598 5.19904 30.4532 4.95016 30.3638 4.67952C30.2745 4.40888 30.2425 4.12248 30.2701 3.83872ZM33.4518 3.83872C33.4518 2.90372 33.0332 2.35694 32.2986 2.35694C31.5612 2.35694 31.1464 2.90372 31.1464 3.83873C31.1464 4.78122 31.5613 5.32379 32.2986 5.32379C33.0333 5.32378 33.4518 4.77747 33.4518 3.83872Z\" fill=\"white\"/>\\n<path d=\"M39.7137 5.99732H38.8337L37.9453 2.82045H37.8781L36.9934 5.99732H36.1218L34.9369 1.68386H35.7974L36.5674 4.97528H36.6308L37.5146 1.68386H38.3284L39.2122 4.97528H39.2793L40.0456 1.68386H40.8939L39.7137 5.99732Z\" fill=\"white\"/>\\n<path d=\"M41.8905 1.68386H42.7072V2.36909H42.7705C42.8781 2.12298 43.0595 1.91667 43.2894 1.77891C43.5194 1.64116 43.7864 1.57882 44.0533 1.60059C44.2625 1.58481 44.4725 1.61646 44.6678 1.69318C44.8631 1.76991 45.0387 1.88975 45.1816 2.04383C45.3245 2.1979 45.431 2.38227 45.4933 2.58326C45.5555 2.78425 45.5719 2.99672 45.5412 3.20492V5.99727H44.6928V3.41869C44.6928 2.72551 44.3927 2.38078 43.7653 2.38078C43.6232 2.37415 43.4815 2.3984 43.3497 2.45188C43.2179 2.50536 43.0992 2.58681 43.0017 2.69063C42.9042 2.79446 42.8302 2.9182 42.7849 3.0534C42.7395 3.18859 42.7238 3.33203 42.7388 3.47388V5.99732H41.8905L41.8905 1.68386Z\" fill=\"white\"/>\\n<path d=\"M46.8929 0H47.7413V5.99731H46.8929V0Z\" fill=\"white\"/>\\n<path d=\"M48.9206 3.83872C48.8936 3.55524 48.9259 3.26922 49.0155 2.99901C49.1051 2.72879 49.25 2.48036 49.4409 2.26963C49.6318 2.05889 49.8644 1.89052 50.124 1.77531C50.3835 1.66009 50.6642 1.60057 50.948 1.60057C51.2318 1.60057 51.5124 1.66009 51.7719 1.77531C52.0315 1.89052 52.2641 2.05889 52.455 2.26963C52.6459 2.48036 52.7908 2.72879 52.8804 2.99901C52.97 3.26922 53.0024 3.55524 52.9754 3.83872C53.0029 4.12249 52.9709 4.4089 52.8815 4.67953C52.7921 4.95017 52.6473 5.19905 52.4564 5.41018C52.2655 5.62132 52.0326 5.79003 51.7728 5.90549C51.5131 6.02095 51.2321 6.0806 50.948 6.0806C50.6638 6.0806 50.3828 6.02095 50.1231 5.90549C49.8633 5.79003 49.6304 5.62132 49.4395 5.41018C49.2486 5.19905 49.1038 4.95017 49.0144 4.67953C48.925 4.4089 48.8931 4.12249 48.9206 3.83872ZM52.1023 3.83872C52.1023 2.90372 51.6837 2.35694 50.9491 2.35694C50.2117 2.35694 49.7969 2.90372 49.7969 3.83873C49.7969 4.78122 50.2117 5.32379 50.9491 5.32379C51.6837 5.32378 52.1023 4.77747 52.1023 3.83872Z\" fill=\"white\"/>\\n<path d=\"M53.8685 4.77747C53.8685 4.00103 54.4446 3.55341 55.4672 3.48979L56.6316 3.42244V3.05012C56.6316 2.59454 56.3314 2.33729 55.7516 2.33729C55.278 2.33729 54.9499 2.51176 54.8557 2.81673H54.0344C54.1211 2.07583 54.8156 1.60061 55.7907 1.60061C56.8684 1.60061 57.4762 2.13897 57.4762 3.05012V5.99733H56.6596V5.39114H56.5925C56.4562 5.60858 56.2649 5.78585 56.0381 5.90483C55.8112 6.02382 55.557 6.08026 55.3013 6.0684C55.1209 6.08723 54.9385 6.06791 54.7659 6.01168C54.5934 5.95545 54.4345 5.86356 54.2995 5.74194C54.1645 5.62031 54.0564 5.47165 53.9821 5.30553C53.9079 5.13941 53.8692 4.95952 53.8685 4.77747ZM56.6316 4.40889V4.04827L55.5819 4.11562C54.9899 4.15538 54.7214 4.35744 54.7214 4.73771C54.7214 5.12592 55.0571 5.35184 55.5186 5.35184C55.6538 5.36558 55.7904 5.35187 55.9202 5.31156C56.05 5.27124 56.1704 5.20512 56.2743 5.11714C56.3781 5.02917 56.4633 4.92113 56.5247 4.79945C56.5861 4.67778 56.6224 4.54496 56.6316 4.40889Z\" fill=\"white\"/>\\n<path d=\"M58.5912 3.83872C58.5912 2.47574 59.2894 1.6123 60.3755 1.6123C60.6442 1.59988 60.9108 1.66445 61.1442 1.79845C61.3776 1.93246 61.5682 2.13037 61.6937 2.36906H61.7571V0H62.6054V5.99731H61.7925V5.31581H61.7254C61.5902 5.55289 61.393 5.74834 61.155 5.88099C60.9171 6.01365 60.6475 6.07846 60.3755 6.0684C59.282 6.06844 58.5912 5.20498 58.5912 3.83872ZM59.4675 3.83872C59.4675 4.75362 59.8973 5.30414 60.6161 5.30414C61.3311 5.30414 61.773 4.74568 61.773 3.84247C61.773 2.94348 61.3264 2.37705 60.6161 2.37705C59.9019 2.37705 59.4675 2.93131 59.4675 3.83872Z\" fill=\"white\"/>\\n<path d=\"M66.1153 3.83872C66.0883 3.55526 66.1206 3.26925 66.2102 2.99905C66.2998 2.72885 66.4447 2.48042 66.6355 2.26969C66.8264 2.05897 67.059 1.8906 67.3186 1.77538C67.5781 1.66017 67.8587 1.60065 68.1425 1.60065C68.4263 1.60065 68.7069 1.66017 68.9664 1.77538C69.226 1.8906 69.4586 2.05897 69.6495 2.26969C69.8403 2.48042 69.9852 2.72885 70.0748 2.99905C70.1644 3.26925 70.1967 3.55526 70.1697 3.83872C70.1972 4.12248 70.1653 4.40888 70.0759 4.67952C69.9866 4.95016 69.8418 5.19904 69.6509 5.41018C69.46 5.62132 69.2271 5.79005 68.9674 5.90551C68.7076 6.02097 68.4266 6.08062 68.1425 6.08062C67.8584 6.08062 67.5774 6.02097 67.3176 5.90551C67.0579 5.79005 66.825 5.62132 66.6341 5.41018C66.4432 5.19904 66.2984 4.95016 66.2091 4.67952C66.1197 4.40888 66.0878 4.12248 66.1153 3.83872ZM69.2971 3.83872C69.2971 2.90372 68.8785 2.35694 68.1439 2.35694C67.4065 2.35694 66.9917 2.90372 66.9917 3.83873C66.9917 4.78122 67.4065 5.32379 68.1439 5.32379C68.8785 5.32378 69.2971 4.77747 69.2971 3.83872Z\" fill=\"white\"/>\\n<path d=\"M71.3079 1.68386H72.1246V2.36909H72.188C72.2955 2.12298 72.4769 1.91667 72.7068 1.77891C72.9368 1.64116 73.2038 1.57882 73.4707 1.60059C73.6799 1.58481 73.8899 1.61646 74.0852 1.69318C74.2805 1.76991 74.4561 1.88975 74.599 2.04383C74.7419 2.1979 74.8484 2.38227 74.9107 2.58326C74.9729 2.78425 74.9893 2.99672 74.9586 3.20492V5.99727H74.1103V3.41869C74.1103 2.72551 73.8101 2.38078 73.1827 2.38078C73.0407 2.37415 72.8989 2.3984 72.7671 2.45188C72.6353 2.50536 72.5166 2.58681 72.4191 2.69063C72.3216 2.79446 72.2477 2.9182 72.2023 3.0534C72.1569 3.18859 72.1412 3.33203 72.1563 3.47388V5.99732H71.3079V1.68386Z\" fill=\"white\"/>\\n<path d=\"M79.7522 0.609939V1.7035H80.6835V2.42055H79.7522V4.63855C79.7522 5.09038 79.9377 5.28823 80.36 5.28823C80.4681 5.28789 80.5762 5.28133 80.6835 5.26859V5.97767C80.5312 6.00502 80.3768 6.01957 80.2221 6.02117C79.2786 6.02117 78.9029 5.68814 78.9029 4.85651V2.42051H78.2205V1.70347H78.9029V0.609939H79.7522Z\" fill=\"white\"/>\\n<path d=\"M81.8423 0H82.6832V2.37704H82.7503C82.8631 2.12863 83.0494 1.92115 83.284 1.78288C83.5185 1.6446 83.7898 1.58226 84.061 1.60434C84.2691 1.59298 84.4771 1.62784 84.6702 1.70643C84.8633 1.78502 85.0367 1.9054 85.1781 2.05899C85.3195 2.21258 85.4254 2.3956 85.4882 2.59497C85.551 2.79435 85.5691 3.00518 85.5414 3.21241V5.99732H84.6922V3.42242C84.6922 2.73344 84.3724 2.38451 83.773 2.38451C83.6272 2.37251 83.4805 2.39263 83.3433 2.44345C83.206 2.49427 83.0815 2.57457 82.9784 2.67873C82.8753 2.78289 82.7962 2.9084 82.7465 3.04647C82.6968 3.18455 82.6777 3.33185 82.6907 3.47808V5.9973H81.8423L81.8423 0Z\" fill=\"white\"/>\\n<path d=\"M90.4879 4.83265C90.3727 5.22688 90.1229 5.56788 89.7824 5.79601C89.4419 6.02414 89.0323 6.12487 88.6253 6.08057C88.3421 6.08807 88.0607 6.03364 87.8005 5.92106C87.5404 5.80848 87.3078 5.64044 87.1189 5.4286C86.9299 5.21677 86.7892 4.96622 86.7065 4.69434C86.6237 4.42246 86.6009 4.13577 86.6396 3.85416C86.6019 3.57168 86.6251 3.28437 86.7077 3.01167C86.7902 2.73898 86.9302 2.48727 87.1182 2.27358C87.3061 2.05989 87.5376 1.88922 87.797 1.77311C88.0564 1.657 88.3376 1.59817 88.6216 1.6006C89.8176 1.6006 90.5392 2.42059 90.5392 3.77509V4.07213H87.5038V4.11984C87.4905 4.27813 87.5104 4.43746 87.562 4.58761C87.6137 4.73777 87.6961 4.87543 87.8038 4.99178C87.9116 5.10812 88.0424 5.20058 88.1879 5.26323C88.3334 5.32587 88.4903 5.35732 88.6486 5.35556C88.8515 5.38 89.0571 5.34334 89.2392 5.25022C89.4213 5.1571 89.5717 5.01174 89.6713 4.83263L90.4879 4.83265ZM87.5038 3.44255H89.675C89.6857 3.29778 89.6661 3.15236 89.6174 3.01565C89.5688 2.87894 89.4922 2.75395 89.3925 2.64871C89.2929 2.54348 89.1724 2.46033 89.0388 2.4046C88.9052 2.34887 88.7615 2.3218 88.6169 2.32513C88.4702 2.32328 88.3246 2.35092 88.1886 2.40643C88.0527 2.46194 87.9293 2.54418 87.8255 2.64832C87.7218 2.75246 87.6399 2.87638 87.5846 3.01279C87.5294 3.14919 87.5019 3.29532 87.5038 3.44255Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-q3hyq8\",\"data-framer-name\":\"Group 2087325747\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:101,layoutDependency:layoutDependency,layoutId:\"MZh0seQnm\",svg:'<svg width=\"101\" height=\"24\" viewBox=\"0 0 101 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M53.5362 5.68432C52.7547 5.68432 52.096 5.40592 51.575 4.85787C51.0583 4.32517 50.7698 3.59079 50.7827 2.84107C50.7827 2.04092 51.0497 1.36354 51.575 0.826452C52.0938 0.278407 52.7526 0 53.5341 0C54.307 0 54.9658 0.278407 55.4954 0.826452C56.0207 1.38107 56.2876 2.05846 56.2876 2.84107C56.279 3.6434 56.0121 4.32079 55.4954 4.85568C54.9765 5.40811 54.3178 5.68432 53.5362 5.68432ZM30.2828 5.68432C29.5185 5.68432 28.8554 5.4103 28.3129 4.86883C27.7747 4.32956 27.5013 3.64779 27.5013 2.84326C27.5013 2.03873 27.7747 1.35696 28.3129 0.817684C28.8447 0.276215 29.5078 0.00219231 30.2828 0.00219231C30.6617 0.00219231 31.0299 0.0789188 31.3829 0.234564C31.7296 0.385824 32.0116 0.591889 32.2204 0.843989L32.2721 0.907563L31.6887 1.49068L31.6284 1.41834C31.299 1.01936 30.8576 0.82426 30.2742 0.82426C29.7532 0.82426 29.2989 1.01279 28.9243 1.38546C28.5476 1.76032 28.356 2.25137 28.356 2.84545C28.356 3.43953 28.5476 3.93058 28.9243 4.30544C29.2989 4.67811 29.7532 4.86664 30.2742 4.86664C30.8297 4.86664 31.2968 4.67811 31.6607 4.30544C31.876 4.08622 32.0094 3.77932 32.0568 3.3913H30.1859V2.57143H32.8598L32.8706 2.64596C32.89 2.78407 32.9093 2.92656 32.9093 3.05809C32.9093 3.81439 32.6854 4.42601 32.242 4.8776C31.7382 5.41249 31.0794 5.68432 30.2828 5.68432ZM61.2006 5.56814H60.376L57.8507 1.45342L57.8722 2.19437V5.56595H57.0476V0.118378H57.9884L58.0143 0.16003L60.3889 4.0358L60.3674 3.29704V0.118378H61.2006V5.56814ZM47.3402 5.56814H46.5049V0.938254H45.056V0.118378H48.787V0.938254H47.3381V5.56814H47.3402ZM44.3757 5.56814H43.5425V0.118378H44.3757V5.56814ZM39.6931 5.56814H38.86V0.938254H37.4111V0.118378H41.142V0.938254H39.6931V5.56814ZM36.8836 5.55937H33.6887V0.118378H36.8836V0.938254H34.524V2.43332H36.6532V3.24443H34.524V4.73949H36.8836V5.55937ZM52.1864 4.29448C52.5588 4.67373 53.0109 4.86445 53.5362 4.86445C54.0766 4.86445 54.518 4.67811 54.8861 4.29448C55.2521 3.92181 55.4373 3.43295 55.4373 2.84326C55.4373 2.25356 55.2521 1.76251 54.8883 1.39203C54.5158 1.01279 54.0616 0.822068 53.5384 0.822068C52.998 0.822068 52.5567 1.0084 52.1907 1.39203C51.8247 1.76471 51.6395 2.25356 51.6395 2.84326C51.6395 3.43295 51.8225 3.924 52.1864 4.29448Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M50.7056 13.1772C48.6711 13.1772 47.022 14.749 47.022 16.9171C47.022 19.0654 48.6819 20.6569 50.7056 20.6569C52.7401 20.6569 54.3892 19.0742 54.3892 16.9171C54.3892 14.749 52.7401 13.1772 50.7056 13.1772ZM50.7056 19.175C49.5925 19.175 48.6345 18.2368 48.6345 16.9083C48.6345 15.5601 49.5947 14.6416 50.7056 14.6416C51.8187 14.6416 52.7767 15.5601 52.7767 16.9083C52.7789 18.2455 51.8187 19.175 50.7056 19.175ZM42.6688 13.1772C40.6343 13.1772 38.9851 14.749 38.9851 16.9171C38.9851 19.0654 40.645 20.6569 42.6688 20.6569C44.7033 20.6569 46.3524 19.0742 46.3524 16.9171C46.3524 14.749 44.7011 13.1772 42.6688 13.1772ZM42.6688 19.175C41.5557 19.175 40.5977 18.2368 40.5977 16.9083C40.5977 15.5601 41.5579 14.6416 42.6688 14.6416C43.7818 14.6416 44.7399 15.5601 44.7399 16.9083C44.7399 18.2455 43.7818 19.175 42.6688 19.175ZM33.1055 14.3193V15.9021H36.8365C36.7224 16.7899 36.4339 17.4454 35.9926 17.8948C35.4458 18.4516 34.6018 19.0566 33.1142 19.0566C30.8213 19.0566 29.0279 17.1714 29.0279 14.8367C29.0279 12.502 30.8213 10.6167 33.1142 10.6167C34.3521 10.6167 35.2541 11.1144 35.9237 11.7501L37.026 10.6277C36.0959 9.72014 34.858 9.02522 33.1228 9.02522C29.9774 9.02522 27.3379 11.6339 27.3379 14.8279C27.3379 18.0307 29.9752 20.6306 33.1228 20.6306C34.8214 20.6306 36.0959 20.065 37.1035 18.9996C38.1304 17.954 38.4555 16.4786 38.4555 15.2883C38.4555 14.9178 38.4275 14.5846 38.3694 14.3018H33.1034C33.1055 14.2996 33.1055 14.3193 33.1055 14.3193ZM72.2218 15.5513C71.9139 14.7117 70.9839 13.1684 69.0764 13.1684C67.1861 13.1684 65.6145 14.6832 65.6145 16.9083C65.6145 19.0084 67.1689 20.6482 69.2594 20.6482C70.9387 20.6482 71.9161 19.6025 72.3187 18.9887L71.0722 18.1381C70.6588 18.7629 70.084 19.1728 69.268 19.1728C68.4434 19.1728 67.8665 18.7914 67.4832 18.0395L72.394 15.9679C72.394 15.97 72.2218 15.5513 72.2218 15.5513ZM67.2141 16.8009C67.1754 15.3562 68.3164 14.6219 69.1324 14.6219C69.7761 14.6219 70.3122 14.9441 70.4952 15.4132L67.2141 16.8009ZM63.2248 20.4246H64.8373V9.43735H63.2248V20.4246ZM60.5767 14.008H60.5186C60.1547 13.5674 59.4636 13.1684 58.5809 13.1684C56.7488 13.1684 55.0609 14.8104 55.0609 16.9193C55.0609 19.0194 56.7402 20.6416 58.5809 20.6416C59.4529 20.6416 60.1547 20.2404 60.5186 19.791H60.5767V20.3281C60.5767 21.7552 59.8275 22.5247 58.6197 22.5247C57.6315 22.5247 57.0179 21.8012 56.7682 21.1962L55.3667 21.7925C55.7693 22.779 56.8436 24 58.6176 24C60.5078 24 62.1096 22.8666 62.1096 20.1023V13.392H60.5853V14.008C60.5875 14.008 60.5767 14.008 60.5767 14.008ZM58.7252 19.175C57.6121 19.175 56.6821 18.228 56.6821 16.9193C56.6821 15.5996 57.6121 14.6438 58.7252 14.6438C59.8275 14.6438 60.6822 15.6105 60.6822 16.9193C60.693 18.228 59.8296 19.175 58.7252 19.175ZM79.7721 9.43735H75.9162V20.4246H77.5287V16.2638H79.7742C81.559 16.2638 83.3136 14.9463 83.3136 12.855C83.3136 10.7636 81.5654 9.43735 79.7721 9.43735ZM79.8194 14.7293H77.5266V10.9587H79.8194C81.0272 10.9587 81.7097 11.9737 81.7097 12.844C81.7097 13.7055 81.0186 14.7293 79.8194 14.7293ZM89.7766 13.1575C88.6055 13.1575 87.3977 13.6858 86.8982 14.8367L88.3277 15.4417C88.6356 14.8367 89.1997 14.6306 89.796 14.6306C90.6314 14.6306 91.4753 15.1392 91.4947 16.0468V16.163C91.2062 15.9964 90.5732 15.7421 89.8154 15.7421C88.2718 15.7421 86.7066 16.6014 86.7066 18.2126C86.7066 19.688 87.9725 20.635 89.3827 20.635C90.4656 20.635 91.0619 20.1374 91.4344 19.5608H91.4925V20.4114H93.0469V16.2024C93.0469 14.2426 91.6174 13.1575 89.7766 13.1575ZM89.5743 19.175C89.0468 19.175 88.3084 18.9119 88.3084 18.2368C88.3084 17.3862 89.2298 17.0639 90.0156 17.0639C90.7261 17.0639 91.0619 17.2196 91.4839 17.4344C91.3677 18.4209 90.5495 19.1662 89.5743 19.175ZM98.7177 13.392L96.8662 18.1578H96.8081L94.8898 13.392H93.1546L96.033 20.0541L94.3925 23.7567H96.0718L100.5 13.392H98.7177ZM84.2028 20.4246H85.8153V9.43735H84.2028V20.4246Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.893982 0.675156C0.644245 0.949179 0.5 1.36789 0.5 1.91593V21.354C0.5 21.902 0.644245 22.3207 0.902594 22.5838L0.969334 22.643L11.665 11.7522V11.5089L0.960722 0.615967L0.893982 0.675156Z\" fill=\"url(#paint0_linear_12647_3128)\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.2236 15.3934L11.6562 11.761V11.5067L15.2236 7.87427L15.3011 7.9225L19.5209 10.3646C20.7287 11.0573 20.7287 12.2016 19.5209 12.9031L15.3011 15.3452L15.2236 15.3934Z\" fill=\"url(#paint1_linear_12647_3128)\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.3008 15.3454L11.6559 11.634L0.893555 22.5927C1.28754 23.0224 1.94848 23.0706 2.68693 22.6519L15.3008 15.3454Z\" fill=\"url(#paint2_linear_12647_3128)\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.3008 7.92252L2.68693 0.626944C1.94848 0.197276 1.28538 0.256465 0.893555 0.686133L11.6559 11.6339L15.3008 7.92252Z\" fill=\"url(#paint3_linear_12647_3128)\"/>\\n<path opacity=\"0.2\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.2226 15.2659L2.69475 22.5132C1.99505 22.9231 1.3707 22.8946 0.968108 22.522L0.901367 22.5899L0.968108 22.6491C1.3707 23.0196 1.99505 23.0503 2.69475 22.6403L15.3087 15.3448L15.2226 15.2659Z\" fill=\"black\"/>\\n<path opacity=\"0.12\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.5218 12.7762L15.2139 15.2665L15.2914 15.3454L19.5111 12.9033C20.116 12.5526 20.4131 12.0922 20.4131 11.634C20.3765 12.0549 20.0687 12.4539 19.5218 12.7762Z\" fill=\"black\"/>\\n<path opacity=\"0.25\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.68736 0.754013L19.521 10.4917C20.0678 10.8052 20.3757 11.2151 20.423 11.6338C20.423 11.1756 20.1259 10.7153 19.521 10.3645L2.68736 0.626866C1.47957 -0.0768234 0.5 0.510681 0.5 1.91587V2.04302C0.5 0.635635 1.47957 0.0590922 2.68736 0.754013Z\" fill=\"white\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_12647_3128\" x1=\"10.7056\" y1=\"1.70621\" x2=\"-6.46741\" y2=\"6.20001\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#00A0FF\"/>\\n<stop offset=\"0.00657\" stop-color=\"#00A1FF\"/>\\n<stop offset=\"0.2601\" stop-color=\"#00BEFF\"/>\\n<stop offset=\"0.5122\" stop-color=\"#00D2FF\"/>\\n<stop offset=\"0.7604\" stop-color=\"#00DFFF\"/>\\n<stop offset=\"1\" stop-color=\"#00E3FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_12647_3128\" x1=\"21.0959\" y1=\"11.6339\" x2=\"0.206262\" y2=\"11.6339\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFE000\"/>\\n<stop offset=\"0.4087\" stop-color=\"#FFBD00\"/>\\n<stop offset=\"0.7754\" stop-color=\"#FFA500\"/>\\n<stop offset=\"1\" stop-color=\"#FF9C00\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_12647_3128\" x1=\"13.3189\" y1=\"13.6535\" x2=\"-0.805749\" y2=\"37.0006\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF3A44\"/>\\n<stop offset=\"1\" stop-color=\"#C31162\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_12647_3128\" x1=\"-1.81653\" y1=\"-5.79024\" x2=\"4.48512\" y2=\"4.63708\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#32A071\"/>\\n<stop offset=\"0.0685\" stop-color=\"#2DA771\"/>\\n<stop offset=\"0.4762\" stop-color=\"#15CF74\"/>\\n<stop offset=\"0.8009\" stop-color=\"#06E775\"/>\\n<stop offset=\"1\" stop-color=\"#00F076\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-r5bb9\",\"data-framer-name\":\"Group 2087325763\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:105,layoutDependency:layoutDependency,layoutId:\"M5cBZ8u22\",svg:'<svg width=\"105\" height=\"24\" viewBox=\"0 0 105 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M37.0577 17.8807H32.85L31.8286 20.7085H29.9795L34.0939 10.144H35.8401L40.0478 20.7085H38.1126L37.0577 17.8807ZM33.3858 16.4355H36.5194L35.3975 13.4102C35.2445 12.9935 35.0914 12.531 34.9431 12.0252C34.8067 12.4732 34.6584 12.9285 34.5005 13.3957L33.3858 16.4355Z\" fill=\"white\"/>\\n<path d=\"M40.7916 14.7664C40.7916 14.1835 40.7725 13.5411 40.7342 12.8394H42.4087C42.4716 13.1697 42.5147 13.5035 42.5378 13.839C42.8308 13.4855 43.1963 13.1999 43.6092 13.002C44.0221 12.8041 44.4727 12.6985 44.9299 12.6925C45.4661 12.6839 45.9926 12.8366 46.4421 13.1309C46.8916 13.4253 47.2438 13.8479 47.4536 14.3448C47.7478 15.028 47.8875 15.7684 47.8626 16.5127C47.8808 17.3241 47.7173 18.1292 47.3842 18.8684C47.1055 19.4818 46.6506 19.9969 46.0781 20.3473C45.4891 20.69 44.8183 20.8641 44.1381 20.8507C43.6029 20.8504 43.0716 20.7592 42.5665 20.5809V23.8399L40.7773 23.994L40.7916 14.7664ZM45.4944 18.7816C45.858 18.2999 46.0422 17.5773 46.0422 16.6138C46.0422 15.7355 45.8907 15.0931 45.5877 14.6869C45.4508 14.4981 45.2705 14.3455 45.0622 14.2423C44.8539 14.1391 44.6238 14.0883 44.3917 14.0943C44.0574 14.0898 43.7277 14.1728 43.4349 14.3352C43.1238 14.5126 42.8408 14.7359 42.5952 14.9976V19.2128C42.7935 19.3069 43.0023 19.3765 43.2172 19.4199C43.4483 19.4703 43.684 19.4961 43.9205 19.497C44.2207 19.5151 44.5209 19.4595 44.7951 19.3349C45.0693 19.2102 45.3093 19.0204 45.4944 18.7816Z\" fill=\"white\"/>\\n<path d=\"M48.9507 14.7664C48.9507 14.1835 48.9316 13.5411 48.8933 12.8394H50.5678C50.6327 13.1695 50.6766 13.5033 50.6993 13.839C51.3962 13.0747 52.1936 12.6925 53.0914 12.6925C53.6276 12.6839 54.1541 12.8366 54.6036 13.1309C55.0531 13.4253 55.4053 13.8479 55.6151 14.3448C55.9093 15.028 56.049 15.7684 56.0241 16.5127C56.0461 17.3232 55.8866 18.1283 55.5576 18.8684C55.2783 19.4821 54.8225 19.9973 54.2492 20.3473C53.6603 20.6903 52.9894 20.8645 52.3092 20.8507C51.774 20.8504 51.2427 20.7592 50.7376 20.5809V23.8399L48.9483 23.994L48.9507 14.7664ZM53.6607 18.7816C54.0243 18.2887 54.2061 17.5661 54.2061 16.6138C54.2061 15.7355 54.0554 15.0931 53.754 14.6869C53.6171 14.4981 53.4368 14.3455 53.2285 14.2423C53.0201 14.1391 52.7901 14.0883 52.558 14.0943C52.2238 14.0903 51.8942 14.1733 51.6011 14.3352C51.2901 14.5126 51.0071 14.7359 50.7615 14.9976V19.2128C50.96 19.3062 51.1688 19.3757 51.3835 19.4199C51.6146 19.4703 51.8503 19.4961 52.0867 19.497C52.387 19.5147 52.687 19.4589 52.9611 19.3343C53.2352 19.2097 53.4753 19.0201 53.6607 18.7816Z\" fill=\"white\"/>\\n<path d=\"M59.3137 20.21C58.5492 19.7879 57.9284 19.1442 57.5316 18.3625C57.0978 17.4793 56.8844 16.5029 56.9096 15.5179C56.8786 14.464 57.1263 13.4208 57.6272 12.495C58.0796 11.6916 58.7591 11.0418 59.5792 10.6282C60.4411 10.2042 61.39 9.99048 62.3492 10.0044C62.9309 10.0019 63.5107 10.0698 64.0763 10.2067C64.6052 10.3321 65.1187 10.5163 65.6072 10.7559L65.1432 12.1409C64.297 11.7111 63.3661 11.4774 62.4186 11.4568C61.7498 11.4456 61.0898 11.6117 60.5049 11.9386C59.9499 12.2593 59.504 12.7412 59.2252 13.3212C58.9045 14.009 58.7488 14.7631 58.7707 15.5227C58.7587 16.207 58.8773 16.8873 59.1199 17.5267C59.3402 18.0927 59.7276 18.5769 60.2298 18.9141C60.802 19.2746 61.4691 19.4526 62.1435 19.4248C62.493 19.4239 62.8418 19.3941 63.1864 19.3356C63.5199 19.2823 63.8475 19.1968 64.1648 19.0803V16.9318H61.7392V15.5323H65.9038V19.986C65.2996 20.2695 64.6669 20.4868 64.0165 20.6339C63.3716 20.7835 62.712 20.8595 62.0502 20.8603C61.0977 20.8834 60.1554 20.6594 59.3137 20.21Z\" fill=\"white\"/>\\n<path d=\"M72.2594 20.7086C72.1918 20.3646 72.1502 20.0159 72.135 19.6656C71.8362 20.0157 71.4711 20.3023 71.061 20.5086C70.598 20.7448 70.0849 20.8638 69.5659 20.8555C69.1413 20.8609 68.721 20.7695 68.3364 20.5881C67.9706 20.4154 67.6647 20.1359 67.4585 19.786C67.23 19.3895 67.1165 18.9364 67.1308 18.4781C67.1174 18.1305 67.1846 17.7846 67.327 17.4677C67.4694 17.1508 67.6831 16.8716 67.9513 16.6523C68.4967 16.1963 69.4065 15.9691 70.6806 15.9707C71.1553 15.9705 71.6293 16.0043 72.0992 16.0718V15.9177C72.0992 15.224 71.9524 14.7342 71.659 14.4484C71.3082 14.1444 70.853 13.9913 70.3912 14.022C69.9776 14.0271 69.5662 14.0837 69.1665 14.1907C68.7704 14.2868 68.3843 14.4207 68.0135 14.5905L67.7312 13.2802C68.1369 13.1058 68.5582 12.9711 68.9894 12.8779C69.5318 12.7544 70.0863 12.693 70.6424 12.6949C71.2315 12.6786 71.8177 12.7844 72.3647 13.0056C72.8457 13.2197 73.2374 13.5963 73.4722 14.0702C73.7658 14.7048 73.9028 15.4014 73.8717 16.1007V19.232C73.8717 19.5532 73.8908 20.0462 73.9291 20.711L72.2594 20.7086ZM71.1878 19.2634C71.5326 19.102 71.8423 18.8736 72.0992 18.5913V17.1461C71.7021 17.0989 71.3029 17.0723 70.9031 17.0666C70.1648 17.0666 69.6537 17.1871 69.3698 17.4279C69.2313 17.5457 69.1213 17.6937 69.0479 17.8606C68.9746 18.0275 68.9398 18.209 68.9464 18.3914C68.9334 18.549 68.9543 18.7076 69.0075 18.8564C69.0608 19.0051 69.1452 19.1407 69.255 19.2537C69.4881 19.4517 69.7876 19.5525 70.0922 19.5355C70.4732 19.5297 70.8478 19.4367 71.1878 19.2634Z\" fill=\"white\"/>\\n<path d=\"M75.2541 18.8202V9.52266L77.0338 9.37813V18.4998C77.0085 18.7531 77.0683 19.0075 77.2036 19.2224C77.272 19.2965 77.3562 19.3538 77.4499 19.3901C77.5436 19.4264 77.6442 19.4407 77.7442 19.432C77.9065 19.4249 78.0672 19.3974 78.2226 19.3501L78.4332 20.6412C78.2329 20.7173 78.0252 20.7722 77.8136 20.8049C77.5853 20.8448 77.354 20.8658 77.1223 20.8676C75.8768 20.8595 75.2541 20.1771 75.2541 18.8202Z\" fill=\"white\"/>\\n<path d=\"M79.7059 18.8202V9.52266L81.488 9.37813V18.4998C81.4627 18.7531 81.5225 19.0075 81.6579 19.2224C81.7262 19.2965 81.8104 19.3538 81.9041 19.3901C81.9978 19.4264 82.0985 19.4407 82.1985 19.432C82.3607 19.4249 82.5214 19.3974 82.6769 19.3501L82.885 20.6412C82.6855 20.7173 82.4787 20.7722 82.2678 20.8049C82.0387 20.8449 81.8067 20.8659 81.5741 20.8676C80.3303 20.8595 79.7075 20.1771 79.7059 18.8202Z\" fill=\"white\"/>\\n<path d=\"M90.2044 17.004H85.0925C85.1739 18.6532 85.9537 19.4778 87.432 19.4778C87.8114 19.4758 88.1894 19.4305 88.5586 19.3429C88.9358 19.2545 89.3048 19.1336 89.6614 18.9816L90.0537 20.2148C89.1327 20.6519 88.1247 20.871 87.1067 20.8555C86.3773 20.8767 85.6547 20.711 85.0064 20.3738C84.4448 20.0682 83.9941 19.5908 83.7195 19.0105C83.4158 18.3382 83.2686 17.605 83.2889 16.8668C83.2691 16.0931 83.4253 15.3252 83.7458 14.6219C84.019 14.0249 84.4608 13.5223 85.016 13.1766C85.585 12.8392 86.2359 12.6674 86.8961 12.6805C87.5515 12.6571 88.1977 12.8398 88.7452 13.2031C89.239 13.5482 89.6215 14.0314 89.8456 14.5929C90.0919 15.2046 90.214 15.8599 90.2044 16.5199V17.004ZM88.4606 15.8599C88.464 15.3485 88.2954 14.851 87.9822 14.4484C87.8418 14.2901 87.6684 14.1649 87.4746 14.0816C87.2807 13.9983 87.0709 13.9591 86.8603 13.9667C86.6483 13.9623 86.4377 14.0029 86.2424 14.0859C86.047 14.1689 85.8712 14.2924 85.7264 14.4484C85.3891 14.8441 85.1826 15.3358 85.1356 15.8551L88.4606 15.8599Z\" fill=\"white\"/>\\n<path d=\"M91.5585 14.8169C91.5585 14.3858 91.537 13.7258 91.4987 12.8418H93.1732C93.2019 13.061 93.2282 13.3235 93.2569 13.6246C93.2856 13.9257 93.3 14.1762 93.3095 14.3665C93.4897 14.0595 93.6945 13.7679 93.9219 13.4945C94.1194 13.261 94.3577 13.0658 94.6252 12.9189C94.9063 12.7661 95.2219 12.6889 95.5413 12.6949C95.7836 12.6889 96.0254 12.7189 96.2589 12.784L96.0341 14.3448C95.754 14.2632 95.4598 14.2424 95.1712 14.2839C94.8825 14.3255 94.6059 14.4283 94.3596 14.5857C93.9637 14.882 93.6187 15.2416 93.3382 15.6503V20.7086H91.5585V14.8169Z\" fill=\"white\"/>\\n<path d=\"M97.2537 23.9288C97.0355 23.8933 96.8204 23.841 96.6102 23.7723L96.9355 22.4595C97.086 22.5003 97.2385 22.5333 97.3924 22.5583C97.5646 22.5891 97.739 22.6052 97.9139 22.6065C98.7113 22.6065 99.3045 22.0934 99.6936 21.0673L99.8108 20.7759L96.9284 12.8417H98.842L100.306 17.276C100.493 17.8464 100.645 18.4281 100.76 19.0175C100.897 18.4491 101.055 17.8806 101.239 17.3122L102.698 12.8417H104.499L101.629 20.812C101.412 21.454 101.117 22.0665 100.751 22.6354C100.472 23.0651 100.09 23.4178 99.641 23.6615C99.1597 23.8981 98.6287 24.0138 98.0933 23.9987C97.812 23.9998 97.531 23.9764 97.2537 23.9288Z\" fill=\"white\"/>\\n<path d=\"M29.9795 0.085342H33.161L33.0724 0.86094H30.9076V2.36155H32.9481V3.08416H30.9076V4.74615H33.1873L33.1083 5.53379H29.9795V0.085342Z\" fill=\"white\"/>\\n<path d=\"M35.3591 2.75417L33.6846 0.085342H34.7467L35.8853 2.04601L37.0814 0.085342H38.1124L36.4379 2.72045L38.2487 5.53379H37.1723L35.8829 3.39006L34.5697 5.53379H33.5387L35.3591 2.75417Z\" fill=\"white\"/>\\n<path d=\"M38.9349 0.085342H40.3941C41.0782 0.085342 41.6029 0.225849 41.968 0.506862C42.1497 0.65078 42.2941 0.836748 42.3891 1.04895C42.4841 1.26114 42.5267 1.4933 42.5134 1.72566C42.5236 2.05755 42.4407 2.38561 42.2742 2.67227C42.1118 2.94176 41.8749 3.15772 41.5925 3.29371C41.2787 3.44308 40.9348 3.51728 40.5878 3.5105C40.3469 3.50706 40.1067 3.48208 39.8702 3.43583V5.53379H38.9349V0.085342ZM41.2791 2.51812C41.3812 2.41943 41.4608 2.29963 41.5124 2.16698C41.564 2.03432 41.5864 1.89197 41.5781 1.74975C41.5903 1.61344 41.569 1.47621 41.516 1.35019C41.463 1.22416 41.38 1.11321 41.2743 1.02714C41.0051 0.862044 40.6919 0.784654 40.3773 0.80554H39.8702V2.73249C40.0479 2.76473 40.2279 2.78325 40.4084 2.78789C40.722 2.81159 41.033 2.71525 41.2791 2.51812Z\" fill=\"white\"/>\\n<path d=\"M43.4367 0.085342H44.3696V4.72929H46.6086L46.5296 5.53379H43.4367V0.085342Z\" fill=\"white\"/>\\n<path d=\"M48.0299 5.26649C47.6378 5.04435 47.3211 4.70867 47.1209 4.30302C46.9033 3.85339 46.7959 3.35783 46.8075 2.8578C46.7961 2.33528 46.911 1.8178 47.1424 1.34997C47.3545 0.928259 47.688 0.58074 48.0993 0.352769C48.5597 0.109964 49.0749 -0.00791554 49.5943 0.0107355C50.0854 -0.00253795 50.5713 0.114595 51.0032 0.35036C51.3929 0.573283 51.7071 0.908949 51.9051 1.31384C52.1184 1.75877 52.2241 2.24822 52.2136 2.74219C52.2266 3.27053 52.1108 3.79403 51.8764 4.26689C51.6622 4.68713 51.3293 5.03411 50.9195 5.26408C50.4672 5.50638 49.9606 5.62748 49.4484 5.61575C48.9531 5.62836 48.4635 5.5078 48.0299 5.26649ZM50.4507 4.59928C50.7144 4.42333 50.9194 4.17155 51.0391 3.87668C51.1733 3.53913 51.2392 3.17799 51.2329 2.81445C51.2389 2.45757 51.1805 2.10256 51.0607 1.76667C50.9533 1.47573 50.7616 1.22398 50.5105 1.04406C50.2192 0.864596 49.8844 0.769624 49.5429 0.769624C49.2014 0.769624 48.8666 0.864596 48.5753 1.04406C48.3108 1.2288 48.1049 1.48637 47.982 1.78594C47.8459 2.10957 47.7783 2.45821 47.7835 2.80963C47.7777 3.17167 47.8411 3.53146 47.9701 3.86945C48.0847 4.17867 48.2942 4.44304 48.5682 4.62411C48.8423 4.80518 49.1665 4.89352 49.4938 4.87628C49.8334 4.88469 50.1674 4.78801 50.4507 4.59928Z\" fill=\"white\"/>\\n<path d=\"M53.2541 0.0852616H54.9477C55.4438 0.0498955 55.9377 0.181196 56.3518 0.458608C56.5107 0.584231 56.6372 0.746604 56.7205 0.931946C56.8038 1.11729 56.8414 1.32013 56.8302 1.52325C56.8359 1.78736 56.7767 2.04879 56.658 2.28439C56.5542 2.49098 56.4093 2.67382 56.2322 2.82153C56.0739 2.95022 55.8963 3.05267 55.706 3.12503L57.3804 5.53371H56.292L54.8831 3.36589H54.1966V5.53371H53.2541V0.0852616ZM54.7204 2.66256C54.9282 2.66712 55.134 2.62171 55.3208 2.53008C55.4891 2.44872 55.6309 2.32092 55.7299 2.16155C55.8286 1.99144 55.8791 1.79732 55.8758 1.60033C55.8854 1.48663 55.8669 1.37231 55.8218 1.26762C55.7767 1.16294 55.7065 1.07117 55.6175 1.00056C55.3932 0.859188 55.1304 0.792603 54.8663 0.810277H54.1894V2.67219L54.7204 2.66256Z\" fill=\"white\"/>\\n<path d=\"M58.1098 0.085342H61.2984L61.2075 0.86094H59.0546V2.36155H61.076V3.08416H59.0355V4.74615H61.3152L61.2458 5.53379H58.1098V0.085342Z\" fill=\"white\"/>\\n<path d=\"M64.7674 0.085342H65.7003V5.53379H64.7674V0.085342Z\" fill=\"white\"/>\\n<path d=\"M68.1711 0.870574H66.4966L66.578 0.085342H70.788L70.7019 0.870574H69.1064V5.53379H68.1711V0.870574Z\" fill=\"white\"/>\\n<path d=\"M74.8427 5.26641C74.4514 5.04413 74.1355 4.70842 73.9361 4.30293C73.7166 3.85392 73.6082 3.35806 73.6204 2.85772C73.6089 2.3352 73.7239 1.81772 73.9553 1.34988C74.168 0.928612 74.5013 0.581253 74.9121 0.352685C75.3689 0.108685 75.8806 -0.0124445 76.3976 0.0010173C76.8944 -0.0124569 77.3858 0.108129 77.8209 0.350277C78.2111 0.572486 78.5255 0.908349 78.7227 1.31375C78.9368 1.75848 79.0434 2.24795 79.0336 2.7421C79.0469 3.27076 78.9302 3.79452 78.694 4.2668C78.4805 4.68756 78.1474 5.03472 77.7371 5.264C77.285 5.50691 76.7783 5.62805 76.266 5.61567C75.7691 5.62914 75.2777 5.50855 74.8427 5.26641ZM77.2659 4.5992C77.5283 4.42244 77.7324 4.17083 77.852 3.87659C77.9862 3.53905 78.052 3.1779 78.0457 2.81436C78.0517 2.45749 77.9934 2.10248 77.8735 1.76659C77.767 1.47582 77.5762 1.22403 77.3257 1.04398C77.0341 0.864301 76.6988 0.769219 76.3569 0.769219C76.015 0.769219 75.6797 0.864301 75.3881 1.04398C75.1237 1.22872 74.9177 1.48629 74.7949 1.78585C74.6599 2.10983 74.5923 2.45824 74.5963 2.80955C74.5906 3.17159 74.6539 3.53138 74.7829 3.86937C74.8971 4.16649 75.096 4.42295 75.3546 4.60643C75.6378 4.79464 75.9724 4.88897 76.3115 4.8762C76.6501 4.8832 76.9829 4.78661 77.2659 4.5992Z\" fill=\"white\"/>\\n<path d=\"M80.0695 0.085342H81.1411L83.8179 4.30777C83.7939 3.90552 83.7844 3.53699 83.7844 3.19737V0.085342H84.6503V5.53379H83.6121L80.8947 1.24392C80.9211 1.72566 80.9354 2.16163 80.9354 2.53979V5.53379H80.0695V0.085342Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.8235 0H6.89402C2.21273 0 0.5 1.72462 0.5 6.43842V16.4441C0.5 21.1579 2.21273 22.8825 6.89402 22.8825H16.8235C21.5048 22.8825 23.22 21.1579 23.22 16.4441V6.43842C23.2247 1.72462 21.512 0 16.8235 0Z\" fill=\"#C8102E\"/>\\n<path d=\"M5.00003 11.4414H5.60283V14.4354H5.00003V13.219H3.63894V14.4354H3.03613V11.4414H3.63894V12.6457H5.00003V11.4414ZM8.39678 13.154C8.39678 13.6357 8.15757 13.9007 7.72221 13.9007C7.28686 13.9007 7.04286 13.6357 7.04286 13.1275V11.4414H6.44006V13.1516C6.44006 13.9922 6.90412 14.4739 7.71265 14.4739C8.52117 14.4739 8.99958 13.9922 8.99958 13.1251V11.4414H8.39678V13.154ZM15.3625 13.4984L14.6879 11.4414H14.1928L13.523 13.5008L12.8652 11.4414H12.2241L13.2599 14.4354H13.7598L14.432 12.4699L15.1066 14.4354H15.6113L16.6471 11.4414H16.0203L15.3625 13.4984ZM17.7259 13.1443H18.8238V12.6024H17.7259V11.9906H19.319V11.4414H17.1326V14.4282H19.3764V13.8886H17.7259V13.1443ZM20.094 14.4282H20.6897V11.4414H20.094V14.4282ZM10.1908 13.8091L9.92053 14.4306H9.30577L10.6047 11.4414H11.1357L12.4394 14.4306H11.8175L11.5615 13.8116L10.1908 13.8091ZM10.4157 13.2696H11.3223L10.8678 12.2001L10.4157 13.2696Z\" fill=\"white\"/>\\n<path d=\"M11.862 7.63308C10.8591 7.63245 9.89757 7.23103 9.18846 6.517C8.47936 5.80298 8.08071 4.83474 8.08008 3.82495H8.61351C8.61351 4.69247 8.95576 5.52446 9.56496 6.13789C10.1742 6.75133 11.0004 7.09595 11.862 7.09595C12.7235 7.09595 13.5497 6.75133 14.159 6.13789C14.7682 5.52446 15.1104 4.69247 15.1104 3.82495H15.6438C15.6432 4.83474 15.2445 5.80298 14.5354 6.517C13.8263 7.23103 12.8648 7.63245 11.862 7.63308Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Vtued.framer-mx1w3u, .framer-Vtued .framer-mx1w3u { display: block; }\",\".framer-Vtued.framer-16c0obr { height: 166px; overflow: hidden; position: relative; text-decoration: none; width: 149px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Vtued .framer-yo231b, .framer-Vtued .framer-x4uzql { bottom: -74px; flex: none; height: 130px; left: calc(50.33557046979868% - 120px / 2); position: absolute; width: 120px; }\",\".framer-Vtued .framer-17fjy8l { bottom: 0px; flex: none; height: 44px; left: 0px; overflow: visible; position: absolute; right: 0px; }\",\".framer-Vtued .framer-9sis0n { flex: none; height: 24px; left: calc(49.66442953020137% - 95px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 95px; }\",\".framer-Vtued .framer-q3hyq8 { flex: none; height: 24px; left: calc(49.66442953020137% - 101px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 101px; }\",\".framer-Vtued .framer-r5bb9 { flex: none; height: 24px; left: calc(49.66442953020137% - 105px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 105px; }\",\".framer-Vtued.framer-v-rv91y5 .framer-x4uzql, .framer-Vtued.framer-v-awa5by .framer-yo231b, .framer-Vtued.framer-v-10ln1l4 .framer-yo231b { bottom: unset; top: 0px; }\",\".framer-Vtued.framer-v-rv91y5 .framer-17fjy8l, .framer-Vtued.framer-v-awa5by .framer-17fjy8l, .framer-Vtued.framer-v-10ln1l4 .framer-17fjy8l { height: unset; top: 122px; }\",'.framer-Vtued[data-border=\"true\"]::after, .framer-Vtued [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 166\n * @framerIntrinsicWidth 149\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"m8QJN0Dkq\":{\"layout\":[\"fixed\",\"fixed\"]},\"asUQYMkvy\":{\"layout\":[\"fixed\",\"fixed\"]},\"MUXhLP7xb\":{\"layout\":[\"fixed\",\"fixed\"]},\"MfZ0sESdZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"WTM1tCTDS\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"xV7aloHMt\":\"background\",\"RaoIyxCoA\":\"shadowButton\",\"Lqm8sj2wt\":\"mouseEnter\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framere2z90mHnl=withCSS(Component,css,\"framer-Vtued\");export default Framere2z90mHnl;Framere2z90mHnl.displayName=\"App store\";Framere2z90mHnl.defaultProps={height:166,width:149};addPropertyControls(Framere2z90mHnl,{variant:{options:[\"dkVwKFENa\",\"m8QJN0Dkq\",\"asUQYMkvy\",\"MUXhLP7xb\",\"MfZ0sESdZ\",\"WTM1tCTDS\"],optionTitles:[\"App store\",\"aPP STORE HOVER\",\"Play market\",\"Play market hover\",\"App gallery\",\"App gallery hover\"],title:\"Variant\",type:ControlType.Enum},xV7aloHMt:{defaultValue:\"rgba(255, 255, 255, 0.1)\",title:\"Background\",type:ControlType.Color},RaoIyxCoA:{defaultValue:[{blur:5,color:\"rgba(0,0,0,0.25)\",diffusion:.5,focus:.5,inset:false,spread:0,type:\"box\",x:0,y:2}],title:\"Shadow button\",type:ControlType.BoxShadow},Lqm8sj2wt:{title:\"Mouse Enter\",type:ControlType.EventHandler}});addFonts(Framere2z90mHnl,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framere2z90mHnl\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"149\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"m8QJN0Dkq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"asUQYMkvy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MUXhLP7xb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MfZ0sESdZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WTM1tCTDS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"166\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"xV7aloHMt\\\":\\\"background\\\",\\\"RaoIyxCoA\\\":\\\"shadowButton\\\",\\\"Lqm8sj2wt\\\":\\\"mouseEnter\\\"}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./e2z90mHnl.map"],
  "mappings": "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;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA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",
  "names": ["containerStyles", "emptyStateStyle", "containerStyles", "NullState", "Y", "_", "ref", "p", "r", "s", "o", "n", "t", "e", "i", "l", "defaultEvents", "ControlType", "findByArray", "arr", "search", "a", "useIconSelection", "iconKeys", "selectByList", "iconSearch", "iconSelection", "lowercaseIconKeyPairs", "iconSearchResult", "se", "iconSearchTerm", "_iconSearchTerm", "findByArray", "iconKeys", "moduleBaseUrl", "uppercaseIconKeys", "name", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "s", "npm_react_18_2_exports", "importModule", "active", "module", "e", "ue", "emptyState", "RenderTarget", "p", "NullState", "addPropertyControls", "ControlType", "defaultEvents", "fontStore", "fonts", "css", "className", "FeatherFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "transformTemplate2", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onClick1dux9wo", "args", "onClick44na0n", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Link", "SVG", "RichText2", "ComponentViewportProvider", "css", "FramerTqlaACZGc", "withCSS", "TqlaACZGc_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "VKG2dvUpo", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "Framerz6uFPIhIM", "withCSS", "z6uFPIhIM_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "height", "id", "mouseEnter", "shadowButton", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "xV7aloHMt", "RaoIyxCoA", "Lqm8sj2wt", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter4ww3bu", "args", "onMouseLeavehhh691", "onMouseLeave1oucvb1", "onMouseLeave4uyabb", "onMouseEntero6lsgk", "onMouseEnter1ldd4j0", "onMouseEntervxhiu0", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "SVG", "css", "Framere2z90mHnl", "withCSS", "e2z90mHnl_default", "addPropertyControls", "ControlType", "addFonts"]
}
