{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/WdsX9NT1G4xSLdGJUrbE/hEXip3lxkdw49yJE29yc/lxUPe8i92.js", "ssg:https://framerusercontent.com/modules/9QHlkP0cbnR4LMFPhn2h/9t275Uau9sKeCrZIz6ip/uWUaWlXYv.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (ee31e22)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-4c5hh .framer-styles-preset-n3yle:not(.rich-text-wrapper), .framer-4c5hh .framer-styles-preset-n3yle.rich-text-wrapper a { --framer-link-current-text-color: #00c0d4; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: #00c0d4; --framer-link-hover-text-decoration: none; --framer-link-text-color: #919191; --framer-link-text-decoration: none; }\"];export const className=\"framer-4c5hh\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c105afa)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/WdsX9NT1G4xSLdGJUrbE/hEXip3lxkdw49yJE29yc/lxUPe8i92.js\";const EmbedFonts=getFonts(Embed);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"jN2vM466D\",\"Szf_33kDi\"];const serializationHash=\"framer-gn8r9\";const variantClassNames={jN2vM466D:\"framer-v-dwst47\",Szf_33kDi:\"framer-v-1f2b04x\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 2\":\"Szf_33kDi\",desktop:\"jN2vM466D\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"jN2vM466D\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jN2vM466D\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTaptxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"Szf_33kDi\")return false;return true;};const ref1=React.useRef(null);const ref2=React.useRef(null);const isDisplayed1=()=>{if(baseVariant===\"Szf_33kDi\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-dwst47\",className,classNames),\"data-border\":true,\"data-framer-name\":\"desktop\",layoutDependency:layoutDependency,layoutId:\"jN2vM466D\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(46, 46, 46)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(13, 13, 13, 0.5)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 0.7444486434600549px 1.6377870156121208px -0.7142857142857142px rgba(0, 0, 0, 0.25), 0px 1.8236652045178925px 4.0120634499393635px -1.4285714285714284px rgba(0, 0, 0, 0.24), 0px 3.4555820212193065px 7.602280446682475px -2.142857142857143px rgba(0, 0, 0, 0.23), 0px 6.032542574115213px 13.27159366305347px -2.8571428571428568px rgba(0, 0, 0, 0.21), 0px 10.499277041538733px 23.098409491385215px -3.5714285714285716px rgba(0, 0, 0, 0.18), 0px 19.230671353256913px 42.30747697716521px -4.285714285714286px rgba(0, 0, 0, 0.12), 0px 38px 83.60000000000001px -5px rgba(0, 0, 0, 0)\",...style},...addPropertyOverrides({Szf_33kDi:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"okMsbaDbr\",scopeId:\"uWUaWlXYv\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1262tta framer-16htzu1\",\"data-framer-name\":\"Logo\",fill:\"black\",intrinsicHeight:53,intrinsicWidth:140,layoutDependency:layoutDependency,layoutId:\"okMsbaDbr\",svg:'<svg width=\"140\" height=\"53\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\".5\" y=\".5\" width=\"52\" height=\"52\" rx=\"7.5\" stroke=\"#303030\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M40.432 23.58v5.812a.747.747 0 0 1 .568.72v4.202a.764.764 0 0 1-.268.56c-.005 0-.01.01-.016.015-.005 0-.01.01-.016.016-.005.005-.016.01-.02.015-.006 0-.011.01-.017.01a.405.405 0 0 1-.063.037l-3.686 2.098a.769.769 0 0 1-.904-.109l-5.096 2.901a.736.736 0 0 1-.352.83l-3.697 2.092a.75.75 0 0 1-.62.057c-.005 0-.016 0-.021-.005-.005 0-.016 0-.021-.005-.01 0-.016-.005-.026-.01-.006 0-.01 0-.021-.011-.021-.01-.043-.02-.063-.031L22.4 40.681a.729.729 0 0 1-.357-.803l-5.106-2.906a.752.752 0 0 1-.889.098l-3.686-2.103a.764.764 0 0 1-.363-.503v-4.357a.74.74 0 0 1 .515-.704V23.59a.745.745 0 0 1-.515-.704v-4.321a.747.747 0 0 1 .368-.534l3.686-2.098a.76.76 0 0 1 .884.093l5.121-2.911a.733.733 0 0 1 .358-.808l3.675-2.088a.249.249 0 0 1 .053-.026c.01 0 .016-.01.026-.01 0 0 .01 0 .016-.005.005 0 .01 0 .021-.006.01 0 .021-.005.032-.01a.768.768 0 0 1 .62.057l3.686 2.098c.3.171.437.513.353.824l5.11 2.906a.762.762 0 0 1 .905-.114l3.681 2.093c.016.01.037.02.053.031l.026.016s.01.005.01.01c.006 0 .011.01.016.01a.04.04 0 0 1 .021.021.736.736 0 0 1 .258.56v4.19a.742.742 0 0 1-.557.716M26.676 37.23a.738.738 0 0 1 .542.716v2.922l2.576-1.461a.77.77 0 0 1 .873.082l5.122-2.911a.74.74 0 0 1 .363-.793l2.555-1.455-2.55-1.451a.733.733 0 0 1-.357-.808l-5.459-3.103a.762.762 0 0 1-.904.114l-2.23-1.27v2.534a.745.745 0 0 1-.53.71v6.175ZM17.16 16.416a.74.74 0 0 1-.358.813L14.23 18.69l2.57 1.461a.74.74 0 0 1 .358.803l5.453 3.103a.762.762 0 0 1 .873-.088l2.23 1.27v-2.534c0-.337.226-.616.531-.71v-6.221a.743.743 0 0 1-.531-.71V12.15l-2.55 1.45a.76.76 0 0 1-.89-.098l-5.116 2.912Zm-.353 19.37a.733.733 0 0 1 .358.809L22.27 39.5a.77.77 0 0 1 .894-.104l2.555 1.45v-2.9c0-.332.221-.612.526-.705v-6.186a.743.743 0 0 1-.531-.71v-2.533l-2.23 1.27a.762.762 0 0 1-.904-.114l-5.421 3.082a.732.732 0 0 1-.358.808l-2.566 1.461 2.571 1.471v-.005Zm-3.86-6.387a.743.743 0 0 1 .547.715v2.906l2.556-1.45a.77.77 0 0 1 .894.103l5.432-3.088a.73.73 0 0 1 .363-.787l2.23-1.27-2.23-1.269a.736.736 0 0 1-.353-.829l-5.437-3.092a.753.753 0 0 1-.894.103L13.5 19.99v2.9a.748.748 0 0 1-.547.716v5.797l-.005-.005Zm23.216-12.185a.737.737 0 0 1-.362-.788l-5.127-2.916a.76.76 0 0 1-.879.088l-2.571-1.461v2.922a.75.75 0 0 1-.531.71v6.221c.31.094.531.378.531.71v2.533l2.23-1.269a.752.752 0 0 1 .873.088l5.479-3.118a.743.743 0 0 1 .352-.824l2.556-1.45-2.55-1.451v.005Zm3.828 6.356a.746.746 0 0 1-.51-.699v-2.927l-2.571 1.46a.76.76 0 0 1-.878-.087l-5.48 3.113a.736.736 0 0 1-.352.83l-2.23 1.268 2.23 1.27c.29.166.426.487.363.787l5.464 3.109a.77.77 0 0 1 .893-.104l2.567 1.46v-2.931c0-.321.21-.59.5-.7V23.57h.004Z\" fill=\"#E6E0EA\"/><path d=\"M126.436 35.834V17.885h6.398c1.391 0 2.544.24 3.462.719.923.479 1.612 1.142 2.068 1.99.456.84.684 1.813.684 2.918 0 1.098-.231 2.065-.693 2.9-.455.83-1.145 1.476-2.068 1.937-.917.462-2.071.693-3.462.693h-4.846V26.71h4.601c.876 0 1.589-.126 2.138-.377.555-.252.961-.617 1.218-1.096.258-.479.386-1.054.386-1.726 0-.678-.131-1.265-.394-1.762-.257-.497-.663-.876-1.219-1.14-.549-.268-1.27-.402-2.164-.402h-3.401v15.626h-2.708Zm8.861-8.098 4.434 8.098h-3.085l-4.347-8.098h2.998Zm-23.638 8.098h-2.874l6.459-17.949h3.128l6.459 17.949h-2.874l-5.074-14.689h-.141l-5.083 14.689Zm.482-7.029h9.325v2.279h-9.325v-2.279Zm-23.032 7.029V22.372h2.515v2.191h.166a3.48 3.48 0 0 1 1.376-1.735c.637-.42 1.4-.631 2.288-.631.9 0 1.653.21 2.26.63.614.421 1.067 1 1.36 1.736h.14a3.789 3.789 0 0 1 1.533-1.718c.701-.432 1.537-.648 2.507-.648 1.221 0 2.217.383 2.988 1.148.777.765 1.166 1.92 1.166 3.462v9.027h-2.621v-8.782c0-.911-.248-1.572-.745-1.98-.496-.41-1.089-.614-1.779-.614-.853 0-1.516.263-1.989.789-.474.52-.71 1.189-.71 2.007v8.58h-2.612v-8.949c0-.73-.228-1.317-.683-1.761-.456-.444-1.05-.666-1.78-.666-.496 0-.955.131-1.375.394a2.897 2.897 0 0 0-1.008 1.078c-.251.462-.377.996-.377 1.604v8.3h-2.62Zm-5.159 0V22.372h2.62v13.462h-2.62Zm1.324-15.539c-.456 0-.848-.152-1.175-.456a1.482 1.482 0 0 1-.482-1.104c0-.432.16-.8.482-1.104.327-.31.719-.465 1.175-.465.455 0 .844.155 1.165.465.327.304.491.672.491 1.104 0 .427-.164.795-.49 1.105a1.64 1.64 0 0 1-1.166.455ZM69 35.834V17.885h6.573c1.274 0 2.328.21 3.164.631.835.415 1.46.979 1.875 1.692.415.707.623 1.504.623 2.392 0 .748-.138 1.38-.412 1.893a3.39 3.39 0 0 1-1.105 1.227 4.863 4.863 0 0 1-1.507.666v.176c.596.029 1.177.222 1.744.578.573.35 1.046.85 1.42 1.499.374.648.56 1.437.56 2.366 0 .917-.216 1.741-.648 2.471-.426.725-1.087 1.3-1.98 1.727-.895.42-2.037.63-3.427.63H69Zm2.708-2.323h3.909c1.297 0 2.226-.25 2.787-.753.56-.503.841-1.13.841-1.885 0-.566-.143-1.086-.43-1.56a3.068 3.068 0 0 0-1.226-1.13c-.526-.28-1.151-.42-1.876-.42h-4.005v5.748Zm0-7.86h3.628c.608 0 1.154-.118 1.64-.351a2.87 2.87 0 0 0 1.165-.982c.292-.427.438-.929.438-1.507 0-.742-.26-1.365-.78-1.867-.52-.503-1.318-.754-2.393-.754h-3.698v5.46Z\" fill=\"#E6E0EA\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n2dnh6\",\"data-framer-name\":\"menu\",layoutDependency:layoutDependency,layoutId:\"CvKHQ_TE4\",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\":\"-0.04em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 224, 234))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LMqVg0ybL\"},motionChild:true,nodeId:\"GjvwGgRvO\",openInNewTab:false,scopeId:\"uWUaWlXYv\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-n3yle\",\"data-styles-preset\":\"lxUPe8i92\",children:\"\u041A\u0435\u0439\u0441\u044B\"})})})}),className:\"framer-e713pn\",\"data-framer-name\":\"\u041A\u0435\u0439\u0441\u044B\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"GjvwGgRvO\",style:{\"--extracted-r6o4lv\":\"rgb(230, 224, 234)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__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\":\"-0.04em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 224, 234))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"oG2H3Gp07\"},motionChild:true,nodeId:\"PvMkV24gi\",openInNewTab:false,scopeId:\"uWUaWlXYv\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-n3yle\",\"data-styles-preset\":\"lxUPe8i92\",children:\"\u0411\u0443\u0434\u0443\u0449\u0435\u0435 \u0441\u0442\u0440\u043E\u0438\u0442\u0435\u043B\u044C\u0441\u0442\u0432\u0430 \"})})})}),className:\"framer-1n6k0ta\",\"data-framer-name\":\"\u0422\u0435\u0445\u043D\u043E\u043B\u043E\u0433\u0438\u0438\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"PvMkV24gi\",style:{\"--extracted-r6o4lv\":\"rgb(230, 224, 234)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__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\":\"-0.04em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 224, 234))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mOGZJqa_K\"},motionChild:true,nodeId:\"fN2NzGcSi\",openInNewTab:false,scopeId:\"uWUaWlXYv\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-n3yle\",\"data-styles-preset\":\"lxUPe8i92\",children:\"\u041F\u0440\u0435\u0441\u0441\u0430\"})})})}),className:\"framer-1rqndx\",\"data-framer-name\":\"\u0422\u0435\u0445\u043D\u043E\u043B\u043E\u0433\u0438\u0438\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"fN2NzGcSi\",style:{\"--extracted-r6o4lv\":\"rgb(230, 224, 234)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__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\":\"-0.04em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 224, 234))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ouL4M2hdb\"},motionChild:true,nodeId:\"mAG_34hIb\",openInNewTab:false,scopeId:\"uWUaWlXYv\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-n3yle\",\"data-styles-preset\":\"lxUPe8i92\",children:\"\u0414\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u044B \"})})})}),className:\"framer-qc2p7u\",\"data-framer-name\":\"\u0413\u043B\u0430\u0432\u043D\u0430\u044F\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"mAG_34hIb\",style:{\"--extracted-r6o4lv\":\"rgb(230, 224, 234)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__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\":\"-0.04em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 224, 234))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZDKjebuK1\"},motionChild:true,nodeId:\"UtWDMyvkc\",openInNewTab:false,scopeId:\"uWUaWlXYv\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-n3yle\",\"data-styles-preset\":\"lxUPe8i92\",children:\"\u041A\u043E\u043D\u0442\u0430\u043A\u0442\u044B\"})})})}),className:\"framer-1e3lu9z\",\"data-framer-name\":\"\u041A\u043E\u043D\u0442\u0430\u043A\u0442\u044B\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"UtWDMyvkc\",style:{\"--extracted-r6o4lv\":\"rgb(230, 224, 234)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-akwo3e\",\"data-framer-name\":\"buttons\",layoutDependency:layoutDependency,layoutId:\"gp65RLuCq\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rtpvmh\",\"data-framer-name\":\"link\",layoutDependency:layoutDependency,layoutId:\"ZhT94aD3w\",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\":\"-0.04em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(247, 248, 248))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://web.bimarkit.com/auth/login\",motionChild:true,nodeId:\"dwkIH6OVi\",openInNewTab:true,scopeId:\"uWUaWlXYv\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-n3yle\",\"data-styles-preset\":\"lxUPe8i92\",children:\"\u0412\u043E\u0439\u0442\u0438\"})})})}),className:\"framer-1a5djy4\",\"data-framer-name\":\"\u0412\u043E\u0439\u0442\u0438\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"dwkIH6OVi\",style:{\"--extracted-r6o4lv\":\"rgb(247, 248, 248)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1eys3qj\",\"data-framer-name\":\"icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:21,layoutDependency:layoutDependency,layoutId:\"kQRK4nVXJ\",svg:'<svg width=\"21\" height=\"21\" viewBox=\"0 0 21 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.5\" y=\"0.5\" width=\"20\" height=\"20\" rx=\"6.5\" stroke=\"#4D4D4D\"/>\\n<g clip-path=\"url(#clip0_1_770)\">\\n<path d=\"M8.20833 10.0415V8.20817C8.20833 7.60038 8.44978 7.01749 8.87955 6.58772C9.30932 6.15795 9.89221 5.9165 10.5 5.9165C11.1078 5.9165 11.6907 6.15795 12.1205 6.58772C12.5502 7.01749 12.7917 7.60038 12.7917 8.20817V10.0415M7.29167 10.0415H13.7083C14.2146 10.0415 14.625 10.4519 14.625 10.9582V14.1665C14.625 14.6728 14.2146 15.0832 13.7083 15.0832H7.29167C6.78541 15.0832 6.375 14.6728 6.375 14.1665V10.9582C6.375 10.4519 6.78541 10.0415 7.29167 10.0415Z\" stroke=\"#F7F8F8\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1_770\">\\n<rect width=\"11\" height=\"11\" fill=\"white\" transform=\"translate(5 5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u73mlw\",\"data-framer-name\":\"link\",layoutDependency:layoutDependency,layoutId:\"QOn5Bmf1M\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsxs(_Fragment,{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\":\"-0.04em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 196, 240))\"},children:\"\u041F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u043F\u0440\u0435\u0437\u0435\u043D\u0442\u0430\u0446\u0438\u044E\"})}),className:\"framer-2ggfbo\",\"data-framer-name\":\"\u0421\u0442\u0430\u0442\u044C \u043A\u043B\u0438\u0435\u043D\u0442\u043E\u043C\",\"data-highlight\":true,fonts:[\"Inter-Medium\"],id:`${layoutId}-2ggfbo`,layoutDependency:layoutDependency,layoutId:\"z0UevbZ3X\",onTap:onTaptxyyif({overlay}),ref:ref1,style:{\"--extracted-r6o4lv\":\"rgb(42, 196, 240)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref1,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-2ggfbo`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",safeArea:false,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-zjjzx0\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"ILKvMuN5D\",ref:ref2,role:\"dialog\",style:{boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-181z8h3-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"pGpR4peBd-container\",nodeId:\"pGpR4peBd\",rendersWithMotion:true,scopeId:\"uWUaWlXYv\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"<script data-b24-form=\\\"inline/12/flka0d\\\" data-skip-moving=\\\"true\\\">(function(w,d,u){var s=d.createElement('script');s.async=true;s.src=u+'?'+(Date.now()/180000|0);var h=d.getElementsByTagName('script')[0];h.parentNode.insertBefore(s,h);})(window,document,'https://cdn-ru.bitrix24.ru/b18228636/crm/form/loader_12.js');</script>\",id:\"pGpR4peBd\",layoutId:\"pGpR4peBd\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})})})]})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:76,intrinsicWidth:260,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||82)-0-25)/2)),pixelHeight:76,pixelWidth:260,src:\"https://framerusercontent.com/images/LcM1SUQUokDq6M5kBUrkzYRllr8.png\"},className:\"framer-cv8b19\",\"data-framer-name\":\"Sk _-block-ru_\",layoutDependency:layoutDependency,layoutId:\"XcGYGQGsa\"}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-i6uadk\",\"data-framer-name\":\"logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:53,intrinsicWidth:53,layoutDependency:layoutDependency,layoutId:\"pBph6ikRU\",svg:'<svg width=\"53\" height=\"53\" viewBox=\"0 0 53 53\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.5\" y=\"0.5\" width=\"52\" height=\"52\" rx=\"7.5\" stroke=\"#303030\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M40.4321 23.5798V29.3924C40.7581 29.4753 41 29.7654 41 30.1125V34.314C40.9947 34.5368 40.8896 34.7388 40.7318 34.8735C40.7266 34.8735 40.7213 34.8839 40.716 34.8891C40.7108 34.8891 40.7055 34.8994 40.7003 34.9046C40.695 34.9098 40.6845 34.915 40.6792 34.9201C40.674 34.9201 40.6687 34.9305 40.6635 34.9305C40.6424 34.946 40.6214 34.9564 40.6004 34.9668L36.9142 37.0649C36.6145 37.2359 36.2464 37.1789 36.0098 36.9561L30.9144 39.8573C30.9986 40.1733 30.8618 40.5152 30.5621 40.6862L26.8655 42.7791C26.6709 42.8931 26.4395 42.9035 26.245 42.8361C26.2397 42.8361 26.2292 42.8361 26.2239 42.8309C26.2187 42.8309 26.2082 42.8309 26.2029 42.8258C26.1924 42.8258 26.1871 42.8206 26.1766 42.8154C26.1714 42.8154 26.1661 42.8154 26.1556 42.805C26.1345 42.7947 26.1135 42.7843 26.0925 42.774L22.4011 40.681C22.1066 40.5152 21.9699 40.1836 22.0435 39.878L16.9376 36.9717C16.701 37.1892 16.3434 37.2411 16.049 37.0701L12.3628 34.9668C12.1683 34.8528 12.0421 34.6663 12 34.4642C12 34.4591 12 34.4487 12 34.4435C12 34.4383 12 34.428 12 34.4228C12 34.4124 12 34.4073 12 34.3969C12 34.3917 12 34.3814 12 34.3762C12 34.3503 12 34.3295 12 34.3036V30.1073C12 29.7758 12.2156 29.5012 12.5153 29.4028V23.5901C12.2156 23.4917 12 23.2119 12 22.8856V18.6944C12 18.6737 12 18.653 12 18.6323C12 18.6219 12 18.6115 12 18.6012C12 18.596 12 18.5908 12 18.5856C12 18.5805 12 18.5753 12 18.5649C12 18.5546 12 18.5442 12.0053 18.5338C12.0473 18.3318 12.1683 18.1453 12.3681 18.0313L16.0542 15.9332C16.3487 15.7674 16.701 15.814 16.9376 16.0264L22.0593 13.1149C21.9857 12.8041 22.1224 12.4725 22.4169 12.3067L26.0925 10.2189C26.1082 10.2086 26.1293 10.1982 26.1451 10.193C26.1556 10.193 26.1608 10.1827 26.1714 10.1827C26.1714 10.1827 26.1819 10.1827 26.1871 10.1775C26.1924 10.1775 26.1976 10.1775 26.2082 10.1723C26.2187 10.1723 26.2292 10.1671 26.2397 10.162C26.4395 10.0946 26.6656 10.1101 26.8602 10.2189L30.5463 12.3171C30.8461 12.4881 30.9828 12.83 30.8986 13.1408L36.0098 16.0471C36.2464 15.8192 36.6145 15.7622 36.9142 15.9332L40.5951 18.0261C40.6109 18.0365 40.6319 18.0469 40.6477 18.0572C40.6582 18.0624 40.6635 18.0676 40.674 18.0728C40.674 18.0728 40.6845 18.0779 40.6845 18.0831C40.6898 18.0831 40.695 18.0935 40.7003 18.0935C40.7108 18.0987 40.716 18.1038 40.7213 18.1142C40.8791 18.2489 40.979 18.4509 40.979 18.6737V22.8648C40.979 23.2068 40.7423 23.4969 40.4216 23.5798M26.6762 37.2307C26.9917 37.3188 27.2178 37.6037 27.2178 37.9456V40.8675L29.7944 39.4066C30.0783 39.246 30.4306 39.2874 30.6673 39.4894L35.7889 36.5779C35.7258 36.2723 35.8626 35.9511 36.1518 35.7853L38.7073 34.3295L36.157 32.879C35.8626 32.7132 35.7258 32.3816 35.7995 32.0708L30.3413 28.9676C30.1046 29.1956 29.7365 29.2525 29.4368 29.0816L27.2073 27.8123V30.3456C27.2073 30.6824 26.9811 30.9621 26.6762 31.0554V37.2307ZM17.1585 16.415C17.2321 16.7258 17.0954 17.0625 16.8009 17.2283L14.2296 18.6893L16.8009 20.1502C17.0901 20.316 17.2268 20.6423 17.1585 20.9532L22.6114 24.0564C22.8481 23.8492 23.2004 23.8077 23.4843 23.9683L25.7139 25.2376V22.7042C25.7139 22.3675 25.94 22.0877 26.245 21.9945V15.7726C25.9347 15.6793 25.7139 15.3944 25.7139 15.0628V12.1513L23.1636 13.6019C22.8691 13.7677 22.5115 13.721 22.2749 13.5035L17.1585 16.415ZM16.8062 35.7853C17.1006 35.9511 17.2374 36.2826 17.1637 36.5935L22.2696 39.4998C22.5063 39.2822 22.8691 39.2304 23.1636 39.3962L25.7191 40.8468V37.9456C25.7191 37.6141 25.94 37.3343 26.245 37.2411V31.0554C25.9347 30.9621 25.7139 30.6772 25.7139 30.3456V27.8123L23.4843 29.0816C23.1846 29.2525 22.8165 29.1956 22.5799 28.9676L17.1585 32.0501C17.2321 32.3609 17.0954 32.6925 16.8009 32.8582L14.2348 34.3192L16.8062 35.7905V35.7853ZM12.9465 29.3976C13.262 29.4857 13.4934 29.7706 13.4934 30.1125V33.0188L16.049 31.5683C16.3434 31.4025 16.7063 31.4543 16.9429 31.6719L22.3748 28.5842C22.3117 28.2786 22.4484 27.9574 22.7376 27.7968L24.9672 26.5275L22.7376 25.2583C22.4379 25.0873 22.3012 24.7454 22.3853 24.4294L16.9481 21.3365C16.7115 21.5593 16.3487 21.6111 16.0542 21.4402L13.4986 19.9896V22.8907C13.4986 23.2275 13.2673 23.5176 12.9518 23.6057V29.4028L12.9465 29.3976ZM36.1623 17.2128C35.8731 17.0522 35.7416 16.731 35.7995 16.4253L30.6725 13.5086C30.4359 13.7159 30.0836 13.7625 29.7944 13.5967L27.223 12.1358V15.0576C27.223 15.3892 26.9969 15.6741 26.6919 15.7674V21.9893C27.0022 22.0826 27.223 22.3675 27.223 22.6991V25.2324L29.4526 23.9631C29.7418 23.7973 30.0889 23.844 30.3255 24.0512L35.8047 20.9325C35.7258 20.6164 35.8626 20.2797 36.157 20.1087L38.7126 18.6582L36.1623 17.2076V17.2128ZM39.9904 23.5694C39.6959 23.471 39.4803 23.1912 39.4803 22.87V19.943L36.909 21.4039C36.6198 21.5697 36.2675 21.5231 36.0308 21.3158L30.5516 24.4294C30.6357 24.7454 30.499 25.0873 30.1993 25.2583L27.9697 26.5275L30.1993 27.7968C30.4885 27.9626 30.6252 28.2838 30.5621 28.5842L36.0256 31.6926C36.2622 31.475 36.625 31.4232 36.9195 31.589L39.4856 33.0499V30.1177C39.4856 29.7965 39.6959 29.5271 39.9851 29.4183V23.5694H39.9904Z\" fill=\"#F7F8F8\"/>\\n</svg>\\n',withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gn8r9.framer-16htzu1, .framer-gn8r9 .framer-16htzu1 { display: block; }\",\".framer-gn8r9.framer-dwst47 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: 82px; justify-content: space-between; overflow: visible; padding: 0px 24px 0px 15px; position: relative; width: 1440px; }\",\".framer-gn8r9 .framer-1262tta { aspect-ratio: 2.641509433962264 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 53px); position: relative; text-decoration: none; width: 140px; }\",\".framer-gn8r9 .framer-1n2dnh6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gn8r9 .framer-e713pn, .framer-gn8r9 .framer-1n6k0ta, .framer-gn8r9 .framer-1rqndx, .framer-gn8r9 .framer-qc2p7u, .framer-gn8r9 .framer-1e3lu9z, .framer-gn8r9 .framer-1a5djy4 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-gn8r9 .framer-akwo3e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gn8r9 .framer-rtpvmh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gn8r9 .framer-1eys3qj { flex: none; height: 21px; position: relative; width: 21px; }\",\".framer-gn8r9 .framer-1u73mlw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gn8r9 .framer-2ggfbo { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-gn8r9 .framer-zjjzx0 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 596px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 600px; }\",\".framer-gn8r9 .framer-181z8h3-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-gn8r9 .framer-cv8b19 { aspect-ratio: 3.4210526315789473 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); overflow: visible; position: relative; width: 86px; }\",\".framer-gn8r9 .framer-i6uadk { flex: none; height: 37px; position: relative; width: 37px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gn8r9 .framer-1n2dnh6, .framer-gn8r9 .framer-akwo3e, .framer-gn8r9 .framer-rtpvmh, .framer-gn8r9 .framer-1u73mlw, .framer-gn8r9 .framer-zjjzx0 { gap: 0px; } .framer-gn8r9 .framer-1n2dnh6 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-gn8r9 .framer-1n2dnh6 > :first-child, .framer-gn8r9 .framer-akwo3e > :first-child, .framer-gn8r9 .framer-rtpvmh > :first-child, .framer-gn8r9 .framer-1u73mlw > :first-child { margin-left: 0px; } .framer-gn8r9 .framer-1n2dnh6 > :last-child, .framer-gn8r9 .framer-akwo3e > :last-child, .framer-gn8r9 .framer-rtpvmh > :last-child, .framer-gn8r9 .framer-1u73mlw > :last-child { margin-right: 0px; } .framer-gn8r9 .framer-akwo3e > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-gn8r9 .framer-rtpvmh > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-gn8r9 .framer-1u73mlw > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-gn8r9 .framer-zjjzx0 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-gn8r9 .framer-zjjzx0 > :first-child { margin-top: 0px; } .framer-gn8r9 .framer-zjjzx0 > :last-child { margin-bottom: 0px; } }\",\".framer-gn8r9.framer-v-1f2b04x.framer-dwst47 { width: 771px; }\",\".framer-gn8r9.framer-v-1f2b04x .framer-1n2dnh6 { gap: 24px; order: 2; }\",\".framer-gn8r9.framer-v-1f2b04x .framer-akwo3e { order: 3; }\",\".framer-gn8r9.framer-v-1f2b04x .framer-i6uadk { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gn8r9.framer-v-1f2b04x .framer-1n2dnh6 { gap: 0px; } .framer-gn8r9.framer-v-1f2b04x .framer-1n2dnh6 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-gn8r9.framer-v-1f2b04x .framer-1n2dnh6 > :first-child { margin-left: 0px; } .framer-gn8r9.framer-v-1f2b04x .framer-1n2dnh6 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-gn8r9[data-border=\"true\"]::after, .framer-gn8r9 [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 82\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Szf_33kDi\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FrameruWUaWlXYv=withCSS(Component,css,\"framer-gn8r9\");export default FrameruWUaWlXYv;FrameruWUaWlXYv.displayName=\"section/mainmenu\";FrameruWUaWlXYv.defaultProps={height:82,width:1440};addPropertyControls(FrameruWUaWlXYv,{variant:{options:[\"jN2vM466D\",\"Szf_33kDi\"],optionTitles:[\"desktop\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameruWUaWlXYv,[{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\"}]},...EmbedFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruWUaWlXYv\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"82\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Szf_33kDi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./uWUaWlXYv.map"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "fontStore", "fonts", "css", "className", "EmbedFonts", "getFonts", "Embed", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTaptxyyif", "overlay", "loadMore", "args", "scopingClassNames", "cx", "isDisplayed", "ref1", "ref2", "isDisplayed1", "LayoutGroup", "u", "Link", "SVG", "RichText", "l", "AnimatePresence", "Floating", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "css", "FrameruWUaWlXYv", "withCSS", "uWUaWlXYv_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
