{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/7Au8cXaG2KI8SHf4S9Bo/1ruGkY1Imt5wYZ0NwnHt/shmXId31X.js", "ssg:https://framerusercontent.com/modules/y7mN9QXvdvpCLGSEc7Mm/I5aTvCkZrDkpHnye9xzC/vrQ9Jugd1.js", "ssg:https://framerusercontent.com/modules/s7pixFoXLLC55HI8OlHr/TnZXo67gyLS8yrTWu3xU/uBsGIbMoU.js", "ssg:https://framerusercontent.com/modules/bunilavIUA0QYOwMQpZr/mFh9pYj3HKxqIHCkXptS/ZUXeC7dhB.js", "ssg:https://framerusercontent.com/modules/jf1SKBiDxlqSVpFWp2pi/NcX9Wgf5Yn3mLMKWa2Wb/augiA20Il.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 (e1a43d5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/2A8XyguCxZezCfl8YNlO/yilQiZOmHGqLUONQWIFq/ETWTQlgGX.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/3595Hdf4hoU11yfTAC2S/LRasS7vYMtjYct9dMT1s/GS6_4aVMb.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/vadDxGBFerCsax8Y6nWv/lEGj5lMYSa0TqtvMVbRX/JltUdZ0uo.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/mMHUGjQiKGqJ6VQE5Gsz/ZwBgW2i3cdooioMNOSio/lzEZX1EqB.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/r12GTPRGHjGob4RDoo1O/hn6oziS5Tq4LacgNF8fz/LzlpJOuGz.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/jkBI36FeBOv7cy9R7GwN/2b1jzsfwtWs4XSfANvjg/NcnW4Xf9v.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/9IYq3w4cgSQlg1ZuPGY7/Qv5iuCrz9VaEKvWWAecT/ojjNhuGdH.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/3O911CTFSelWMxwZ5j0W/ZRiQswTYKfwQqylMYM32/ondY84MY8.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/s1mXcxaSelcZF0BD9IQo/0jK677NmnGcGd5apMx5t/sYSwIte1c.js\";const cycleOrder=[\"NLcaeo__c\",\"ZRnmxjONe\"];const serializationHash=\"framer-5R1Y6\";const variantClassNames={NLcaeo__c:\"framer-v-8pz9db\",ZRnmxjONe:\"framer-v-1oa1a47\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Tab Open\":\"ZRnmxjONe\",Tab:\"NLcaeo__c\"};const getProps=({height,id,number,tap2,text,title,width,...props})=>{return{...props,C3VfTm9XB:tap2??props.C3VfTm9XB,fwu5CyPVk:number??props.fwu5CyPVk??\"01\",oiRycNcVQ:title??props.oiRycNcVQ??\"\u0417\u0430\u043F\u0438\u0448\u0438\u0442\u0435\u0441\u044C \u043D\u0430 \u043F\u0440\u0438\u0451\u043C\",p2HzyhdH4:text??props.p2HzyhdH4??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras dictum ipsum ac efficitur vestibulum.\"})}),variant:humanReadableVariantMap[props.variant]??props.variant??\"NLcaeo__c\"};};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,fwu5CyPVk,oiRycNcVQ,C3VfTm9XB,p2HzyhdH4,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NLcaeo__c\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap11x7aj7=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(C3VfTm9XB){const res=await C3VfTm9XB(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"ZRnmxjONe\")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-8pz9db\",className,classNames),\"data-framer-name\":\"Tab\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"NLcaeo__c\",onTap:onTap11x7aj7,ref:refBinding,style:{...style},...addPropertyOverrides({ZRnmxjONe:{\"data-framer-name\":\"Tab Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f77l7s\",\"data-framer-name\":\"Number\",layoutDependency:layoutDependency,layoutId:\"d7dCsyV23\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15qucxn\",\"data-styles-preset\":\"lzEZX1EqB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-96dae205-5b7c-4685-8343-bc2cc70c6635, rgb(102, 109, 128)))\"},children:\"01\"})}),className:\"framer-bjz4ju\",\"data-framer-name\":\"Number\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qCGMSzBFJ\",style:{\"--extracted-r6o4lv\":\"var(--token-96dae205-5b7c-4685-8343-bc2cc70c6635, rgb(102, 109, 128))\"},text:fwu5CyPVk,variants:{ZRnmxjONe:{\"--extracted-r6o4lv\":\"rgb(58, 123, 153)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ZRnmxjONe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15qucxn\",\"data-styles-preset\":\"lzEZX1EqB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(58, 123, 153))\"},children:\"01\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ippcci\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"IOF1xXF5E\",style:{backgroundColor:\"var(--token-fda13037-004c-4b28-a06e-56bcd4ce8d25, rgb(209, 240, 250))\"},variants:{ZRnmxjONe:{backgroundColor:\"var(--token-663f7d5b-93e8-40e1-a97d-79937c6000ee, rgb(51, 207, 255))\"}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jg8bfr\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"kQYeAKZnq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-n5c81r\",\"data-styles-preset\":\"ojjNhuGdH\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-96dae205-5b7c-4685-8343-bc2cc70c6635, rgb(102, 109, 128)))\"},children:\"Title\"})}),className:\"framer-jire1o\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CVCKPC4DS\",style:{\"--extracted-a0htzi\":\"var(--token-96dae205-5b7c-4685-8343-bc2cc70c6635, rgb(102, 109, 128))\"},text:oiRycNcVQ,variants:{ZRnmxjONe:{\"--extracted-a0htzi\":\"rgb(58, 123, 153)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ZRnmxjONe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-n5c81r\",\"data-styles-preset\":\"ojjNhuGdH\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(58, 123, 153))\"},children:\"\u0417\u0430\u043F\u0438\u0448\u0438\u0442\u0435\u0441\u044C \u043D\u0430 \u043F\u0440\u0438\u0451\u043C\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:p2HzyhdH4,className:\"framer-1h83a52\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bd19mGdgJ\",stylesPresetsClassNames:{a:\"framer-styles-preset-18m1jrd\",h1:\"framer-styles-preset-sei7ti\",h2:\"framer-styles-preset-1iidyt0\",h3:\"framer-styles-preset-n5c81r\",h4:\"framer-styles-preset-dwdmbl\",h5:\"framer-styles-preset-71jdue\",h6:\"framer-styles-preset-1lqwcwq\",p:\"framer-styles-preset-3w0xe5\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5R1Y6.framer-a6stgw, .framer-5R1Y6 .framer-a6stgw { display: block; }\",\".framer-5R1Y6.framer-8pz9db { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 410px; }\",\".framer-5R1Y6 .framer-1f77l7s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 60px; }\",\".framer-5R1Y6 .framer-bjz4ju { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-5R1Y6 .framer-ippcci { align-self: stretch; flex: none; height: auto; overflow: hidden; position: relative; width: 4px; }\",\".framer-5R1Y6 .framer-1jg8bfr { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: visible; padding: 15px 15px 15px 20px; position: relative; width: 1px; }\",\".framer-5R1Y6 .framer-jire1o, .framer-5R1Y6 .framer-1h83a52 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5R1Y6.framer-8pz9db, .framer-5R1Y6 .framer-1f77l7s, .framer-5R1Y6 .framer-1jg8bfr { gap: 0px; } .framer-5R1Y6.framer-8pz9db > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-5R1Y6.framer-8pz9db > :first-child, .framer-5R1Y6 .framer-1f77l7s > :first-child { margin-left: 0px; } .framer-5R1Y6.framer-8pz9db > :last-child, .framer-5R1Y6 .framer-1f77l7s > :last-child { margin-right: 0px; } .framer-5R1Y6 .framer-1f77l7s > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-5R1Y6 .framer-1jg8bfr > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-5R1Y6 .framer-1jg8bfr > :first-child { margin-top: 0px; } .framer-5R1Y6 .framer-1jg8bfr > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 410\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZRnmxjONe\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"fwu5CyPVk\":\"number\",\"oiRycNcVQ\":\"title\",\"C3VfTm9XB\":\"tap2\",\"p2HzyhdH4\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramershmXId31X=withCSS(Component,css,\"framer-5R1Y6\");export default FramershmXId31X;FramershmXId31X.displayName=\"Component/Tab\";FramershmXId31X.defaultProps={height:60,width:410};addPropertyControls(FramershmXId31X,{variant:{options:[\"NLcaeo__c\",\"ZRnmxjONe\"],optionTitles:[\"Tab\",\"Tab Open\"],title:\"Variant\",type:ControlType.Enum},fwu5CyPVk:{defaultValue:\"01\",displayTextArea:false,title:\"Number\",type:ControlType.String},oiRycNcVQ:{defaultValue:\"\u0417\u0430\u043F\u0438\u0448\u0438\u0442\u0435\u0441\u044C \u043D\u0430 \u043F\u0440\u0438\u0451\u043C\",displayTextArea:false,title:\"Title\",type:ControlType.String},C3VfTm9XB:{title:\"Tap 2\",type:ControlType.EventHandler},p2HzyhdH4:{defaultValue:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras dictum ipsum ac efficitur vestibulum.</p>\",title:\"Text\",type:ControlType.RichText}});addFonts(FramershmXId31X,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramershmXId31X\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZRnmxjONe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"fwu5CyPVk\\\":\\\"number\\\",\\\"oiRycNcVQ\\\":\\\"title\\\",\\\"C3VfTm9XB\\\":\\\"tap2\\\",\\\"p2HzyhdH4\\\":\\\"text\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"60\",\"framerIntrinsicWidth\":\"410\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4c611f3)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"TUWhrzTBC\"];const variantClassNames={TUWhrzTBC:\"framer-v-bh9qj0\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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 getProps=({height,id,image,width,...props})=>{return{...props,f_lIaCf6Y:image!==null&&image!==void 0?image:props.f_lIaCf6Y};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,f_lIaCf6Y,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"TUWhrzTBC\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-M4qqM\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsx(Image,{...restProps,as:\"figure\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:570,intrinsicWidth:740,pixelHeight:570,pixelWidth:740,sizes:\"min(740px, 100vw)\",...toResponsiveImage(f_lIaCf6Y)},className:cx(\"framer-bh9qj0\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"TUWhrzTBC\",ref:ref,style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style}})})})});});const css=['.framer-M4qqM [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-M4qqM .framer-tvowk { display: block; }\",\".framer-M4qqM .framer-bh9qj0 { height: 570px; position: relative; width: 740px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 570\n * @framerIntrinsicWidth 740\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"f_lIaCf6Y\":\"image\"}\n */ const FramervrQ9Jugd1=withCSS(Component,css,\"framer-M4qqM\");export default FramervrQ9Jugd1;FramervrQ9Jugd1.displayName=\"Component/Image Tab\";FramervrQ9Jugd1.defaultProps={height:570,width:740};addPropertyControls(FramervrQ9Jugd1,{f_lIaCf6Y:{title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramervrQ9Jugd1,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervrQ9Jugd1\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"570\",\"framerVariables\":\"{\\\"f_lIaCf6Y\\\":\\\"image\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"740\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vrQ9Jugd1.map", "// Generated by Framer (e1a43d5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/3r411LLUsoZKTLCCjseP/jikcXZnPOTYHpIB59iBG/J0zcuaMxa.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/oNOJZ4e6vEspjvAVnQF0/RI2OeXntBO6E6aVb37M6/nosrOmxTB.js\";import ComponentTab from\"https://framerusercontent.com/modules/7Au8cXaG2KI8SHf4S9Bo/1ruGkY1Imt5wYZ0NwnHt/shmXId31X.js\";import ComponentImageTab from\"https://framerusercontent.com/modules/y7mN9QXvdvpCLGSEc7Mm/I5aTvCkZrDkpHnye9xzC/vrQ9Jugd1.js\";const ComponentTabFonts=getFonts(ComponentTab);const ComponentImageTabFonts=getFonts(ComponentImageTab);const cycleOrder=[\"FPHC6wPDx\",\"jgD2gf6MN\",\"rJviS0iQv\",\"OAzdnLHae\",\"ioeYsRmaS\",\"TE1eXKezn\",\"wdl3pNMO1\",\"bg4l0YKy4\"];const serializationHash=\"framer-T94NN\";const variantClassNames={bg4l0YKy4:\"framer-v-va04to\",FPHC6wPDx:\"framer-v-1fud1ca\",ioeYsRmaS:\"framer-v-jdrf43\",jgD2gf6MN:\"framer-v-tvzudm\",OAzdnLHae:\"framer-v-10eueuz\",rJviS0iQv:\"framer-v-2i6gx2\",TE1eXKezn:\"framer-v-17mpi6d\",wdl3pNMO1:\"framer-v-5yqu3c\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop 1\":\"FPHC6wPDx\",\"Desktop 2\":\"jgD2gf6MN\",\"Desktop 3\":\"rJviS0iQv\",\"Desktop 4\":\"OAzdnLHae\",\"Tablet 1\":\"ioeYsRmaS\",\"Tablet 2\":\"TE1eXKezn\",\"Tablet 3\":\"wdl3pNMO1\",\"Tablet 4\":\"bg4l0YKy4\"};const getProps=({description,height,id,title,width,...props})=>{return{...props,mRtnNJZSK:description??props.mRtnNJZSK??\"\u0412\u0441\u0451 \u043F\u0440\u043E\u0441\u0442\u043E! \u0421\u043B\u0435\u0434\u0443\u0439\u0442\u0435 \u044D\u0442\u0438\u043C \u0447\u0435\u0442\u044B\u0440\u0451\u043C \u0448\u0430\u0433\u0430\u043C, \u0447\u0442\u043E\u0431\u044B \u043E\u0431\u0440\u0435\u0441\u0442\u0438 \u0437\u0434\u043E\u0440\u043E\u0432\u0443\u044E \u0438 \u043A\u0440\u0430\u0441\u0438\u0432\u0443\u044E \u0443\u043B\u044B\u0431\u043A\u0443.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"FPHC6wPDx\",vDmT2cSy3:title??props.vDmT2cSy3??\"\u041D\u0430\u0447\u043D\u0438\u0442\u0435 \u0437\u0430\u0431\u043E\u0442\u0443 \u043E \u0441\u0432\u043E\u0435\u0439 \u0443\u043B\u044B\u0431\u043A\u0435 \u0432 4 \u043F\u0440\u043E\u0441\u0442\u044B\u0445 \u0448\u0430\u0433\u0430\"};};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,vDmT2cSy3,mRtnNJZSK,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FPHC6wPDx\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1misom3=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"jgD2gf6MN\"),5e3);});const onAppear1vdara8=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"rJviS0iQv\"),5e3);});const onAppear1tarcd8=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"OAzdnLHae\"),5e3);});const onAppear1xl0p3y=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"FPHC6wPDx\"),5e3);});const onAppear47le80=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"TE1eXKezn\"),5e3);});const onAppear1ilg27e=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"wdl3pNMO1\"),5e3);});const onAppear5pxbtn=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"bg4l0YKy4\"),5e3);});const onAppear1abwswn=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ioeYsRmaS\"),5e3);});const C3VfTm9XB1gi30ae=activeVariantCallback(async(...args)=>{setVariant(\"FPHC6wPDx\");});const C3VfTm9XB1brj414=activeVariantCallback(async(...args)=>{setVariant(\"ioeYsRmaS\");});const C3VfTm9XBskaq8r=activeVariantCallback(async(...args)=>{setVariant(\"jgD2gf6MN\");});const C3VfTm9XB17ixazy=activeVariantCallback(async(...args)=>{setVariant(\"TE1eXKezn\");});const C3VfTm9XBfpjg4o=activeVariantCallback(async(...args)=>{setVariant(\"rJviS0iQv\");});const C3VfTm9XByb22pc=activeVariantCallback(async(...args)=>{setVariant(\"wdl3pNMO1\");});const C3VfTm9XB1qmgq57=activeVariantCallback(async(...args)=>{setVariant(\"OAzdnLHae\");});const C3VfTm9XB2jnbs9=activeVariantCallback(async(...args)=>{setVariant(\"bg4l0YKy4\");});useOnVariantChange(baseVariant,{bg4l0YKy4:onAppear1abwswn,default:onAppear1misom3,ioeYsRmaS:onAppear47le80,jgD2gf6MN:onAppear1vdara8,OAzdnLHae:onAppear1xl0p3y,rJviS0iQv:onAppear1tarcd8,TE1eXKezn:onAppear1ilg27e,wdl3pNMO1:onAppear5pxbtn});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1fud1ca\",className,classNames),\"data-framer-name\":\"Desktop 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"FPHC6wPDx\",ref:refBinding,style:{...style},...addPropertyOverrides({bg4l0YKy4:{\"data-framer-name\":\"Tablet 4\"},ioeYsRmaS:{\"data-framer-name\":\"Tablet 1\"},jgD2gf6MN:{\"data-framer-name\":\"Desktop 2\"},OAzdnLHae:{\"data-framer-name\":\"Desktop 4\"},rJviS0iQv:{\"data-framer-name\":\"Desktop 3\"},TE1eXKezn:{\"data-framer-name\":\"Tablet 2\"},wdl3pNMO1:{\"data-framer-name\":\"Tablet 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pa7p5d\",\"data-framer-name\":\"Column\",layoutDependency:layoutDependency,layoutId:\"CFgGtVbkD\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l7frlb\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"qu5eqgXup\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-cs8zof\",\"data-styles-preset\":\"nosrOmxTB\",children:\"How to Get Treatment at Medicana?\"})}),className:\"framer-11k2o31\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iSAnQdHTc\",text:vDmT2cSy3,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hbe5r4\",\"data-styles-preset\":\"J0zcuaMxa\",children:\"Discover why our dental service stands out from the rest. From our experienced team to our state-of-the-art equipment, we provide exceptional care for all your dental needs.\"})}),className:\"framer-1gta6ln\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CbImoC6wS\",text:mRtnNJZSK,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3lnms5\",\"data-framer-name\":\"Tab Group\",layoutDependency:layoutDependency,layoutId:\"O_Nb2D2kN\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"410px\",y:(componentViewport?.y||0)+0+0+196+0+0,...addPropertyOverrides({bg4l0YKy4:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+176+0+0},ioeYsRmaS:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+176+0+0},TE1eXKezn:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+176+0+0},wdl3pNMO1:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+176+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4094nx-container\",layoutDependency:layoutDependency,layoutId:\"PHpkyJzp2-container\",nodeId:\"PHpkyJzp2\",rendersWithMotion:true,scopeId:\"uBsGIbMoU\",children:/*#__PURE__*/_jsx(ComponentTab,{fwu5CyPVk:\"01\",height:\"100%\",id:\"PHpkyJzp2\",layoutId:\"PHpkyJzp2\",oiRycNcVQ:\"\u0421\u0432\u044F\u0436\u0438\u0442\u0435\u0441\u044C \u0441 \u043D\u0430\u043C\u0438\",p2HzyhdH4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u0421\u0432\u044F\u0436\u0438\u0442\u0435\u0441\u044C \u0441 \u043D\u0430\u043C\u0438 \u043B\u044E\u0431\u044B\u043C \u0443\u0434\u043E\u0431\u043D\u044B\u043C \u0441\u043F\u043E\u0441\u043E\u0431\u043E\u043C \u2014 \u043F\u043E \u0442\u0435\u043B\u0435\u0444\u043E\u043D\u0443, \u0447\u0435\u0440\u0435\u0437 \u0441\u0430\u0439\u0442 \u0438\u043B\u0438 \u043C\u0435\u0441\u0441\u0435\u043D\u0434\u0436\u0435\u0440\u044B.\"})}),style:{width:\"100%\"},variant:\"ZRnmxjONe\",width:\"100%\",...addPropertyOverrides({bg4l0YKy4:{C3VfTm9XB:C3VfTm9XB1brj414,variant:\"NLcaeo__c\"},jgD2gf6MN:{C3VfTm9XB:C3VfTm9XB1gi30ae,variant:\"NLcaeo__c\"},OAzdnLHae:{C3VfTm9XB:C3VfTm9XB1gi30ae,variant:\"NLcaeo__c\"},rJviS0iQv:{C3VfTm9XB:C3VfTm9XB1gi30ae,variant:\"NLcaeo__c\"},TE1eXKezn:{C3VfTm9XB:C3VfTm9XB1brj414,variant:\"NLcaeo__c\"},wdl3pNMO1:{C3VfTm9XB:C3VfTm9XB1brj414,variant:\"NLcaeo__c\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"410px\",y:(componentViewport?.y||0)+0+0+196+0+60,...addPropertyOverrides({bg4l0YKy4:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+176+0+60},ioeYsRmaS:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+176+0+60},TE1eXKezn:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+176+0+60},wdl3pNMO1:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+176+0+60}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1q5kseb-container\",layoutDependency:layoutDependency,layoutId:\"dkXZmppm7-container\",nodeId:\"dkXZmppm7\",rendersWithMotion:true,scopeId:\"uBsGIbMoU\",children:/*#__PURE__*/_jsx(ComponentTab,{C3VfTm9XB:C3VfTm9XBskaq8r,fwu5CyPVk:\"02\",height:\"100%\",id:\"dkXZmppm7\",layoutId:\"dkXZmppm7\",oiRycNcVQ:\"\u0412\u0438\u0437\u0438\u0442 \u0432 \u043A\u043B\u0438\u043D\u0438\u043A\u0443\",p2HzyhdH4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Please bring any necessary documents, such as your ID, insurance information, and a list of any medications you are currently taking. This will help us provide you with the best possible care. We recommend arriving a few minutes early to complete any required paperwork.\"})}),style:{width:\"100%\"},variant:\"NLcaeo__c\",width:\"100%\",...addPropertyOverrides({bg4l0YKy4:{C3VfTm9XB:C3VfTm9XB17ixazy},ioeYsRmaS:{C3VfTm9XB:C3VfTm9XB17ixazy},jgD2gf6MN:{p2HzyhdH4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u041C\u044B \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u043C \u0432\u0430\u0441 \u0432 \u0443\u044E\u0442\u043D\u043E\u0439 \u043A\u043B\u0438\u043D\u0438\u043A\u0435 \u0438 \u0441\u0434\u0435\u043B\u0430\u0435\u043C \u0432\u0441\u0451, \u0447\u0442\u043E\u0431\u044B \u0432\u0430\u043C \u0431\u044B\u043B\u043E \u043A\u043E\u043C\u0444\u043E\u0440\u0442\u043D\u043E.\"})}),variant:\"ZRnmxjONe\"},TE1eXKezn:{C3VfTm9XB:C3VfTm9XB17ixazy,p2HzyhdH4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u041C\u044B \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u043C \u0432\u0430\u0441 \u0432 \u0443\u044E\u0442\u043D\u043E\u0439 \u043A\u043B\u0438\u043D\u0438\u043A\u0435 \u0438 \u0441\u0434\u0435\u043B\u0430\u0435\u043C \u0432\u0441\u0451, \u0447\u0442\u043E\u0431\u044B \u0432\u0430\u043C \u0431\u044B\u043B\u043E \u043A\u043E\u043C\u0444\u043E\u0440\u0442\u043D\u043E.\"})}),variant:\"ZRnmxjONe\"},wdl3pNMO1:{C3VfTm9XB:C3VfTm9XB17ixazy}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"410px\",y:(componentViewport?.y||0)+0+0+196+0+120,...addPropertyOverrides({bg4l0YKy4:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+176+0+120},ioeYsRmaS:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+176+0+120},TE1eXKezn:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+176+0+120},wdl3pNMO1:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+176+0+120}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ddgo6c-container\",layoutDependency:layoutDependency,layoutId:\"my7GFS78M-container\",nodeId:\"my7GFS78M\",rendersWithMotion:true,scopeId:\"uBsGIbMoU\",children:/*#__PURE__*/_jsx(ComponentTab,{C3VfTm9XB:C3VfTm9XBfpjg4o,fwu5CyPVk:\"03\",height:\"100%\",id:\"my7GFS78M\",layoutId:\"my7GFS78M\",oiRycNcVQ:\"\u041E\u0441\u043C\u043E\u0442\u0440 \u0438 \u043A\u043E\u043D\u0441\u0443\u043B\u044C\u0442\u0430\u0446\u0438\u044F\",p2HzyhdH4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"At Medicana Dental Clinic, we are pleased to offer a free consultation to all new patients. This is an excellent opportunity for you to meet our team, explore our state-of-the-art facilities, and discuss your dental health needs without any financial commitment.\"})}),style:{width:\"100%\"},variant:\"NLcaeo__c\",width:\"100%\",...addPropertyOverrides({bg4l0YKy4:{C3VfTm9XB:C3VfTm9XByb22pc},ioeYsRmaS:{C3VfTm9XB:C3VfTm9XByb22pc},rJviS0iQv:{p2HzyhdH4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u0412\u0440\u0430\u0447 \u0438\u0437\u0443\u0447\u0438\u0442 \u0432\u0430\u0448\u0443 \u0441\u0438\u0442\u0443\u0430\u0446\u0438\u044E, \u043E\u0442\u0432\u0435\u0442\u0438\u0442 \u043D\u0430 \u0432\u043E\u043F\u0440\u043E\u0441\u044B \u0438 \u0441\u043E\u0441\u0442\u0430\u0432\u0438\u0442 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u043B\u044C\u043D\u044B\u0439 \u043F\u043B\u0430\u043D \u043B\u0435\u0447\u0435\u043D\u0438\u044F.\"})}),variant:\"ZRnmxjONe\"},TE1eXKezn:{C3VfTm9XB:C3VfTm9XByb22pc},wdl3pNMO1:{C3VfTm9XB:C3VfTm9XByb22pc,p2HzyhdH4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u0412\u0440\u0430\u0447 \u0438\u0437\u0443\u0447\u0438\u0442 \u0432\u0430\u0448\u0443 \u0441\u0438\u0442\u0443\u0430\u0446\u0438\u044E, \u043E\u0442\u0432\u0435\u0442\u0438\u0442 \u043D\u0430 \u0432\u043E\u043F\u0440\u043E\u0441\u044B \u0438 \u0441\u043E\u0441\u0442\u0430\u0432\u0438\u0442 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u043B\u044C\u043D\u044B\u0439 \u043F\u043B\u0430\u043D \u043B\u0435\u0447\u0435\u043D\u0438\u044F.\"})}),variant:\"ZRnmxjONe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"410px\",y:(componentViewport?.y||0)+0+0+196+0+180,...addPropertyOverrides({bg4l0YKy4:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+176+0+180},ioeYsRmaS:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+176+0+180},TE1eXKezn:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+176+0+180},wdl3pNMO1:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+176+0+180}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1pqjj3x-container\",layoutDependency:layoutDependency,layoutId:\"CwbVTmQNs-container\",nodeId:\"CwbVTmQNs\",rendersWithMotion:true,scopeId:\"uBsGIbMoU\",children:/*#__PURE__*/_jsx(ComponentTab,{C3VfTm9XB:C3VfTm9XB1qmgq57,fwu5CyPVk:\"04\",height:\"100%\",id:\"CwbVTmQNs\",layoutId:\"CwbVTmQNs\",oiRycNcVQ:\"\u041D\u0430\u0447\u0430\u043B\u043E \u043B\u0435\u0447\u0435\u043D\u0438\u044F\",p2HzyhdH4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"At Medicana Dental Clinic, we're committed to crafting your perfect smile. With a full suite of cosmetic, orthodontic, restorative, and preventive services, our experienced team ensures exceptional results tailored to you. Using cutting-edge technology, we make every visit comfortable and effective. Let us help you unlock your smile's full potential. Contact us today for your consultation.\"})}),style:{width:\"100%\"},variant:\"NLcaeo__c\",width:\"100%\",...addPropertyOverrides({bg4l0YKy4:{C3VfTm9XB:C3VfTm9XB2jnbs9,p2HzyhdH4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u0421\u0434\u0435\u043B\u0430\u0439\u0442\u0435 \u043F\u0435\u0440\u0432\u044B\u0439 \u0448\u0430\u0433 \u043A \u0437\u0434\u043E\u0440\u043E\u0432\u044C\u044E \u0437\u0443\u0431\u043E\u0432 \u0438 \u043A\u0440\u0430\u0441\u043E\u0442\u0435 \u0432\u0430\u0448\u0435\u0439 \u0443\u043B\u044B\u0431\u043A\u0438!\"})}),variant:\"ZRnmxjONe\"},ioeYsRmaS:{C3VfTm9XB:C3VfTm9XB2jnbs9},OAzdnLHae:{p2HzyhdH4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u0421\u0434\u0435\u043B\u0430\u0439\u0442\u0435 \u043F\u0435\u0440\u0432\u044B\u0439 \u0448\u0430\u0433 \u043A \u0437\u0434\u043E\u0440\u043E\u0432\u044C\u044E \u0437\u0443\u0431\u043E\u0432 \u0438 \u043A\u0440\u0430\u0441\u043E\u0442\u0435 \u0432\u0430\u0448\u0435\u0439 \u0443\u043B\u044B\u0431\u043A\u0438!\"})}),variant:\"ZRnmxjONe\"},rJviS0iQv:{p2HzyhdH4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u0421\u0434\u0435\u043B\u0430\u0439\u0442\u0435 \u043F\u0435\u0440\u0432\u044B\u0439 \u0448\u0430\u0433 \u043A \u0437\u0434\u043E\u0440\u043E\u0432\u044C\u044E \u0437\u0443\u0431\u043E\u0432 \u0438 \u043A\u0440\u0430\u0441\u043E\u0442\u0435 \u0432\u0430\u0448\u0435\u0439 \u0443\u043B\u044B\u0431\u043A\u0438!\"})})},TE1eXKezn:{C3VfTm9XB:C3VfTm9XB2jnbs9},wdl3pNMO1:{C3VfTm9XB:C3VfTm9XB2jnbs9}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nhyq4z-container\",layoutDependency:layoutDependency,layoutId:\"B4EjJTY94-container\",nodeId:\"B4EjJTY94\",rendersWithMotion:true,scopeId:\"uBsGIbMoU\",children:/*#__PURE__*/_jsx(ComponentImageTab,{height:\"100%\",id:\"B4EjJTY94\",image:addImageAlt({src:\"https://framerusercontent.com/images/ZRBuBSCjl44Rj9zGMs4HbIExi4Q.png?scale-down-to=512\"},\"Appoinment\"),layoutId:\"B4EjJTY94\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({bg4l0YKy4:{image:addImageAlt({src:\"https://framerusercontent.com/images/4niVrIMgSGqKwaVOUft3FxaUs.png\",srcSet:\"https://framerusercontent.com/images/4niVrIMgSGqKwaVOUft3FxaUs.png?scale-down-to=512 512w,https://framerusercontent.com/images/4niVrIMgSGqKwaVOUft3FxaUs.png 740w\"},\"Smile\")},jgD2gf6MN:{image:addImageAlt({src:\"https://framerusercontent.com/images/uNOKMgkWEXv73HUoLuMJbQLHk.png?scale-down-to=512\"},\"Clinic\")},OAzdnLHae:{image:addImageAlt({src:\"https://framerusercontent.com/images/4niVrIMgSGqKwaVOUft3FxaUs.png?scale-down-to=512\"},\"Smile\")},rJviS0iQv:{image:addImageAlt({src:\"https://framerusercontent.com/images/0GdZKrYdhXcgK0d3xMWHb6cM4.jpg\",srcSet:\"https://framerusercontent.com/images/0GdZKrYdhXcgK0d3xMWHb6cM4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0GdZKrYdhXcgK0d3xMWHb6cM4.jpg 1000w\"},\"\")},TE1eXKezn:{image:addImageAlt({src:\"https://framerusercontent.com/images/uNOKMgkWEXv73HUoLuMJbQLHk.png\",srcSet:\"https://framerusercontent.com/images/uNOKMgkWEXv73HUoLuMJbQLHk.png?scale-down-to=512 512w,https://framerusercontent.com/images/uNOKMgkWEXv73HUoLuMJbQLHk.png 740w\"},\"Clinic\")},wdl3pNMO1:{image:addImageAlt({src:\"https://framerusercontent.com/images/SdtcdwEyVIJXAXKwGCh7SEPDxVQ.jpg\",srcSet:\"https://framerusercontent.com/images/SdtcdwEyVIJXAXKwGCh7SEPDxVQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SdtcdwEyVIJXAXKwGCh7SEPDxVQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SdtcdwEyVIJXAXKwGCh7SEPDxVQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SdtcdwEyVIJXAXKwGCh7SEPDxVQ.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/SdtcdwEyVIJXAXKwGCh7SEPDxVQ.jpg 7952w\"},\"Consultation\")}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-T94NN.framer-1l2r8n6, .framer-T94NN .framer-1l2r8n6 { display: block; }\",\".framer-T94NN.framer-1fud1ca { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-T94NN .framer-1pa7p5d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 410px; }\",\".framer-T94NN .framer-l7frlb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 410px; }\",\".framer-T94NN .framer-11k2o31, .framer-T94NN .framer-1gta6ln { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 410px; word-break: break-word; word-wrap: break-word; }\",\".framer-T94NN .framer-3lnms5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-T94NN .framer-4094nx-container, .framer-T94NN .framer-1q5kseb-container, .framer-T94NN .framer-ddgo6c-container, .framer-T94NN .framer-1pqjj3x-container { flex: none; height: auto; position: relative; width: 410px; }\",\".framer-T94NN .framer-nhyq4z-container { flex: none; height: 570px; position: relative; width: 740px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-T94NN .framer-1pa7p5d, .framer-T94NN .framer-l7frlb, .framer-T94NN .framer-3lnms5 { gap: 0px; } .framer-T94NN .framer-1pa7p5d > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-T94NN .framer-1pa7p5d > :first-child, .framer-T94NN .framer-l7frlb > :first-child, .framer-T94NN .framer-3lnms5 > :first-child { margin-top: 0px; } .framer-T94NN .framer-1pa7p5d > :last-child, .framer-T94NN .framer-l7frlb > :last-child, .framer-T94NN .framer-3lnms5 > :last-child { margin-bottom: 0px; } .framer-T94NN .framer-l7frlb > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-T94NN .framer-3lnms5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-T94NN.framer-v-jdrf43.framer-1fud1ca, .framer-T94NN.framer-v-17mpi6d.framer-1fud1ca, .framer-T94NN.framer-v-5yqu3c.framer-1fud1ca, .framer-T94NN.framer-v-va04to.framer-1fud1ca { flex-direction: column; gap: 30px; justify-content: flex-start; width: 810px; }\",\".framer-T94NN.framer-v-jdrf43 .framer-1pa7p5d, .framer-T94NN.framer-v-17mpi6d .framer-1pa7p5d, .framer-T94NN.framer-v-5yqu3c .framer-1pa7p5d, .framer-T94NN.framer-v-va04to .framer-1pa7p5d { gap: 30px; width: 100%; }\",\".framer-T94NN.framer-v-jdrf43 .framer-l7frlb, .framer-T94NN.framer-v-jdrf43 .framer-11k2o31, .framer-T94NN.framer-v-jdrf43 .framer-1gta6ln, .framer-T94NN.framer-v-jdrf43 .framer-3lnms5, .framer-T94NN.framer-v-jdrf43 .framer-4094nx-container, .framer-T94NN.framer-v-jdrf43 .framer-1q5kseb-container, .framer-T94NN.framer-v-jdrf43 .framer-ddgo6c-container, .framer-T94NN.framer-v-jdrf43 .framer-1pqjj3x-container, .framer-T94NN.framer-v-17mpi6d .framer-l7frlb, .framer-T94NN.framer-v-17mpi6d .framer-11k2o31, .framer-T94NN.framer-v-17mpi6d .framer-1gta6ln, .framer-T94NN.framer-v-17mpi6d .framer-3lnms5, .framer-T94NN.framer-v-17mpi6d .framer-4094nx-container, .framer-T94NN.framer-v-17mpi6d .framer-1q5kseb-container, .framer-T94NN.framer-v-17mpi6d .framer-ddgo6c-container, .framer-T94NN.framer-v-17mpi6d .framer-1pqjj3x-container, .framer-T94NN.framer-v-5yqu3c .framer-l7frlb, .framer-T94NN.framer-v-5yqu3c .framer-11k2o31, .framer-T94NN.framer-v-5yqu3c .framer-1gta6ln, .framer-T94NN.framer-v-5yqu3c .framer-3lnms5, .framer-T94NN.framer-v-5yqu3c .framer-4094nx-container, .framer-T94NN.framer-v-5yqu3c .framer-1q5kseb-container, .framer-T94NN.framer-v-5yqu3c .framer-ddgo6c-container, .framer-T94NN.framer-v-5yqu3c .framer-1pqjj3x-container, .framer-T94NN.framer-v-va04to .framer-l7frlb, .framer-T94NN.framer-v-va04to .framer-11k2o31, .framer-T94NN.framer-v-va04to .framer-1gta6ln, .framer-T94NN.framer-v-va04to .framer-3lnms5, .framer-T94NN.framer-v-va04to .framer-4094nx-container, .framer-T94NN.framer-v-va04to .framer-1q5kseb-container, .framer-T94NN.framer-v-va04to .framer-ddgo6c-container, .framer-T94NN.framer-v-va04to .framer-1pqjj3x-container { width: 100%; }\",\".framer-T94NN.framer-v-jdrf43 .framer-nhyq4z-container, .framer-T94NN.framer-v-17mpi6d .framer-nhyq4z-container, .framer-T94NN.framer-v-5yqu3c .framer-nhyq4z-container, .framer-T94NN.framer-v-va04to .framer-nhyq4z-container { aspect-ratio: 1.2982456140350878 / 1; height: var(--framer-aspect-ratio-supported, 154px); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-T94NN.framer-v-jdrf43.framer-1fud1ca, .framer-T94NN.framer-v-jdrf43 .framer-1pa7p5d { gap: 0px; } .framer-T94NN.framer-v-jdrf43.framer-1fud1ca > *, .framer-T94NN.framer-v-jdrf43 .framer-1pa7p5d > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-T94NN.framer-v-jdrf43.framer-1fud1ca > :first-child, .framer-T94NN.framer-v-jdrf43 .framer-1pa7p5d > :first-child { margin-top: 0px; } .framer-T94NN.framer-v-jdrf43.framer-1fud1ca > :last-child, .framer-T94NN.framer-v-jdrf43 .framer-1pa7p5d > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-T94NN.framer-v-17mpi6d.framer-1fud1ca, .framer-T94NN.framer-v-17mpi6d .framer-1pa7p5d { gap: 0px; } .framer-T94NN.framer-v-17mpi6d.framer-1fud1ca > *, .framer-T94NN.framer-v-17mpi6d .framer-1pa7p5d > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-T94NN.framer-v-17mpi6d.framer-1fud1ca > :first-child, .framer-T94NN.framer-v-17mpi6d .framer-1pa7p5d > :first-child { margin-top: 0px; } .framer-T94NN.framer-v-17mpi6d.framer-1fud1ca > :last-child, .framer-T94NN.framer-v-17mpi6d .framer-1pa7p5d > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-T94NN.framer-v-5yqu3c.framer-1fud1ca, .framer-T94NN.framer-v-5yqu3c .framer-1pa7p5d { gap: 0px; } .framer-T94NN.framer-v-5yqu3c.framer-1fud1ca > *, .framer-T94NN.framer-v-5yqu3c .framer-1pa7p5d > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-T94NN.framer-v-5yqu3c.framer-1fud1ca > :first-child, .framer-T94NN.framer-v-5yqu3c .framer-1pa7p5d > :first-child { margin-top: 0px; } .framer-T94NN.framer-v-5yqu3c.framer-1fud1ca > :last-child, .framer-T94NN.framer-v-5yqu3c .framer-1pa7p5d > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-T94NN.framer-v-va04to.framer-1fud1ca, .framer-T94NN.framer-v-va04to .framer-1pa7p5d { gap: 0px; } .framer-T94NN.framer-v-va04to.framer-1fud1ca > *, .framer-T94NN.framer-v-va04to .framer-1pa7p5d > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-T94NN.framer-v-va04to.framer-1fud1ca > :first-child, .framer-T94NN.framer-v-va04to .framer-1pa7p5d > :first-child { margin-top: 0px; } .framer-T94NN.framer-v-va04to.framer-1fud1ca > :last-child, .framer-T94NN.framer-v-va04to .framer-1pa7p5d > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 570\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jgD2gf6MN\":{\"layout\":[\"fixed\",\"auto\"]},\"rJviS0iQv\":{\"layout\":[\"fixed\",\"auto\"]},\"OAzdnLHae\":{\"layout\":[\"fixed\",\"auto\"]},\"ioeYsRmaS\":{\"layout\":[\"fixed\",\"auto\"]},\"TE1eXKezn\":{\"layout\":[\"fixed\",\"auto\"]},\"wdl3pNMO1\":{\"layout\":[\"fixed\",\"auto\"]},\"bg4l0YKy4\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"vDmT2cSy3\":\"title\",\"mRtnNJZSK\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameruBsGIbMoU=withCSS(Component,css,\"framer-T94NN\");export default FrameruBsGIbMoU;FrameruBsGIbMoU.displayName=\"Component/Tab Content\";FrameruBsGIbMoU.defaultProps={height:570,width:1280};addPropertyControls(FrameruBsGIbMoU,{variant:{options:[\"FPHC6wPDx\",\"jgD2gf6MN\",\"rJviS0iQv\",\"OAzdnLHae\",\"ioeYsRmaS\",\"TE1eXKezn\",\"wdl3pNMO1\",\"bg4l0YKy4\"],optionTitles:[\"Desktop 1\",\"Desktop 2\",\"Desktop 3\",\"Desktop 4\",\"Tablet 1\",\"Tablet 2\",\"Tablet 3\",\"Tablet 4\"],title:\"Variant\",type:ControlType.Enum},vDmT2cSy3:{defaultValue:\"\u041D\u0430\u0447\u043D\u0438\u0442\u0435 \u0437\u0430\u0431\u043E\u0442\u0443 \u043E \u0441\u0432\u043E\u0435\u0439 \u0443\u043B\u044B\u0431\u043A\u0435 \u0432 4 \u043F\u0440\u043E\u0441\u0442\u044B\u0445 \u0448\u0430\u0433\u0430\",displayTextArea:false,title:\"Title\",type:ControlType.String},mRtnNJZSK:{defaultValue:\"\u0412\u0441\u0451 \u043F\u0440\u043E\u0441\u0442\u043E! \u0421\u043B\u0435\u0434\u0443\u0439\u0442\u0435 \u044D\u0442\u0438\u043C \u0447\u0435\u0442\u044B\u0440\u0451\u043C \u0448\u0430\u0433\u0430\u043C, \u0447\u0442\u043E\u0431\u044B \u043E\u0431\u0440\u0435\u0441\u0442\u0438 \u0437\u0434\u043E\u0440\u043E\u0432\u0443\u044E \u0438 \u043A\u0440\u0430\u0441\u0438\u0432\u0443\u044E \u0443\u043B\u044B\u0431\u043A\u0443.\",displayTextArea:true,title:\"Description\",type:ControlType.String}});addFonts(FrameruBsGIbMoU,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ComponentTabFonts,...ComponentImageTabFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruBsGIbMoU\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"570\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"vDmT2cSy3\\\":\\\"title\\\",\\\"mRtnNJZSK\\\":\\\"description\\\"}\",\"framerIntrinsicWidth\":\"1280\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jgD2gf6MN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rJviS0iQv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OAzdnLHae\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ioeYsRmaS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TE1eXKezn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wdl3pNMO1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bg4l0YKy4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e1a43d5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/2A8XyguCxZezCfl8YNlO/yilQiZOmHGqLUONQWIFq/ETWTQlgGX.js\";const enabledGestures={o47OxLo1n:{hover:true}};const serializationHash=\"framer-sddkP\";const variantClassNames={o47OxLo1n:\"framer-v-19tcous\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,link,title,width,...props})=>{return{...props,djgz5axxh:title??props.djgz5axxh??\"View all dentists\",o0OPLovIT:link??props.o0OPLovIT};};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,djgz5axxh,o0OPLovIT,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"o47OxLo1n\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:o0OPLovIT,motionChild:true,nodeId:\"o47OxLo1n\",openInNewTab:false,scopeId:\"ZUXeC7dhB\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-19tcous\",className,classNames)} framer-1tpb9rp`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"o47OxLo1n\",ref:refBinding,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,...style},...addPropertyOverrides({\"o47OxLo1n-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3w0xe5\",\"data-styles-preset\":\"ETWTQlgGX\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(58, 123, 153))\"},children:\"View all dentists\"})}),className:\"framer-1fxs8nk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HjeH2IjNm\",style:{\"--extracted-r6o4lv\":\"rgb(58, 123, 153)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:djgz5axxh,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q8nbtf\",\"data-framer-name\":\"Chevron Right\",layoutDependency:layoutDependency,layoutId:\"ir7T6vYAk\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12y09in\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:6,layoutDependency:layoutDependency,layoutId:\"p9VforbMM\",svg:'<svg width=\"6\" height=\"10\" viewBox=\"-1 -1 6 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.199997 7.5999L3.8 3.9999L0.199997 0.399902\" stroke=\"#116B97\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sddkP.framer-1tpb9rp, .framer-sddkP .framer-1tpb9rp { display: block; }\",\".framer-sddkP.framer-19tcous { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-sddkP .framer-1fxs8nk { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-sddkP .framer-q8nbtf { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-sddkP .framer-12y09in { flex: none; height: 10px; left: calc(49.99998450279236% - 6px / 2); position: absolute; top: calc(49.99951124191284% - 10px / 2); width: 6px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sddkP.framer-19tcous { gap: 0px; } .framer-sddkP.framer-19tcous > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-sddkP.framer-19tcous > :first-child { margin-left: 0px; } .framer-sddkP.framer-19tcous > :last-child { margin-right: 0px; } }\",\".framer-sddkP.framer-v-19tcous.hover .framer-12y09in { left: unset; right: 2px; top: calc(50.00000000000002% - 10px / 2); }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 140\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Lj9QZUnRC\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"djgz5axxh\":\"title\",\"o0OPLovIT\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZUXeC7dhB=withCSS(Component,css,\"framer-sddkP\");export default FramerZUXeC7dhB;FramerZUXeC7dhB.displayName=\"Component/Ghost Button\";FramerZUXeC7dhB.defaultProps={height:24,width:140};addPropertyControls(FramerZUXeC7dhB,{djgz5axxh:{defaultValue:\"View all dentists\",displayTextArea:false,title:\"Title\",type:ControlType.String},o0OPLovIT:{title:\"Link\",type:ControlType.Link}});addFonts(FramerZUXeC7dhB,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZUXeC7dhB\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"djgz5axxh\\\":\\\"title\\\",\\\"o0OPLovIT\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"24\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Lj9QZUnRC\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"140\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZUXeC7dhB.map", "// Generated by Framer (bab6da3)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import ComponentButtonSecondary from\"#framer/local/canvasComponent/eH0JwdMFx/eH0JwdMFx.js\";import ComponentFeaturesCard from\"#framer/local/canvasComponent/lgVPez9xg/lgVPez9xg.js\";import ComponentMenu from\"#framer/local/canvasComponent/OebKkEQRe/OebKkEQRe.js\";import ComponentTopBar from\"#framer/local/canvasComponent/svmb749Xl/svmb749Xl.js\";import ComponentTabContent from\"#framer/local/canvasComponent/uBsGIbMoU/uBsGIbMoU.js\";import ComponentFooter from\"#framer/local/canvasComponent/uvU26E3dy/uvU26E3dy.js\";import ComponentAccordion from\"#framer/local/canvasComponent/yuaNEm7pX/yuaNEm7pX.js\";import ComponentGhostButton from\"#framer/local/canvasComponent/ZUXeC7dhB/ZUXeC7dhB.js\";import Dentist from\"#framer/local/collection/ancmIzRX4/ancmIzRX4.js\";import*as sharedStyle1 from\"#framer/local/css/BguJEGoDX/BguJEGoDX.js\";import*as sharedStyle5 from\"#framer/local/css/ETWTQlgGX/ETWTQlgGX.js\";import*as sharedStyle6 from\"#framer/local/css/J0zcuaMxa/J0zcuaMxa.js\";import*as sharedStyle from\"#framer/local/css/JltUdZ0uo/JltUdZ0uo.js\";import*as sharedStyle3 from\"#framer/local/css/lzEZX1EqB/lzEZX1EqB.js\";import*as sharedStyle4 from\"#framer/local/css/LzlpJOuGz/LzlpJOuGz.js\";import*as sharedStyle2 from\"#framer/local/css/nosrOmxTB/nosrOmxTB.js\";import*as sharedStyle7 from\"#framer/local/css/ojjNhuGdH/ojjNhuGdH.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const ComponentButtonSecondaryFonts=getFonts(ComponentButtonSecondary);const ComponentMenuFonts=getFonts(ComponentMenu);const ComponentTopBarFonts=getFonts(ComponentTopBar);const PhosphorFonts=getFonts(Phosphor);const ComponentFeaturesCardFonts=getFonts(ComponentFeaturesCard);const ComponentTabContentFonts=getFonts(ComponentTabContent);const EmbedFonts=getFonts(Embed);const ComponentAccordionFonts=getFonts(ComponentAccordion);const ComponentGhostButtonFonts=getFonts(ComponentGhostButton);const ComponentFooterFonts=getFonts(ComponentFooter);const breakpoints={N8j1CXklC:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1440px)\",xWSpKa0U3:\"(min-width: 810px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-X3uEq\";const variantClassNames={N8j1CXklC:\"framer-v-mfk93s\",WQLkyLRf1:\"framer-v-72rtr7\",xWSpKa0U3:\"framer-v-1l7we97\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"N8j1CXklC\",Tablet:\"xWSpKa0U3\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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,JbsEAOdlpL3deZC7ad,fSq67ru43L3deZC7ad,mA0m8SIliL3deZC7ad,lbXcg5zrrL3deZC7ad,idL3deZC7ad,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"N8j1CXklC\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"main\",{className:\"framer-xg9pmx\",\"data-framer-name\":\"Page\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1omkyei\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{background:{alt:\"Hero Image\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2880,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+60),pixelHeight:1024,pixelWidth:2048,positionX:\"71.9%\",positionY:\"45.4%\",src:\"https://framerusercontent.com/images/tDTdmc35cVryQcQsZVKpGcXTuiY.jpeg?scale-down-to=1024\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"section\",background:{alt:\"Hero Image\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2880,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+60),pixelHeight:1024,pixelWidth:2048,src:\"https://framerusercontent.com/images/tDTdmc35cVryQcQsZVKpGcXTuiY.jpeg?scale-down-to=1024\"},className:\"framer-11z6qql\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1321d46\",\"data-framer-name\":\"Black Overlay\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l0njoa\",\"data-framer-name\":\"Caption\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1iidyt0\",\"data-styles-preset\":\"JltUdZ0uo\",style:{\"--framer-text-color\":\"var(--token-9a271d4f-f64e-4a21-ab8f-296bd089004d, rgb(255, 255, 255))\"},children:\"\u0412\u0430\u0448\u0435 \u0437\u0434\u043E\u0440\u043E\u0432\u044C\u0435 \u043D\u0430\u0447\u0438\u043D\u0430\u0435\u0442\u0441\u044F \u0441 \u0443\u043B\u044B\u0431\u043A\u0438!\"})}),className:\"framer-1hst8f0\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ekf7z4\",\"data-styles-preset\":\"BguJEGoDX\",style:{\"--framer-text-color\":\"var(--token-9a271d4f-f64e-4a21-ab8f-296bd089004d, rgb(255, 255, 255))\"},children:\"\u041D\u0430\u0448\u0430 \u043A\u043B\u0438\u043D\u0438\u043A\u0430 \u043F\u0440\u0435\u0434\u043E\u0441\u0442\u0430\u0432\u043B\u044F\u0435\u0442 \u043F\u043E\u043B\u043D\u044B\u0439 \u0441\u043F\u0435\u043A\u0442\u0440 \u0441\u0442\u043E\u043C\u0430\u0442\u043E\u043B\u043E\u0433\u0438\u0447\u0435\u0441\u043A\u0438\u0445 \u0443\u0441\u043B\u0443\u0433. \u0417\u0430\u0431\u043E\u0442\u0430, \u043A\u043E\u043C\u0444\u043E\u0440\u0442 \u0438 \u043A\u0430\u0447\u0435\u0441\u0442\u0432\u043E \u2014 \u0432\u0441\u0451, \u0447\u0442\u043E\u0431\u044B \u0432\u044B \u0447\u0443\u0432\u0441\u0442\u0432\u043E\u0432\u0430\u043B\u0438 \u0441\u0435\u0431\u044F \u0443\u0432\u0435\u0440\u0435\u043D\u043D\u043E \u043D\u0430 \u043A\u0430\u0436\u0434\u043E\u043C \u044D\u0442\u0430\u043F\u0435 \u043B\u0435\u0447\u0435\u043D\u0438\u044F.\"})}),className:\"framer-1b7pwqq\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"u5cqs5mxd\"},implicitPathVariables:undefined},{href:{webPageId:\"u5cqs5mxd\"},implicitPathVariables:undefined},{href:{webPageId:\"u5cqs5mxd\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{y:(componentViewport?.y||0)+0+0+0+0+60+203.1+20+242.8},xWSpKa0U3:{y:(componentViewport?.y||0)+0+0+0+0+60+290.1+0+242.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+0+0+0+0+60+221.1+0+242.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-copp2s-container\",nodeId:\"dE_Jw9jVY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{cXCvoiH5J:resolvedLinks[2]},xWSpKa0U3:{cXCvoiH5J:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ComponentButtonSecondary,{A6ekXviFQ:\"\u0417\u0430\u043F\u0438\u0448\u0438\u0442\u0435\u0441\u044C \u0441\u0435\u0439\u0447\u0430\u0441\",cXCvoiH5J:resolvedLinks[0],height:\"100%\",id:\"dE_Jw9jVY\",layoutId:\"dE_Jw9jVY\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-79g166\",\"data-framer-name\":\"Head\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:92,width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+60+0+20,children:/*#__PURE__*/_jsx(Container,{className:\"framer-de8x5v-container\",nodeId:\"z4G5ijBDG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{variant:\"rB64v0Tr0\"},xWSpKa0U3:{variant:\"RWCnevecC\"}},children:/*#__PURE__*/_jsx(ComponentMenu,{height:\"100%\",id:\"z4G5ijBDG\",layoutId:\"z4G5ijBDG\",style:{width:\"100%\"},variant:\"h7uE4Gq3A\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-axtbgu-container\",nodeId:\"Fefa_aJUD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{variant:\"Ye0p_wtv2\"},xWSpKa0U3:{variant:\"CSst6JbwJ\"}},children:/*#__PURE__*/_jsx(ComponentTopBar,{height:\"100%\",id:\"Fefa_aJUD\",layoutId:\"Fefa_aJUD\",style:{height:\"100%\",width:\"100%\"},variant:\"SgLzHUBBN\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1nc2c29\",\"data-framer-name\":\"Why\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ui66sn\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uzyu8u\",\"data-framer-name\":\"Section Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-cs8zof\",\"data-styles-preset\":\"nosrOmxTB\",children:\"\u041F\u043E\u0447\u0435\u043C\u0443 \u0432\u044B\u0431\u0438\u0440\u0430\u044E\u0442 \u0438\u043C\u0435\u043D\u043D\u043E \u043D\u0430\u0441?\"})}),className:\"framer-1446202\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15qucxn\",\"data-styles-preset\":\"lzEZX1EqB\",children:\"\u041C\u044B \u0437\u043D\u0430\u0435\u043C, \u043A\u0430\u043A \u0441\u0434\u0435\u043B\u0430\u0442\u044C \u0432\u0430\u0448\u0443 \u0443\u043B\u044B\u0431\u043A\u0443 \u0438\u0434\u0435\u0430\u043B\u044C\u043D\u043E\u0439! \u041E\u043F\u044B\u0442\u043D\u044B\u0435 \u0432\u0440\u0430\u0447\u0438 \u0438 \u043F\u0435\u0440\u0435\u0434\u043E\u0432\u044B\u0435 \u0442\u0435\u0445\u043D\u043E\u043B\u043E\u0433\u0438\u0438 \u2014 \u0434\u043B\u044F \u0432\u0430\u0448\u0435\u0433\u043E \u0437\u0434\u043E\u0440\u043E\u0432\u044C\u044F \u0438 \u043A\u043E\u043C\u0444\u043E\u0440\u0442\u0430.\"})}),className:\"framer-6ipudp\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5sclnw\",\"data-framer-name\":\"Row\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xWSpKa0U3:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 730 530\"><path d=\"M 0 287.195 C 0 274.12 10.6 263.52 23.676 263.52 L 333.432 263.52 C 350.867 263.52 365 249.386 365 231.952 L 365 23.676 C 365 10.6 375.6 0 388.676 0 L 706.324 0 C 719.4 0 730 10.6 730 23.676 L 730 242.805 C 730 255.88 719.4 266.48 706.324 266.48 L 396.568 266.48 C 379.133 266.48 365 280.614 365 298.048 L 365 506.324 C 365 519.4 354.4 530 341.324 530 L 23.676 530 C 10.6 530 0 519.4 0 506.324 Z\" fill=\"rgb(58, 123, 153)\"></path></svg>',svgContentId:10424319725}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ldgsp8 hidden-mfk93s\",\"data-framer-name\":\"Block Shape\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 740 537\"><path d=\"M 0 291 C 0 277.745 10.745 267 24 267 L 338 267 C 355.673 267 370 252.673 370 235 L 370 24 C 370 10.745 380.745 0 394 0 L 716 0 C 729.255 0 740 10.745 740 24 L 740 246 C 740 259.255 729.255 270 716 270 L 402 270 C 384.327 270 370 284.327 370 302 L 370 513 C 370 526.255 359.255 537 346 537 L 24 537 C 10.745 537 0 526.255 0 513 Z\" fill=\"rgb(58, 123, 153)\"></path></svg>',svgContentId:9001726841,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q6fvy0\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wsstwg-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"eeoRQOZGK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(13, 78, 110)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Wallet\",id:\"eeoRQOZGK\",layoutId:\"eeoRQOZGK\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pmo7s0\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-dwdmbl\",\"data-styles-preset\":\"LzlpJOuGz\",children:\"\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u0430\u044F \u0441\u0442\u043E\u0438\u043C\u043E\u0441\u0442\u044C\"})}),className:\"framer-gak0ag\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15qucxn\",\"data-styles-preset\":\"lzEZX1EqB\",children:\"\u041C\u044B \u043F\u0440\u0435\u0434\u043B\u0430\u0433\u0430\u0435\u043C \u043A\u0430\u0447\u0435\u0441\u0442\u0432\u0435\u043D\u043D\u044B\u0435  \u0443\u0441\u043B\u0443\u0433\u0438 \u043F\u043E \u0440\u0430\u0437\u0443\u043C\u043D\u043E\u0439 \u0446\u0435\u043D\u0435, \u0447\u0442\u043E\u0431\u044B \u0437\u0430\u0431\u043E\u0442\u0430 \u043E \u0432\u0430\u0448\u0435\u0439 \u0443\u043B\u044B\u0431\u043A\u0435 \u0431\u044B\u043B\u0430 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u043E\u0439.\"})}),className:\"framer-qpgp1q\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tzu8mb\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kq0d0x-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ihg7LXVhw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9a271d4f-f64e-4a21-ab8f-296bd089004d, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Certificate\",id:\"ihg7LXVhw\",layoutId:\"ihg7LXVhw\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wev8f\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-dwdmbl\",\"data-styles-preset\":\"LzlpJOuGz\",style:{\"--framer-text-color\":\"var(--token-9a271d4f-f64e-4a21-ab8f-296bd089004d, rgb(255, 255, 255))\"},children:\"\u041E\u043F\u044B\u0442\u043D\u044B\u0435 \u0441\u043F\u0435\u0446\u0438\u0430\u043B\u0438\u0441\u0442\u044B\"})}),className:\"framer-1hxhyde\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15qucxn\",\"data-styles-preset\":\"lzEZX1EqB\",style:{\"--framer-text-color\":\"var(--token-9a271d4f-f64e-4a21-ab8f-296bd089004d, rgb(255, 255, 255))\"},children:\"\u041D\u0430\u0448\u0430 \u043A\u043E\u043C\u0430\u043D\u0434\u0430 \u2014 \u044D\u0442\u043E \u0432\u0440\u0430\u0447\u0438 \u0441 \u043C\u043D\u043E\u0433\u043E\u043B\u0435\u0442\u043D\u0438\u043C \u043E\u043F\u044B\u0442\u043E\u043C \u0440\u0430\u0431\u043E\u0442\u044B, \u0433\u043E\u0442\u043E\u0432\u044B\u0435 \u0440\u0435\u0448\u0438\u0442\u044C \u043B\u044E\u0431\u0443\u044E \u0432\u0430\u0448\u0443 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0443.\"})}),className:\"framer-1jn245u\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lgrkl1\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14uc2xa-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YWjAQBqrr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9a271d4f-f64e-4a21-ab8f-296bd089004d, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"HandHeart\",id:\"YWjAQBqrr\",layoutId:\"YWjAQBqrr\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kqk88s\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-dwdmbl\",\"data-styles-preset\":\"LzlpJOuGz\",style:{\"--framer-text-color\":\"var(--token-9a271d4f-f64e-4a21-ab8f-296bd089004d, rgb(255, 255, 255))\"},children:\"\u0413\u0430\u0440\u0430\u043D\u0442\u0438\u044F \u043A\u0430\u0447\u0435\u0441\u0442\u0432\u0430\"})}),className:\"framer-93ugzn\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15qucxn\",\"data-styles-preset\":\"lzEZX1EqB\",style:{\"--framer-text-color\":\"var(--token-9a271d4f-f64e-4a21-ab8f-296bd089004d, rgb(255, 255, 255))\"},children:\"\u041D\u0430\u0448\u0438 \u0443\u0441\u043B\u0443\u0433\u0438 \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044E\u0442 \u0441\u0430\u043C\u044B\u043C \u0432\u044B\u0441\u043E\u043A\u0438\u043C \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u0430\u043C \u0441\u0442\u043E\u043C\u0430\u0442\u043E\u043B\u043E\u0433\u0438\u0438.\"})}),className:\"framer-1x5zsx3\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lcvel\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jj3fw3-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Upq4MYilN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(13, 78, 110)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CalendarPlus\",id:\"Upq4MYilN\",layoutId:\"Upq4MYilN\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15fzyti\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-dwdmbl\",\"data-styles-preset\":\"LzlpJOuGz\",children:\"\u0423\u0434\u043E\u0431\u0441\u0442\u0432\u043E \u0434\u043B\u044F \u0432\u0430\u0441\"})}),className:\"framer-1illvea\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15qucxn\",\"data-styles-preset\":\"lzEZX1EqB\",children:\"\u0411\u044B\u0441\u0442\u0440\u0430\u044F \u0437\u0430\u043F\u0438\u0441\u044C \u0438 \u0433\u0438\u0431\u043A\u0438\u0439 \u0433\u0440\u0430\u0444\u0438\u043A \u0440\u0430\u0431\u043E\u0442\u044B \u2014 \u043C\u044B \u0432\u0441\u0435\u0433\u0434\u0430 \u0440\u044F\u0434\u043E\u043C, \u043A\u043E\u0433\u0434\u0430 \u0432\u0430\u043C \u043D\u0443\u0436\u043D\u043E.\"})}),className:\"framer-13nvd7u\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11gfwut\",\"data-framer-name\":\"Service\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-10tvzx2\",\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zn8iyw\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17x56as\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-cs8zof\",\"data-styles-preset\":\"nosrOmxTB\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\u041D\u0430\u0448\u0438 \u0443\u0441\u043B\u0443\u0433\u0438\"})})}),className:\"framer-jbv9ou\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3w0xe5\",\"data-styles-preset\":\"ETWTQlgGX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"\u041C\u044B \u043F\u0440\u0435\u0434\u043B\u0430\u0433\u0430\u0435\u043C \u0448\u0438\u0440\u043E\u043A\u0438\u0439 \u0441\u043F\u0435\u043A\u0442\u0440 \u0441\u0442\u043E\u043C\u0430\u0442\u043E\u043B\u043E\u0433\u0438\u0447\u0435\u0441\u043A\u0438\u0445 \u0443\u0441\u043B\u0443\u0433 \u0434\u043B\u044F \u0432\u0430\u0448\u0435\u0439 \u0443\u043B\u044B\u0431\u043A\u0438. \"})}),className:\"framer-vqkvqt\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g5qlvg\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1360px) - 40px)`,y:(componentViewport?.y||0)+0+0+0+2378+0+0+40+0+0+248+0+0},xWSpKa0U3:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1360px) - 104px) / 2, 200px)`,y:(componentViewport?.y||0)+0+0+0+1857+0+0+50+0+0+248+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:370,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1360px) - 128px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+1570+0+0+60+0+0+268+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gplpvd-container\",nodeId:\"Ph_RQWQa_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentFeaturesCard,{height:\"100%\",id:\"Ph_RQWQa_\",layoutId:\"Ph_RQWQa_\",lzzo6hx_V:\"\u041F\u0440\u043E\u0444\u0435\u0441\u0441\u0438\u043E\u043D\u0430\u043B\u044C\u043D\u0430\u044F \u0447\u0438\u0441\u0442\u043A\u0430 \u0437\u0443\u0431\u043E\u0432, \u0443\u0434\u0430\u043B\u0435\u043D\u0438\u0435 \u043D\u0430\u043B\u0435\u0442\u0430 \u0438 \u043A\u0430\u043C\u043D\u044F, \u0444\u0442\u043E\u0440\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0435 \u2014 \u0432\u0441\u0451 \u044D\u0442\u043E \u043F\u043E\u043C\u043E\u0433\u0430\u0435\u0442 \u043F\u0440\u0435\u0434\u043E\u0442\u0432\u0440\u0430\u0442\u0438\u0442\u044C \u043A\u0430\u0440\u0438\u0435\u0441 \u0438 \u0437\u0430\u0431\u043E\u043B\u0435\u0432\u0430\u043D\u0438\u044F \u0434\u0435\u0441\u0435\u043D. \",rF_C6jZRu:\"\u041F\u0440\u043E\u0444\u0435\u0441\u0441\u0438\u043E\u043D\u0430\u043B\u044C\u043D\u0430\u044F  \u0433\u0438\u0433\u0438\u0435\u043D\u0430 \u043F\u043E\u043B\u043E\u0441\u0442\u0438 \u0440\u0442\u0430\",style:{height:\"100%\",width:\"100%\"},udsK0qtg_:\"ShieldCheck\",width:\"100%\",YoR_XbA5c:addImageAlt({pixelHeight:1e3,pixelWidth:1e3,src:\"https://framerusercontent.com/images/VwdzG7exSwByXEJzWL0XbCeIy0.png?scale-down-to=512\"},\"\u041F\u0440\u043E\u0444\u0438\u043B\u0430\u043A\u0442\u0438\u043A\u0430 \u0438 \u0433\u0438\u0433\u0438\u0435\u043D\u0430 \u043F\u043E\u043B\u043E\u0441\u0442\u0438 \u0440\u0442\u0430\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1360px) - 40px)`,y:(componentViewport?.y||0)+0+0+0+2378+0+0+40+0+0+248+0+390},xWSpKa0U3:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1360px) - 104px) / 2, 200px)`,y:(componentViewport?.y||0)+0+0+0+1857+0+0+50+0+0+248+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:371,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1360px) - 128px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+1570+0+0+60+0+0+268+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y93fp4-container\",nodeId:\"neGp9FtTA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentFeaturesCard,{height:\"100%\",id:\"neGp9FtTA\",layoutId:\"neGp9FtTA\",lzzo6hx_V:\"\u042D\u0444\u0444\u0435\u043A\u0442\u0438\u0432\u043D\u043E\u0435 \u043B\u0435\u0447\u0435\u043D\u0438\u0435 \u0437\u0430\u0431\u043E\u043B\u0435\u0432\u0430\u043D\u0438\u0439 \u0434\u0435\u0441\u0435\u043D, \u0432\u043A\u043B\u044E\u0447\u0430\u044F \u043F\u0430\u0440\u043E\u0434\u043E\u043D\u0442\u0438\u0442 \u0438 \u0433\u0438\u043D\u0433\u0438\u0432\u0438\u0442. \u0418\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u043C \u0441\u043E\u0432\u0440\u0435\u043C\u0435\u043D\u043D\u044B\u0435 \u043C\u0435\u0442\u043E\u0434\u044B: \u0441\u043A\u0435\u0439\u043B\u0438\u043D\u0433, \u043F\u043E\u043B\u0438\u0440\u043E\u0432\u043A\u0430 \u043A\u043E\u0440\u043D\u0435\u0439 \u0438 \u0445\u0438\u0440\u0443\u0440\u0433\u0438\u0447\u0435\u0441\u043A\u043E\u0435 \u043B\u0435\u0447\u0435\u043D\u0438\u0435.\",rF_C6jZRu:\"\u041F\u0430\u0440\u043E\u0434\u043E\u043D\u0442\u043E\u043B\u043E\u0433\u0438\u044F\",style:{height:\"100%\",width:\"100%\"},udsK0qtg_:\"Heart\",width:\"100%\",YoR_XbA5c:addImageAlt({pixelHeight:800,pixelWidth:1200,src:\"https://framerusercontent.com/images/PlUZV17qRi1KTs7rHhyhXaYacbg.webp?scale-down-to=512\"},\"\u041B\u0435\u0447\u0435\u043D\u0438\u0435 \u0434\u0435\u0441\u0435\u043D \u0438 \u043F\u0430\u0440\u043E\u0434\u043E\u043D\u0442\u043E\u043B\u043E\u0433\u0438\u044F\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1360px) - 40px)`,y:(componentViewport?.y||0)+0+0+0+2378+0+0+40+0+0+248+0+781},xWSpKa0U3:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1360px) - 104px) / 2, 200px)`,y:(componentViewport?.y||0)+0+0+0+1857+0+0+50+0+0+248+0+395}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:370,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1360px) - 128px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+1570+0+0+60+0+0+268+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-eni7yp-container\",nodeId:\"o4sNumzku\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentFeaturesCard,{height:\"100%\",id:\"o4sNumzku\",layoutId:\"o4sNumzku\",lzzo6hx_V:\"\u041A\u043E\u043C\u043F\u043B\u0435\u043A\u0441\u043D\u0430\u044F \u0434\u0438\u0430\u0433\u043D\u043E\u0441\u0442\u0438\u043A\u0430 \u0437\u0443\u0431\u043E\u0432 \u0438 \u0434\u0435\u0441\u0435\u043D \u0441 \u043F\u043E\u043C\u043E\u0449\u044C\u044E \u0446\u0438\u0444\u0440\u043E\u0432\u044B\u0445 \u0440\u0435\u043D\u0442\u0433\u0435\u043D\u043E\u0432, \u041A\u0422 \u0438 \u0434\u0440\u0443\u0433\u0438\u0445 \u0441\u043E\u0432\u0440\u0435\u043C\u0435\u043D\u043D\u044B\u0445 \u0442\u0435\u0445\u043D\u043E\u043B\u043E\u0433\u0438\u0439. \u0411\u044B\u0441\u0442\u0440\u043E\u0435 \u0432\u044B\u044F\u0432\u043B\u0435\u043D\u0438\u0435 \u043B\u044E\u0431\u044B\u0445 \u0441\u0442\u043E\u043C\u0430\u0442\u043E\u043B\u043E\u0433\u0438\u0447\u0435\u0441\u043A\u0438\u0445 \u043F\u0440\u043E\u0431\u043B\u0435\u043C.\",rF_C6jZRu:\"\u0420\u0435\u043D\u0442\u0433\u0435\u043D\u043E\u0433\u0440\u0430\u0444\u0438\u044F\",style:{height:\"100%\",width:\"100%\"},udsK0qtg_:\"MagnifyingGlass\",width:\"100%\",YoR_XbA5c:addImageAlt({pixelHeight:750,pixelWidth:1e3,src:\"https://framerusercontent.com/images/OeUdeMMtkeinfZR55qWAl8RpY.webp?scale-down-to=512\"},\"\u0414\u0438\u0430\u0433\u043D\u043E\u0441\u0442\u0438\u043A\u0430 \u0432 \u0441\u0442\u043E\u043C\u0430\u0442\u043E\u043B\u043E\u0433\u0438\u0438\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1360px) - 40px)`,y:(componentViewport?.y||0)+0+0+0+2378+0+0+40+0+0+248+0+1171},xWSpKa0U3:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1360px) - 104px) / 2, 200px)`,y:(componentViewport?.y||0)+0+0+0+1857+0+0+50+0+0+248+0+395}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:370,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1360px) - 128px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+1570+0+0+60+0+0+268+0+395,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14wmotj-container\",nodeId:\"CtMEnXHJ7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentFeaturesCard,{height:\"100%\",id:\"CtMEnXHJ7\",layoutId:\"CtMEnXHJ7\",lzzo6hx_V:\"\u041B\u0435\u0447\u0435\u043D\u0438\u0435 \u043F\u0443\u043B\u044C\u043F\u0438\u0442\u0430, \u043F\u0435\u0440\u0438\u043E\u0434\u043E\u043D\u0442\u0438\u0442\u0430, \u0431\u0435\u0437\u0431\u043E\u043B\u0435\u0437\u043D\u0435\u043D\u043D\u043E\u0435 \u043B\u0435\u0447\u0435\u043D\u0438\u0435 \u0437\u0443\u0431\u043E\u0432, \u0443\u0441\u0442\u0440\u0430\u043D\u0435\u043D\u0438\u0435 \u043A\u0438\u0441\u0442\u044B \u0437\u0443\u0431\u0430, \u0430 \u0442\u0430\u043A\u0436\u0435 \u044D\u043A\u0441\u0442\u0440\u0435\u043D\u043D\u0430\u044F \u0441\u0442\u043E\u043C\u0430\u0442\u043E\u043B\u043E\u0433\u0438\u0447\u0435\u0441\u043A\u0430\u044F \u043F\u043E\u043C\u043E\u0449\u044C.\",rF_C6jZRu:\"\u041B\u0435\u0447\u0435\u043D\u0438\u0435 \u0437\u0443\u0431\u043E\u0432\",style:{height:\"100%\",width:\"100%\"},udsK0qtg_:\"Tooth\",width:\"100%\",YoR_XbA5c:addImageAlt({pixelHeight:496,pixelWidth:826,src:\"https://framerusercontent.com/images/JT9Lo4vyQfvga34tkfIqdO7gFDE.png\",srcSet:\"https://framerusercontent.com/images/JT9Lo4vyQfvga34tkfIqdO7gFDE.png?scale-down-to=512 512w,https://framerusercontent.com/images/JT9Lo4vyQfvga34tkfIqdO7gFDE.png 826w\"},\"\u0422\u0435\u0440\u0430\u043F\u0435\u0432\u0442\u0438\u0447\u0435\u0441\u043A\u0430\u044F \u0441\u0442\u043E\u043C\u0430\u0442\u043E\u043B\u043E\u0433\u0438\u044F\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1360px) - 40px)`,y:(componentViewport?.y||0)+0+0+0+2378+0+0+40+0+0+248+0+1561},xWSpKa0U3:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1360px) - 104px) / 2, 200px)`,y:(componentViewport?.y||0)+0+0+0+1857+0+0+50+0+0+248+0+789}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:370,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1360px) - 128px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+1570+0+0+60+0+0+268+0+395,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ojf4ie-container\",nodeId:\"jBF6GoCiW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentFeaturesCard,{height:\"100%\",id:\"jBF6GoCiW\",layoutId:\"jBF6GoCiW\",lzzo6hx_V:\"\u0418\u0441\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043F\u0440\u0438\u043A\u0443\u0441\u0430, \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0430 \u0431\u0440\u0435\u043A\u0435\u0442\u043E\u0432 \u0438 \u044D\u043B\u0430\u0439\u043D\u0435\u0440\u043E\u0432, \u0432\u044B\u0440\u0430\u0432\u043D\u0438\u0432\u0430\u043D\u0438\u0435 \u0437\u0443\u0431\u043E\u0432 \u0434\u043B\u044F \u0441\u043E\u0437\u0434\u0430\u043D\u0438\u044F \u0433\u0430\u0440\u043C\u043E\u043D\u0438\u0447\u043D\u043E\u0439 \u0438 \u0437\u0434\u043E\u0440\u043E\u0432\u043E\u0439 \u0443\u043B\u044B\u0431\u043A\u0438.\",rF_C6jZRu:\"\u041E\u0440\u0442\u043E\u0434\u0430\u043D\u0442\u0438\u044F\",style:{height:\"100%\",width:\"100%\"},udsK0qtg_:\"Sparkle\",width:\"100%\",YoR_XbA5c:addImageAlt({pixelHeight:1280,pixelWidth:1920,src:\"https://framerusercontent.com/images/ptwOTkMni63HOKotNgM5f5HKeAY.webp?scale-down-to=512\"},\"\u042D\u0441\u0442\u0435\u0442\u0438\u0447\u0435\u0441\u043A\u0430\u044F \u0441\u0442\u043E\u043C\u0430\u0442\u043E\u043B\u043E\u0433\u0438\u044F\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1360px) - 40px)`,y:(componentViewport?.y||0)+0+0+0+2378+0+0+40+0+0+248+0+1951},xWSpKa0U3:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1360px) - 104px) / 2, 200px)`,y:(componentViewport?.y||0)+0+0+0+1857+0+0+50+0+0+248+0+789}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:370,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1360px) - 128px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+1570+0+0+60+0+0+268+0+395,children:/*#__PURE__*/_jsx(Container,{className:\"framer-107oq5s-container\",nodeId:\"yhsaF0OTA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentFeaturesCard,{height:\"100%\",id:\"yhsaF0OTA\",layoutId:\"yhsaF0OTA\",lzzo6hx_V:\"\u0411\u044E\u0433\u0435\u043B\u044C\u043D\u044B\u0435 \u043F\u0440\u043E\u0442\u0435\u0437\u044B, \u0432\u0438\u043D\u0438\u0440\u044B, \u0437\u0443\u0431\u043D\u044B\u0435 \u0432\u043A\u043B\u0430\u0434\u043A\u0438, \u043D\u0435\u0441\u044A\u0451\u043C\u043D\u043E\u0435 \u043F\u0440\u043E\u0442\u0435\u0437\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0435 \u0438 \u043F\u0440\u043E\u0442\u0435\u0437\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0435 \u043D\u0430 \u0438\u043C\u043F\u043B\u0430\u043D\u0442\u0430\u0445.\",rF_C6jZRu:\"\u041E\u0440\u0442\u043E\u043F\u0435\u0434\u0438\u0447\u0435\u0441\u043A\u0430\u044F \u0441\u0442\u043E\u043C\u0430\u0442\u043E\u043B\u043E\u0433\u0438\u044F\",style:{height:\"100%\",width:\"100%\"},udsK0qtg_:\"PuzzlePiece\",width:\"100%\",YoR_XbA5c:addImageAlt({pixelHeight:1100,pixelWidth:1920,src:\"https://framerusercontent.com/images/6pa9jz2xEtDycbcPjokxnAsBhGA.jpg?scale-down-to=512\"},\"\u041F\u0440\u043E\u0442\u0435\u0437\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0435 \u0437\u0443\u0431\u043E\u0432\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1360px) - 40px)`,y:(componentViewport?.y||0)+0+0+0+2378+0+0+40+0+0+248+0+2341},xWSpKa0U3:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1360px) - 104px) / 2, 200px)`,y:(componentViewport?.y||0)+0+0+0+1857+0+0+50+0+0+248+0+1183}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:370,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1360px) - 128px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+1570+0+0+60+0+0+268+0+789,children:/*#__PURE__*/_jsx(Container,{className:\"framer-adsksl-container\",nodeId:\"rQUYLGXuT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentFeaturesCard,{height:\"100%\",id:\"rQUYLGXuT\",layoutId:\"rQUYLGXuT\",lzzo6hx_V:\"\u0423\u0434\u0430\u043B\u0435\u043D\u0438\u0435 \u0437\u0443\u0431\u043E\u0432, \u0441\u043B\u043E\u0436\u043D\u044B\u0435 \u0445\u0438\u0440\u0443\u0440\u0433\u0438\u0447\u0435\u0441\u043A\u0438\u0435 \u0432\u043C\u0435\u0448\u0430\u0442\u0435\u043B\u044C\u0441\u0442\u0432\u0430, \u0441\u0438\u043D\u0443\u0441-\u043B\u0438\u0444\u0442\u0438\u043D\u0433. \u0421\u043E\u0432\u0440\u0435\u043C\u0435\u043D\u043D\u044B\u0435 \u043C\u0435\u0442\u043E\u0434\u0438\u043A\u0438 \u0438 \u043A\u043E\u043C\u0444\u043E\u0440\u0442\u043D\u043E\u0435 \u043E\u0431\u0435\u0437\u0431\u043E\u043B\u0438\u0432\u0430\u043D\u0438\u0435.\",rF_C6jZRu:\"\u0421\u0442\u043E\u043C\u0430\u0442\u043E\u043B\u043E\u0433\u0438\u0447\u0435\u0441\u043A\u0430\u044F \u0445\u0438\u0440\u0443\u0440\u0433\u0438\u044F\",style:{height:\"100%\",width:\"100%\"},udsK0qtg_:\"LightningSlash\",width:\"100%\",YoR_XbA5c:addImageAlt({pixelHeight:666,pixelWidth:1e3,src:\"https://framerusercontent.com/images/tfBh0g0vjmi6qME5zWBW8s13tlU.webp?scale-down-to=512\"},\"\u0425\u0438\u0440\u0443\u0440\u0433\u0438\u0447\u0435\u0441\u043A\u0430\u044F \u0441\u0442\u043E\u043C\u0430\u0442\u043E\u043B\u043E\u0433\u0438\u044F\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1360px) - 40px)`,y:(componentViewport?.y||0)+0+0+0+2378+0+0+40+0+0+248+0+2731},xWSpKa0U3:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1360px) - 104px) / 2, 200px)`,y:(componentViewport?.y||0)+0+0+0+1857+0+0+50+0+0+248+0+1183}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:370,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1360px) - 128px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+1570+0+0+60+0+0+268+0+789,children:/*#__PURE__*/_jsx(Container,{className:\"framer-p8adl7-container\",nodeId:\"pDiQ2_TCW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentFeaturesCard,{height:\"100%\",id:\"pDiQ2_TCW\",layoutId:\"pDiQ2_TCW\",lzzo6hx_V:\"\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0430 \u0438\u043C\u043F\u043B\u0430\u043D\u0442\u043E\u0432 \u0434\u043B\u044F \u043F\u043E\u043B\u043D\u043E\u0433\u043E \u0432\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F \u0437\u0443\u0431\u043E\u0432. \u042D\u0441\u0442\u0435\u0442\u0438\u0447\u043D\u043E\u0441\u0442\u044C, \u0434\u043E\u043B\u0433\u043E\u0432\u0435\u0447\u043D\u043E\u0441\u0442\u044C \u0438 \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043D\u043D\u043E\u0441\u0442\u044C \u0440\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u0430.\",rF_C6jZRu:\"\u0418\u043C\u043F\u043B\u0430\u043D\u0442\u0430\u0446\u0438\u044F \u0437\u0443\u0431\u043E\u0432\",style:{height:\"100%\",width:\"100%\"},udsK0qtg_:\"AnchorSimple\",width:\"100%\",YoR_XbA5c:addImageAlt({pixelHeight:1156,pixelWidth:1737,src:\"https://framerusercontent.com/images/fyYyUO803pc7Q7Q6aeubkFQKbiw.jpg\",srcSet:\"https://framerusercontent.com/images/fyYyUO803pc7Q7Q6aeubkFQKbiw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fyYyUO803pc7Q7Q6aeubkFQKbiw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fyYyUO803pc7Q7Q6aeubkFQKbiw.jpg 1737w\"},\"\u0418\u043C\u043F\u043B\u0430\u043D\u0442\u0430\u0446\u0438\u044F \u0437\u0443\u0431\u043E\u0432\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1360px) - 40px)`,y:(componentViewport?.y||0)+0+0+0+2378+0+0+40+0+0+248+0+3121},xWSpKa0U3:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1360px) - 104px) / 2, 200px)`,y:(componentViewport?.y||0)+0+0+0+1857+0+0+50+0+0+248+0+1577}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:370,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1360px) - 128px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+1570+0+0+60+0+0+268+0+789,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1td4t3o-container\",nodeId:\"wBcLIH_4c\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentFeaturesCard,{height:\"100%\",id:\"wBcLIH_4c\",layoutId:\"wBcLIH_4c\",lzzo6hx_V:\"\u041B\u0435\u0447\u0435\u043D\u0438\u0435 \u043C\u043E\u043B\u043E\u0447\u043D\u044B\u0445 \u0437\u0443\u0431\u043E\u0432, \u043F\u0440\u043E\u0444\u0438\u043B\u0430\u043A\u0442\u0438\u043A\u0430 \u043A\u0430\u0440\u0438\u0435\u0441\u0430, \u0433\u0435\u0440\u043C\u0435\u0442\u0438\u0437\u0430\u0446\u0438\u044F \u0444\u0438\u0441\u0441\u0443\u0440 \u0438 \u043E\u0431\u0443\u0447\u0435\u043D\u0438\u0435 \u0434\u0435\u0442\u0435\u0439 \u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u043E\u0439 \u0433\u0438\u0433\u0438\u0435\u043D\u0435 \u043F\u043E\u043B\u043E\u0441\u0442\u0438 \u0440\u0442\u0430.\",rF_C6jZRu:\"\u0414\u0435\u0442\u0441\u043A\u0430\u044F \u0441\u0442\u043E\u043C\u0430\u0442\u043E\u043B\u043E\u0433\u0438\u044F\",style:{height:\"100%\",width:\"100%\"},udsK0qtg_:\"LegoSmiley\",width:\"100%\",YoR_XbA5c:addImageAlt({pixelHeight:1242,pixelWidth:2108,src:\"https://framerusercontent.com/images/E9FSdhNcFIBELJJYP8RQNWkuek.jpeg\",srcSet:\"https://framerusercontent.com/images/E9FSdhNcFIBELJJYP8RQNWkuek.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/E9FSdhNcFIBELJJYP8RQNWkuek.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/E9FSdhNcFIBELJJYP8RQNWkuek.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/E9FSdhNcFIBELJJYP8RQNWkuek.jpeg 2108w\"},\"\u0414\u0435\u0442\u0441\u043A\u0430\u044F \u0441\u0442\u043E\u043C\u0430\u0442\u043E\u043B\u043E\u0433\u0438\u044F\")})})})})]})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-nf723z\",\"data-framer-name\":\"How To\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1280px)`,y:(componentViewport?.y||0)+0+0+0+6187+60+0},xWSpKa0U3:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1280px)`,y:(componentViewport?.y||0)+0+0+0+4142+80+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:570,width:`min(${componentViewport?.width||\"100vw\"}, 1280px)`,y:(componentViewport?.y||0)+0+0+0+3097+120+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-p4ch62-container\",nodeId:\"v53XvaNlH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{variant:\"ioeYsRmaS\"},xWSpKa0U3:{variant:\"ioeYsRmaS\"}},children:/*#__PURE__*/_jsx(ComponentTabContent,{height:\"100%\",id:\"v53XvaNlH\",layoutId:\"v53XvaNlH\",mRtnNJZSK:\"\u0412\u0441\u0451 \u043F\u0440\u043E\u0441\u0442\u043E! \u0421\u043B\u0435\u0434\u0443\u0439\u0442\u0435 \u044D\u0442\u0438\u043C \u0447\u0435\u0442\u044B\u0440\u0451\u043C \u0448\u0430\u0433\u0430\u043C, \u0447\u0442\u043E\u0431\u044B \u043E\u0431\u0440\u0435\u0441\u0442\u0438 \u0437\u0434\u043E\u0440\u043E\u0432\u0443\u044E \u0438 \u043A\u0440\u0430\u0441\u0438\u0432\u0443\u044E \u0443\u043B\u044B\u0431\u043A\u0443.\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"FPHC6wPDx\",vDmT2cSy3:\"\u041D\u0430\u0447\u043D\u0438\u0442\u0435 \u0437\u0430\u0431\u043E\u0442\u0443 \u043E \u0441\u0432\u043E\u0435\u0439 \u0443\u043B\u044B\u0431\u043A\u0435 \u0432 4 \u043F\u0440\u043E\u0441\u0442\u044B\u0445 \u0448\u0430\u0433\u0430\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1nk9a34\",\"data-framer-name\":\"Testimonial\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-h6ltgp\",\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-cl8qqu\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-eur4dc-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"A4ncoBSlD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"A4ncoBSlD\",layoutId:\"A4ncoBSlD\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://commoninja.site/5b13b9a9-f943-4092-bc1b-885622e99515\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-h6gymh\",\"data-framer-name\":\"FAQ\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e72yxu\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b7vodz\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-cs8zof\",\"data-styles-preset\":\"nosrOmxTB\",children:\"\u0427\u0430\u0441\u0442\u043E \u0437\u0430\u0434\u0430\u0432\u0430\u0435\u043C\u044B\u0435 \u0432\u043E\u043F\u0440\u043E\u0441\u044B\"})}),className:\"framer-10oiepe\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hbe5r4\",\"data-styles-preset\":\"J0zcuaMxa\",children:\"\u041C\u044B \u043F\u043E\u0434\u0433\u043E\u0442\u043E\u0432\u0438\u043B\u0438 \u043E\u0442\u0432\u0435\u0442\u044B \u043D\u0430 \u0441\u0430\u043C\u044B\u0435 \u0447\u0430\u0441\u0442\u044B\u0435 \u0432\u043E\u043F\u0440\u043E\u0441\u044B, \u0447\u0442\u043E\u0431\u044B \u043F\u043E\u043C\u043E\u0447\u044C \u0432\u0430\u043C \u043F\u043E\u0434\u0433\u043E\u0442\u043E\u0432\u0438\u0442\u044C\u0441\u044F \u043A \u0432\u0438\u0437\u0438\u0442\u0443 \u0432 \u043D\u0430\u0448\u0443 \u043A\u043B\u0438\u043D\u0438\u043A\u0443.\"})}),className:\"framer-idzaif\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y8gy3m\",\"data-framer-name\":\"Accordion Items\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1280px)`,y:(componentViewport?.y||0)+0+0+0+7605+60+0+0+196+0+0},xWSpKa0U3:{y:(componentViewport?.y||0)+0+0+0+5600+80+0+0+196+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+0+0+4655+120+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1klosze-container\",nodeId:\"phDaZC5cU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ComponentAccordion,{height:\"100%\",id:\"phDaZC5cU\",Jp_Atsb87:\"\u041C\u044B \u043F\u0440\u0435\u0434\u043E\u0441\u0442\u0430\u0432\u043B\u044F\u0435\u043C \u0448\u0438\u0440\u043E\u043A\u0438\u0439 \u0441\u043F\u0435\u043A\u0442\u0440 \u0441\u0442\u043E\u043C\u0430\u0442\u043E\u043B\u043E\u0433\u0438\u0447\u0435\u0441\u043A\u0438\u0445 \u0443\u0441\u043B\u0443\u0433, \u0432\u043A\u043B\u044E\u0447\u0430\u044F \u0434\u0438\u0430\u0433\u043D\u043E\u0441\u0442\u0438\u043A\u0443, \u043B\u0435\u0447\u0435\u043D\u0438\u0435 \u043A\u0430\u0440\u0438\u0435\u0441\u0430, \u043F\u0440\u043E\u0442\u0435\u0437\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0435, \u0445\u0438\u0440\u0443\u0440\u0433\u0438\u0447\u0435\u0441\u043A\u043E\u0435 \u043B\u0435\u0447\u0435\u043D\u0438\u0435 \u0438 \u0438\u043C\u043F\u043B\u0430\u043D\u0442\u0430\u0446\u0438\u044E.\",layoutId:\"phDaZC5cU\",RpamGwbxy:\"\u041A\u0430\u043A\u0438\u0435 \u0441\u0442\u043E\u043C\u0430\u0442\u043E\u043B\u043E\u0433\u0438\u0447\u0435\u0441\u043A\u0438\u0435 \u0443\u0441\u043B\u0443\u0433\u0438 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B?\",variant:\"KXJaZjgdq\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1280px)`,y:(componentViewport?.y||0)+0+0+0+7605+60+0+0+196+0+56},xWSpKa0U3:{y:(componentViewport?.y||0)+0+0+0+5600+80+0+0+196+0+56}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+0+0+4655+120+0+0+0+56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mhd6q9-container\",nodeId:\"fYUqWhXxF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ComponentAccordion,{height:\"100%\",id:\"fYUqWhXxF\",Jp_Atsb87:\"\u0420\u0435\u043A\u043E\u043C\u0435\u043D\u0434\u0443\u0435\u043C \u043F\u0440\u043E\u0445\u043E\u0434\u0438\u0442\u044C \u043F\u0440\u043E\u0444\u0438\u043B\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u043E\u0441\u043C\u043E\u0442\u0440 \u043A\u0430\u0436\u0434\u044B\u0435 6 \u043C\u0435\u0441\u044F\u0446\u0435\u0432 \u0434\u043B\u044F \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0430\u043D\u0438\u044F \u0437\u0434\u043E\u0440\u043E\u0432\u044C\u044F \u0437\u0443\u0431\u043E\u0432.\",layoutId:\"fYUqWhXxF\",RpamGwbxy:\"\u041A\u0430\u043A \u0447\u0430\u0441\u0442\u043E \u043D\u0443\u0436\u043D\u043E \u043F\u0440\u043E\u0432\u0435\u0440\u044F\u0442\u044C \u0437\u0443\u0431\u044B?\",variant:\"LNr0QbKaK\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1280px)`,y:(componentViewport?.y||0)+0+0+0+7605+60+0+0+196+0+112},xWSpKa0U3:{y:(componentViewport?.y||0)+0+0+0+5600+80+0+0+196+0+112}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+0+0+4655+120+0+0+0+112,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13l50sx-container\",nodeId:\"mrIzZtTd_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ComponentAccordion,{height:\"100%\",id:\"mrIzZtTd_\",Jp_Atsb87:\"\u0414\u0430, \u043C\u044B \u0440\u0430\u0431\u043E\u0442\u0430\u0435\u043C \u0441\u043E \u0441\u0442\u0440\u0430\u0445\u043E\u0432\u044B\u043C\u0438 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u044F\u043C\u0438. \u0423\u0442\u043E\u0447\u043D\u0438\u0442\u0435 \u0434\u0435\u0442\u0430\u043B\u0438 \u043F\u0440\u0438 \u0437\u0430\u043F\u0438\u0441\u0438.\",layoutId:\"mrIzZtTd_\",RpamGwbxy:\"\u041C\u043E\u0436\u043D\u043E \u043B\u0438 \u043E\u043F\u043B\u0430\u0442\u0438\u0442\u044C \u043B\u0435\u0447\u0435\u043D\u0438\u0435 \u043F\u043E \u0441\u0442\u0440\u0430\u0445\u043E\u0432\u043A\u0435?\",variant:\"LNr0QbKaK\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1280px)`,y:(componentViewport?.y||0)+0+0+0+7605+60+0+0+196+0+168},xWSpKa0U3:{y:(componentViewport?.y||0)+0+0+0+5600+80+0+0+196+0+168}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+0+0+4655+120+0+0+0+168,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o49d64-container\",nodeId:\"DUywPAev2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ComponentAccordion,{height:\"100%\",id:\"DUywPAev2\",Jp_Atsb87:\"\u041C\u044B \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u043C \u0441\u043E\u0432\u0440\u0435\u043C\u0435\u043D\u043D\u044B\u0435 \u043C\u0435\u0442\u043E\u0434\u044B \u043E\u0431\u0435\u0437\u0431\u043E\u043B\u0438\u0432\u0430\u043D\u0438\u044F, \u0447\u0442\u043E\u0431\u044B \u043B\u0435\u0447\u0435\u043D\u0438\u0435 \u043F\u0440\u043E\u0445\u043E\u0434\u0438\u043B\u043E \u043A\u043E\u043C\u0444\u043E\u0440\u0442\u043D\u043E \u0438 \u0431\u0435\u0437 \u0431\u043E\u043B\u0438.\",layoutId:\"DUywPAev2\",RpamGwbxy:\"\u0411\u043E\u043B\u0435\u0437\u043D\u0435\u043D\u043D\u044B \u043B\u0438 \u0441\u0442\u043E\u043C\u0430\u0442\u043E\u043B\u043E\u0433\u0438\u0447\u0435\u0441\u043A\u0438\u0435 \u043F\u0440\u043E\u0446\u0435\u0434\u0443\u0440\u044B?\",variant:\"LNr0QbKaK\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1280px)`,y:(componentViewport?.y||0)+0+0+0+7605+60+0+0+196+0+224},xWSpKa0U3:{y:(componentViewport?.y||0)+0+0+0+5600+80+0+0+196+0+224}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+0+0+4655+120+0+0+0+224,children:/*#__PURE__*/_jsx(Container,{className:\"framer-136ijau-container\",nodeId:\"fdvHE5fZw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ComponentAccordion,{height:\"100%\",id:\"fdvHE5fZw\",Jp_Atsb87:\"\u041F\u043E\u0437\u0432\u043E\u043D\u0438\u0442\u0435, \u0437\u0430\u043F\u043E\u043B\u043D\u0438\u0442\u0435 \u0444\u043E\u0440\u043C\u0443 \u043D\u0430 \u0441\u0430\u0439\u0442\u0435 \u0438\u043B\u0438 \u043F\u043E\u0441\u0435\u0442\u0438\u0442\u0435 \u043D\u0430\u0441 \u043B\u0438\u0447\u043D\u043E \u0434\u043B\u044F \u0432\u044B\u0431\u043E\u0440\u0430 \u0443\u0434\u043E\u0431\u043D\u043E\u0433\u043E \u0432\u0440\u0435\u043C\u0435\u043D\u0438.\",layoutId:\"fdvHE5fZw\",RpamGwbxy:\"\u041A\u0430\u043A \u0431\u044B\u0441\u0442\u0440\u043E \u043C\u043E\u0436\u043D\u043E \u0437\u0430\u043F\u0438\u0441\u0430\u0442\u044C\u0441\u044F?\",variant:\"LNr0QbKaK\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-eq8d78\",\"data-framer-name\":\"Team\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-deixiy\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14308p5\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12z676r\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-cs8zof\",\"data-styles-preset\":\"nosrOmxTB\",children:\"\u041D\u0430\u0448\u0430 \u043A\u043E\u043C\u0430\u043D\u0434\u0430 \u044D\u043A\u0441\u043F\u0435\u0440\u0442\u043E\u0432\"})}),className:\"framer-vdmxlc\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hbe5r4\",\"data-styles-preset\":\"J0zcuaMxa\",children:\"\u041E\u043F\u044B\u0442\u043D\u044B\u0435 \u0432\u0440\u0430\u0447\u0438 \u0438 \u0434\u0440\u0443\u0436\u0435\u043B\u044E\u0431\u043D\u044B\u0439 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u043B \u2014 \u043E\u0441\u043D\u043E\u0432\u0430 \u043D\u0430\u0448\u0435\u0433\u043E \u0443\u0441\u043F\u0435\u0445\u0430.\"})}),className:\"framer-1m8bdvi\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ydm3eKSNg\"},implicitPathVariables:undefined},{href:{webPageId:\"ydm3eKSNg\"},implicitPathVariables:undefined},{href:{webPageId:\"ydm3eKSNg\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{y:(componentViewport?.y||0)+0+0+0+8174+0+0+40+0+0+0+0+166},xWSpKa0U3:{y:(componentViewport?.y||0)+0+0+0+6209+0+0+30+0+0+0+0+166}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+0+0+5148+0+0+278.9+0+0+0+166,children:/*#__PURE__*/_jsx(Container,{className:\"framer-z2h3q-container\",nodeId:\"UHN9ftYW2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{o0OPLovIT:resolvedLinks1[2]},xWSpKa0U3:{o0OPLovIT:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ComponentGhostButton,{djgz5axxh:\"\u0412\u0441\u0435 \u0432\u0440\u0430\u0447\u0438\",height:\"100%\",id:\"UHN9ftYW2\",layoutId:\"UHN9ftYW2\",o0OPLovIT:resolvedLinks1[0],width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vmwgzk\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"L3deZC7ad\",data:Dentist,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},orderBy:[{collection:\"L3deZC7ad\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"L3deZC7ad\",name:\"JbsEAOdlp\",type:\"Identifier\"},{collection:\"L3deZC7ad\",name:\"fSq67ru43\",type:\"Identifier\"},{collection:\"L3deZC7ad\",name:\"mA0m8SIli\",type:\"Identifier\"},{collection:\"L3deZC7ad\",name:\"lbXcg5zrr\",type:\"Identifier\"},{collection:\"L3deZC7ad\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({fSq67ru43:fSq67ru43L3deZC7ad,id:idL3deZC7ad,JbsEAOdlp:JbsEAOdlpL3deZC7ad,lbXcg5zrr:lbXcg5zrrL3deZC7ad,mA0m8SIli:mA0m8SIliL3deZC7ad},index)=>{JbsEAOdlpL3deZC7ad??=\"\";mA0m8SIliL3deZC7ad??=\"\";lbXcg5zrrL3deZC7ad??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`L3deZC7ad-${idL3deZC7ad}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{JbsEAOdlp:JbsEAOdlpL3deZC7ad},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{JbsEAOdlp:JbsEAOdlpL3deZC7ad},webPageId:\"W3bJX1Wvj\"},motionChild:true,nodeId:\"DPcmrCUHx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-vhk1oh framer-lux5qc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+8174+0+0+40+0+0+220+0+434+0+0),sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1360px) - 40px)`,...toResponsiveImage(fSq67ru43L3deZC7ad)}},xWSpKa0U3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+6209+0+0+30+0+0+220+0+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1360px) - 80px) / 2, 1px)`,...toResponsiveImage(fSq67ru43L3deZC7ad)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5148+0+0+278.9+0+220+0+0+0),sizes:\"300px\",...toResponsiveImage(fSq67ru43L3deZC7ad)},className:\"framer-1sbn9f5\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6ixj90\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15qucxn\",\"data-styles-preset\":\"lzEZX1EqB\",style:{\"--framer-text-color\":\"rgb(58, 123, 153)\"},children:\"\u041C\u043E\u043C\u0438\u043D\u043E\u0432 \u0421\u0435\u0440\u0438\u043A    \u041D\u0443\u0440\u0438\u0434\u0438\u043D\u043E\u0432\u0438\u0447 \"})}),className:\"framer-ivkyhs\",\"data-framer-name\":\"Dentist Name\",fonts:[\"Inter\"],text:mA0m8SIliL3deZC7ad,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3w0xe5\",\"data-styles-preset\":\"ETWTQlgGX\",children:\"Dentist\"})}),className:\"framer-wiilpn\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],text:lbXcg5zrrL3deZC7ad,verticalAlignment:\"center\",withExternalLayout:true})]})]})})})},idL3deZC7ad);})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k7r75j\",\"data-framer-name\":\"Schedule\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jc1bx1\",\"data-framer-name\":\"Head\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-n5c81r\",\"data-styles-preset\":\"ojjNhuGdH\",style:{\"--framer-text-color\":\"var(--token-9a271d4f-f64e-4a21-ab8f-296bd089004d, rgb(255, 255, 255))\"},children:\"\u0413\u0440\u0430\u0444\u0438\u043A \u0440\u0430\u0431\u043E\u0442\u044B \u043A\u043B\u0438\u043D\u0438\u043A\u0438\"})}),className:\"framer-1kcyaq0\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3w0xe5\",\"data-styles-preset\":\"ETWTQlgGX\",style:{\"--framer-text-color\":\"var(--token-48f089df-a422-4389-ab7f-76dc5ff60e7e, rgb(240, 251, 255))\"},children:\"\u0420\u0430\u0431\u043E\u0442\u0430\u0435\u043C \u0448\u0435\u0441\u0442\u044C \u0434\u043D\u0435\u0439 \u0432 \u043D\u0435\u0434\u0435\u043B\u044E \u2014 \u0432\u044B\u0431\u0438\u0440\u0430\u0439\u0442\u0435 \u0443\u0434\u043E\u0431\u043D\u043E\u0435 \u0432\u0440\u0435\u043C\u044F \u0434\u043B\u044F \u0432\u0438\u0437\u0438\u0442\u0430.\"})}),className:\"framer-43rgx6\",\"data-framer-name\":\"Check out Medicana\u2019s Office hours to plan your visit.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pghrxf\",\"data-framer-name\":\"Schedule List\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b35y9u\",\"data-border\":true,\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15qucxn\",\"data-styles-preset\":\"lzEZX1EqB\",style:{\"--framer-text-color\":\"var(--token-9a271d4f-f64e-4a21-ab8f-296bd089004d, rgb(255, 255, 255))\"},children:\"\u041F\u043E\u043D\u0435\u0434\u0435\u043B\u044C\u043D\u0438\u043A\"})}),className:\"framer-1w89ang\",\"data-framer-name\":\"Monday\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1msk61b\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15qucxn\",\"data-styles-preset\":\"lzEZX1EqB\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-9a271d4f-f64e-4a21-ab8f-296bd089004d, rgb(255, 255, 255))\"},children:\"09:00 - 19:00\"})}),className:\"framer-1iy42ip\",\"data-framer-name\":\"08:00 - 20:00\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lnrost\",\"data-border\":true,\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15qucxn\",\"data-styles-preset\":\"lzEZX1EqB\",style:{\"--framer-text-color\":\"var(--token-9a271d4f-f64e-4a21-ab8f-296bd089004d, rgb(255, 255, 255))\"},children:\"\u0412\u0442\u043E\u0440\u043D\u0438\u043A\"})}),className:\"framer-1csuiys\",\"data-framer-name\":\"Monday\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14dxn4i\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15qucxn\",\"data-styles-preset\":\"lzEZX1EqB\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-9a271d4f-f64e-4a21-ab8f-296bd089004d, rgb(255, 255, 255))\"},children:\"09:00 - 19:00\"})}),className:\"framer-bljao8\",\"data-framer-name\":\"08:00 - 20:00\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ewsaee\",\"data-border\":true,\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15qucxn\",\"data-styles-preset\":\"lzEZX1EqB\",style:{\"--framer-text-color\":\"var(--token-9a271d4f-f64e-4a21-ab8f-296bd089004d, rgb(255, 255, 255))\"},children:\"\u0421\u0440\u0435\u0434\u0430\"})}),className:\"framer-7ikppx\",\"data-framer-name\":\"Monday\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i1qjw8\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15qucxn\",\"data-styles-preset\":\"lzEZX1EqB\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-9a271d4f-f64e-4a21-ab8f-296bd089004d, rgb(255, 255, 255))\"},children:\"09:00 - 19:00\"})}),className:\"framer-13c8epn\",\"data-framer-name\":\"08:00 - 20:00\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m7wrot\",\"data-border\":true,\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15qucxn\",\"data-styles-preset\":\"lzEZX1EqB\",style:{\"--framer-text-color\":\"var(--token-9a271d4f-f64e-4a21-ab8f-296bd089004d, rgb(255, 255, 255))\"},children:\"\u0427\u0435\u0442\u0432\u0435\u0440\u0433\"})}),className:\"framer-2z7em2\",\"data-framer-name\":\"Monday\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tyuoi2\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15qucxn\",\"data-styles-preset\":\"lzEZX1EqB\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-9a271d4f-f64e-4a21-ab8f-296bd089004d, rgb(255, 255, 255))\"},children:\"09:00 - 19:00\"})}),className:\"framer-1w6ngre\",\"data-framer-name\":\"08:00 - 20:00\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ckdgks\",\"data-border\":true,\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15qucxn\",\"data-styles-preset\":\"lzEZX1EqB\",style:{\"--framer-text-color\":\"var(--token-9a271d4f-f64e-4a21-ab8f-296bd089004d, rgb(255, 255, 255))\"},children:\"\u041F\u044F\u0442\u043D\u0438\u0446\u0430\"})}),className:\"framer-16cktht\",\"data-framer-name\":\"Monday\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-166v1vx\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15qucxn\",\"data-styles-preset\":\"lzEZX1EqB\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-9a271d4f-f64e-4a21-ab8f-296bd089004d, rgb(255, 255, 255))\"},children:\"09:00 - 19:00\"})}),className:\"framer-xck6bg\",\"data-framer-name\":\"08:00 - 20:00\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zsw3ol\",\"data-border\":true,\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15qucxn\",\"data-styles-preset\":\"lzEZX1EqB\",style:{\"--framer-text-color\":\"var(--token-9a271d4f-f64e-4a21-ab8f-296bd089004d, rgb(255, 255, 255))\"},children:\"\u0421\u0443\u0431\u0431\u043E\u0442\u0430\"})}),className:\"framer-1q9096g\",\"data-framer-name\":\"Monday\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o3swmh\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15qucxn\",\"data-styles-preset\":\"lzEZX1EqB\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-9a271d4f-f64e-4a21-ab8f-296bd089004d, rgb(255, 255, 255))\"},children:\"09:00 - 14:00\"})}),className:\"framer-1r42qgz\",\"data-framer-name\":\"08:00 - 20:00\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-173arnv\",\"data-border\":true,\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15qucxn\",\"data-styles-preset\":\"lzEZX1EqB\",style:{\"--framer-text-color\":\"var(--token-9a271d4f-f64e-4a21-ab8f-296bd089004d, rgb(255, 255, 255))\"},children:\"\u0412\u043E\u0441\u043A\u0440\u0435\u0441\u0435\u043D\u044C\u0435\"})}),className:\"framer-8tvxs\",\"data-framer-name\":\"Monday\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kfz0x3\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15qucxn\",\"data-styles-preset\":\"lzEZX1EqB\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-9a271d4f-f64e-4a21-ab8f-296bd089004d, rgb(255, 255, 255))\"},children:\"\u0412\u044B\u0445\u043E\u0434\u043D\u043E\u0439\"})}),className:\"framer-kmaunx\",\"data-framer-name\":\"08:00 - 20:00\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"u5cqs5mxd\"},implicitPathVariables:undefined},{href:{webPageId:\"u5cqs5mxd\"},implicitPathVariables:undefined},{href:{webPageId:\"u5cqs5mxd\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{y:(componentViewport?.y||0)+0+0+0+8174+0+0+40+1128+40+984.8},xWSpKa0U3:{y:(componentViewport?.y||0)+0+0+0+6209+0+0+30+694+40+984.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+0+0+0+5148+0+0+40+40+984.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k7pk0v-container\",nodeId:\"xRr_7EUd4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{cXCvoiH5J:resolvedLinks2[2]},xWSpKa0U3:{cXCvoiH5J:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ComponentButtonSecondary,{A6ekXviFQ:\"\u0417\u0430\u043F\u0438\u0441\u0430\u0442\u044C\u0441\u044F \u043D\u0430 \u043F\u0440\u0438\u0435\u043C\",cXCvoiH5J:resolvedLinks2[0],height:\"100%\",id:\"xRr_7EUd4\",layoutId:\"xRr_7EUd4\",width:\"100%\"})})})})})})]})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{height:570,y:430},xWSpKa0U3:{height:290,y:710}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:278,width:\"100vw\",y:722,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15bnvci-container\",layoutScroll:true,nodeId:\"HJ6iURUDV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{N8j1CXklC:{variant:\"YmmqJSuPr\"},xWSpKa0U3:{variant:\"krna7KLpr\"}},children:/*#__PURE__*/_jsx(ComponentFooter,{height:\"100%\",id:\"HJ6iURUDV\",layoutId:\"HJ6iURUDV\",style:{height:\"100%\",width:\"100%\"},variant:\"ezFtZ_wBW\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-X3uEq.framer-lux5qc, .framer-X3uEq .framer-lux5qc { display: block; }\",\".framer-X3uEq.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 230px 0px; position: relative; width: 1440px; }\",\".framer-X3uEq .framer-xg9pmx { align-content: center; align-items: center; background-color: var(--token-9a271d4f-f64e-4a21-ab8f-296bd089004d, #ffffff); border-bottom-left-radius: 52px; border-bottom-right-radius: 52px; box-shadow: 0px 7px 36px 0px rgba(0, 0, 0, 0.15); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 10; }\",\".framer-X3uEq .framer-1omkyei { flex: none; height: 793px; overflow: hidden; position: relative; width: 100%; }\",\".framer-X3uEq .framer-11z6qql { border-top-left-radius: 52px; border-top-right-radius: 52px; flex: none; height: 732px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 60px; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-X3uEq .framer-1321d46 { background-color: rgba(0, 0, 0, 0.25); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-X3uEq .framer-1l0njoa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; left: 80px; overflow: visible; padding: 0px; position: absolute; top: 50%; transform: translateY(-50%); width: 507px; }\",\".framer-X3uEq .framer-1hst8f0, .framer-X3uEq .framer-1b7pwqq, .framer-X3uEq .framer-1446202, .framer-X3uEq .framer-6ipudp, .framer-X3uEq .framer-gak0ag, .framer-X3uEq .framer-qpgp1q, .framer-X3uEq .framer-1hxhyde, .framer-X3uEq .framer-1jn245u, .framer-X3uEq .framer-93ugzn, .framer-X3uEq .framer-1x5zsx3, .framer-X3uEq .framer-1illvea, .framer-X3uEq .framer-13nvd7u, .framer-X3uEq .framer-jbv9ou, .framer-X3uEq .framer-vqkvqt, .framer-X3uEq .framer-vdmxlc, .framer-X3uEq .framer-1m8bdvi, .framer-X3uEq .framer-ivkyhs, .framer-X3uEq .framer-1kcyaq0, .framer-X3uEq .framer-43rgx6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-X3uEq .framer-copp2s-container, .framer-X3uEq .framer-1klosze-container, .framer-X3uEq .framer-1mhd6q9-container, .framer-X3uEq .framer-13l50sx-container, .framer-X3uEq .framer-1o49d64-container, .framer-X3uEq .framer-136ijau-container, .framer-X3uEq .framer-z2h3q-container, .framer-X3uEq .framer-1k7pk0v-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-X3uEq .framer-79g166 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 20px; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; }\",\".framer-X3uEq .framer-de8x5v-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-X3uEq .framer-axtbgu-container { flex: none; height: 120px; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; }\",\".framer-X3uEq .framer-1nc2c29, .framer-X3uEq .framer-h6gymh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-X3uEq .framer-1ui66sn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-X3uEq .framer-uzyu8u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 411px; }\",\".framer-X3uEq .framer-5sclnw { flex: none; gap: 0px; height: 537px; overflow: visible; position: relative; width: 740px; }\",\".framer-X3uEq .framer-ldgsp8 { flex: none; height: 537px; left: calc(50.00000000000002% - 740px / 2); position: absolute; top: calc(49.90689013035384% - 537px / 2); width: 740px; }\",\".framer-X3uEq .framer-q6fvy0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 30px 35px 30px 35px; position: absolute; top: 0px; width: min-content; }\",\".framer-X3uEq .framer-wsstwg-container, .framer-X3uEq .framer-kq0d0x-container, .framer-X3uEq .framer-14uc2xa-container, .framer-X3uEq .framer-1jj3fw3-container { flex: none; height: 42px; position: relative; width: 42px; }\",\".framer-X3uEq .framer-pmo7s0, .framer-X3uEq .framer-wev8f, .framer-X3uEq .framer-1kqk88s, .framer-X3uEq .framer-15fzyti { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 300px; }\",\".framer-X3uEq .framer-1tzu8mb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; left: 370px; overflow: visible; padding: 30px 35px 30px 35px; position: absolute; top: 0px; width: min-content; }\",\".framer-X3uEq .framer-lgrkl1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 30px 35px 30px 35px; position: absolute; top: 267px; width: min-content; }\",\".framer-X3uEq .framer-lcvel { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; left: 370px; overflow: visible; padding: 30px 35px 30px 35px; position: absolute; top: 267px; width: min-content; }\",\".framer-X3uEq .framer-11gfwut, .framer-X3uEq .framer-1nk9a34 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-X3uEq .framer-10tvzx2 { align-content: center; align-items: center; background-color: var(--token-48f089df-a422-4389-ab7f-76dc5ff60e7e, #f0fbff); border-bottom-left-radius: 52px; border-bottom-right-radius: 52px; border-top-left-radius: 52px; border-top-right-radius: 52px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; max-width: 1360px; overflow: visible; padding: 60px 40px 40px 40px; position: relative; width: 100%; }\",\".framer-X3uEq .framer-zn8iyw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-X3uEq .framer-17x56as { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 15px 0px 15px 0px; position: relative; width: 560px; }\",\".framer-X3uEq .framer-1g5qlvg { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-X3uEq .framer-1gplpvd-container, .framer-X3uEq .framer-eni7yp-container, .framer-X3uEq .framer-14wmotj-container, .framer-X3uEq .framer-1ojf4ie-container, .framer-X3uEq .framer-107oq5s-container, .framer-X3uEq .framer-adsksl-container, .framer-X3uEq .framer-p8adl7-container, .framer-X3uEq .framer-1td4t3o-container { align-self: start; flex: none; height: 370px; justify-self: start; position: relative; width: 100%; }\",\".framer-X3uEq .framer-1y93fp4-container { align-self: start; flex: none; height: 371px; justify-self: start; position: relative; width: 100%; }\",\".framer-X3uEq .framer-nf723z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-X3uEq .framer-p4ch62-container { flex: none; height: auto; max-width: 1280px; position: relative; width: 100%; }\",\".framer-X3uEq .framer-h6ltgp { align-content: center; align-items: center; background-color: var(--token-42e4f5d5-0c2b-47f7-bcaa-045ad4bc7c15, #effefa); border-bottom-left-radius: 52px; border-bottom-right-radius: 52px; border-top-left-radius: 52px; border-top-right-radius: 52px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1360px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-X3uEq .framer-cl8qqu { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 130px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px; position: relative; width: 1px; }\",\".framer-X3uEq .framer-eur4dc-container { flex: none; height: 668px; position: relative; width: 1280px; }\",\".framer-X3uEq .framer-1e72yxu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-X3uEq .framer-1b7vodz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 410px; }\",\".framer-X3uEq .framer-10oiepe, .framer-X3uEq .framer-idzaif { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 410px; word-break: break-word; word-wrap: break-word; }\",\".framer-X3uEq .framer-y8gy3m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-X3uEq .framer-eq8d78 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-X3uEq .framer-deixiy { align-content: center; align-items: center; background-color: var(--token-48f089df-a422-4389-ab7f-76dc5ff60e7e, #f0fbff); border-bottom-left-radius: 52px; border-bottom-right-radius: 52px; border-top-left-radius: 52px; border-top-right-radius: 52px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1360px; overflow: visible; padding: 40px 40px 40px 70px; position: relative; width: 100%; }\",\".framer-X3uEq .framer-14308p5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 620px; }\",\".framer-X3uEq .framer-12z676r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 500px; }\",\".framer-X3uEq .framer-vmwgzk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-X3uEq .framer-vhk1oh { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 1px 0px #dfe1e6; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-X3uEq .framer-1sbn9f5 { aspect-ratio: 1 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 300px); position: relative; width: 100%; }\",\".framer-X3uEq .framer-6ixj90 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; padding: 15px 20px 15px 20px; position: relative; width: 100%; }\",\".framer-X3uEq .framer-wiilpn { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 160px; word-break: break-word; word-wrap: break-word; }\",\".framer-X3uEq .framer-1k7r75j { align-content: flex-start; align-items: flex-start; background-color: #3a7b99; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 520px; }\",\".framer-X3uEq .framer-jc1bx1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-X3uEq .framer-pghrxf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 439px; }\",\".framer-X3uEq .framer-1b35y9u { --border-bottom-width: 0px; --border-color: #1273a3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #3a7b99; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-X3uEq .framer-1w89ang, .framer-X3uEq .framer-1csuiys, .framer-X3uEq .framer-7ikppx, .framer-X3uEq .framer-2z7em2, .framer-X3uEq .framer-16cktht, .framer-X3uEq .framer-1q9096g, .framer-X3uEq .framer-8tvxs { flex: 0.5 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-X3uEq .framer-1msk61b, .framer-X3uEq .framer-14dxn4i, .framer-X3uEq .framer-1i1qjw8, .framer-X3uEq .framer-tyuoi2, .framer-X3uEq .framer-166v1vx, .framer-X3uEq .framer-o3swmh, .framer-X3uEq .framer-kfz0x3 { background-color: #1273a3; flex: none; height: 46px; overflow: hidden; position: relative; width: 1px; }\",\".framer-X3uEq .framer-1iy42ip, .framer-X3uEq .framer-bljao8, .framer-X3uEq .framer-13c8epn, .framer-X3uEq .framer-1w6ngre, .framer-X3uEq .framer-xck6bg, .framer-X3uEq .framer-1r42qgz, .framer-X3uEq .framer-kmaunx { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-X3uEq .framer-lnrost, .framer-X3uEq .framer-1ewsaee, .framer-X3uEq .framer-1m7wrot, .framer-X3uEq .framer-ckdgks, .framer-X3uEq .framer-zsw3ol { --border-bottom-width: 0px; --border-color: #1273a3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #3a7b99; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-X3uEq .framer-173arnv { --border-bottom-width: 1px; --border-color: #1273a3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #3a7b99; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-X3uEq .framer-15bnvci-container { bottom: 0px; flex: none; height: 278px; left: calc(50.00000000000002% - 100% / 2); position: fixed; width: 100%; z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-X3uEq[data-border=\"true\"]::after, .framer-X3uEq [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; }',\"@media (min-width: 810px) and (max-width: 1439px) { .framer-X3uEq.framer-72rtr7 { padding: 0px 0px 245px 0px; width: 810px; } .framer-X3uEq .framer-1omkyei { height: 930px; } .framer-X3uEq .framer-11z6qql { height: 870px; } .framer-X3uEq .framer-1l0njoa { left: 60px; width: 440px; } .framer-X3uEq .framer-1nc2c29, .framer-X3uEq .framer-nf723z, .framer-X3uEq .framer-h6gymh { padding: 80px 40px 80px 40px; } .framer-X3uEq .framer-1ui66sn { flex-direction: column; gap: 50px; justify-content: flex-start; } .framer-X3uEq .framer-5sclnw { width: 730px; } .framer-X3uEq .framer-ldgsp8 { height: 530px; left: calc(50.00000000000002% - 730px / 2); top: calc(50.0931098696462% - 530px / 2); width: 730px; } .framer-X3uEq .framer-10tvzx2 { gap: 0px; padding: 50px 40px 40px 40px; } .framer-X3uEq .framer-zn8iyw { gap: 30px; } .framer-X3uEq .framer-17x56as, .framer-X3uEq .framer-y8gy3m, .framer-X3uEq .framer-14308p5, .framer-X3uEq .framer-1k7r75j, .framer-X3uEq .framer-pghrxf { width: 100%; } .framer-X3uEq .framer-1g5qlvg { grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-X3uEq .framer-cl8qqu { align-content: flex-start; align-items: flex-start; gap: 30px; padding: 30px; } .framer-X3uEq .framer-1e72yxu { flex-direction: column; gap: 50px; } .framer-X3uEq .framer-eq8d78 { padding: 0px 40px 0px 40px; } .framer-X3uEq .framer-deixiy { flex-direction: column; gap: 60px; justify-content: flex-start; padding: 30px; } .framer-X3uEq .framer-1sbn9f5 { height: var(--framer-aspect-ratio-supported, 325px); } .framer-X3uEq .framer-15bnvci-container { height: 290px; }}\",\"@media (max-width: 809px) { .framer-X3uEq.framer-72rtr7 { padding: 0px 0px 520px 0px; width: 390px; } .framer-X3uEq .framer-1omkyei { height: 800px; } .framer-X3uEq .framer-11z6qql { height: 740px; } .framer-X3uEq .framer-1l0njoa { left: 50%; padding: 20px; top: 50%; transform: translate(-50%, -50%); width: 100%; } .framer-X3uEq .framer-1nc2c29 { padding: 80px 20px 60px 20px; } .framer-X3uEq .framer-1ui66sn { flex-direction: column; gap: 30px; justify-content: flex-start; } .framer-X3uEq .framer-uzyu8u, .framer-X3uEq .framer-pmo7s0, .framer-X3uEq .framer-wev8f, .framer-X3uEq .framer-1kqk88s, .framer-X3uEq .framer-15fzyti, .framer-X3uEq .framer-17x56as, .framer-X3uEq .framer-1b7vodz, .framer-X3uEq .framer-y8gy3m, .framer-X3uEq .framer-1klosze-container, .framer-X3uEq .framer-1mhd6q9-container, .framer-X3uEq .framer-13l50sx-container, .framer-X3uEq .framer-1o49d64-container, .framer-X3uEq .framer-136ijau-container, .framer-X3uEq .framer-14308p5, .framer-X3uEq .framer-12z676r, .framer-X3uEq .framer-pghrxf { width: 100%; } .framer-X3uEq .framer-5sclnw { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; width: 100%; } .framer-X3uEq .framer-q6fvy0 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; left: unset; order: 2; position: relative; top: unset; width: 100%; } .framer-X3uEq .framer-1tzu8mb { background-color: #3a7b99; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; left: unset; order: 1; position: relative; top: unset; width: 100%; } .framer-X3uEq .framer-lgrkl1 { background-color: #3a7b99; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; left: unset; order: 3; position: relative; top: unset; width: 100%; } .framer-X3uEq .framer-lcvel { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; left: unset; order: 4; position: relative; top: unset; width: 100%; } .framer-X3uEq .framer-11gfwut, .framer-X3uEq .framer-1nk9a34, .framer-X3uEq .framer-eq8d78 { padding: 0px 20px 0px 20px; } .framer-X3uEq .framer-10tvzx2 { border-bottom-left-radius: 42px; border-bottom-right-radius: 42px; border-top-left-radius: 42px; border-top-right-radius: 42px; padding: 40px 20px 30px 20px; } .framer-X3uEq .framer-zn8iyw { gap: 30px; } .framer-X3uEq .framer-1g5qlvg { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; justify-content: flex-start; } .framer-X3uEq .framer-1gplpvd-container, .framer-X3uEq .framer-1y93fp4-container, .framer-X3uEq .framer-eni7yp-container, .framer-X3uEq .framer-14wmotj-container, .framer-X3uEq .framer-1ojf4ie-container, .framer-X3uEq .framer-107oq5s-container, .framer-X3uEq .framer-adsksl-container, .framer-X3uEq .framer-p8adl7-container, .framer-X3uEq .framer-1td4t3o-container { align-self: unset; } .framer-X3uEq .framer-nf723z, .framer-X3uEq .framer-h6gymh { padding: 60px 20px 60px 20px; } .framer-X3uEq .framer-h6ltgp { border-bottom-left-radius: 42px; border-bottom-right-radius: 42px; border-top-left-radius: 42px; border-top-right-radius: 42px; } .framer-X3uEq .framer-cl8qqu { flex-direction: column; gap: 30px; padding: 20px 20px 40px 20px; } .framer-X3uEq .framer-1e72yxu { flex-direction: column; gap: 50px; } .framer-X3uEq .framer-10oiepe { width: 347px; } .framer-X3uEq .framer-idzaif { width: 349px; } .framer-X3uEq .framer-deixiy { border-bottom-left-radius: 42px; border-bottom-right-radius: 42px; border-top-left-radius: 42px; border-top-right-radius: 42px; flex-direction: column; gap: 60px; justify-content: flex-start; padding: 40px 20px 25px 20px; } .framer-X3uEq .framer-vmwgzk { flex-direction: column; } .framer-X3uEq .framer-vhk1oh { flex: none; width: 100%; } .framer-X3uEq .framer-1sbn9f5 { height: var(--framer-aspect-ratio-supported, 310px); } .framer-X3uEq .framer-1k7r75j { padding: 40px 20px 20px 20px; width: 100%; } .framer-X3uEq .framer-15bnvci-container { height: 570px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6058\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xWSpKa0U3\":{\"layout\":[\"fixed\",\"auto\"]},\"N8j1CXklC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-X3uEq\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6058,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...ComponentButtonSecondaryFonts,...ComponentMenuFonts,...ComponentTopBarFonts,...PhosphorFonts,...ComponentFeaturesCardFonts,...ComponentTabContentFonts,...EmbedFonts,...ComponentAccordionFonts,...ComponentGhostButtonFonts,...ComponentFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xWSpKa0U3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"N8j1CXklC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"6058\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "number", "tap2", "text", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "fwu5CyPVk", "oiRycNcVQ", "C3VfTm9XB", "p2HzyhdH4", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap11x7aj7", "args", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "RichText2", "css", "FramershmXId31X", "withCSS", "shmXId31X_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "variantClassNames", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "image", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "f_lIaCf6Y", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "Image2", "css", "FramervrQ9Jugd1", "withCSS", "vrQ9Jugd1_default", "addPropertyControls", "ControlType", "addFonts", "ComponentTabFonts", "getFonts", "shmXId31X_default", "ComponentImageTabFonts", "vrQ9Jugd1_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "description", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "vDmT2cSy3", "mRtnNJZSK", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1misom3", "args", "onAppear1vdara8", "onAppear1tarcd8", "onAppear1xl0p3y", "onAppear47le80", "onAppear1ilg27e", "onAppear5pxbtn", "onAppear1abwswn", "C3VfTm9XB1gi30ae", "C3VfTm9XB1brj414", "C3VfTm9XBskaq8r", "C3VfTm9XB17ixazy", "C3VfTm9XBfpjg4o", "C3VfTm9XByb22pc", "C3VfTm9XB1qmgq57", "C3VfTm9XB2jnbs9", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FrameruBsGIbMoU", "withCSS", "uBsGIbMoU_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "djgz5axxh", "o0OPLovIT", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText2", "SVG", "css", "FramerZUXeC7dhB", "withCSS", "ZUXeC7dhB_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ComponentButtonSecondaryFonts", "getFonts", "eH0JwdMFx_default", "ComponentMenuFonts", "OebKkEQRe_default", "ComponentTopBarFonts", "svmb749Xl_default", "PhosphorFonts", "Icon", "ComponentFeaturesCardFonts", "lgVPez9xg_default", "ComponentTabContentFonts", "uBsGIbMoU_default", "EmbedFonts", "Embed", "ComponentAccordionFonts", "yuaNEm7pX_default", "ComponentGhostButtonFonts", "ZUXeC7dhB_default", "ComponentFooterFonts", "uvU26E3dy_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "JbsEAOdlpL3deZC7ad", "fSq67ru43L3deZC7ad", "mA0m8SIliL3deZC7ad", "lbXcg5zrrL3deZC7ad", "idL3deZC7ad", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "RichText2", "x", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Container", "SVG", "resolvedLinks1", "ChildrenCanSuspend", "ancmIzRX4_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "Link", "resolvedLinks2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
