{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/InputSites.js@1.12.0", "ssg:https://framerusercontent.com/modules/CJgw13h0ok22pdnRmFv0/Mo1OqIQs7oe7VjsPmyBF/Input_Loops.js", "ssg:https://framerusercontent.com/modules/YFnw0iXL0P4kg6mhRqE8/oynQcLI3ZYrvHnizZBNk/SxFXedzk3.js", "ssg:https://framerusercontent.com/modules/BgZqsyi3GnEnV3BpEndK/esQN2g9HP8JjEGbioeHt/DF6k86KJy.js", "ssg:https://framerusercontent.com/modules/jXKgsPbq8HvIEf6z1OrI/VNspOkXevvFkDbeThRQ0/UDAPzJXOF.js", "ssg:https://framerusercontent.com/modules/qRicPjsn7lqAFhUpVEJw/wsYYtENjQk0KRlujgBY2/HgKWRU5cM.js", "ssg:https://framerusercontent.com/modules/4YWWzj4Km7yqicjoCm2H/jO5zdHqCH551J62O4W3P/JDIZfHyyT.js", "ssg:https://framerusercontent.com/modules/wThtlgP3s7KLYLt5ypGj/netihpmO3DN2O5w2pSN6/yhgtyLAnh.js", "ssg:https://framerusercontent.com/modules/O4LuuFVBJL68iVtxqIaG/UEjiogOdqZGSWdlFNorw/aAssKOZXg.js", "ssg:https://framerusercontent.com/modules/qP8SxB9zMbzfjJtY2FwM/9sdhxHIYBqCDXjgaonA6/AKQxX0asg.js", "ssg:https://framerusercontent.com/modules/0yNtZ0VysGjgYqD80N2R/haGCwfBHNeQ4c745CO9a/iaBy7WzBo.js", "ssg:https://framerusercontent.com/modules/AGhqJUt2C4sI19pIowBp/wwHSGVD8iOZSVMS3ORWR/QjLJez9eY.js", "ssg:https://framerusercontent.com/modules/byLVypxoESJ9BdzbmXzx/CHQ9KAYg3EP4lHDvhrrt/U8CNgDQQb.js", "ssg:https://framerusercontent.com/modules/i9lJYXCPbbKFkZyFPixO/cG9u8dl3SUiLkInykxkL/Afeqt6Wxj.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useCallback,useState}from\"react\";import{addPropertyControls,ControlType,withCSS,useRouter,inferInitialRouteFromPath}from\"framer\";import{motion,useAnimationControls}from\"framer-motion\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const mailchimpRegex=/^https?:\\/\\/([^\\/]+)[^\\?]+\\??(.+)$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};const parseMailChimpUrl=url=>{var _url_replace_match;const[,domain,parameters]=(_url_replace_match=url.replace(\"&amp;\",\"&\").match(mailchimpRegex))!==null&&_url_replace_match!==void 0?_url_replace_match:[null,null,null];return[domain,parameters?new URLSearchParams(parameters):null];};function safeURL(url){console.log(url);try{new URL(url);return url;}catch{try{new URL(`https://${url}`);return`https://${url}`;}catch{}}return undefined;}function isInternalURL(href){if(href===undefined)return false;if(href.startsWith(\"#\")||href.startsWith(\"/\")||href.startsWith(\".\"))return true;return false;}/**\n * Increment the number whenever shipping a new version to customers.\n * This will ensure that multiple versions of this component can exist\n * in the same project without css rules overlapping. Only use valid css class characters.\n */const VERSION=\"v1\";/**\n * INPUT\n * By Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */const Input=withCSS(function Input({service,redirectAs,mailchimpURL,loopsID,loopsUserGroup,formsparkID,getwaitlistAPI,convertkitAPI,convertkitFormID,input,button,font,layout,link,gap,style,onSubmit}){const[email,setEmail]=useState(\"\");const[isError,setError]=useState(false);const[isLoading,setLoading]=useState(false);const[isFocus,setFocus]=useState(false);// Padding\nconst{paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,padding,borderRadius,borderObject,focusObject,shadowObject,height,fixedHeight}=input;const{buttonPaddingPerSide,buttonPaddingTop,buttonPaddingRight,buttonPaddingBottom,buttonPaddingLeft,buttonPadding}=button;const paddingValue=paddingPerSide?`${paddingTop}px ${button.isDocked?paddingRight+button.widthWhenDocked:paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px ${button.isDocked?padding+button.widthWhenDocked:padding}px ${padding}px ${padding}px`;const buttonPaddingValue=buttonPaddingPerSide?`${button.isDocked?0:buttonPaddingTop}px ${buttonPaddingRight}px ${button.isDocked?0:buttonPaddingBottom}px ${buttonPaddingLeft}px`:`${button.isDocked?0:buttonPadding}px ${buttonPadding}px ${button.isDocked?0:buttonPadding}px ${buttonPadding}px`;const router=useRouter();const onSuccess=()=>{/* Reset */setLoading(false);setFocus(false);setEmail(\"\");if(redirectAs===\"link\"&&link&&!isError){const[path,hash]=link.split(\"#\");const{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,path);if(routeId){router.navigate(routeId,hash,pathVariables);}if(!isInternalURL(link)){const url=safeURL(link);if(url)window.open(url,\"_blank\");}}};const validateForm=useCallback(email=>{if(email===\"\"||!validateEmail(email)){setError(true);formControls.start(\"error\");return false;}return true;},[validateEmail]);const handleChange=useCallback(event=>{setError(false);setEmail(event.target.value);},[]);const handleFocus=useCallback(event=>{setFocus(true);},[]);const handleBlur=useCallback(event=>{setFocus(false);setError(false);},[]);const handleSubmit=useCallback(event=>{event.preventDefault();// Prevent submitting while submitting\nif(isLoading)return;setLoading(true);if(service===\"mailchimp\"){const[domain,parameters]=parseMailChimpUrl(mailchimpURL);if(!validateForm(email)||!domain||!parameters){setLoading(false);return;}// MERGE0 is Mailchimp\u2019s email field name\nparameters.set(\"MERGE0\",email);fetch(`https://${domain}/subscribe/post`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded;charset=UTF-8\"},body:parameters.toString()}).then(response=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"loops\"){if(!validateForm(email)){setLoading(false);return;}const emailBody=`email=${encodeURIComponent(email)}`;const userGroupBody=`userGroup=${encodeURIComponent(loopsUserGroup)}`;const hasUserGroup=!!loopsUserGroup&&loopsUserGroup!==\" \";const formBody=hasUserGroup?emailBody+\"&\"+userGroupBody:emailBody;fetch(`https://app.loops.so/api/newsletter-form/${loopsID}`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded\"},body:formBody}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"formspark\"){if(!validateForm(email)){setLoading(false);return;}const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://api.formspark.io/${formsparkID}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{onSuccess();onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"getwaitlist\"){if(!validateForm(email)){setLoading(false);return;}const formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;fetch(`https://api.getwaitlist.com/api/v1\n/waiter/`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"convertkit\"){if(!validateForm(email)){setLoading(false);return;}const formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;data.api_key=convertkitAPI;fetch(`https://api.convertkit.com/v3/forms/${convertkitFormID}/subscribe`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}},[mailchimpURL,formsparkID,convertkitFormID,email,onSubmit,validateForm,isLoading]);// Animation\nconst formControls=useAnimationControls();// Input Box Shadow Stylees\nconst focusStylesFrom=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthFrom}px ${focusObject.focusColor}`:null;const focusStylesTo=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthTo}px ${focusObject.focusColor}`:null;const shadowStyles=input.shadowObject?`${shadowObject.shadowX}px ${shadowObject.shadowY}px ${shadowObject.shadowBlur}px ${shadowObject.shadowColor}`:null;const borderStyles=input.borderObject?`inset 0 0 0 ${borderObject.borderWidth}px ${borderObject.borderColor}`:null;// Shake or wiggle as error\nconst formVariants={default:{x:0},error:{x:[0,-4,4,0],transition:{duration:.2}}};const inputVariants={default:{boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},focused:{boxShadow:dynamicBoxShadow(focusStylesTo,shadowStyles,borderStyles)}};return /*#__PURE__*/_jsx(motion.div,{style:{...style,...containerStyles,\"--framer-custom-placeholder-color\":input.placeholderColor},variants:formVariants,animate:formControls,children:/*#__PURE__*/_jsxs(\"form\",{style:{width:\"100%\",height:\"auto\",display:\"flex\",position:\"relative\",flexDirection:layout===\"vertical\"?\"column\":\"row\",color:button.color,gap:button.isDocked?0:gap},onSubmit:handleSubmit,method:\"POST\",children:[service===\"getwaitlist\"&&/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:getwaitlistAPI}),service===\"convertkit\"&&/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:convertkitAPI}),/*#__PURE__*/_jsx(motion.input,{type:\"email\",name:\"email\",placeholder:input.placeholder,value:email,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:handleFocus,onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",style:{...defaultStyle,padding:paddingValue,borderRadius,fontSize:16,...font,background:input.fill,height:height?\"auto\":fixedHeight,color:input.color,boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},variants:inputVariants,initial:false,animate:isFocus?\"focused\":\"default\",transition:{duration:.3},\"data-1p-ignore\":true}),!button.shouldAppear&&isLoading&&/*#__PURE__*/_jsx(Spinner,{shouldAppear:button.shouldAppear,paddingPerSide:paddingPerSide,paddingTop:paddingTop,paddingRight:paddingRight,padding:padding,color:input.color}),button.shouldAppear&&/*#__PURE__*/_jsxs(\"div\",{style:{position:button.isDocked?\"absolute\":\"relative\",top:button.isDocked?button.insetWhenDocked:0,right:button.isDocked?button.insetWhenDocked:0,bottom:button.isDocked?button.insetWhenDocked:0},children:[/*#__PURE__*/_jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,width:button.isDocked?button.widthWhenDocked:\"100%\",height:height?\"100%\":fixedHeight,cursor:\"pointer\",padding:buttonPaddingValue,borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,// fontWeight: button.fontWeight,\nfontSize:16,...button.buttonFont,background:button.fill,color:button.color,zIndex:1,boxShadow:getButtonShadow(button)}}),isLoading&&/*#__PURE__*/_jsx(\"div\",{style:{borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",inset:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/_jsx(Spinner,{color:button.color})})]})]})});},[`.${VERSION}.framer-custom-input::placeholder { color: var(--framer-custom-placeholder-color) !important; }`]);const Spinner=props=>{const noButtonStyles=!props.shouldAppear?{position:\"absolute\",top:`calc(50% - 8px)`,right:props.paddingPerSide?props.paddingRight:props.padding}:{};return /*#__PURE__*/_jsx(motion.div,{style:{height:16,width:16,...noButtonStyles},initial:{rotate:0},animate:{rotate:360},transition:{duration:1,repeat:Infinity},children:/*#__PURE__*/_jsx(motion.div,{initial:{scale:0},animate:{scale:1},children:/*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",style:{fill:\"currentColor\",color:props.color},children:[/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})});};addPropertyControls(Input,{service:{title:\"Service\",type:ControlType.Enum,options:[\"loops\",\"formspark\",\"mailchimp\",\"getwaitlist\",\"convertkit\"],optionTitles:[\"Loops\",\"FormSpark\",\"MailChimp\",\"Get Waitlist\",\"ConvertKit\"],defaultValue:\"loops\"},mailchimpURL:{title:\"URL\",placeholder:\"https://***.us6.list-manage.com/subscribe/post?u=***\",type:ControlType.String,hidden:props=>props.service!==\"mailchimp\"},loopsID:{title:\"ID\",placeholder:\"klm2jxy0i98abzr01pq7defg5\",type:ControlType.String,hidden:props=>props.service!==\"loops\"},loopsUserGroup:{title:\"User Group\",type:ControlType.String,placeholder:\"Title\",optional:true,hidden:props=>props.service!==\"loops\"},formsparkID:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,hidden:props=>props.service!==\"formspark\"},getwaitlistAPI:{title:\"ID\",placeholder:\"9148\",type:ControlType.String,hidden:props=>props.service!==\"getwaitlist\"},convertkitAPI:{title:\"API Key\",placeholder:\"5opis1WK6xnVsBwrOINUpe\",type:ControlType.String,hidden:props=>props.service!==\"convertkit\"},convertkitFormID:{title:\"Form ID\",placeholder:\"1043389\",type:ControlType.String,hidden:props=>props.service!==\"convertkit\"},redirectAs:{title:\"Success\",type:ControlType.Enum,options:[\"link\",\"overlay\"],optionTitles:[\"Open Link\",\"Show Overlay\"],defaultValue:\"link\"},link:{title:\"Redirect\",type:ControlType.Link,hidden:props=>props.redirectAs===\"overlay\"},onSubmit:{title:\"Submit\",type:ControlType.EventHandler,hidden:props=>props.redirectAs===\"link\"},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,hidden:props=>props.button.isDocked},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},input:{title:\"Input\",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"name@email.com\"},placeholderColor:{title:\" \",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},height:{title:\"Height\",type:ControlType.Boolean,enabledTitle:\"Auto\",disabledTitle:\"Fixed\"},fixedHeight:{title:\" \",type:ControlType.Number,displayStepper:true,min:0,defaultValue:50,hidden:props=>props.height},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},focusObject:{type:ControlType.Object,title:\"Focus\",optional:true,controls:{focusWidthFrom:{title:\"From\",type:ControlType.Number,displayStepper:true,defaultValue:0},focusWidthTo:{title:\"To\",type:ControlType.Number,displayStepper:true,defaultValue:2},focusColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#09F\"}}},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},button:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Subscribe\"},buttonFont:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},isDocked:{title:\"Docked\",type:ControlType.Boolean,defaultValue:false},widthWhenDocked:{title:\"Width\",type:ControlType.Number,min:0,defaultValue:100,displayStepper:true,hidden:props=>!props.isDocked},insetWhenDocked:{title:\"Inset\",type:ControlType.Number,min:0,defaultValue:5,displayStepper:true,hidden:props=>!props.isDocked},buttonPadding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"buttonPaddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"buttonPaddingTop\",\"buttonPaddingRight\",\"buttonPaddingBottom\",\"buttonPaddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},buttonShadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:10,hidden:props=>props.button.isDocked}});const defaultStyle={WebkitAppearance:\"none\",appearance:\"none\",width:\"100%\",height:\"auto\",outline:\"none\",border:\"none\"};const containerStyles={position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};function getButtonShadow(button){if(button.buttonShadow){return`${button.buttonShadow.shadowX}px ${button.buttonShadow.shadowY}px ${button.buttonShadow.shadowBlur}px ${button.buttonShadow.shadowColor}`;}else return\"none\";}function dynamicBoxShadow(...shadows){const output=[];shadows.forEach(shadow=>shadow&&output.push(shadow));return output.join(\", \");}export default Input;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Input\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"300\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import Input from\"https://framer.com/m/framer/InputSites.js@1.12.0\";import{ControlType,addPropertyControls}from\"framer\";/**\n * INPUT - LOOPS\n * By Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */export default function Loops(props){// This is a React component containing an Example component\n// - Replace <Example /> with your own code\n// - Find inspiration: https://www.framer.com/developers/\nreturn /*#__PURE__*/_jsx(Input,{...props,service:\"loops\"});}addPropertyControls(Loops,{loopsID:{title:\"ID\",placeholder:\"klm2jxy0i98abzr01pq7defg5\",type:ControlType.String},loopsUserGroup:{title:\"User Group\",type:ControlType.String,placeholder:\"Title\",optional:true},redirectAs:{title:\"Success\",type:ControlType.Enum,options:[\"link\",\"overlay\"],optionTitles:[\"Open Link\",\"Show Overlay\"],defaultValue:\"link\"},link:{title:\"Redirect\",type:ControlType.Link,hidden:props=>props.redirectAs===\"overlay\"},onSubmit:{title:\"Submit\",type:ControlType.EventHandler,hidden:props=>props.redirectAs===\"link\"},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,hidden:props=>props.button.isDocked},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},input:{title:\"Input\",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"name@email.com\"},placeholderColor:{title:\" \",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},height:{title:\"Height\",type:ControlType.Boolean,enabledTitle:\"Auto\",disabledTitle:\"Fixed\"},fixedHeight:{title:\" \",type:ControlType.Number,displayStepper:true,min:0,defaultValue:50,hidden:props=>props.height},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},focusObject:{type:ControlType.Object,title:\"Focus\",optional:true,controls:{focusWidthFrom:{title:\"From\",type:ControlType.Number,displayStepper:true,defaultValue:0},focusWidthTo:{title:\"To\",type:ControlType.Number,displayStepper:true,defaultValue:2},focusColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#09F\"}}},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},button:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Subscribe\"},buttonFont:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},isDocked:{title:\"Docked\",type:ControlType.Boolean,defaultValue:false},widthWhenDocked:{title:\"Width\",type:ControlType.Number,min:0,defaultValue:100,displayStepper:true,hidden:props=>!props.isDocked},insetWhenDocked:{title:\"Inset\",type:ControlType.Number,min:0,defaultValue:5,displayStepper:true,hidden:props=>!props.isDocked},buttonPadding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"buttonPaddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"buttonPaddingTop\",\"buttonPaddingRight\",\"buttonPaddingBottom\",\"buttonPaddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},buttonShadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:10,hidden:props=>props.button.isDocked}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Loops\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"300\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"40\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input_Loops.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"hkn_lgDcG\",\"QnptQ6UHS\",\"JQwG9xBJv\",\"zXTsFN039\",\"AcrRC2gwA\",\"vH1ALvuBe\"];const serializationHash=\"framer-wIjo9\";const variantClassNames={AcrRC2gwA:\"framer-v-1rq9tpq\",hkn_lgDcG:\"framer-v-1eiauh8\",JQwG9xBJv:\"framer-v-1snvrxj\",QnptQ6UHS:\"framer-v-awn3nj\",vH1ALvuBe:\"framer-v-1dtgyy2\",zXTsFN039:\"framer-v-1f418wj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"hkn_lgDcG\",\"Variant 2\":\"QnptQ6UHS\",\"Variant 3\":\"JQwG9xBJv\",\"Variant 4\":\"zXTsFN039\",\"Variant 5\":\"AcrRC2gwA\",\"Variant 6\":\"vH1ALvuBe\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"hkn_lgDcG\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hkn_lgDcG\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"vH1ALvuBe\")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-1eiauh8\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"hkn_lgDcG\",ref:refBinding,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05)\",...style},...addPropertyOverrides({AcrRC2gwA:{\"data-framer-name\":\"Variant 5\"},JQwG9xBJv:{\"data-framer-name\":\"Variant 3\"},QnptQ6UHS:{\"data-framer-name\":\"Variant 2\"},vH1ALvuBe:{\"data-framer-name\":\"Variant 6\"},zXTsFN039:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s5ts4a\",layoutDependency:layoutDependency,layoutId:\"qommAc64p\",style:{backgroundColor:\"rgb(102, 255, 0)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},variants:{AcrRC2gwA:{backgroundColor:\"rgb(255, 115, 0)\"},JQwG9xBJv:{backgroundColor:\"rgb(0, 102, 255)\"},QnptQ6UHS:{backgroundColor:\"rgb(0, 255, 247)\"},vH1ALvuBe:{backgroundColor:\"rgb(255, 0, 183)\"},zXTsFN039:{backgroundColor:\"rgb(183, 0, 255)\"}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-hv4z63\",layoutDependency:layoutDependency,layoutId:\"G_1jWdd8g\",style:{backgroundColor:\"rgb(187, 221, 255)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w4x8j0\",layoutDependency:layoutDependency,layoutId:\"K7u1_LIJ9\",style:{backgroundColor:\"rgb(204, 238, 255)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c9xoa3\",layoutDependency:layoutDependency,layoutId:\"xuo63GpXv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Trial\"})}),className:\"framer-1ei1mh0\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"ZSXnISZMl\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AcrRC2gwA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Business+\"})})},JQwG9xBJv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Advanced\"})})},QnptQ6UHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Beginner\"})})},vH1ALvuBe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"King\"})})},zXTsFN039:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Business\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-voacvm\",layoutDependency:layoutDependency,layoutId:\"XHModRvE1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb63d21e-2930-4a00-8ef1-606d72b7b50f, rgb(51, 51, 51)))\"},children:\"0 \u043B\u0432\"})}),className:\"framer-1oqxjap\",fonts:[\"GF;Inter-700\"],layoutDependency:layoutDependency,layoutId:\"iC_SY19UV\",style:{\"--extracted-r6o4lv\":\"var(--token-fb63d21e-2930-4a00-8ef1-606d72b7b50f, rgb(51, 51, 51))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AcrRC2gwA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb63d21e-2930-4a00-8ef1-606d72b7b50f, rgb(51, 51, 51)))\"},children:\"179 \u043B\u0432\"})})},JQwG9xBJv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb63d21e-2930-4a00-8ef1-606d72b7b50f, rgb(51, 51, 51)))\"},children:\"69 \u043B\u0432\"})})},QnptQ6UHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb63d21e-2930-4a00-8ef1-606d72b7b50f, rgb(51, 51, 51)))\"},children:\"39 \u043B\u0432\"})})},vH1ALvuBe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb63d21e-2930-4a00-8ef1-606d72b7b50f, rgb(51, 51, 51)))\"},children:\"0.45 \u043B\u0432\"})})},zXTsFN039:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb63d21e-2930-4a00-8ef1-606d72b7b50f, rgb(51, 51, 51)))\"},children:\"109 \u043B\u0432\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"\u0437\u0430 \u043E\u0431\u044F\u0432\u0430\"})}),className:\"framer-othrzb\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"jKFR6hSmw\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fupd4n\",layoutDependency:layoutDependency,layoutId:\"jw4Jz1H0x\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mnnejl\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"XkkmzPiPG\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\"},children:\"\u043F\u044A\u0440\u0432\u0438\u0442\u0435\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SW50ZXItOTAw\",\"--framer-font-family\":'\"Inter\", sans-serif',\"--framer-font-weight\":\"900\"},children:\" 30\"}),\" \u043E\u0431\u044F\u0432\u0438 \u0437\u0430 \u0430\u043A\u0430\u0443\u043D\u0442\"]})}),className:\"framer-wlrtlk\",fonts:[\"GF;Inter-600\",\"GF;Inter-500\",\"GF;Inter-900\"],layoutDependency:layoutDependency,layoutId:\"S8hqKy9hU\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AcrRC2gwA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SW50ZXItOTAw\",\"--framer-font-family\":'\"Inter\", sans-serif',\"--framer-font-weight\":\"900\"},children:\"400\"}),\" \u043E\u0431\u044F\u0432\u0438 \u0437\u0430 \u0430\u043A\u0430\u0443\u043D\u0442\"]})}),fonts:[\"GF;Inter-600\",\"GF;Inter-900\"]},JQwG9xBJv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SW50ZXItOTAw\",\"--framer-font-family\":'\"Inter\", sans-serif',\"--framer-font-weight\":\"900\"},children:\"100\"}),\" \u043E\u0431\u044F\u0432\u0438 \u0437\u0430 \u0430\u043A\u0430\u0443\u043D\u0442\"]})}),fonts:[\"GF;Inter-600\",\"GF;Inter-900\"]},QnptQ6UHS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SW50ZXItOTAw\",\"--framer-font-family\":'\"Inter\", sans-serif',\"--framer-font-weight\":\"900\"},children:\"50\"}),\" \u043E\u0431\u044F\u0432\u0438 \u0437\u0430 \u0430\u043A\u0430\u0443\u043D\u0442\"]})}),fonts:[\"GF;Inter-600\",\"GF;Inter-900\"]},vH1ALvuBe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\"},children:\"\u043D\u0430\u0434\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SW50ZXItOTAw\",\"--framer-font-family\":'\"Inter\", sans-serif',\"--framer-font-weight\":\"900\"},children:\" 400\"}),\"  \u043E\u0431\u044F\u0432\u0438 \u0437\u0430 \u0430\u043A\u0430\u0443\u043D\u0442\"]})})},zXTsFN039:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SW50ZXItOTAw\",\"--framer-font-family\":'\"Inter\", sans-serif',\"--framer-font-weight\":\"900\"},children:\"200\"}),\" \u043E\u0431\u044F\u0432\u0438 \u0437\u0430 \u0430\u043A\u0430\u0443\u043D\u0442\"]})}),fonts:[\"GF;Inter-600\",\"GF;Inter-900\"]}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wIjo9.framer-ll1frf, .framer-wIjo9 .framer-ll1frf { display: block; }\",\".framer-wIjo9.framer-1eiauh8 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px 15px 10px 15px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-wIjo9 .framer-1s5ts4a { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 5px; }\",\".framer-wIjo9 .framer-hv4z63, .framer-wIjo9 .framer-1w4x8j0 { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-wIjo9 .framer-c9xoa3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 134px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 295px; }\",\".framer-wIjo9 .framer-1ei1mh0, .framer-wIjo9 .framer-othrzb, .framer-wIjo9 .framer-wlrtlk { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-wIjo9 .framer-voacvm { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 48px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-wIjo9 .framer-1oqxjap { flex: none; height: 100%; position: relative; white-space: pre; width: auto; }\",\".framer-wIjo9 .framer-fupd4n { 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: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-wIjo9 .framer-1mnnejl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wIjo9.framer-1eiauh8, .framer-wIjo9 .framer-1s5ts4a, .framer-wIjo9 .framer-c9xoa3, .framer-wIjo9 .framer-voacvm, .framer-wIjo9 .framer-fupd4n, .framer-wIjo9 .framer-1mnnejl { gap: 0px; } .framer-wIjo9.framer-1eiauh8 > *, .framer-wIjo9 .framer-1s5ts4a > *, .framer-wIjo9 .framer-1mnnejl > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wIjo9.framer-1eiauh8 > :first-child, .framer-wIjo9 .framer-1s5ts4a > :first-child, .framer-wIjo9 .framer-voacvm > :first-child, .framer-wIjo9 .framer-1mnnejl > :first-child { margin-left: 0px; } .framer-wIjo9.framer-1eiauh8 > :last-child, .framer-wIjo9 .framer-1s5ts4a > :last-child, .framer-wIjo9 .framer-voacvm > :last-child, .framer-wIjo9 .framer-1mnnejl > :last-child { margin-right: 0px; } .framer-wIjo9 .framer-c9xoa3 > *, .framer-wIjo9 .framer-fupd4n > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-wIjo9 .framer-c9xoa3 > :first-child, .framer-wIjo9 .framer-fupd4n > :first-child { margin-top: 0px; } .framer-wIjo9 .framer-c9xoa3 > :last-child, .framer-wIjo9 .framer-fupd4n > :last-child { margin-bottom: 0px; } .framer-wIjo9 .framer-voacvm > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 154\n * @framerIntrinsicWidth 320\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QnptQ6UHS\":{\"layout\":[\"fixed\",\"auto\"]},\"JQwG9xBJv\":{\"layout\":[\"fixed\",\"auto\"]},\"zXTsFN039\":{\"layout\":[\"fixed\",\"auto\"]},\"AcrRC2gwA\":{\"layout\":[\"fixed\",\"auto\"]},\"vH1ALvuBe\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSxFXedzk3=withCSS(Component,css,\"framer-wIjo9\");export default FramerSxFXedzk3;FramerSxFXedzk3.displayName=\"Card\u0426\";FramerSxFXedzk3.defaultProps={height:154,width:320};addPropertyControls(FramerSxFXedzk3,{variant:{options:[\"hkn_lgDcG\",\"QnptQ6UHS\",\"JQwG9xBJv\",\"zXTsFN039\",\"AcrRC2gwA\",\"vH1ALvuBe\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerSxFXedzk3,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuBWYMZ1rib2Bg-4.woff2\",weight:\"900\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSxFXedzk3\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"320\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QnptQ6UHS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JQwG9xBJv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zXTsFN039\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AcrRC2gwA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vH1ALvuBe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"154\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SxFXedzk3.map", "// Generated by Framer (575e68f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-58hAb .framer-styles-preset-z6f9eq:not(.rich-text-wrapper), .framer-58hAb .framer-styles-preset-z6f9eq.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #3d3d3d; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #000000; --framer-link-text-decoration: none; }\"];export const className=\"framer-58hAb\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (37fb21e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/BgZqsyi3GnEnV3BpEndK/esQN2g9HP8JjEGbioeHt/DF6k86KJy.js\";const cycleOrder=[\"TUAPDQbO7\",\"Ep6MrJVEH\",\"DRY9wy9CP\"];const serializationHash=\"framer-7wjnJ\";const variantClassNames={DRY9wy9CP:\"framer-v-n01ulj\",Ep6MrJVEH:\"framer-v-1pjg2p7\",TUAPDQbO7:\"framer-v-awjhl5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Phone Open\":\"DRY9wy9CP\",Desktop:\"TUAPDQbO7\",Phone:\"Ep6MrJVEH\"};const getProps=({click,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"TUAPDQbO7\",vcGvfti0k:click!==null&&click!==void 0?click:props.vcGvfti0k};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,vcGvfti0k,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"TUAPDQbO7\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap2qddic=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(vcGvfti0k){const res=await vcGvfti0k(...args);if(res===false)return false;}});const onTap1406pao=activeVariantCallback(async(...args)=>{setVariant(\"TUAPDQbO7\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Ep6MrJVEH\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-awjhl5\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"TUAPDQbO7\",onTap:onTap2qddic,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({DRY9wy9CP:{\"data-framer-name\":\"Phone Open\"},Ep6MrJVEH:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hjwc1d\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"T8s0mTQ41\",style:{opacity:1},variants:{Ep6MrJVEH:{opacity:0}},children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":bV8CpFjU8\",webPageId:\"Afeqt6Wxj\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-z6f9eq\",\"data-styles-preset\":\"DF6k86KJy\",children:\"\u0417\u0430\u0449\u043E Expanda?\"})})})}),className:\"framer-19s60o6\",\"data-highlight\":true,fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"rT5PfrQxS\",onTap:onTap1406pao,style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DRY9wy9CP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":bV8CpFjU8\",webPageId:\"Afeqt6Wxj\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-z6f9eq\",\"data-styles-preset\":\"DF6k86KJy\",children:\"\u0417\u0430\u0449\u043E Expanda?\"})})})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Pa9X4zq5K\",webPageId:\"Afeqt6Wxj\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-z6f9eq\",\"data-styles-preset\":\"DF6k86KJy\",children:\"\u041F\u0440\u043E\u0434\u0430\u0432\u0430\u0439 \u0432 \u0413\u044A\u0440\u0446\u0438\u044F\"})})})}),className:\"framer-1d9v399\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"pt1cwqRqG\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":RPXqMa_Ey\",webPageId:\"Afeqt6Wxj\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-z6f9eq\",\"data-styles-preset\":\"DF6k86KJy\",children:\"\u0417\u0430\u043F\u043E\u0447\u043D\u0438 \u0441\u0435\u0433\u0430\"})})})}),className:\"framer-14yjgpl\",\"data-framer-name\":\"\u0417\u0430\u043F\u043E\u0447\u043D\u0438 \u0441\u0435\u0433\u0430\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"y9cC6ooAO\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":kdYcr89rY\",webPageId:\"Afeqt6Wxj\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-z6f9eq\",\"data-styles-preset\":\"DF6k86KJy\",children:\"\u0412\u044A\u043F\u0440\u043E\u0441\u0438 \u0438 \u043E\u0442\u0433\u043E\u0432\u043E\u0440\u0438\"})})})}),className:\"framer-1bfhmyd\",\"data-framer-name\":\"\u0412\u044A\u043F\u0440\u043E\u0441\u0438 \u0438 \u043E\u0442\u0433\u043E\u0432\u043E\u0440\u0438\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"La1rzQXAe\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bajzmx\",\"data-framer-name\":\"Bottom Line\",layoutDependency:layoutDependency,layoutId:\"kI1NlZkR4\",style:{backgroundColor:\"rgba(0, 0, 0, 0.08)\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7wjnJ.framer-1070g1w, .framer-7wjnJ .framer-1070g1w { display: block; }\",\".framer-7wjnJ.framer-awjhl5 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 64px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-7wjnJ .framer-1hjwc1d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 30px; position: relative; width: min-content; }\",\".framer-7wjnJ .framer-19s60o6 { -webkit-user-select: none; cursor: pointer; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-7wjnJ .framer-1d9v399, .framer-7wjnJ .framer-14yjgpl, .framer-7wjnJ .framer-1bfhmyd { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-7wjnJ .framer-1bajzmx { bottom: 0px; flex: none; height: 1px; left: 0px; overflow: visible; position: absolute; right: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7wjnJ.framer-awjhl5, .framer-7wjnJ .framer-1hjwc1d { gap: 0px; } .framer-7wjnJ.framer-awjhl5 > *, .framer-7wjnJ .framer-1hjwc1d > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-7wjnJ.framer-awjhl5 > :first-child, .framer-7wjnJ .framer-1hjwc1d > :first-child { margin-left: 0px; } .framer-7wjnJ.framer-awjhl5 > :last-child, .framer-7wjnJ .framer-1hjwc1d > :last-child { margin-right: 0px; } }\",\".framer-7wjnJ.framer-v-1pjg2p7.framer-awjhl5 { flex-direction: column; gap: 0px; width: 390px; }\",\".framer-7wjnJ.framer-v-1pjg2p7 .framer-1hjwc1d { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; justify-content: flex-start; min-height: 88px; padding: 20px; width: 390px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7wjnJ.framer-v-1pjg2p7.framer-awjhl5, .framer-7wjnJ.framer-v-1pjg2p7 .framer-1hjwc1d { gap: 0px; } .framer-7wjnJ.framer-v-1pjg2p7.framer-awjhl5 > *, .framer-7wjnJ.framer-v-1pjg2p7 .framer-1hjwc1d > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-7wjnJ.framer-v-1pjg2p7.framer-awjhl5 > :first-child, .framer-7wjnJ.framer-v-1pjg2p7 .framer-1hjwc1d > :first-child { margin-top: 0px; } .framer-7wjnJ.framer-v-1pjg2p7.framer-awjhl5 > :last-child, .framer-7wjnJ.framer-v-1pjg2p7 .framer-1hjwc1d > :last-child { margin-bottom: 0px; } }\",\".framer-7wjnJ.framer-v-n01ulj.framer-awjhl5 { flex-direction: column; gap: 0px; height: min-content; max-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: auto; overscroll-behavior: contain; width: 390px; }\",\".framer-7wjnJ.framer-v-n01ulj .framer-1hjwc1d { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; justify-content: flex-start; padding: 20px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7wjnJ.framer-v-n01ulj.framer-awjhl5, .framer-7wjnJ.framer-v-n01ulj .framer-1hjwc1d { gap: 0px; } .framer-7wjnJ.framer-v-n01ulj.framer-awjhl5 > *, .framer-7wjnJ.framer-v-n01ulj .framer-1hjwc1d > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-7wjnJ.framer-v-n01ulj.framer-awjhl5 > :first-child, .framer-7wjnJ.framer-v-n01ulj .framer-1hjwc1d > :first-child { margin-top: 0px; } .framer-7wjnJ.framer-v-n01ulj.framer-awjhl5 > :last-child, .framer-7wjnJ.framer-v-n01ulj .framer-1hjwc1d > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ep6MrJVEH\":{\"layout\":[\"fixed\",\"fixed\"]},\"DRY9wy9CP\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]}}}\n * @framerVariables {\"vcGvfti0k\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUDAPzJXOF=withCSS(Component,css,\"framer-7wjnJ\");export default FramerUDAPzJXOF;FramerUDAPzJXOF.displayName=\"Navigation Copy\";FramerUDAPzJXOF.defaultProps={height:64,width:1200};addPropertyControls(FramerUDAPzJXOF,{variant:{options:[\"TUAPDQbO7\",\"Ep6MrJVEH\",\"DRY9wy9CP\"],optionTitles:[\"Desktop\",\"Phone\",\"Phone Open\"],title:\"Variant\",type:ControlType.Enum},vcGvfti0k:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerUDAPzJXOF,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUDAPzJXOF\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"64\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ep6MrJVEH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DRY9wy9CP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]}}}\",\"framerVariables\":\"{\\\"vcGvfti0k\\\":\\\"click\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UDAPzJXOF.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Inter-600\"]);export const fonts=[{family:\"Inter\",moduleAsset:{localModuleIdentifier:\"local-module:css/HgKWRU5cM:default\",url:\"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\",weight:\"600\"}];export const css=['.framer-6hRrT .framer-styles-preset-1wjjzog:not(.rich-text-wrapper), .framer-6hRrT .framer-styles-preset-1wjjzog.rich-text-wrapper p, .framer-6hRrT .framer-styles-preset-1wjjzog.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Inter\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: 0px; --framer-line-height: 1.5em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #666666; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-6hRrT\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0885f34)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/qRicPjsn7lqAFhUpVEJw/wsYYtENjQk0KRlujgBY2/HgKWRU5cM.js\";const cycleOrder=[\"N61FsPvBt\",\"JZTi9zOUa\"];const variantClassNames={JZTi9zOUa:\"framer-v-2lyczf\",N61FsPvBt:\"framer-v-1d51j9y\"};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 humanReadableVariantMap={Closed:\"N61FsPvBt\",Open:\"JZTi9zOUa\"};const transitions={default:{damping:40,delay:0,duration:0,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"N61FsPvBt\",question:W88zB8mIG=\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",answer:T8rQFvSBR=\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"N61FsPvBt\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap2wrxd7=activeVariantCallback(async(...args)=>{setVariant(\"JZTi9zOUa\");});const onTapzc6ei0=activeVariantCallback(async(...args)=>{setVariant(\"N61FsPvBt\");});const isDisplayed=()=>{if(baseVariant===\"JZTi9zOUa\")return true;return false;};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-VVL85\",sharedStyle.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-1d51j9y\",className),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"N61FsPvBt\",ref:ref,style:{...style},transition:transition,...addPropertyOverrides({JZTi9zOUa:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-kc1y8h\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"bQOn5duVh\",onTap:onTap2wrxd7,transition:transition,...addPropertyOverrides({JZTi9zOUa:{onTap:onTapzc6ei0}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-1k6lcpt\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"v4VcYOUIZ\",style:{opacity:.3,rotate:0},transition:transition,variants:{JZTi9zOUa:{rotate:45}},children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1cniqsp\",layoutDependency:layoutDependency,layoutId:\"O9no9JEmD\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},transition:transition}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-5jljo8\",layoutDependency:layoutDependency,layoutId:\"bQOcxcL7T\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},transition:transition})]}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-1wjjzog\",\"data-styles-preset\":\"HgKWRU5cM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"What is Framer?\"})}),className:\"framer-q7ceo4\",layoutDependency:layoutDependency,layoutId:\"c3uDyFyT2\",style:{\"--extracted-r6o4lv\":\"rgb(51, 51, 51)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,transition:transition,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1xmf1aa\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"QSIj1YYQm\",style:{opacity:0},transition:transition,variants:{JZTi9zOUa:{opacity:1}},children:/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-1wjjzog\",\"data-styles-preset\":\"HgKWRU5cM\",children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1yk021p\",layoutDependency:layoutDependency,layoutId:\"YY93wzcf5\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:T8rQFvSBR,transition:transition,variants:{JZTi9zOUa:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})});});const css=['.framer-VVL85 [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-VVL85 * { box-sizing: border-box; }\",\".framer-VVL85 .framer-xy52j3 { display: block; }\",\".framer-VVL85 .framer-1d51j9y { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 400px; }\",\".framer-VVL85 .framer-kc1y8h { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 40px; position: relative; user-select: none; width: 100%; }\",\".framer-VVL85 .framer-1k6lcpt { flex: none; height: 16px; left: 0px; overflow: hidden; position: absolute; top: 25px; width: 16px; z-index: 1; }\",\".framer-VVL85 .framer-1cniqsp { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-VVL85 .framer-5jljo8 { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-VVL85 .framer-q7ceo4 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-VVL85 .framer-1xmf1aa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 20px 40px; position: relative; width: 100%; }\",\".framer-VVL85 .framer-1yk021p { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; 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-VVL85 .framer-1d51j9y, .framer-VVL85 .framer-kc1y8h, .framer-VVL85 .framer-1xmf1aa { gap: 0px; } .framer-VVL85 .framer-1d51j9y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-VVL85 .framer-1d51j9y > :first-child, .framer-VVL85 .framer-1xmf1aa > :first-child { margin-top: 0px; } .framer-VVL85 .framer-1d51j9y > :last-child, .framer-VVL85 .framer-1xmf1aa > :last-child { margin-bottom: 0px; } .framer-VVL85 .framer-kc1y8h > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-VVL85 .framer-kc1y8h > :first-child { margin-left: 0px; } .framer-VVL85 .framer-kc1y8h > :last-child { margin-right: 0px; } .framer-VVL85 .framer-1xmf1aa > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 88\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"JZTi9zOUa\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n */ const FramerJDIZfHyyT=withCSS(Component,css,\"framer-VVL85\");export default FramerJDIZfHyyT;FramerJDIZfHyyT.displayName=\"Row\";FramerJDIZfHyyT.defaultProps={height:88,width:400};addPropertyControls(FramerJDIZfHyyT,{variant:{options:[\"N61FsPvBt\",\"JZTi9zOUa\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerJDIZfHyyT,[...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJDIZfHyyT\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"88\",\"framerIntrinsicWidth\":\"400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JZTi9zOUa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JDIZfHyyT.map", "// Generated by Framer (37fb21e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Row from\"https://framerusercontent.com/modules/4YWWzj4Km7yqicjoCm2H/jO5zdHqCH551J62O4W3P/JDIZfHyyT.js\";const RowFonts=getFonts(Row);const serializationHash=\"framer-ifwC7\";const variantClassNames={mRpDCMQ54:\"framer-v-11ac2c1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"mRpDCMQ54\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-11ac2c1\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"mRpDCMQ54\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-40c03004-286a-43c1-b36f-58b60663152c, rgb(242, 242, 242))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qoa3ar-container\",layoutDependency:layoutDependency,layoutId:\"j2dYkdz4g-container\",children:/*#__PURE__*/_jsx(Row,{answer:\"Expanda \u0435 \u0437\u0430 \u0442\u0435\u0431, \u0430\u043A\u043E \u0438\u0441\u043A\u0430\u0448 \u0434\u0430 \u043F\u0440\u043E\u0434\u0430\u0432\u0430\u0448 \u043D\u0430 \u043F\u043E\u0432\u0435\u0447\u0435 \u043C\u0435\u0441\u0442\u0430, \u043D\u043E \u0441\u043C\u044F\u0442\u0430\u0448, \u0447\u0435 \u0432\u0440\u0435\u043C\u0435\u0442\u043E \u0437\u0430 \u043A\u043E\u043F\u0438\u0440\u0430\u043D\u0435 \u0438 \u0430\u043A\u0442\u0443\u0430\u043B\u0438\u0437\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 \u043E\u0431\u044F\u0432\u0438 \u0435 \u0442\u0432\u044A\u0440\u0434\u0435 \u043C\u043D\u043E\u0433\u043E.\\n\\n\u041F\u0440\u0435\u0437 Expanda, \u043C\u043E\u0436\u0435\u0448 \u0434\u0430 \u043A\u043E\u043F\u0438\u0440\u0430\u0448 \u0438 \u0430\u043A\u0442\u0443\u0430\u043B\u0438\u0437\u0438\u0440\u0430\u0448 \u043E\u0431\u044F\u0432\u0438\u0442\u0435 \u0441\u0438 \u0438\u0437 \u0432\u0441\u0438\u0447\u043A\u0438 \u0441\u0432\u044A\u0440\u0437\u0430\u043D\u0438 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0438 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E.\",height:\"100%\",id:\"j2dYkdz4g\",layoutId:\"j2dYkdz4g\",question:\"\u0417\u0430 \u043C\u0435\u043D \u043B\u0438 \u0435 Expanda?\",style:{width:\"100%\"},variant:\"N61FsPvBt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ciuwo4-container\",layoutDependency:layoutDependency,layoutId:\"nlbtV8Au0-container\",children:/*#__PURE__*/_jsx(Row,{answer:\"\u0412 \u043C\u043E\u043C\u0435\u043D\u0442\u0430 Expanda \u043F\u0440\u0435\u0434\u043E\u0441\u0442\u0430\u0432\u044F \u0441\u0432\u044A\u0440\u0437\u0430\u043D\u043E\u0441\u0442 \u0441 \u0412\u0430\u0448\u0438\u0442\u0435 \u043C\u0430\u0433\u0430\u0437\u0438\u043D\u0438 \u0432 OLX \u0438 Vendora. \u0410\u043A\u0442\u0438\u0432\u043D\u043E \u0440\u0430\u0431\u043E\u0442\u0438\u043C \u043F\u043E \u043E\u0449\u0435 \u0438\u043D\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u0438. \u041D\u0430\u0439-\u0441\u043A\u043E\u0440\u043E\u0448\u043D\u0438\u0442\u0435 \u0449\u0435 \u0441\u0430 Emag \u0438 Ebay.\",height:\"100%\",id:\"nlbtV8Au0\",layoutId:\"nlbtV8Au0\",question:\"\u041A\u044A\u0434\u0435 \u043C\u043E\u0433\u0430 \u0434\u0430 \u043F\u0440\u043E\u0434\u0430\u0432\u0430\u043C \u0441 Expanda?\",style:{width:\"100%\"},variant:\"N61FsPvBt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wsm8gz\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"env_zQiKv\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pbusdr-container\",layoutDependency:layoutDependency,layoutId:\"GnJAb_tz1-container\",children:/*#__PURE__*/_jsx(Row,{answer:\"\u0412 \u043C\u043E\u043C\u0435\u043D\u0442\u0430 \u043D\u0435. \u0421\u043A\u043E\u0440\u043E \u0449\u0435 \u043C\u043E\u0436\u0435. \u041C\u043E\u0436\u0435 \u0434\u0430 \u043E\u0441\u0442\u0430\u0432\u0438\u0442\u0435 \u0438\u043C\u0435\u0439\u043B\u0430 \u0441\u0438, \u0437\u0430 \u0434\u0430 \u0441\u0435 \u0441\u0432\u044A\u0440\u0436\u0435\u043C \u0441 \u0412\u0430\u0441 \u0432\u0435\u0434\u043D\u0430\u0433\u0430, \u043A\u043E\u0433\u0430\u0442\u043E \u0434\u043E\u0431\u0430\u0432\u0438\u043C \u0442\u0430\u0437\u0438 \u0432\u044A\u0437\u043C\u043E\u0436\u043D\u043E\u0441\u0442.\",height:\"100%\",id:\"GnJAb_tz1\",layoutId:\"GnJAb_tz1\",question:\"\u041C\u043E\u0433\u0430 \u043B\u0438 \u0434\u0430 \u0441\u0432\u044A\u0440\u0436\u0430 \u043B\u0438\u0447\u043D\u0438\u044F \u0441\u0438 \u0441\u0430\u0439\u0442 \u0441 Expanda?\",style:{width:\"100%\"},variant:\"N61FsPvBt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wkrs6m\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"ITwwRw_Kx\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fhom5c-container\",layoutDependency:layoutDependency,layoutId:\"io4KMDWBQ-container\",children:/*#__PURE__*/_jsx(Row,{answer:\"Expanda \u043D\u044F\u043C\u0430 \u0434\u043E\u0441\u0442\u044A\u043F \u0434\u043E \u0412\u0430\u0448\u0438\u0442\u0435 \u043F\u0430\u0440\u043E\u043B\u0438 \u0432 \u043C\u0430\u0433\u0430\u0437\u0438\u043D\u0438\u0442\u0435, \u0441 \u043A\u043E\u0438\u0442\u043E \u0441\u0435 \u0441\u0432\u044A\u0440\u0437\u0432\u0430\u043C\u0435. \u0412\u0441\u0438\u0447\u043A\u0438 \u0438\u043D\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u0438 \u0441\u0435 \u0441\u043B\u0443\u0447\u0432\u0430\u0442 \u043F\u0440\u0435\u0437 API \u043A\u043B\u044E\u0447, \u043A\u043E\u0439\u0442\u043E \u0441\u0432\u044A\u0440\u0437\u0430\u043D\u0438\u0442\u0435 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0438 \u0441\u0430 \u043D\u0438 \u043F\u0440\u0435\u0434\u043E\u0441\u0442\u0430\u0432\u0438\u043B\u0438. \u041D\u0438\u0435 \u043D\u044F\u043C\u0430\u043C\u0435 \u0434\u043E\u0441\u0442\u044A\u043F \u0434\u043E \u0412\u0430\u0448\u0438\u044F \u0430\u043A\u0430\u0443\u043D\u0442.\",height:\"100%\",id:\"io4KMDWBQ\",layoutId:\"io4KMDWBQ\",question:\"\u0417\u0430\u0449\u0438\u0442\u0435\u043D\u0438 \u043B\u0438 \u0441\u0430 \u0430\u043A\u0430\u0443\u043D\u0442\u0438\u0442\u0435 \u043C\u0438?\",style:{width:\"100%\"},variant:\"N61FsPvBt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1stfdif-container\",layoutDependency:layoutDependency,layoutId:\"nUpFN7Pew-container\",children:/*#__PURE__*/_jsx(Row,{answer:\"\u0417\u0430 \u0432\u0441\u044F\u043A\u0430 \u043E\u0431\u044F\u0432\u0430, \u043A\u0430\u0447\u0435\u043D\u0430 \u0432 Expanda, \u0449\u0435 \u0441\u0435 \u0437\u0430\u043F\u043B\u0430\u0449\u0430 \u0435\u0434\u043D\u043E\u043A\u0440\u0430\u0442\u043D\u043E \u043C\u0435\u0436\u0434\u0443 0.20\u043B\u0432. \u0438 0.60\u043B\u0432., \u0432 \u0437\u0430\u0432\u0438\u0441\u0438\u043C\u043E\u0441\u0442 \u043E\u0442 \u043F\u0440\u043E\u0434\u0430\u0436\u0431\u0438\u0442\u0435 \u0438 \u0431\u0440\u043E\u044F \u043E\u0431\u044F\u0432\u0438.\\n\\n\u0414\u043E\u043F\u044A\u043B\u043D\u0438\u0442\u0435\u043B\u043D\u043E, \u0449\u0435 \u0438\u043C\u0430 \u0444\u0438\u043A\u0441\u0438\u0440\u0430\u043D\u0430 \u0430\u0431\u043E\u043D\u0430\u043C\u0435\u043D\u0442\u043D\u0430 \u0446\u0435\u043D\u0430 \u043C\u0435\u0436\u0434\u0443 15 \u0438 30\u043B\u0432.\\n\\n\u0426\u0435\u043D\u0438\u0442\u0435 \u0449\u0435 \u0431\u044A\u0434\u0430\u0442 \u043F\u0443\u0431\u043B\u0438\u043A\u0443\u0432\u0430\u043D\u0438, \u043A\u043E\u0433\u0430\u0442\u043E \u0441\u0430 \u0444\u0438\u043D\u0430\u043B\u0438\u0437\u0438\u0440\u0430\u043D\u0438. \u041E\u0441\u0442\u0430\u0432\u0438 \u0438\u043C\u0435\u0439\u043B\u0430 \u0441\u0438, \u0437\u0430 \u0434\u0430 \u0440\u0430\u0437\u0431\u0435\u0440\u0435\u0448 \u043F\u044A\u0440\u0432\u0438.\",height:\"100%\",id:\"nUpFN7Pew\",layoutId:\"nUpFN7Pew\",question:\"\u041A\u0430\u043A\u0432\u043E \u0449\u0435 \u043C\u0438 \u0441\u0442\u0440\u0443\u0432\u0430 \u0441\u043B\u0435\u0434 \u043F\u0440\u043E\u043C\u043E\u0446\u0438\u043E\u043D\u0430\u043B\u043D\u0438\u044F \u043F\u0435\u0440\u0438\u043E\u0434?\",style:{width:\"100%\"},variant:\"N61FsPvBt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gm6y3a-container\",layoutDependency:layoutDependency,layoutId:\"LHkujVUOs-container\",children:/*#__PURE__*/_jsx(Row,{answer:\"\u041C\u043E\u0436\u0435\u0448 \u0434\u0430 \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u0448 Expanda, \u0437\u0430 \u0434\u0430 \u043A\u043E\u043F\u0438\u0440\u0430\u0448 \u0432\u0441\u0438\u0447\u043A\u0438\u0442\u0435 \u0441\u0438 OLX \u043E\u0431\u044F\u0432\u0438 \u0432\u044A\u0432 Vendora. Vendora \u0435 \u0432\u043E\u0434\u0435\u0449\u0438\u044F\u0442 \u0441\u0430\u0439\u0442 \u0437\u0430 \u0431\u0435\u0437\u043F\u043B\u0430\u0442\u043D\u0438 \u043E\u0431\u044F\u0432\u0438 \u0432 \u0413\u044A\u0440\u0446\u0438\u044F.\\n\\n\u0417\u0430 \u0434\u0430 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0448 \u043F\u043E-\u043B\u0435\u0441\u043D\u043E, \u0449\u0435 \u043F\u043E\u043B\u0443\u0447\u0438\u0448 \u0438 50 \u0431\u0435\u0437\u043F\u043B\u0430\u0442\u043D\u0438 \u043F\u0440\u043E\u043C\u043E\u0442\u0438\u0440\u0430\u043D\u0438\u044F \u043D\u0430 \u043E\u0431\u044F\u0432\u0438 \u0432\u044A\u0432 Vendora, \u0430\u043A\u0442\u0438\u0432\u043D\u0438  \u0434\u043E \u043A\u0440\u0430\u044F \u043D\u0430 \u0433\u043E\u0434\u0438\u043D\u0430\u0442\u0430. \u0429\u0435 \u043F\u043E\u043B\u0443\u0447\u0438\u0448 \u0441\u044A\u0449\u043E \u0438 0% \u043A\u043E\u043C\u0438\u0441\u0438\u043E\u043D\u043D\u0430 \u043D\u0430 \u043F\u0440\u043E\u0434\u0430\u0436\u0431\u0438\u0442\u0435 \u0441\u0438 \u0434\u043E \u043A\u0440\u0430\u044F \u043D\u0430 \u0433\u043E\u0434\u0438\u043D\u0430\u0442\u0430.\",height:\"100%\",id:\"LHkujVUOs\",layoutId:\"LHkujVUOs\",question:\"\u0418\u043C\u0430\u043C OLX \u043C\u0430\u0433\u0430\u0437\u0438\u043D \u0438 \u0438\u0441\u043A\u0430\u043C \u0434\u0430 \u043F\u0440\u043E\u0434\u0430\u0432\u0430\u043C \u0432 \u0413\u044A\u0440\u0446\u0438\u044F. \u041A\u0430\u043A?\",style:{width:\"100%\"},variant:\"N61FsPvBt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4e56jt-container\",layoutDependency:layoutDependency,layoutId:\"rALXIhsjs-container\",children:/*#__PURE__*/_jsx(Row,{answer:\"\u041A\u043E\u0433\u0430\u0442\u043E \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u0448 Vendora, \u043C\u043E\u0436\u0435\u0448 \u0434\u0430 \u0438\u0437\u043F\u0440\u0430\u0449\u0430\u0448 \u043F\u0440\u0430\u0442\u043A\u0438 \u0434\u043E \u0413\u044A\u0440\u0446\u0438\u044F \u0441\u044A\u0441 Speedy \u0438 BoxNow. \u041F\u043E \u0441\u044A\u0449\u0438\u044F \u043D\u0430\u0447\u0438\u043D, \u043A\u0430\u043A\u0442\u043E \u0438\u0437\u043F\u0440\u0430\u0449\u0430\u0448 \u0438 \u0434\u043E \u0411\u044A\u043B\u0433\u0430\u0440\u0438\u044F. \\n\\n\u0411\u0435\u0437 \u043D\u0430\u043B\u043E\u0436\u0435\u043D \u043F\u043B\u0430\u0442\u0435\u0436 \u0438 \u0432\u0438\u043D\u0430\u0433\u0438 \u0437\u0430 \u0441\u043C\u0435\u0442\u043A\u0430 \u043D\u0430 \u043A\u0443\u043F\u0443\u0432\u0430\u0447\u0430.\",height:\"100%\",id:\"rALXIhsjs\",layoutId:\"rALXIhsjs\",question:\"\u041A\u0430\u043A \u0441\u0435 \u0434\u043E\u0441\u0442\u0430\u0432\u044F\u0442 \u043F\u0440\u0430\u0442\u043A\u0438 \u0434\u043E \u0413\u044A\u0440\u0446\u0438\u044F?\",style:{width:\"100%\"},variant:\"N61FsPvBt\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ifwC7.framer-ocebwd, .framer-ifwC7 .framer-ocebwd { display: block; }\",\".framer-ifwC7.framer-11ac2c1 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1000px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ifwC7 .framer-qoa3ar-container, .framer-ifwC7 .framer-1ciuwo4-container, .framer-ifwC7 .framer-pbusdr-container, .framer-ifwC7 .framer-1fhom5c-container, .framer-ifwC7 .framer-1stfdif-container, .framer-ifwC7 .framer-gm6y3a-container, .framer-ifwC7 .framer-4e56jt-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-ifwC7 .framer-1wsm8gz, .framer-ifwC7 .framer-wkrs6m { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ifwC7.framer-11ac2c1 { gap: 0px; } .framer-ifwC7.framer-11ac2c1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ifwC7.framer-11ac2c1 > :first-child { margin-top: 0px; } .framer-ifwC7.framer-11ac2c1 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 450\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameryhgtyLAnh=withCSS(Component,css,\"framer-ifwC7\");export default FrameryhgtyLAnh;FrameryhgtyLAnh.displayName=\"Accordion 2\";FrameryhgtyLAnh.defaultProps={height:450,width:1e3};addFonts(FrameryhgtyLAnh,[{explicitInter:true,fonts:[]},...RowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryhgtyLAnh\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"450\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1000\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./yhgtyLAnh.map", "// Generated by Framer (06534cb)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inter-500\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-SemiBoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/vxBnBhH8768IFAXAb4Qf6wQHKs.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zSsEuoJdh8mcFVk976C05ZfQr8.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/b8ezwLrN7h2AUoPEENcsTMVJ0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/mvNEIBLyHbscgHtwfsByjXUz3XY.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/6FI2EneKzM3qBy5foOZXey7coCA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/qrVgiXNd6RuQjETYQiVQ9nqCk.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/NHHeAKJVP0ZWHk5YZnQQChIsBM.woff2\",weight:\"600\"}]}];export const css=['.framer-kLpae .framer-styles-preset-tzne5a:not(.rich-text-wrapper), .framer-kLpae .framer-styles-preset-tzne5a.rich-text-wrapper h6 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 15px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: 0px; --framer-line-height: 1.5em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, #666666); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-kLpae\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f26e712)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inter-500\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]}];export const css=['.framer-cc0O7 .framer-styles-preset-spc0js:not(.rich-text-wrapper), .framer-cc0O7 .framer-styles-preset-spc0js.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-letter-spacing: 0px; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, #666666); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-cc0O7\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f26e712)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inter-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"}]}];export const css=['.framer-Lsorn .framer-styles-preset-nm80lz:not(.rich-text-wrapper), .framer-Lsorn .framer-styles-preset-nm80lz.rich-text-wrapper h1 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 72px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-letter-spacing: -3.8px; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, #001122); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-Lsorn .framer-styles-preset-nm80lz:not(.rich-text-wrapper), .framer-Lsorn .framer-styles-preset-nm80lz.rich-text-wrapper h1 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 62px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-letter-spacing: -3.8px; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, #001122); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-Lsorn .framer-styles-preset-nm80lz:not(.rich-text-wrapper), .framer-Lsorn .framer-styles-preset-nm80lz.rich-text-wrapper h1 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-letter-spacing: -2.2px; --framer-line-height: 1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, #001122); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-Lsorn\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f7d95e4)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inter-700\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-vooHx .framer-styles-preset-7mjyzz:not(.rich-text-wrapper), .framer-vooHx .framer-styles-preset-7mjyzz.rich-text-wrapper h2 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 44px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -3.8px; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, #001122); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-vooHx\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (575e68f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-0b9Z1 .framer-styles-preset-50fsds:not(.rich-text-wrapper), .framer-0b9Z1 .framer-styles-preset-50fsds.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #0088ff; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #04b7c7; --framer-link-text-decoration: underline; }\"];export const className=\"framer-0b9Z1\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,Floating,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Loops from\"https://framerusercontent.com/modules/CJgw13h0ok22pdnRmFv0/Mo1OqIQs7oe7VjsPmyBF/Input_Loops.js\";import Card from\"#framer/local/canvasComponent/SxFXedzk3/SxFXedzk3.js\";import NavigationCopy from\"#framer/local/canvasComponent/UDAPzJXOF/UDAPzJXOF.js\";import Accordion2 from\"#framer/local/canvasComponent/yhgtyLAnh/yhgtyLAnh.js\";import*as sharedStyle from\"#framer/local/css/aAssKOZXg/aAssKOZXg.js\";import*as sharedStyle4 from\"#framer/local/css/AKQxX0asg/AKQxX0asg.js\";import*as sharedStyle2 from\"#framer/local/css/iaBy7WzBo/iaBy7WzBo.js\";import*as sharedStyle3 from\"#framer/local/css/QjLJez9eY/QjLJez9eY.js\";import*as sharedStyle1 from\"#framer/local/css/U8CNgDQQb/U8CNgDQQb.js\";import metadataProvider from\"#framer/local/webPageMetadata/Afeqt6Wxj/Afeqt6Wxj.js\";const NavigationCopyFonts=getFonts(NavigationCopy);const LoopsFonts=getFonts(Loops);const MotionDivWithFX=withFX(motion.div);const CardFonts=getFonts(Card);const Accordion2Fonts=getFonts(Accordion2);const breakpoints={EqScIrypm:\"(max-width: 759px)\",t0gqpSbCv:\"(min-width: 900px)\",Teo6raLIX:\"(min-width: 760px) and (max-width: 899px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-W5ymY\";const variantClassNames={EqScIrypm:\"framer-v-bk15eo\",t0gqpSbCv:\"framer-v-vdq75j\",Teo6raLIX:\"framer-v-1h8czu6\"};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"t0gqpSbCv\",Phone:\"EqScIrypm\",Tablet:\"Teo6raLIX\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"t0gqpSbCv\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);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{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onSubmittxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"EqScIrypm\")return false;return true;};const ref1=React.useRef(null);const ref2=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"EqScIrypm\")return true;return false;};const ref3=React.useRef(null);const ref4=React.useRef(null);const elementId=useRouteElementId(\"bV8CpFjU8\");const ref5=React.useRef(null);const elementId1=useRouteElementId(\"kdYcr89rY\");const ref6=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"t0gqpSbCv\",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-vdq75j\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Teo6raLIX:{width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-o4g11v-container hidden-bk15eo\",layoutScroll:true,nodeId:\"OhrqX6NxE\",scopeId:\"Afeqt6Wxj\",children:/*#__PURE__*/_jsx(NavigationCopy,{height:\"100%\",id:\"OhrqX6NxE\",layoutId:\"OhrqX6NxE\",style:{width:\"100%\"},variant:\"TUAPDQbO7\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:2160,pixelWidth:5030,positionX:\"right\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/RSyLmxhrxHDDyD3zxYxwPHD3Z00.png\",srcSet:\"https://framerusercontent.com/images/RSyLmxhrxHDDyD3zxYxwPHD3Z00.png?scale-down-to=512 512w,https://framerusercontent.com/images/RSyLmxhrxHDDyD3zxYxwPHD3Z00.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RSyLmxhrxHDDyD3zxYxwPHD3Z00.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RSyLmxhrxHDDyD3zxYxwPHD3Z00.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/RSyLmxhrxHDDyD3zxYxwPHD3Z00.png 5030w\"},className:\"framer-cogcgx hidden-bk15eo\",\"data-framer-name\":\"2 Columns Text Image\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-txn963\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mdtyza\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pc5szn\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Teo6raLIX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"25.84832026549565px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-font-size\":\"41.04362994551417px\"},children:[\"\u0423\u043F\u0440\u0430\u0432\u043B\u044F\u0432\u0430\u0439 \u043F\u0440\u043E\u0434\u0443\u043A\u0442\u0438\u0442\u0435 \",/*#__PURE__*/_jsx(\"br\",{}),\"\u0441\u0438 \u043F\u0440\u0435\u0437 Expanda\"]})})}),viewBox:\"0 0 456 82\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\u0423\u043F\u0440\u0430\u0432\u043B\u044F\u0432\u0430\u0439 \u043F\u0440\u043E\u0434\u0443\u043A\u0442\u0438\u0442\u0435 \u0441\u0438 \u043F\u0440\u0435\u0437 Expanda\"})}),className:\"framer-191wlit\",fonts:[\"GF;Instrument Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"\u0423\u0432\u0435\u043B\u0438\u0447\u0438 \u043F\u0440\u043E\u0434\u0430\u0436\u0431\u0438\u0442\u0435 \u0441\u0438 \u0447\u0440\u0435\u0437 \u043F\u0440\u0438\u0441\u044A\u0441\u0442\u0432\u0438\u0435 \u0432 \u043F\u043E\u0432\u0435\u0447\u0435 \u043E\u043D\u043B\u0430\u0439\u043D \u043C\u0430\u0433\u0430\u0437\u0438\u043D\u0438.  \u0411\u0435\u0437 \u0434\u0430 \u0433\u0443\u0431\u0438\u0448 \u0432\u0440\u0435\u043C\u0435.\"})}),className:\"framer-1x58n4t\",fonts:[\"GF;Instrument Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4utjlm\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-qnujgv-container\",id:\"qnujgv\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"zM9U48dLW\",ref:ref1,scopeId:\"Afeqt6Wxj\",children:[/*#__PURE__*/_jsx(Loops,{button:{buttonFont:{fontFamily:'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:15,buttonPaddingBottom:15,buttonPaddingLeft:15,buttonPaddingPerSide:false,buttonPaddingRight:15,buttonPaddingTop:15,buttonShadow:{shadowBlur:4,shadowColor:\"rgba(0, 0, 0, 0.25)\",shadowX:0,shadowY:2},color:\"rgb(255, 255, 255)\",fill:\"rgb(190, 84, 220)\",insetWhenDocked:5,isDocked:false,label:\"\u0417\u0430\u043F\u043E\u0447\u043D\u0438 \u0441\u0435\u0433\u0430\",shouldAppear:true,widthWhenDocked:100},font:{},gap:10,height:\"100%\",id:\"zM9U48dLW\",input:{borderRadius:8,color:\"rgb(0, 0, 0)\",fill:\"rgb(235, 235, 235)\",fixedHeight:50,height:true,padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,placeholder:\"name@email.com\",placeholderColor:\"rgba(0, 0, 0, 0.3)\"},layout:\"horizontal\",layoutId:\"zM9U48dLW\",loopsID:\"clw6fgzym01mo1e8ji3dgyl0t\",loopsUserGroup:\"Vendora lander\",onSubmit:onSubmittxyyif({overlay}),redirectAs:\"overlay\",style:{width:\"100%\"},width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref1,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"qnujgv\",offsetX:-27641654014587402e-21,offsetY:78.60938095336314,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation1,className:\"framer-1a47eu5\",exit:animation,initial:animation2,ref:ref2,role:\"dialog\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u0411\u043B\u0430\u0433\u043E\u0434\u0430\u0440\u0438\u043C \u0437\u0430 \u0438\u043D\u0442\u0435\u0440\u0435\u0441\u0430!\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u0429\u0435 \u0441\u0435 \u0441\u0432\u044A\u0440\u0436\u0435\u043C \u0441 \u0442\u0435\u0431 \u0441\u043A\u043E\u0440\u043E!\"})]}),className:\"framer-l2iip8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})})})})})]})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",positionX:\"right\",positionY:\"top\"},className:\"framer-w7zrm7 hidden-vdq75j hidden-1h8czu6\",\"data-framer-name\":\"mobile\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EqScIrypm:{background:{alt:\"\",fit:\"fill\",pixelHeight:2649,pixelWidth:2386,positionX:\"center\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/zR77xVGBGtDcnMaRkTqGDpVY.png\",srcSet:\"https://framerusercontent.com/images/zR77xVGBGtDcnMaRkTqGDpVY.png?scale-down-to=1024 922w,https://framerusercontent.com/images/zR77xVGBGtDcnMaRkTqGDpVY.png?scale-down-to=2048 1844w,https://framerusercontent.com/images/zR77xVGBGtDcnMaRkTqGDpVY.png 2386w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2649,pixelWidth:2386,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/zR77xVGBGtDcnMaRkTqGDpVY.png\",srcSet:\"https://framerusercontent.com/images/zR77xVGBGtDcnMaRkTqGDpVY.png?scale-down-to=1024 922w,https://framerusercontent.com/images/zR77xVGBGtDcnMaRkTqGDpVY.png?scale-down-to=2048 1844w,https://framerusercontent.com/images/zR77xVGBGtDcnMaRkTqGDpVY.png 2386w\"},className:\"framer-ec2is3\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yhgxuu\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u85wtd\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tkrbbr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\u0423\u043F\u0440\u0430\u0432\u043B\u044F\u0432\u0430\u0439 \u043F\u0440\u043E\u0434\u0443\u043A\u0442\u0438\u0442\u0435 \u0441\u0438 \u043F\u0440\u0435\u0437 Expanda\"})}),className:\"framer-46dmth\",fonts:[\"GF;Instrument Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"\u0423\u0432\u0435\u043B\u0438\u0447\u0438 \u043F\u0440\u043E\u0434\u0430\u0436\u0431\u0438\u0442\u0435 \u0441\u0438 \u0447\u0440\u0435\u0437 \u043F\u0440\u0438\u0441\u044A\u0441\u0442\u0432\u0438\u0435 \u0432 \u043F\u043E\u0432\u0435\u0447\u0435 \u043E\u043D\u043B\u0430\u0439\u043D \u043C\u0430\u0433\u0430\u0437\u0438\u043D\u0438.  \u0411\u0435\u0437 \u0434\u0430 \u0433\u0443\u0431\u0438\u0448 \u0432\u0440\u0435\u043C\u0435.\"})}),className:\"framer-xmzes6\",fonts:[\"GF;Instrument Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-15rn04z hidden-vdq75j hidden-1h8czu6\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-723u1-container\",id:\"723u1\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wehVjB8Vo\",ref:ref3,scopeId:\"Afeqt6Wxj\",children:[/*#__PURE__*/_jsx(Loops,{button:{buttonFont:{fontFamily:'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:15,buttonPaddingBottom:15,buttonPaddingLeft:15,buttonPaddingPerSide:false,buttonPaddingRight:15,buttonPaddingTop:15,buttonShadow:{shadowBlur:4,shadowColor:\"rgba(0, 0, 0, 0.25)\",shadowX:0,shadowY:2},color:\"rgb(255, 255, 255)\",fill:\"rgb(190, 84, 220)\",insetWhenDocked:5,isDocked:false,label:\"\u0417\u0430\u043F\u043E\u0447\u043D\u0438 \u0441\u0435\u0433\u0430\",shouldAppear:true,widthWhenDocked:100},font:{},gap:10,height:\"100%\",id:\"wehVjB8Vo\",input:{borderRadius:8,color:\"rgb(0, 0, 0)\",fill:\"rgb(235, 235, 235)\",fixedHeight:50,height:true,padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,placeholder:\"name@email.com\",placeholderColor:\"rgba(0, 0, 0, 0.3)\"},layout:\"vertical\",layoutId:\"wehVjB8Vo\",loopsID:\"clw6fgzym01mo1e8ji3dgyl0t\",loopsUserGroup:\"Vendora lander\",onSubmit:onSubmittxyyif({overlay:overlay1}),redirectAs:\"overlay\",style:{width:\"100%\"},width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref3,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"723u1\",offsetX:-27641654014587402e-21,offsetY:78.60938095336314,onDismiss:overlay1.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation1,className:\"framer-zvlzyw\",exit:animation,initial:animation2,ref:ref4,role:\"dialog\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u0411\u043B\u0430\u0433\u043E\u0434\u0430\u0440\u0438\u043C \u0437\u0430 \u0438\u043D\u0442\u0435\u0440\u0435\u0441\u0430!\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u0429\u0435 \u0441\u0435 \u0441\u0432\u044A\u0440\u0436\u0435\u043C \u0441 \u0442\u0435\u0431 \u0441\u043A\u043E\u0440\u043E!\"})]}),className:\"framer-1ul0m5l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-km5w33\",\"data-framer-name\":\"Logos\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1509ojy\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:120,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qVdd6r1Haw9I2Tpkg9WgG9J4ZI4.png\"},className:\"framer-1385010\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EqScIrypm:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:282,pixelWidth:1676,positionX:\"center\",positionY:\"center\",sizes:`calc(min(1000px, ${componentViewport?.width||\"100vw\"}) * 0.3)`,src:\"https://framerusercontent.com/images/ftA1guVv6rr0rX54ZKAGPG6Zg64.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ftA1guVv6rr0rX54ZKAGPG6Zg64.png?scale-down-to=512 512w,https://framerusercontent.com/images/ftA1guVv6rr0rX54ZKAGPG6Zg64.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ftA1guVv6rr0rX54ZKAGPG6Zg64.png 1676w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:282,pixelWidth:1676,positionX:\"center\",positionY:\"center\",sizes:`calc(min(1000px, ${componentViewport?.width||\"100vw\"}) * 0.15)`,src:\"https://framerusercontent.com/images/ftA1guVv6rr0rX54ZKAGPG6Zg64.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ftA1guVv6rr0rX54ZKAGPG6Zg64.png?scale-down-to=512 512w,https://framerusercontent.com/images/ftA1guVv6rr0rX54ZKAGPG6Zg64.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ftA1guVv6rr0rX54ZKAGPG6Zg64.png 1676w\"},className:\"framer-8vlwp9\",\"data-framer-name\":\"Logo\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:409,pixelWidth:617,positionX:\"center\",positionY:\"center\",sizes:\"73px\",src:\"https://framerusercontent.com/images/ad4r7dShV8oTLSi2hBWr6AIR60U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ad4r7dShV8oTLSi2hBWr6AIR60U.png?scale-down-to=512 512w,https://framerusercontent.com/images/ad4r7dShV8oTLSi2hBWr6AIR60U.png 617w\"},className:\"framer-1raif9s\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:279,pixelWidth:1042,positionX:\"center\",positionY:\"center\",sizes:\"101px\",src:\"https://framerusercontent.com/images/au3Qv5Ti1rKEUd72Iwx7HqfEY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/au3Qv5Ti1rKEUd72Iwx7HqfEY.png?scale-down-to=512 512w,https://framerusercontent.com/images/au3Qv5Ti1rKEUd72Iwx7HqfEY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/au3Qv5Ti1rKEUd72Iwx7HqfEY.png 1042w\"},className:\"framer-1qdlu3k\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:130,pixelWidth:362,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/7PurKI6G0tP0AhVPZsPTFcbxneA.png\"},className:\"framer-xkemof\",\"data-framer-name\":\"Logo\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-g7dytc\",\"data-framer-name\":\"Testimonials 3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ti4ql2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k2ojom\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x57x8v\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2po6tk\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:298,pixelWidth:300,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/E3GsGlakuD62NfjG1CVi1OKbqPA.png\"},className:\"framer-17l8rke\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tz2g85\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"\u0423\u043F\u0440\u0430\u0432\u043B\u044F\u0432\u0430\u0439 \u0432\u0441\u0438\u0447\u043A\u0438 \",/*#__PURE__*/_jsx(\"br\",{}),\"\u043A\u0430\u043D\u0430\u043B\u0438 \u043F\u0440\u0435\u0437 Expanda\"]})}),className:\"framer-kgsp57\",fonts:[\"GF;Instrument Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\u0421\u044A\u0437\u0434\u0430\u0432\u0430\u0439 \u043D\u043E\u0432\u0438\u0442\u0435 \u0441\u0438 \u043E\u0431\u044F\u0432\u0438 \u043F\u0440\u0435\u0437 Expanda. \u0421\u043F\u043E\u0434\u0435\u043B\u044F\u0439 \u0433\u0438 \u0441 \u0435\u0434\u0438\u043D \u043A\u043B\u0438\u043A \u0432\u044A\u0432 \u0432\u0441\u0438\u0447\u043A\u0438 \u043E\u0441\u0442\u0430\u043D\u0430\u043B\u0438 \u043C\u0430\u0433\u0430\u0437\u0438\u043D\u0438 \u0438 \u043C\u0430\u0440\u043A\u0435\u0442\u043F\u043B\u0435\u0439\u0441\u0438. \u0423\u043F\u0440\u0430\u0432\u043B\u044F\u0432\u0430\u0439 \u0432\u0441\u0438\u0447\u043A\u0438 \u043A\u0430\u043D\u0430\u043B\u0438 \u043F\u0440\u0435\u0437 Expanda.\"})}),className:\"framer-1m1lxfd\",fonts:[\"GF;Instrument Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1at0cn6\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vtpsi8\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:361,pixelWidth:361,src:\"https://framerusercontent.com/images/Tb8jHCziD2j8II5Znn84Th0ow.png\"},className:\"framer-12qxcld\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sr2v9w\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\u0418\u0437\u043F\u0440\u043E\u0431\u0432\u0430\u0439 \u0431\u0435\u0437\u043F\u043B\u0430\u0442\u043D\u043E \u0431\u0435\u0437 \u043E\u0431\u0432\u044A\u0440\u0437\u0432\u0430\u043D\u0435\"})}),className:\"framer-1m0vtuf\",fonts:[\"GF;Instrument Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"4 \u0441\u0435\u0434\u043C\u0438\u0446\u0438 \u0431\u0435\u0437\u043F\u043B\u0430\u0442\u0435\u043D \u043F\u0435\u0440\u0438\u043E\u0434 \u0438 30 \u0431\u0435\u0437\u043F\u043B\u0430\u0442\u043D\u0438 \u043E\u0431\u044F\u0432\u0438.\"})}),className:\"framer-1s0omv1\",fonts:[\"GF;Instrument Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1911ful\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x110t8\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:159,pixelWidth:159,src:\"https://framerusercontent.com/images/VveJSy8szwyEqFSJp3LTJt2sVag.png\"},className:\"framer-edrp4k\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8i1id2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"\u041A\u043E\u043D\u0441\u0443\u043B\u0442\u0438\u0440\u0430\u0439 \u0441\u0435 \u0441 \u043D\u0430\u0441  \u043A\u0430\u043A \u0434\u0430 \u0443\u0441\u043A\u043E\u0440\u0438\u0448 \",/*#__PURE__*/_jsx(\"br\",{}),\"\u043F\u0440\u043E\u0434\u0430\u0436\u0431\u0438\u0442\u0435 \u0441\u0438\"]})}),className:\"framer-7v31jw\",fonts:[\"GF;Instrument Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\u041D\u0438\u0435 \u0441\u043C\u0435 \u0435\u043A\u0441\u043F\u0435\u0440\u0442\u0438 \u0432\u044A\u0432 \u0432\u0441\u0438\u0447\u043A\u0438 \u043C\u0430\u0440\u043A\u0435\u0442\u043F\u043B\u0435\u0439\u0441\u0438 \u0438 \u043E\u043D\u043B\u0430\u0439\u043D \u043C\u0430\u0433\u0430\u0437\u0438\u043D\u0438, \u0441 \u043A\u043E\u0438\u0442\u043E \u043F\u0430\u0440\u0442\u043D\u0438\u0440\u0430\u043C\u0435 \u041D\u0430\u0441\u0440\u0435\u0449\u0430 \u0441\u043C\u0435 \u0437\u0430 \u0432\u044A\u043F\u0440\u043E\u0441\u0438 \u043E\u0442 \u0432\u0441\u044F\u043A\u0430\u043A\u0432\u043E \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u043E - \u0440\u0430\u0441\u0442\u0435\u0436 \u043D\u0430 \u0431\u0438\u0437\u043D\u0435\u0441\u0430, \u0441\u0447\u0435\u0442\u043E\u0432\u043E\u0434\u0441\u0442\u0432\u043E, \u043F\u0440\u0430\u0432\u0438\u043B\u0430 \u043D\u0430 \u043C\u0430\u0440\u043A\u0435\u0442\u043F\u043B\u0435\u0439\u0441\u0438\u0442\u0435.\"})}),className:\"framer-13enmj9\",fonts:[\"GF;Instrument Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xq7cte\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s6tiab\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18x2jmu\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:375,pixelWidth:375,src:\"https://framerusercontent.com/images/kctvK2UBko654Eh9OOn58k3dx8.png\"},className:\"framer-1sllkj0\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bdskfm\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"\u0421\u043B\u0435\u0434\u0438 \u043C\u0435\u0442\u0440\u0438\u043A\u0438 \u0437\u0430 \",/*#__PURE__*/_jsx(\"br\",{}),\"\u0432\u0441\u0438\u0447\u043A\u0438 \u043E\u0431\u044F\u0432\u0438\"]})}),className:\"framer-64lvah\",fonts:[\"GF;Instrument Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\u0421\u043B\u0435\u0434\u0438 \u0443\u0441\u043F\u0435\u0432\u0430\u0435\u043C\u043E\u0441\u0442\u0442\u0430 \u043D\u0430 \u043E\u0431\u044F\u0432\u0438\u0442\u0435 \u0441\u0438 \u0432\u044A\u0432 \u0432\u0441\u0438\u0447\u043A\u0438 \u043A\u0430\u043D\u0430\u043B\u0438 \u043F\u0440\u0435\u0437  Expanda.\"})}),className:\"framer-1md6bjs\",fonts:[\"GF;Instrument Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h755ar\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17qkx4g\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:298,pixelWidth:300,src:\"https://framerusercontent.com/images/LDPioPgSDLZXg8bCQx0Ce9RBMqo.png\"},className:\"framer-1wy4cpl\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rahr4u\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\u0417\u0430\u044F\u0432\u0438 \u043D\u043E\u0432\u0430 \u0438\u043D\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044F\"})}),className:\"framer-w81old\",fonts:[\"GF;Instrument Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\u0418\u043C\u0430\u0448 \u043B\u0438\u0447\u0435\u043D \u0443\u0435\u0431\u0441\u0430\u0439\u0442? \u0421\u043A\u043B\u0430\u0434\u043E\u0432\u0430 \u0441\u0438\u0441\u0442\u0435\u043C\u0430? \u041F\u0440\u043E\u0434\u0430\u0432\u0430\u0448 \u0432 \u043E\u043D\u043B\u0430\u0439\u043D \u043C\u0430\u0433\u0430\u0437\u0438\u043D, \u043A\u043E\u0439\u0442\u043E \u043D\u0435 \u043F\u043E\u0434\u0434\u044A\u0440\u0436\u0430\u043C\u0435? \u0421\u0432\u044A\u0440\u0436\u0438 \u0441\u0435 \u0441 \u043D\u0430\u0441, \u043D\u0430\u0441\u0440\u0435\u0449\u0430 \u0441\u043C\u0435 \u0434\u0430 \u0434\u043E\u0431\u0430\u0432\u0438\u043C \u0438\u043D\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044F \u043A\u044A\u043C \u0436\u0435\u043B\u0430\u043D\u0430\u0442\u0430 \u043E\u0442 \u0442\u0435\u0431 \u0441\u0438\u0441\u0442\u0435\u043C\u0430. \u0410\u043A\u043E \u0438\u043C\u0430\u0448 \u0432\u044A\u0437\u043C\u043E\u0436\u043D\u043E\u0441\u0442, \u043C\u043E\u0436\u0435 \u043D\u0430\u043F\u0440\u0430\u0432\u043E \u0434\u0430 \u0441\u0435 \u0438\u043D\u0442\u0435\u0433\u0440\u0438\u0440\u0430\u0448 \u0441 \u043D\u0430\u0448\u0438\u044F API.\"})}),className:\"framer-1as7eag\",fonts:[\"GF;Instrument Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fdxl3e\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gumihd\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:260,pixelWidth:260,src:\"https://framerusercontent.com/images/f3EMmSVeqkVMzbXBycY1ektus.png\"},className:\"framer-lfmn4p\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jvymbd\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\u0412\u043A\u0430\u0440\u0430\u0439 \u0432\u0435\u0447\u0435 \u0441\u044A\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430\u0449\u0438\u044F \u0441\u0438 \u043C\u0430\u0433\u0430\u0437\u0438\u043D \u0432 Expanda\"})}),className:\"framer-elv4wv\",fonts:[\"GF;Instrument Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"\u0411\u0435\u0437 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 \u043A\u043E\u043B\u043A\u043E \u0435 \u0433\u043E\u043B\u044F\u043C \u0438\u043D\u0432\u0435\u0440\u0442\u0430\u0440\u044A\u0442 \u0442\u0438, \u043C\u043E\u0436\u0435\u0448 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E \u0434\u0430 \u0433\u043E \u0437\u0430\u0440\u0435\u0434\u0438\u0448 \u0432 Expanda. \u041F\u043E\u0434\u0434\u044A\u0440\u0436\u0430\u043C\u0435 \u043E\u043F\u0446\u0438\u0438 \u0437\u0430 \u0438\u043C\u043F\u043E\u0440\u0442 \u043E\u0442 \u0441\u0432\u044A\u0440\u0437\u0430\u043D\u0438\u0442\u0435 \u043C\u0430\u0433\u0430\u0437\u0438\u043D\u0438 \u0438 \u043C\u0430\u0440\u043A\u0435\u0442\u043F\u043B\u0435\u0439\u0441\u0438.\"})}),className:\"framer-1r6kvhg\",fonts:[\"GF;Instrument Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-42kvur\",\"data-framer-name\":\"2 Columns Text Image\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-jf66kh\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zivi2d\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EqScIrypm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\u0412\u0441\u0435\u043A\u0438 \u043D\u043E\u0432 \u043A\u0430\u043D\u0430\u043B \u0437\u0430 \u043F\u0440\u043E\u0434\u0430\u0436\u0431\u0438 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0443\u0432\u0435\u043B\u0438\u0447\u0438 \u043F\u0440\u043E\u0434\u0430\u0436\u0431\u0438\u0442\u0435 \u0441 \u043D\u0430\u0434  15%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\u0412\u0441\u0435\u043A\u0438 \u043D\u043E\u0432 \u043A\u0430\u043D\u0430\u043B \u0437\u0430 \u043F\u0440\u043E\u0434\u0430\u0436\u0431\u0438 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0443\u0432\u0435\u043B\u0438\u0447\u0438 \u043F\u0440\u043E\u0434\u0430\u0436\u0431\u0438\u0442\u0435 \u0441 \u043D\u0430\u0434  15%\"})}),className:\"framer-1wldbu9\",fonts:[\"GF;Instrument Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7zgup0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-tzne5a\",\"data-styles-preset\":\"aAssKOZXg\",style:{\"--framer-text-alignment\":\"center\"},children:\"\u041D\u0435\u043C\u0430\u043B\u043A\u043E \u0442\u044A\u0440\u0433\u043E\u0432\u0446\u0438 \u0443\u0434\u0432\u043E\u044F\u0432\u0430\u0442 \u043E\u0431\u043E\u0440\u0442\u0430 \u0441\u0438, \u043A\u043E\u0433\u0430\u0442\u043E \u0443\u0442\u0432\u044A\u0440\u0434\u044F\u0442 \u0431\u0438\u0437\u043D\u0435\u0441\u0430 \u0441\u0438 \u0438\u0437\u0432\u044A\u043D \u0411\u044A\u043B\u0433\u0430\u0440\u0438\u044F\"})}),className:\"framer-118ax2c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15uspr2\",\"data-framer-name\":\"2 Columns Text Image\",id:elementId,ref:ref5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-y7ljpy\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u525vr\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EqScIrypm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\u0421 Expanda\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\u0421 Expanda\"})}),className:\"framer-1wmx9l3\",fonts:[\"GF;Instrument Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o29av\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:231,pixelWidth:231,src:\"https://framerusercontent.com/images/JBRfTSs7ok4f0hnBzL8rdU3MAi0.png\"},className:\"framer-15riyei\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItOTAw\",\"--framer-font-family\":'\"Inter\", sans-serif',\"--framer-font-weight\":\"900\"},children:\"\u041C\u0438\u0433\u043D\u043E\u0432\u0435\u043D\u043E \u0441\u043F\u043E\u0434\u0435\u043B\u044F\u0448 \"}),\"\u043E\u0431\u044F\u0432\u0430 \u0432\u044A\u0432 \u0432\u0441\u044F\u043A\u0430 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0430, \u043A\u043E\u044F\u0442\u043E \u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430 \u0432 Expanda.\"]})}),className:\"framer-yylrtv\",fonts:[\"GF;Inter-600\",\"GF;Inter-900\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n2zr1n\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:231,pixelWidth:231,src:\"https://framerusercontent.com/images/JBRfTSs7ok4f0hnBzL8rdU3MAi0.png\"},className:\"framer-vlnjzp\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"\u0410\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItOTAw\",\"--framer-font-family\":'\"Inter\", sans-serif',\"--framer-font-weight\":\"900\"},children:\"\u0434\u0435\u0430\u043A\u0442\u0438\u0432\u0438\u0440\u0430\u0448\"}),\" \u0438 \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItOTAw\",\"--framer-font-family\":'\"Inter\", sans-serif',\"--framer-font-weight\":\"900\"},children:\"\u0440\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u0430\u0448 \"}),\"\u043E\u0431\u044F\u0432\u0438 \u043E\u0442 \u0432\u0441\u0438\u0447\u043A\u0438 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0438.\"]})}),className:\"framer-18nhzpk\",fonts:[\"GF;Inter-600\",\"GF;Inter-900\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hj7baq\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:231,pixelWidth:231,src:\"https://framerusercontent.com/images/JBRfTSs7ok4f0hnBzL8rdU3MAi0.png\"},className:\"framer-skur4l\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\u0421\u043B\u0435\u0434\u0438\u0448 \u0446\u0435\u043D\u0442\u0440\u0430\u043B\u0438\u0437\u0438\u0440\u0430\u043D \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u0435\u043D \u043F\u0430\u043D\u0435\u043B, \u043A\u043E\u0439\u0442\u043E \u043E\u0431\u0435\u0434\u0438\u043D\u044F\u0432\u0430 \u0434\u0430\u043D\u043D\u0438\u0442\u0435 \u043E\u0442 \u0432\u0441\u0438\u0447\u043A\u0438\u0442\u0435 \u0442\u0438 \u043A\u0430\u043D\u0430\u043B\u0438.\"})}),className:\"framer-gek4rz\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vt0kjy\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:231,pixelWidth:231,src:\"https://framerusercontent.com/images/JBRfTSs7ok4f0hnBzL8rdU3MAi0.png\"},className:\"framer-1jshem8\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\u0412\u0441\u0438\u0447\u043A\u0438 \u0441\u044A\u043E\u0431\u0449\u0435\u043D\u0438\u044F \u0438 \u0438\u0437\u0432\u0435\u0441\u0442\u0438\u044F \u043D\u0430 \u0435\u0434\u043D\u043E \u043C\u044F\u0441\u0442\u043E. \u0420\u0430\u0437\u043F\u043E\u043B\u0430\u0433\u0430\u0448 \u0441 AI, \u043A\u043E\u0439\u0442\u043E \u043C\u043E\u0436\u0435 \u0434\u0430 \u043E\u0442\u0433\u043E\u0432\u0430\u0440\u044F \u043D\u0430 \u0431\u0430\u0437\u043E\u0432\u0438 \u0432\u044A\u043F\u0440\u043E\u0441\u0438. \"})}),className:\"framer-adlwer\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w8lugh\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:231,pixelWidth:231,src:\"https://framerusercontent.com/images/JBRfTSs7ok4f0hnBzL8rdU3MAi0.png\"},className:\"framer-1oq2r3l\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\u041F\u043E\u043B\u0443\u0447\u0430\u0432\u0430\u0448 \u0430\u0441\u0438\u0441\u0442\u0435\u043D\u0446\u0438\u044F \u0438 \u043D\u0430\u0441\u043E\u043A\u0438, \u0437\u0430 \u0434\u0430 \u0443\u0441\u043A\u043E\u0440\u0438\u0448 \u043D\u0430\u0432\u043B\u0438\u0437\u0430\u043D\u0435\u0442\u043E \u0441\u0438 \u0432\u044A\u0432 \u0432\u0441\u044F\u043A\u0430 \u043D\u043E\u0432\u0430 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0430.\"})}),className:\"framer-lbe8dg\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14mqzme\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1afjmnk\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EqScIrypm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\u0411\u0435\u0437 Expanda\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\u0411\u0435\u0437 Expanda\"})}),className:\"framer-1dny1z4\",fonts:[\"GF;Instrument Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w0ndc5\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:231,pixelWidth:231,src:\"https://framerusercontent.com/images/EiptxHRfyll5eSmoiJ9xYeVloKU.png\"},className:\"framer-609tff\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"~5 \u0447\u0430\u0441\u0430 \u0437\u0430 \u043A\u0430\u0447\u0432\u0430\u043D\u0435 \u043D\u0430 100 \u043E\u0431\u044F\u0432\u0438 \u0437\u0430 \u0432\u0441\u044F\u043A\u0430 \u043D\u043E\u0432\u0430 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0430.\"})}),className:\"framer-1welys7\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c9k7qe\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:231,pixelWidth:231,src:\"https://framerusercontent.com/images/EiptxHRfyll5eSmoiJ9xYeVloKU.png\"},className:\"framer-3y1mev\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Overselling \u0430\u043A\u043E \u043F\u0440\u043E\u0434\u0430\u0434\u0435\u043D\u0438\u0442\u0435 \u043F\u0440\u043E\u0434\u0443\u043A\u0442\u0438 \u043D\u0435 \u0441\u0435 \u0430\u043A\u0442\u0443\u0430\u043B\u0438\u0437\u0438\u0440\u0430\u0442 \u0432\u044A\u0432 \u0432\u0441\u0438\u0447\u043A\u0438 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0438.\"})}),className:\"framer-106f8cs\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qwfc5k\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:231,pixelWidth:231,src:\"https://framerusercontent.com/images/EiptxHRfyll5eSmoiJ9xYeVloKU.png\"},className:\"framer-1jnxby0\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0438\u0442\u0435 \u0437\u0430 \u043F\u0440\u043E\u0434\u0430\u0436\u0431\u0438\u0442\u0435 \u0441\u0430 \u0440\u0430\u0437\u0445\u0432\u044A\u0440\u043B\u044F\u043D\u0438 \u0438\u0437 \u0440\u0430\u0437\u043B\u0438\u0447\u043D\u0438\u0442\u0435 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0438.\"})}),className:\"framer-18brwph\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1actvh9\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:231,pixelWidth:231,src:\"https://framerusercontent.com/images/EiptxHRfyll5eSmoiJ9xYeVloKU.png\"},className:\"framer-bbc222\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\u041B\u0435\u0441\u043D\u043E \u0433\u0443\u0431\u0438\u0448 \u0432\u0440\u0435\u043C\u0435 \u0432 \u043A\u043E\u043C\u0443\u043D\u0438\u043A\u0430\u0446\u0438\u044F \u0441 \u043A\u043B\u0438\u0435\u043D\u0442\u0438, \u0437\u0430\u0449\u043E\u0442\u043E \u0432\u0441\u0438\u0447\u043A\u0438 \u0437\u0430\u043F\u0438\u0442\u0432\u0430\u043D\u0438\u044F \u0438\u0434\u0432\u0430\u0442 \u043E\u0442 \u0440\u0430\u0437\u043B\u0438\u0447\u043D\u0438 \u043A\u0430\u043D\u0430\u043B\u0438 \u043D\u0430 \u043A\u043E\u043C\u0443\u043D\u0438\u043A\u0430\u0446\u0438\u044F.\"})}),className:\"framer-lkf2qv\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w4tnwc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:231,pixelWidth:231,src:\"https://framerusercontent.com/images/EiptxHRfyll5eSmoiJ9xYeVloKU.png\"},className:\"framer-wftr1t\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\u0411\u0430\u0432\u043D\u043E \u0443\u0441\u0432\u043E\u044F\u0432\u0430\u0448 \u043D\u043E\u0432\u0438 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0438. \u0412\u0441\u044F\u043A\u0430 \u0438\u043C\u0430 \u0440\u0430\u0437\u043B\u0438\u0447\u043D\u0438 \u0443\u0441\u043B\u043E\u0432\u0438\u044F \u0437\u0430 \u043F\u043E\u043B\u0437\u0432\u0430\u043D\u0435, \u043F\u043E\u0432\u0435\u0434\u0435\u043D\u0438\u0435 \u043D\u0430 \u043A\u043B\u0438\u0435\u043D\u0442\u0438\u0442\u0435, \u0442\u0430\u043A\u0442\u0438\u043A\u0438 \u0437\u0430 \u0443\u0441\u043F\u0435\u0448\u0435\u043D \u043C\u0430\u0433\u0430\u0437\u0438\u043D.\"})}),className:\"framer-x18dyn\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11lm3vj\",\"data-framer-name\":\"Testimonials\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EqScIrypm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.2px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\u041A\u0430\u043A\u0432\u043E \u043C\u0438\u0441\u043B\u044F\u0442 \u043A\u043B\u0438\u0435\u043D\u0442\u0438\u0442\u0435 \u043D\u0438:\"})})},Teo6raLIX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.2px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\u041A\u0430\u043A\u0432\u043E \u043C\u0438\u0441\u043B\u044F\u0442 \u043A\u043B\u0438\u0435\u043D\u0442\u0438\u0442\u0435 \u043D\u0438:\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\u041A\u0430\u043A\u0432\u043E \u043C\u0438\u0441\u043B\u044F\u0442 \u043A\u043B\u0438\u0435\u043D\u0442\u0438\u0442\u0435 \u043D\u0438:\"})}),className:\"framer-l12kkk\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a609cx\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sxi5p7\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r7gr3o\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:44,pixelWidth:200,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wprm2ct7cFJE0w3ibpx3RJJaw.png\"},className:\"framer-zmvoh9\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bsvdq4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"\u0421\u0432\u0435\u0442\u043E\u0437\u0430\u0440 \u0421\u0442\u043E\u0435\u0432\"})}),className:\"framer-3lolsc\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://stuff.bg\",motionChild:true,nodeId:\"hHIzTQqWR\",openInNewTab:true,scopeId:\"Afeqt6Wxj\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-50fsds\",\"data-styles-preset\":\"U8CNgDQQb\",children:\"Stuff.bg\"})})})}),className:\"framer-joit6\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Expanda \u0441\u0435 \u043F\u043E\u044F\u0432\u0438 \u0432 \u043F\u0440\u0430\u0432\u0438\u043B\u043D\u0438\u044F \u0437\u0430 \u043D\u0430\u0441 \u043C\u043E\u043C\u0435\u043D\u0442, \u043A\u043E\u0433\u0430\u0442\u043E \u0430\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0430\u0442\u0438\u0432\u043D\u0438\u0442\u0435 \u0443\u0441\u0438\u043B\u0438\u044F \u0437\u0430 \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u0440\u0430\u0437\u043B\u0438\u0447\u043D\u0438\u0442\u0435 \u043A\u0430\u043D\u0430\u043B\u0438 \u0437\u0430 \u0435\u043B\u0435\u043A\u0442\u0440\u043E\u043D\u043D\u0430 \u0442\u044A\u0440\u0433\u043E\u0432\u0438\u044F \u0437\u0430\u043F\u043E\u0447\u043D\u0430\u0445\u0430 \u0434\u0430 \u043D\u0438 \u0438\u0434\u0432\u0430\u0442 \u0432 \u043F\u043E\u0432\u0435\u0447\u0435. \u0421 Expanda \u043D\u0438\u0435 \u0443\u0441\u043F\u044F\u0445\u043C\u0435 \u0434\u0430 \u0440\u0430\u0446\u0438\u043E\u043D\u0430\u043B\u0438\u0437\u0438\u0440\u0430\u043C\u0435 \u043F\u043E\u0434\u0445\u043E\u0434\u0430 \u0441\u0438. \u0421\u0435\u0433\u0430 \u0441\u044A\u0437\u0434\u0430\u0432\u0430\u043C\u0435 \u043E\u0431\u044F\u0432\u0430\u0442\u0430 \u0441\u0430\u043C\u043E \u0432\u0435\u0434\u043D\u044A\u0436 \u0438 \u0441 2-3 \u043A\u043B\u0438\u043A\u0432\u0430\u043D\u0438\u044F \u044F \u0441\u0438\u043D\u0445\u0440\u043E\u043D\u0438\u0437\u0438\u0440\u0430\u043C\u0435 \u0441 \u043D\u044F\u043A\u043E\u043B\u043A\u043E \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0438. \u0422\u043E\u0432\u0430 \u043D\u0438 \u0441\u043F\u0435\u0441\u0442\u044F\u0432\u0430 \u043C\u043D\u043E\u0433\u043E \u0432\u0440\u0435\u043C\u0435, \u043A\u043E\u0435\u0442\u043E \u043C\u043E\u0436\u0435\u043C \u0434\u0430 \u0432\u043B\u043E\u0436\u0438\u043C \u0432 \u0440\u0430\u0437\u043B\u0438\u0447\u043D\u0438 \u0438\u043D\u0438\u0446\u0438\u0430\u0442\u0438\u0432\u0438 \u0437\u0430 \u0443\u0432\u0435\u043B\u0438\u0447\u0430\u0432\u0430\u043D\u0435 \u043D\u0430 \u043F\u0440\u043E\u0434\u0430\u0436\u0431\u0438\u0442\u0435. \u0415\u043A\u0438\u043F\u044A\u0442 \u043D\u0430 Expanda \u0435 \u0441 \u043D\u0430\u0441 \u043F\u0440\u0435\u0437 \u0446\u044F\u043B\u043E\u0442\u043E \u0432\u0440\u0435\u043C\u0435, \u0438 \u0430\u0437 \u0432\u044F\u0440\u0432\u0430\u043C \u0447\u0435 \u0442\u043E\u0432\u0430 \u0435 \u0441\u0430\u043C\u043E \u043D\u0430\u0447\u0430\u043B\u043E\u0442\u043E \u043D\u0430 \u0435\u0434\u043D\u0430 \u0443\u0441\u043F\u0435\u0448\u043D\u0430 \u0438 \u043F\u0440\u043E\u0434\u044A\u043B\u0436\u0438\u0442\u0435\u043B\u043D\u0430 \u0441\u044A\u0432\u043C\u0435\u0441\u0442\u043D\u0430 \u0434\u0435\u0439\u043D\u043E\u0441\u0442.\"})}),className:\"framer-1no5u7g\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1knclgc\",\"data-framer-name\":\"Pricing\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yvz3ic\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-nm80lz\",\"data-styles-preset\":\"iaBy7WzBo\",style:{\"--framer-text-alignment\":\"center\"},children:\"\u041A\u043E\u043B\u043A\u043E \u0441\u0442\u0440\u0443\u0432\u0430 Expanda?\"})}),className:\"framer-1samt1m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-tzne5a\",\"data-styles-preset\":\"aAssKOZXg\",style:{\"--framer-text-alignment\":\"center\"},children:\"\u0412 \u0446\u0435\u043D\u043E\u043E\u0431\u0440\u0430\u0437\u0443\u0432\u0430\u043D\u0435\u0442\u043E \u0443\u0447\u0430\u0441\u0442\u0432\u0430\u0442 \u0435\u0434\u043D\u043E\u0432\u0440\u0435\u043C\u0435\u043D\u043D\u043E \u0434\u0432\u0430 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u0430: \u043F\u043E\u043A\u0443\u043F\u043A\u0430 \u043D\u0430 \u0441\u043B\u043E\u0442\u043E\u0432\u0435 \u0438 \u043C\u0435\u0441\u0435\u0447\u0435\u043D \u0430\u0431\u043E\u043D\u0430\u043C\u0435\u043D\u0442.\"})}),className:\"framer-wxofkv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1knccqi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EqScIrypm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ol\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{children:\"\u0421\u043B\u043E\u0442\u043E\u0432\u0435\"})})})}),fonts:[\"GF;Inter-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-7mjyzz\",\"data-styles-preset\":\"QjLJez9eY\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--framer-text-alignment\":\"center\"},children:\"\u0421\u043B\u043E\u0442\u043E\u0432\u0435\"})})})}),className:\"framer-1xaw6rv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-tzne5a\",\"data-styles-preset\":\"aAssKOZXg\",style:{\"--framer-text-alignment\":\"center\"},children:\"\u0417\u0430\u043A\u0443\u043F\u0443\u0432\u0430\u043D\u0435 \u043D\u0430 \u0441\u043B\u043E\u0442\u043E\u0432\u0435 \u0437\u0430 \u043E\u0431\u044F\u0432\u0438. \u0412\u0441\u044F\u043A\u0430 \u043E\u0431\u044F\u0432\u0430 \u0432 Expanda \u0437\u0430\u0435\u043C\u0430 \u0435\u0434\u0438\u043D \u0441\u043B\u043E\u0442, \u041D\u0435\u0437\u0430\u0432\u0438\u0441\u0438\u043C\u043E \u0434\u0430\u043B\u0438 \u0435 \u0438\u043C\u043F\u043E\u0440\u0442\u0438\u0440\u0430\u043D\u0430 \u0438\u043B\u0438 \u0441\u044A\u0437\u0434\u0430\u0434\u0435\u043D\u0430 \u043F\u0440\u0435\u0437 Expanda. \u0412\u0435\u0434\u043D\u044A\u0436 \u0441\u044A\u0437\u0434\u0430\u0434\u0435\u043D\u0430, \u043E\u0431\u044F\u0432\u0430 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0441\u043F\u043E\u0434\u0435\u043B\u044F \u0432\u044A\u0432 \u0432\u0441\u0438\u0447\u043A\u0438 \u0441\u0432\u044A\u0440\u0437\u0430\u043D\u0438 \u043A\u0430\u043D\u0430\u043B\u0438 \u0438 \u0434\u0430 \u0441\u0435 \u0443\u043F\u0440\u0430\u0432\u043B\u044F\u0432\u0430 \u0431\u0435\u0437 \u043E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u0438\u044F.\"})}),className:\"framer-43eqm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-phu7fs\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:154,width:\"320px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-14rbjz3-container\",nodeId:\"sRTvNfw7H\",scopeId:\"Afeqt6Wxj\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"sRTvNfw7H\",layoutId:\"sRTvNfw7H\",style:{width:\"100%\"},variant:\"hkn_lgDcG\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:154,width:\"320px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m1kq7g-container\",nodeId:\"uQNBWx0DI\",scopeId:\"Afeqt6Wxj\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"uQNBWx0DI\",layoutId:\"uQNBWx0DI\",style:{width:\"100%\"},variant:\"QnptQ6UHS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:154,width:\"320px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1239br0-container\",nodeId:\"GygCfEF71\",scopeId:\"Afeqt6Wxj\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"GygCfEF71\",layoutId:\"GygCfEF71\",style:{width:\"100%\"},variant:\"JQwG9xBJv\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:154,width:\"320px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-12a1us3-container\",nodeId:\"gVh_UUes0\",scopeId:\"Afeqt6Wxj\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"gVh_UUes0\",layoutId:\"gVh_UUes0\",style:{width:\"100%\"},variant:\"zXTsFN039\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:154,width:\"320px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-l9pxuk-container\",nodeId:\"w0fWU4o8f\",scopeId:\"Afeqt6Wxj\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"w0fWU4o8f\",layoutId:\"w0fWU4o8f\",style:{width:\"100%\"},variant:\"AcrRC2gwA\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:154,width:\"320px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ftcfrw-container\",nodeId:\"JVdtcChoe\",scopeId:\"Afeqt6Wxj\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"JVdtcChoe\",layoutId:\"JVdtcChoe\",style:{width:\"100%\"},variant:\"vH1ALvuBe\",width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-sqeg50\",\"data-framer-name\":\"Pricing\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nra15u\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EqScIrypm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ol\",{start:\"2\",style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{children:\"\u0410\u0431\u043E\u043D\u0430\u043C\u0435\u043D\u0442\u0438\"})})})}),fonts:[\"GF;Inter-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-7mjyzz\",\"data-styles-preset\":\"QjLJez9eY\",start:\"2\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--framer-text-alignment\":\"center\"},children:\"\u0410\u0431\u043E\u043D\u0430\u043C\u0435\u043D\u0442\u0438\"})})})}),className:\"framer-d8biny\",\"data-framer-name\":\"2. \u0410\u0431\u043E\u043D\u0430\u043C\u0435\u043D\u0442\u0438\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-tzne5a\",\"data-styles-preset\":\"aAssKOZXg\",style:{\"--framer-text-alignment\":\"center\"},children:\"\u041C\u0435\u0441\u0435\u0447\u0435\u043D \u0430\u0431\u043E\u043D\u0430\u043C\u0435\u043D\u0442. \u0418\u0437\u0447\u0438\u0441\u043B\u044F\u0432\u0430 \u0441\u0435 \u043D\u0430 \u0431\u0430\u0437\u0430 \u0440\u0430\u0437\u043C\u0435\u0440\u0430 \u0438 \u0441\u0442\u043E\u0439\u043D\u043E\u0441\u0442\u0442\u0430 \u043D\u0430 \u0438\u043D\u0432\u0435\u0440\u0442\u0430\u0440\u0430**.\"})}),className:\"framer-1hqnzoi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1byex4d\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a3gykk\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Beginner\"})}),className:\"framer-10n27wi\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fc93wb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb63d21e-2930-4a00-8ef1-606d72b7b50f, rgb(51, 51, 51))\"},children:\"9\u043B\u0432\"})}),className:\"framer-bv9ihj\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\u043D\u0430 \u043C\u0435\u0441\u0435\u0446*\"})}),className:\"framer-50fjjw\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jeulhm\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1axbwy8\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-160u8t8\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\u0434\u043E 100 \u0430\u043A\u0442\u0438\u0432\u043D\u0438 \u043E\u0431\u044F\u0432\u0438\"})}),className:\"framer-b6h7bg\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a23kv6\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-jpjpup\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\u0434\u043E 5000\u043B\u0432 \u043E\u0431\u0449\u0430 \u0441\u0442\u043E\u0439\u043D\u043E\u0441\u0442\"})}),className:\"framer-cl439v\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ednui3\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1o5qslt\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\u0434\u043E\u0441\u0442\u044A\u043F \u0434\u043E \u0432\u0441\u0438\u0447\u043A\u0438 \u043A\u0430\u043D\u0430\u043B\u0438\"})}),className:\"framer-1odz6ht\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gtkx8o\",\"data-framer-name\":\"Row\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"*\u043D\u0435 \u0432\u043A\u043B\u044E\u0447\u0432\u0430 \u0441\u043B\u043E\u0442\u043E\u0432\u0435 \u0437\u0430 \u043E\u0431\u044F\u0432\u0438\"})}),className:\"framer-15fbqd0\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u8eiw\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Advanced\"})}),className:\"framer-hohicm\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s659kr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb63d21e-2930-4a00-8ef1-606d72b7b50f, rgb(51, 51, 51))\"},children:\"19\u043B\u0432\"})}),className:\"framer-8vt8g4\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\u043D\u0430 \u043C\u0435\u0441\u0435\u0446\"})}),className:\"framer-1my66xv\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jblml6\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oges6w\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ijju4w\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\u0434\u043E 300 \u0430\u043A\u0442\u0438\u0432\u043D\u0438 \u043E\u0431\u044F\u0432\u0438\"})}),className:\"framer-8enr70\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wwr74y\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-q8mlrm\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\u0434\u043E 15 000\u043B\u0432 \u043E\u0431\u0449\u0430 \u0441\u0442\u043E\u0439\u043D\u043E\u0441\u0442\"})}),className:\"framer-wjg4j9\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k68fmw\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-15h40kc\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\u0434\u043E\u0441\u0442\u044A\u043F \u0434\u043E \u0432\u0441\u0438\u0447\u043A\u0438 \u043A\u0430\u043D\u0430\u043B\u0438\"})}),className:\"framer-6pv51s\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g30y93\",\"data-framer-name\":\"Row\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"*\u043D\u0435 \u0432\u043A\u043B\u044E\u0447\u0432\u0430 \u0441\u043B\u043E\u0442\u043E\u0432\u0435 \u0437\u0430 \u043E\u0431\u044F\u0432\u0438\"})}),className:\"framer-1f6hy53\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bvrtaq\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Business\"})}),className:\"framer-1o0q42a\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1of02pt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb63d21e-2930-4a00-8ef1-606d72b7b50f, rgb(51, 51, 51))\"},children:\"39\u043B\u0432\"})}),className:\"framer-nzqk6w\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\u043D\u0430 \u043C\u0435\u0441\u0435\u0446\"})}),className:\"framer-1d13gbi\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1quhd50\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l83ozz\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-5flb28\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\u0434\u043E 600 \u0430\u043A\u0442\u0438\u0432\u043D\u0438 \u043E\u0431\u044F\u0432\u0438\"})}),className:\"framer-1ov36nw\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a2i2bh\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-17s2jbo\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\u0434\u043E 35 000\u043B\u0432 \u043E\u0431\u0449\u0430 \u0441\u0442\u043E\u0439\u043D\u043E\u0441\u0442\"})}),className:\"framer-vk4r49\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s43olv\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1b3vnih\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\u0434\u043E\u0441\u0442\u044A\u043F \u0434\u043E \u0432\u0441\u0438\u0447\u043A\u0438 \u043A\u0430\u043D\u0430\u043B\u0438\"})}),className:\"framer-1kov42s\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10tfhiy\",\"data-framer-name\":\"Row\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"*\u043D\u0435 \u0432\u043A\u043B\u044E\u0447\u0432\u0430 \u0441\u043B\u043E\u0442\u043E\u0432\u0435 \u0437\u0430 \u043E\u0431\u044F\u0432\u0438\"})}),className:\"framer-rijc9d\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qf6cac\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Business+\"})}),className:\"framer-w8b8ec\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hapq31\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb63d21e-2930-4a00-8ef1-606d72b7b50f, rgb(51, 51, 51))\"},children:\"59\u043B\u0432\"})}),className:\"framer-rybuur\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\u043D\u0430 \u043C\u0435\u0441\u0435\u0446\"})}),className:\"framer-dqximr\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ub93io\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ru8rld\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ximzjh\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\u0434\u043E 1000 \u0430\u043A\u0442\u0438\u0432\u043D\u0438 \u043E\u0431\u044F\u0432\u0438\"})}),className:\"framer-1gnb64i\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tkkp64\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-19mo087\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\u0434\u043E 60 000\u043B\u0432 \u043E\u0431\u0449\u0430 \u0441\u0442\u043E\u0439\u043D\u043E\u0441\u0442\"})}),className:\"framer-oy390q\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-47ftle\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-13htql3\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\u0434\u043E\u0441\u0442\u044A\u043F \u0434\u043E \u0432\u0441\u0438\u0447\u043A\u0438 \u043A\u0430\u043D\u0430\u043B\u0438\"})}),className:\"framer-1390dfn\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jh1v4u\",\"data-framer-name\":\"Row\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"*\u043D\u0435 \u0432\u043A\u043B\u044E\u0447\u0432\u0430 \u0441\u043B\u043E\u0442\u043E\u0432\u0435 \u0437\u0430 \u043E\u0431\u044F\u0432\u0438\"})}),className:\"framer-1bnf7hx\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14fos6m\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"King\"})}),className:\"framer-uass5b\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tii1nn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb63d21e-2930-4a00-8ef1-606d72b7b50f, rgb(51, 51, 51))\"},children:\"129\u043B\u0432\"})}),className:\"framer-3z61h8\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\u043D\u0430 \u043C\u0435\u0441\u0435\u0446\"})}),className:\"framer-1gjk6lo\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gsfycv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rl81qj\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ou9p6u\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\u0434\u043E 3000 \u0430\u043A\u0442\u0438\u0432\u043D\u0438 \u043E\u0431\u044F\u0432\u0438\"})}),className:\"framer-ikxv46\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h334px\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1dzwsdk\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\u0434\u043E 150 000\u043B\u0432 \u043E\u0431\u0449\u0430 \u0441\u0442\u043E\u0439\u043D\u043E\u0441\u0442\"})}),className:\"framer-yh3tus\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cisqqv\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1wz467n\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\u0434\u043E\u0441\u0442\u044A\u043F \u0434\u043E \u0432\u0441\u0438\u0447\u043A\u0438 \u043A\u0430\u043D\u0430\u043B\u0438\"})}),className:\"framer-11c3gw7\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ijjrqq\",\"data-framer-name\":\"Row\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"*\u043D\u0435 \u0432\u043A\u043B\u044E\u0447\u0432\u0430 \u0441\u043B\u043E\u0442\u043E\u0432\u0435 \u0437\u0430 \u043E\u0431\u044F\u0432\u0438\"})}),className:\"framer-1b36jg8\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-spc0js\",\"data-styles-preset\":\"AKQxX0asg\",style:{\"--framer-text-alignment\":\"center\"},children:\"*  \u0410\u043A\u043E \u043E\u0431\u044F\u0432\u0430 \u0438\u043C\u0430 \u0440\u0430\u0437\u043B\u0438\u0447\u043D\u0438 \u0446\u0435\u043D\u0438 \u0432 \u0440\u0430\u0437\u043B\u0438\u0447\u043D\u0438 \u043C\u0430\u0440\u043A\u0435\u0442\u043F\u043B\u0435\u0439\u0441\u0438, \u0437\u0430 \u0446\u0435\u043D\u0430 \u0441\u0435 \u0432\u0437\u0438\u043C\u0430 \u043D\u0430\u0439-\u0432\u0438\u0441\u043E\u043A\u0430\u0442\u0430 \u0441\u0442\u043E\u0439\u043D\u043E\u0441\u0442.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-spc0js\",\"data-styles-preset\":\"AKQxX0asg\",style:{\"--framer-text-alignment\":\"center\"},children:\"** \u0410\u043A\u043E \u043E\u0431\u044F\u0432\u0430 \u0438\u043C\u0430 \u043F\u043E\u0432\u0435\u0447\u0435 \u043A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u0430, \u0432\u0441\u044F\u043A\u0430 \u0431\u0440\u043E\u0439\u043A\u0430 \u0441\u0435 \u0441\u043C\u044F\u0442\u0430 \u0432 \u0441\u0442\u043E\u0439\u043D\u043E\u0441\u0442\u0442\u0430 \u043D\u0430 \u0438\u043D\u0432\u0435\u0440\u0442\u0430\u0440\u0430.\"})]}),className:\"framer-704w5b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sz25sp\",\"data-framer-name\":\"FAQ\",id:elementId1,ref:ref6,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EqScIrypm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\u0427\u0435\u0441\u0442\u043E \u0437\u0430\u0434\u0430\u0432\u0430\u043D\u0438 \u0432\u044A\u043F\u0440\u043E\u0441\u0438\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\u0427\u0435\u0441\u0442\u043E \u0437\u0430\u0434\u0430\u0432\u0430\u043D\u0438 \u0432\u044A\u043F\u0440\u043E\u0441\u0438\"})}),className:\"framer-10sdfz3\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gpvyp\",\"data-framer-name\":\"Column\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,width:`max(min(1000px, ${componentViewport?.width||\"100vw\"}), 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gwt6xg-container\",nodeId:\"ZaGp2V6ao\",scopeId:\"Afeqt6Wxj\",children:/*#__PURE__*/_jsx(Accordion2,{height:\"100%\",id:\"ZaGp2V6ao\",layoutId:\"ZaGp2V6ao\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yb82xt\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-rsya24\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Expanda\"})}),className:\"framer-tkn1ww\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-W5ymY.framer-1n26wao, .framer-W5ymY .framer-1n26wao { display: block; }\",\".framer-W5ymY.framer-vdq75j { 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; position: relative; width: 900px; }\",\".framer-W5ymY .framer-o4g11v-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-W5ymY .framer-cogcgx { align-content: center; align-items: center; aspect-ratio: 2.586206896551724 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 348px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-W5ymY .framer-txn963 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 50px 0px 0px 50px; position: relative; width: 1px; }\",\".framer-W5ymY .framer-mdtyza { 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: center; padding: 0px; position: relative; width: 500px; }\",\".framer-W5ymY .framer-1pc5szn { 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: min-content; }\",\".framer-W5ymY .framer-191wlit { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 526px; word-break: break-word; word-wrap: break-word; }\",\".framer-W5ymY .framer-1x58n4t { --framer-paragraph-spacing: 0px; align-self: stretch; flex: none; height: auto; max-width: 78%; overflow: visible; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-W5ymY .framer-4utjlm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-W5ymY .framer-qnujgv-container { flex: none; height: auto; position: relative; width: 409px; }\",\".framer-W5ymY .framer-1a47eu5, .framer-W5ymY .framer-zvlzyw { align-content: center; align-items: center; background-color: #2b2b2b; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 150px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 252px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-W5ymY .framer-l2iip8, .framer-W5ymY .framer-1ul0m5l { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-W5ymY .framer-w7zrm7 { align-content: center; align-items: center; 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%; }\",\".framer-W5ymY .framer-ec2is3 { flex: none; height: 435px; overflow: hidden; position: relative; width: 100%; }\",\".framer-W5ymY .framer-yhgxuu { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 60px 15px 0px 15px; position: relative; width: 100%; }\",\".framer-W5ymY .framer-1u85wtd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5ymY .framer-1tkrbbr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 41px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 99%; }\",\".framer-W5ymY .framer-46dmth, .framer-W5ymY .framer-1m0vtuf, .framer-W5ymY .framer-7v31jw, .framer-W5ymY .framer-elv4wv, .framer-W5ymY .framer-1wldbu9, .framer-W5ymY .framer-1wmx9l3, .framer-W5ymY .framer-1dny1z4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-W5ymY .framer-xmzes6, .framer-W5ymY .framer-1m1lxfd, .framer-W5ymY .framer-1s0omv1, .framer-W5ymY .framer-13enmj9, .framer-W5ymY .framer-1md6bjs, .framer-W5ymY .framer-1as7eag, .framer-W5ymY .framer-1r6kvhg { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-W5ymY .framer-15rn04z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 30px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-W5ymY .framer-723u1-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-W5ymY .framer-km5w33 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 40px 30px 40px; position: relative; width: 100%; }\",\".framer-W5ymY .framer-1509ojy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 60px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-W5ymY .framer-1385010 { flex: none; height: 46px; overflow: hidden; position: relative; width: 9%; }\",\".framer-W5ymY .framer-8vlwp9 { flex: none; height: 47px; overflow: hidden; position: relative; width: 15%; }\",\".framer-W5ymY .framer-1raif9s { flex: none; height: 46px; overflow: hidden; position: relative; width: 73px; }\",\".framer-W5ymY .framer-1qdlu3k { flex: none; height: 46px; overflow: hidden; position: relative; width: 101px; }\",\".framer-W5ymY .framer-xkemof { flex: none; height: 38px; overflow: hidden; position: relative; width: 127px; }\",\".framer-W5ymY .framer-g7dytc { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 30px 30px 40px; position: relative; width: 100%; }\",\".framer-W5ymY .framer-ti4ql2 { 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: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-W5ymY .framer-k2ojom, .framer-W5ymY .framer-xq7cte { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-W5ymY .framer-x57x8v, .framer-W5ymY .framer-1at0cn6, .framer-W5ymY .framer-h755ar, .framer-W5ymY .framer-fdxl3e { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 20px; position: relative; width: 100%; }\",\".framer-W5ymY .framer-2po6tk, .framer-W5ymY .framer-vtpsi8, .framer-W5ymY .framer-x110t8, .framer-W5ymY .framer-18x2jmu, .framer-W5ymY .framer-17qkx4g, .framer-W5ymY .framer-1gumihd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-W5ymY .framer-17l8rke, .framer-W5ymY .framer-12qxcld, .framer-W5ymY .framer-edrp4k, .framer-W5ymY .framer-1sllkj0, .framer-W5ymY .framer-1wy4cpl, .framer-W5ymY .framer-lfmn4p, .framer-W5ymY .framer-zmvoh9 { aspect-ratio: 1 / 1; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-W5ymY .framer-1tz2g85, .framer-W5ymY .framer-1sr2v9w, .framer-W5ymY .framer-8i1id2, .framer-W5ymY .framer-bdskfm, .framer-W5ymY .framer-1rahr4u, .framer-W5ymY .framer-jvymbd { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-W5ymY .framer-kgsp57, .framer-W5ymY .framer-64lvah, .framer-W5ymY .framer-w81old, .framer-W5ymY .framer-3lolsc, .framer-W5ymY .framer-10sdfz3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-W5ymY .framer-1911ful, .framer-W5ymY .framer-1s6tiab { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; padding: 20px; position: relative; width: 100%; }\",\".framer-W5ymY .framer-42kvur { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-W5ymY .framer-jf66kh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 100%; }\",\".framer-W5ymY .framer-zivi2d { 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: center; max-width: 2018px; padding: 0px; position: relative; width: 1000px; }\",\".framer-W5ymY .framer-7zgup0, .framer-W5ymY .framer-o29av, .framer-W5ymY .framer-n2zr1n, .framer-W5ymY .framer-1hj7baq, .framer-W5ymY .framer-1vt0kjy, .framer-W5ymY .framer-1w8lugh, .framer-W5ymY .framer-w0ndc5, .framer-W5ymY .framer-1c9k7qe, .framer-W5ymY .framer-1qwfc5k, .framer-W5ymY .framer-1actvh9, .framer-W5ymY .framer-1w4tnwc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-W5ymY .framer-118ax2c, .framer-W5ymY .framer-yylrtv, .framer-W5ymY .framer-18nhzpk, .framer-W5ymY .framer-gek4rz, .framer-W5ymY .framer-adlwer, .framer-W5ymY .framer-lbe8dg, .framer-W5ymY .framer-1welys7, .framer-W5ymY .framer-106f8cs, .framer-W5ymY .framer-18brwph, .framer-W5ymY .framer-lkf2qv, .framer-W5ymY .framer-x18dyn { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-W5ymY .framer-15uspr2 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 83%; }\",\".framer-W5ymY .framer-y7ljpy, .framer-W5ymY .framer-14mqzme { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50%; }\",\".framer-W5ymY .framer-1u525vr { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 1px; }\",\".framer-W5ymY .framer-15riyei, .framer-W5ymY .framer-vlnjzp, .framer-W5ymY .framer-skur4l, .framer-W5ymY .framer-1jshem8, .framer-W5ymY .framer-1oq2r3l, .framer-W5ymY .framer-609tff, .framer-W5ymY .framer-3y1mev, .framer-W5ymY .framer-1jnxby0, .framer-W5ymY .framer-bbc222, .framer-W5ymY .framer-wftr1t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 30px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 30px; }\",\".framer-W5ymY .framer-1afjmnk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; max-width: 4000px; padding: 0px; position: relative; width: 1px; }\",\".framer-W5ymY .framer-11lm3vj { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-W5ymY .framer-l12kkk, .framer-W5ymY .framer-1samt1m, .framer-W5ymY .framer-1xaw6rv, .framer-W5ymY .framer-d8biny, .framer-W5ymY .framer-704w5b { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-W5ymY .framer-a609cx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-W5ymY .framer-sxi5p7 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; padding: 30px; position: relative; width: min-content; }\",\".framer-W5ymY .framer-1r7gr3o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 260px; }\",\".framer-W5ymY .framer-1bsvdq4 { 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: center; overflow: hidden; padding: 0px; position: relative; width: 200px; }\",\".framer-W5ymY .framer-joit6 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-W5ymY .framer-1no5u7g { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 260px; word-break: break-word; word-wrap: break-word; }\",\".framer-W5ymY .framer-1knclgc { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-W5ymY .framer-yvz3ic { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-W5ymY .framer-wxofkv, .framer-W5ymY .framer-43eqm, .framer-W5ymY .framer-1hqnzoi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-W5ymY .framer-1knccqi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5ymY .framer-phu7fs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5ymY .framer-14rbjz3-container, .framer-W5ymY .framer-1m1kq7g-container, .framer-W5ymY .framer-1239br0-container, .framer-W5ymY .framer-12a1us3-container, .framer-W5ymY .framer-l9pxuk-container, .framer-W5ymY .framer-ftcfrw-container { flex: none; height: auto; position: relative; width: 320px; }\",\".framer-W5ymY .framer-sqeg50 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-W5ymY .framer-nra15u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5ymY .framer-1byex4d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5ymY .framer-a3gykk, .framer-W5ymY .framer-1bvrtaq { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px; position: relative; width: 280px; will-change: var(--framer-will-change-override, transform); }\",\".framer-W5ymY .framer-10n27wi, .framer-W5ymY .framer-50fjjw, .framer-W5ymY .framer-b6h7bg, .framer-W5ymY .framer-cl439v, .framer-W5ymY .framer-1odz6ht, .framer-W5ymY .framer-15fbqd0, .framer-W5ymY .framer-hohicm, .framer-W5ymY .framer-1my66xv, .framer-W5ymY .framer-8enr70, .framer-W5ymY .framer-wjg4j9, .framer-W5ymY .framer-6pv51s, .framer-W5ymY .framer-1f6hy53, .framer-W5ymY .framer-1o0q42a, .framer-W5ymY .framer-1d13gbi, .framer-W5ymY .framer-1ov36nw, .framer-W5ymY .framer-vk4r49, .framer-W5ymY .framer-1kov42s, .framer-W5ymY .framer-rijc9d, .framer-W5ymY .framer-w8b8ec, .framer-W5ymY .framer-dqximr, .framer-W5ymY .framer-1gnb64i, .framer-W5ymY .framer-oy390q, .framer-W5ymY .framer-1390dfn, .framer-W5ymY .framer-1bnf7hx, .framer-W5ymY .framer-uass5b, .framer-W5ymY .framer-1gjk6lo, .framer-W5ymY .framer-ikxv46, .framer-W5ymY .framer-yh3tus, .framer-W5ymY .framer-11c3gw7, .framer-W5ymY .framer-1b36jg8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-W5ymY .framer-1fc93wb, .framer-W5ymY .framer-s659kr, .framer-W5ymY .framer-1of02pt, .framer-W5ymY .framer-1hapq31, .framer-W5ymY .framer-1tii1nn { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-W5ymY .framer-bv9ihj, .framer-W5ymY .framer-8vt8g4, .framer-W5ymY .framer-nzqk6w, .framer-W5ymY .framer-rybuur, .framer-W5ymY .framer-3z61h8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: 48px; position: relative; white-space: pre; width: auto; }\",\".framer-W5ymY .framer-1jeulhm, .framer-W5ymY .framer-1jblml6, .framer-W5ymY .framer-1quhd50, .framer-W5ymY .framer-1ub93io, .framer-W5ymY .framer-1gsfycv { 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: 0px; position: relative; width: 100%; }\",\".framer-W5ymY .framer-1axbwy8, .framer-W5ymY .framer-1a23kv6, .framer-W5ymY .framer-ednui3, .framer-W5ymY .framer-1gtkx8o, .framer-W5ymY .framer-1oges6w, .framer-W5ymY .framer-wwr74y, .framer-W5ymY .framer-k68fmw, .framer-W5ymY .framer-1g30y93, .framer-W5ymY .framer-l83ozz, .framer-W5ymY .framer-a2i2bh, .framer-W5ymY .framer-s43olv, .framer-W5ymY .framer-10tfhiy, .framer-W5ymY .framer-ru8rld, .framer-W5ymY .framer-tkkp64, .framer-W5ymY .framer-47ftle, .framer-W5ymY .framer-jh1v4u, .framer-W5ymY .framer-rl81qj, .framer-W5ymY .framer-h334px, .framer-W5ymY .framer-1cisqqv, .framer-W5ymY .framer-1ijjrqq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5ymY .framer-160u8t8, .framer-W5ymY .framer-jpjpup, .framer-W5ymY .framer-1o5qslt, .framer-W5ymY .framer-ijju4w, .framer-W5ymY .framer-q8mlrm, .framer-W5ymY .framer-15h40kc, .framer-W5ymY .framer-5flb28, .framer-W5ymY .framer-17s2jbo, .framer-W5ymY .framer-1b3vnih, .framer-W5ymY .framer-1ximzjh, .framer-W5ymY .framer-19mo087, .framer-W5ymY .framer-13htql3, .framer-W5ymY .framer-ou9p6u, .framer-W5ymY .framer-1dzwsdk, .framer-W5ymY .framer-1wz467n { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-W5ymY .framer-1u8eiw { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px; position: relative; width: 280px; will-change: var(--framer-will-change-override, transform); }\",\".framer-W5ymY .framer-qf6cac, .framer-W5ymY .framer-14fos6m { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px; position: relative; width: 300px; will-change: var(--framer-will-change-override, transform); }\",\".framer-W5ymY .framer-sz25sp { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-W5ymY .framer-1gpvyp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-W5ymY .framer-gwt6xg-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 2; }\",\".framer-W5ymY .framer-yb82xt { align-content: center; align-items: center; background-color: #222222; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 100%; overflow: visible; padding: 50px; position: relative; width: 100%; }\",\".framer-W5ymY .framer-rsya24 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-W5ymY .framer-tkn1ww { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-W5ymY.framer-vdq75j, .framer-W5ymY .framer-cogcgx, .framer-W5ymY .framer-txn963, .framer-W5ymY .framer-mdtyza, .framer-W5ymY .framer-1pc5szn, .framer-W5ymY .framer-4utjlm, .framer-W5ymY .framer-1a47eu5, .framer-W5ymY .framer-w7zrm7, .framer-W5ymY .framer-yhgxuu, .framer-W5ymY .framer-1u85wtd, .framer-W5ymY .framer-1tkrbbr, .framer-W5ymY .framer-15rn04z, .framer-W5ymY .framer-zvlzyw, .framer-W5ymY .framer-km5w33, .framer-W5ymY .framer-1509ojy, .framer-W5ymY .framer-g7dytc, .framer-W5ymY .framer-ti4ql2, .framer-W5ymY .framer-k2ojom, .framer-W5ymY .framer-x57x8v, .framer-W5ymY .framer-2po6tk, .framer-W5ymY .framer-1tz2g85, .framer-W5ymY .framer-1at0cn6, .framer-W5ymY .framer-vtpsi8, .framer-W5ymY .framer-1sr2v9w, .framer-W5ymY .framer-1911ful, .framer-W5ymY .framer-x110t8, .framer-W5ymY .framer-8i1id2, .framer-W5ymY .framer-xq7cte, .framer-W5ymY .framer-1s6tiab, .framer-W5ymY .framer-18x2jmu, .framer-W5ymY .framer-bdskfm, .framer-W5ymY .framer-h755ar, .framer-W5ymY .framer-17qkx4g, .framer-W5ymY .framer-1rahr4u, .framer-W5ymY .framer-fdxl3e, .framer-W5ymY .framer-1gumihd, .framer-W5ymY .framer-jvymbd, .framer-W5ymY .framer-42kvur, .framer-W5ymY .framer-jf66kh, .framer-W5ymY .framer-zivi2d, .framer-W5ymY .framer-7zgup0, .framer-W5ymY .framer-15uspr2, .framer-W5ymY .framer-y7ljpy, .framer-W5ymY .framer-1u525vr, .framer-W5ymY .framer-o29av, .framer-W5ymY .framer-15riyei, .framer-W5ymY .framer-n2zr1n, .framer-W5ymY .framer-vlnjzp, .framer-W5ymY .framer-1hj7baq, .framer-W5ymY .framer-skur4l, .framer-W5ymY .framer-1vt0kjy, .framer-W5ymY .framer-1jshem8, .framer-W5ymY .framer-1w8lugh, .framer-W5ymY .framer-1oq2r3l, .framer-W5ymY .framer-14mqzme, .framer-W5ymY .framer-1afjmnk, .framer-W5ymY .framer-w0ndc5, .framer-W5ymY .framer-609tff, .framer-W5ymY .framer-1c9k7qe, .framer-W5ymY .framer-3y1mev, .framer-W5ymY .framer-1qwfc5k, .framer-W5ymY .framer-1jnxby0, .framer-W5ymY .framer-1actvh9, .framer-W5ymY .framer-bbc222, .framer-W5ymY .framer-1w4tnwc, .framer-W5ymY .framer-wftr1t, .framer-W5ymY .framer-11lm3vj, .framer-W5ymY .framer-a609cx, .framer-W5ymY .framer-sxi5p7, .framer-W5ymY .framer-1r7gr3o, .framer-W5ymY .framer-1bsvdq4, .framer-W5ymY .framer-1knclgc, .framer-W5ymY .framer-yvz3ic, .framer-W5ymY .framer-1knccqi, .framer-W5ymY .framer-phu7fs, .framer-W5ymY .framer-sqeg50, .framer-W5ymY .framer-nra15u, .framer-W5ymY .framer-1byex4d, .framer-W5ymY .framer-a3gykk, .framer-W5ymY .framer-1fc93wb, .framer-W5ymY .framer-1jeulhm, .framer-W5ymY .framer-1axbwy8, .framer-W5ymY .framer-1a23kv6, .framer-W5ymY .framer-ednui3, .framer-W5ymY .framer-1gtkx8o, .framer-W5ymY .framer-1u8eiw, .framer-W5ymY .framer-s659kr, .framer-W5ymY .framer-1jblml6, .framer-W5ymY .framer-1oges6w, .framer-W5ymY .framer-wwr74y, .framer-W5ymY .framer-k68fmw, .framer-W5ymY .framer-1g30y93, .framer-W5ymY .framer-1bvrtaq, .framer-W5ymY .framer-1of02pt, .framer-W5ymY .framer-1quhd50, .framer-W5ymY .framer-l83ozz, .framer-W5ymY .framer-a2i2bh, .framer-W5ymY .framer-s43olv, .framer-W5ymY .framer-10tfhiy, .framer-W5ymY .framer-qf6cac, .framer-W5ymY .framer-1hapq31, .framer-W5ymY .framer-1ub93io, .framer-W5ymY .framer-ru8rld, .framer-W5ymY .framer-tkkp64, .framer-W5ymY .framer-47ftle, .framer-W5ymY .framer-jh1v4u, .framer-W5ymY .framer-14fos6m, .framer-W5ymY .framer-1tii1nn, .framer-W5ymY .framer-1gsfycv, .framer-W5ymY .framer-rl81qj, .framer-W5ymY .framer-h334px, .framer-W5ymY .framer-1cisqqv, .framer-W5ymY .framer-1ijjrqq, .framer-W5ymY .framer-sz25sp, .framer-W5ymY .framer-1gpvyp, .framer-W5ymY .framer-rsya24 { gap: 0px; } .framer-W5ymY.framer-vdq75j > *, .framer-W5ymY .framer-w7zrm7 > *, .framer-W5ymY .framer-1u85wtd > *, .framer-W5ymY .framer-g7dytc > *, .framer-W5ymY .framer-1tz2g85 > *, .framer-W5ymY .framer-1sr2v9w > *, .framer-W5ymY .framer-8i1id2 > *, .framer-W5ymY .framer-bdskfm > *, .framer-W5ymY .framer-1rahr4u > *, .framer-W5ymY .framer-jvymbd > *, .framer-W5ymY .framer-1bsvdq4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-W5ymY.framer-vdq75j > :first-child, .framer-W5ymY .framer-txn963 > :first-child, .framer-W5ymY .framer-mdtyza > :first-child, .framer-W5ymY .framer-1pc5szn > :first-child, .framer-W5ymY .framer-w7zrm7 > :first-child, .framer-W5ymY .framer-yhgxuu > :first-child, .framer-W5ymY .framer-1u85wtd > :first-child, .framer-W5ymY .framer-1tkrbbr > :first-child, .framer-W5ymY .framer-km5w33 > :first-child, .framer-W5ymY .framer-g7dytc > :first-child, .framer-W5ymY .framer-k2ojom > :first-child, .framer-W5ymY .framer-x57x8v > :first-child, .framer-W5ymY .framer-1tz2g85 > :first-child, .framer-W5ymY .framer-1at0cn6 > :first-child, .framer-W5ymY .framer-1sr2v9w > :first-child, .framer-W5ymY .framer-1911ful > :first-child, .framer-W5ymY .framer-8i1id2 > :first-child, .framer-W5ymY .framer-xq7cte > :first-child, .framer-W5ymY .framer-1s6tiab > :first-child, .framer-W5ymY .framer-bdskfm > :first-child, .framer-W5ymY .framer-h755ar > :first-child, .framer-W5ymY .framer-1rahr4u > :first-child, .framer-W5ymY .framer-fdxl3e > :first-child, .framer-W5ymY .framer-jvymbd > :first-child, .framer-W5ymY .framer-zivi2d > :first-child, .framer-W5ymY .framer-1u525vr > :first-child, .framer-W5ymY .framer-15riyei > :first-child, .framer-W5ymY .framer-vlnjzp > :first-child, .framer-W5ymY .framer-skur4l > :first-child, .framer-W5ymY .framer-1jshem8 > :first-child, .framer-W5ymY .framer-1oq2r3l > :first-child, .framer-W5ymY .framer-1afjmnk > :first-child, .framer-W5ymY .framer-609tff > :first-child, .framer-W5ymY .framer-3y1mev > :first-child, .framer-W5ymY .framer-1jnxby0 > :first-child, .framer-W5ymY .framer-bbc222 > :first-child, .framer-W5ymY .framer-wftr1t > :first-child, .framer-W5ymY .framer-11lm3vj > :first-child, .framer-W5ymY .framer-sxi5p7 > :first-child, .framer-W5ymY .framer-1bsvdq4 > :first-child, .framer-W5ymY .framer-1knclgc > :first-child, .framer-W5ymY .framer-yvz3ic > :first-child, .framer-W5ymY .framer-1knccqi > :first-child, .framer-W5ymY .framer-sqeg50 > :first-child, .framer-W5ymY .framer-nra15u > :first-child, .framer-W5ymY .framer-a3gykk > :first-child, .framer-W5ymY .framer-1jeulhm > :first-child, .framer-W5ymY .framer-1u8eiw > :first-child, .framer-W5ymY .framer-1jblml6 > :first-child, .framer-W5ymY .framer-1bvrtaq > :first-child, .framer-W5ymY .framer-1quhd50 > :first-child, .framer-W5ymY .framer-qf6cac > :first-child, .framer-W5ymY .framer-1ub93io > :first-child, .framer-W5ymY .framer-14fos6m > :first-child, .framer-W5ymY .framer-1gsfycv > :first-child, .framer-W5ymY .framer-sz25sp > :first-child { margin-top: 0px; } .framer-W5ymY.framer-vdq75j > :last-child, .framer-W5ymY .framer-txn963 > :last-child, .framer-W5ymY .framer-mdtyza > :last-child, .framer-W5ymY .framer-1pc5szn > :last-child, .framer-W5ymY .framer-w7zrm7 > :last-child, .framer-W5ymY .framer-yhgxuu > :last-child, .framer-W5ymY .framer-1u85wtd > :last-child, .framer-W5ymY .framer-1tkrbbr > :last-child, .framer-W5ymY .framer-km5w33 > :last-child, .framer-W5ymY .framer-g7dytc > :last-child, .framer-W5ymY .framer-k2ojom > :last-child, .framer-W5ymY .framer-x57x8v > :last-child, .framer-W5ymY .framer-1tz2g85 > :last-child, .framer-W5ymY .framer-1at0cn6 > :last-child, .framer-W5ymY .framer-1sr2v9w > :last-child, .framer-W5ymY .framer-1911ful > :last-child, .framer-W5ymY .framer-8i1id2 > :last-child, .framer-W5ymY .framer-xq7cte > :last-child, .framer-W5ymY .framer-1s6tiab > :last-child, .framer-W5ymY .framer-bdskfm > :last-child, .framer-W5ymY .framer-h755ar > :last-child, .framer-W5ymY .framer-1rahr4u > :last-child, .framer-W5ymY .framer-fdxl3e > :last-child, .framer-W5ymY .framer-jvymbd > :last-child, .framer-W5ymY .framer-zivi2d > :last-child, .framer-W5ymY .framer-1u525vr > :last-child, .framer-W5ymY .framer-15riyei > :last-child, .framer-W5ymY .framer-vlnjzp > :last-child, .framer-W5ymY .framer-skur4l > :last-child, .framer-W5ymY .framer-1jshem8 > :last-child, .framer-W5ymY .framer-1oq2r3l > :last-child, .framer-W5ymY .framer-1afjmnk > :last-child, .framer-W5ymY .framer-609tff > :last-child, .framer-W5ymY .framer-3y1mev > :last-child, .framer-W5ymY .framer-1jnxby0 > :last-child, .framer-W5ymY .framer-bbc222 > :last-child, .framer-W5ymY .framer-wftr1t > :last-child, .framer-W5ymY .framer-11lm3vj > :last-child, .framer-W5ymY .framer-sxi5p7 > :last-child, .framer-W5ymY .framer-1bsvdq4 > :last-child, .framer-W5ymY .framer-1knclgc > :last-child, .framer-W5ymY .framer-yvz3ic > :last-child, .framer-W5ymY .framer-1knccqi > :last-child, .framer-W5ymY .framer-sqeg50 > :last-child, .framer-W5ymY .framer-nra15u > :last-child, .framer-W5ymY .framer-a3gykk > :last-child, .framer-W5ymY .framer-1jeulhm > :last-child, .framer-W5ymY .framer-1u8eiw > :last-child, .framer-W5ymY .framer-1jblml6 > :last-child, .framer-W5ymY .framer-1bvrtaq > :last-child, .framer-W5ymY .framer-1quhd50 > :last-child, .framer-W5ymY .framer-qf6cac > :last-child, .framer-W5ymY .framer-1ub93io > :last-child, .framer-W5ymY .framer-14fos6m > :last-child, .framer-W5ymY .framer-1gsfycv > :last-child, .framer-W5ymY .framer-sz25sp > :last-child { margin-bottom: 0px; } .framer-W5ymY .framer-cogcgx > *, .framer-W5ymY .framer-42kvur > *, .framer-W5ymY .framer-15uspr2 > *, .framer-W5ymY .framer-y7ljpy > *, .framer-W5ymY .framer-14mqzme > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-W5ymY .framer-cogcgx > :first-child, .framer-W5ymY .framer-4utjlm > :first-child, .framer-W5ymY .framer-1a47eu5 > :first-child, .framer-W5ymY .framer-15rn04z > :first-child, .framer-W5ymY .framer-zvlzyw > :first-child, .framer-W5ymY .framer-1509ojy > :first-child, .framer-W5ymY .framer-ti4ql2 > :first-child, .framer-W5ymY .framer-2po6tk > :first-child, .framer-W5ymY .framer-vtpsi8 > :first-child, .framer-W5ymY .framer-x110t8 > :first-child, .framer-W5ymY .framer-18x2jmu > :first-child, .framer-W5ymY .framer-17qkx4g > :first-child, .framer-W5ymY .framer-1gumihd > :first-child, .framer-W5ymY .framer-42kvur > :first-child, .framer-W5ymY .framer-jf66kh > :first-child, .framer-W5ymY .framer-7zgup0 > :first-child, .framer-W5ymY .framer-15uspr2 > :first-child, .framer-W5ymY .framer-y7ljpy > :first-child, .framer-W5ymY .framer-o29av > :first-child, .framer-W5ymY .framer-n2zr1n > :first-child, .framer-W5ymY .framer-1hj7baq > :first-child, .framer-W5ymY .framer-1vt0kjy > :first-child, .framer-W5ymY .framer-1w8lugh > :first-child, .framer-W5ymY .framer-14mqzme > :first-child, .framer-W5ymY .framer-w0ndc5 > :first-child, .framer-W5ymY .framer-1c9k7qe > :first-child, .framer-W5ymY .framer-1qwfc5k > :first-child, .framer-W5ymY .framer-1actvh9 > :first-child, .framer-W5ymY .framer-1w4tnwc > :first-child, .framer-W5ymY .framer-a609cx > :first-child, .framer-W5ymY .framer-1r7gr3o > :first-child, .framer-W5ymY .framer-phu7fs > :first-child, .framer-W5ymY .framer-1byex4d > :first-child, .framer-W5ymY .framer-1fc93wb > :first-child, .framer-W5ymY .framer-1axbwy8 > :first-child, .framer-W5ymY .framer-1a23kv6 > :first-child, .framer-W5ymY .framer-ednui3 > :first-child, .framer-W5ymY .framer-1gtkx8o > :first-child, .framer-W5ymY .framer-s659kr > :first-child, .framer-W5ymY .framer-1oges6w > :first-child, .framer-W5ymY .framer-wwr74y > :first-child, .framer-W5ymY .framer-k68fmw > :first-child, .framer-W5ymY .framer-1g30y93 > :first-child, .framer-W5ymY .framer-1of02pt > :first-child, .framer-W5ymY .framer-l83ozz > :first-child, .framer-W5ymY .framer-a2i2bh > :first-child, .framer-W5ymY .framer-s43olv > :first-child, .framer-W5ymY .framer-10tfhiy > :first-child, .framer-W5ymY .framer-1hapq31 > :first-child, .framer-W5ymY .framer-ru8rld > :first-child, .framer-W5ymY .framer-tkkp64 > :first-child, .framer-W5ymY .framer-47ftle > :first-child, .framer-W5ymY .framer-jh1v4u > :first-child, .framer-W5ymY .framer-1tii1nn > :first-child, .framer-W5ymY .framer-rl81qj > :first-child, .framer-W5ymY .framer-h334px > :first-child, .framer-W5ymY .framer-1cisqqv > :first-child, .framer-W5ymY .framer-1ijjrqq > :first-child, .framer-W5ymY .framer-1gpvyp > :first-child, .framer-W5ymY .framer-rsya24 > :first-child { margin-left: 0px; } .framer-W5ymY .framer-cogcgx > :last-child, .framer-W5ymY .framer-4utjlm > :last-child, .framer-W5ymY .framer-1a47eu5 > :last-child, .framer-W5ymY .framer-15rn04z > :last-child, .framer-W5ymY .framer-zvlzyw > :last-child, .framer-W5ymY .framer-1509ojy > :last-child, .framer-W5ymY .framer-ti4ql2 > :last-child, .framer-W5ymY .framer-2po6tk > :last-child, .framer-W5ymY .framer-vtpsi8 > :last-child, .framer-W5ymY .framer-x110t8 > :last-child, .framer-W5ymY .framer-18x2jmu > :last-child, .framer-W5ymY .framer-17qkx4g > :last-child, .framer-W5ymY .framer-1gumihd > :last-child, .framer-W5ymY .framer-42kvur > :last-child, .framer-W5ymY .framer-jf66kh > :last-child, .framer-W5ymY .framer-7zgup0 > :last-child, .framer-W5ymY .framer-15uspr2 > :last-child, .framer-W5ymY .framer-y7ljpy > :last-child, .framer-W5ymY .framer-o29av > :last-child, .framer-W5ymY .framer-n2zr1n > :last-child, .framer-W5ymY .framer-1hj7baq > :last-child, .framer-W5ymY .framer-1vt0kjy > :last-child, .framer-W5ymY .framer-1w8lugh > :last-child, .framer-W5ymY .framer-14mqzme > :last-child, .framer-W5ymY .framer-w0ndc5 > :last-child, .framer-W5ymY .framer-1c9k7qe > :last-child, .framer-W5ymY .framer-1qwfc5k > :last-child, .framer-W5ymY .framer-1actvh9 > :last-child, .framer-W5ymY .framer-1w4tnwc > :last-child, .framer-W5ymY .framer-a609cx > :last-child, .framer-W5ymY .framer-1r7gr3o > :last-child, .framer-W5ymY .framer-phu7fs > :last-child, .framer-W5ymY .framer-1byex4d > :last-child, .framer-W5ymY .framer-1fc93wb > :last-child, .framer-W5ymY .framer-1axbwy8 > :last-child, .framer-W5ymY .framer-1a23kv6 > :last-child, .framer-W5ymY .framer-ednui3 > :last-child, .framer-W5ymY .framer-1gtkx8o > :last-child, .framer-W5ymY .framer-s659kr > :last-child, .framer-W5ymY .framer-1oges6w > :last-child, .framer-W5ymY .framer-wwr74y > :last-child, .framer-W5ymY .framer-k68fmw > :last-child, .framer-W5ymY .framer-1g30y93 > :last-child, .framer-W5ymY .framer-1of02pt > :last-child, .framer-W5ymY .framer-l83ozz > :last-child, .framer-W5ymY .framer-a2i2bh > :last-child, .framer-W5ymY .framer-s43olv > :last-child, .framer-W5ymY .framer-10tfhiy > :last-child, .framer-W5ymY .framer-1hapq31 > :last-child, .framer-W5ymY .framer-ru8rld > :last-child, .framer-W5ymY .framer-tkkp64 > :last-child, .framer-W5ymY .framer-47ftle > :last-child, .framer-W5ymY .framer-jh1v4u > :last-child, .framer-W5ymY .framer-1tii1nn > :last-child, .framer-W5ymY .framer-rl81qj > :last-child, .framer-W5ymY .framer-h334px > :last-child, .framer-W5ymY .framer-1cisqqv > :last-child, .framer-W5ymY .framer-1ijjrqq > :last-child, .framer-W5ymY .framer-1gpvyp > :last-child, .framer-W5ymY .framer-rsya24 > :last-child { margin-right: 0px; } .framer-W5ymY .framer-txn963 > *, .framer-W5ymY .framer-1pc5szn > *, .framer-W5ymY .framer-yhgxuu > *, .framer-W5ymY .framer-yvz3ic > *, .framer-W5ymY .framer-1jeulhm > *, .framer-W5ymY .framer-1jblml6 > *, .framer-W5ymY .framer-1quhd50 > *, .framer-W5ymY .framer-1ub93io > *, .framer-W5ymY .framer-1gsfycv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-W5ymY .framer-mdtyza > *, .framer-W5ymY .framer-k2ojom > *, .framer-W5ymY .framer-x57x8v > *, .framer-W5ymY .framer-1at0cn6 > *, .framer-W5ymY .framer-xq7cte > *, .framer-W5ymY .framer-h755ar > *, .framer-W5ymY .framer-fdxl3e > *, .framer-W5ymY .framer-zivi2d > *, .framer-W5ymY .framer-15riyei > *, .framer-W5ymY .framer-vlnjzp > *, .framer-W5ymY .framer-skur4l > *, .framer-W5ymY .framer-1jshem8 > *, .framer-W5ymY .framer-1oq2r3l > *, .framer-W5ymY .framer-609tff > *, .framer-W5ymY .framer-3y1mev > *, .framer-W5ymY .framer-1jnxby0 > *, .framer-W5ymY .framer-bbc222 > *, .framer-W5ymY .framer-wftr1t > *, .framer-W5ymY .framer-1knccqi > *, .framer-W5ymY .framer-nra15u > *, .framer-W5ymY .framer-a3gykk > *, .framer-W5ymY .framer-1u8eiw > *, .framer-W5ymY .framer-1bvrtaq > *, .framer-W5ymY .framer-qf6cac > *, .framer-W5ymY .framer-14fos6m > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-W5ymY .framer-4utjlm > *, .framer-W5ymY .framer-15rn04z > *, .framer-W5ymY .framer-2po6tk > *, .framer-W5ymY .framer-vtpsi8 > *, .framer-W5ymY .framer-x110t8 > *, .framer-W5ymY .framer-18x2jmu > *, .framer-W5ymY .framer-17qkx4g > *, .framer-W5ymY .framer-1gumihd > *, .framer-W5ymY .framer-1r7gr3o > *, .framer-W5ymY .framer-rsya24 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-W5ymY .framer-1a47eu5 > *, .framer-W5ymY .framer-zvlzyw > *, .framer-W5ymY .framer-jf66kh > *, .framer-W5ymY .framer-7zgup0 > *, .framer-W5ymY .framer-o29av > *, .framer-W5ymY .framer-n2zr1n > *, .framer-W5ymY .framer-1hj7baq > *, .framer-W5ymY .framer-1vt0kjy > *, .framer-W5ymY .framer-1w8lugh > *, .framer-W5ymY .framer-w0ndc5 > *, .framer-W5ymY .framer-1c9k7qe > *, .framer-W5ymY .framer-1qwfc5k > *, .framer-W5ymY .framer-1actvh9 > *, .framer-W5ymY .framer-1w4tnwc > *, .framer-W5ymY .framer-1axbwy8 > *, .framer-W5ymY .framer-1a23kv6 > *, .framer-W5ymY .framer-ednui3 > *, .framer-W5ymY .framer-1gtkx8o > *, .framer-W5ymY .framer-1oges6w > *, .framer-W5ymY .framer-wwr74y > *, .framer-W5ymY .framer-k68fmw > *, .framer-W5ymY .framer-1g30y93 > *, .framer-W5ymY .framer-l83ozz > *, .framer-W5ymY .framer-a2i2bh > *, .framer-W5ymY .framer-s43olv > *, .framer-W5ymY .framer-10tfhiy > *, .framer-W5ymY .framer-ru8rld > *, .framer-W5ymY .framer-tkkp64 > *, .framer-W5ymY .framer-47ftle > *, .framer-W5ymY .framer-jh1v4u > *, .framer-W5ymY .framer-rl81qj > *, .framer-W5ymY .framer-h334px > *, .framer-W5ymY .framer-1cisqqv > *, .framer-W5ymY .framer-1ijjrqq > *, .framer-W5ymY .framer-1gpvyp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-W5ymY .framer-1tkrbbr > * { margin: 0px; margin-bottom: calc(41px / 2); margin-top: calc(41px / 2); } .framer-W5ymY .framer-km5w33 > *, .framer-W5ymY .framer-11lm3vj > *, .framer-W5ymY .framer-sz25sp > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-W5ymY .framer-1509ojy > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-W5ymY .framer-ti4ql2 > *, .framer-W5ymY .framer-a609cx > *, .framer-W5ymY .framer-phu7fs > *, .framer-W5ymY .framer-1byex4d > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-W5ymY .framer-1911ful > *, .framer-W5ymY .framer-1s6tiab > *, .framer-W5ymY .framer-sxi5p7 > *, .framer-W5ymY .framer-1knclgc > *, .framer-W5ymY .framer-sqeg50 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-W5ymY .framer-1u525vr > *, .framer-W5ymY .framer-1afjmnk > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-W5ymY .framer-1fc93wb > *, .framer-W5ymY .framer-s659kr > *, .framer-W5ymY .framer-1of02pt > *, .framer-W5ymY .framer-1hapq31 > *, .framer-W5ymY .framer-1tii1nn > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (min-width: 760px) and (max-width: 899px) { .framer-W5ymY.framer-vdq75j { width: 760px; } .framer-W5ymY .framer-o4g11v-container { left: 0px; right: 0px; transform: unset; width: unset; } .framer-W5ymY .framer-cogcgx { aspect-ratio: unset; height: min-content; } .framer-W5ymY .framer-mdtyza { gap: 87px; height: 387px; justify-content: flex-start; padding: 40px; width: 100%; } .framer-W5ymY .framer-1pc5szn { align-content: flex-start; align-items: flex-start; gap: 11px; height: 193px; justify-content: flex-start; max-width: 100%; overflow: visible; } .framer-W5ymY .framer-191wlit { align-self: stretch; white-space: pre; width: auto; } .framer-W5ymY .framer-1x58n4t { align-self: unset; width: 388px; } .framer-W5ymY .framer-4utjlm { flex-direction: column; justify-content: flex-start; width: 100%; } .framer-W5ymY .framer-qnujgv-container { width: 424px; } .framer-W5ymY .framer-km5w33 { gap: 0px; padding: 20px 40px 20px 40px; } .framer-W5ymY .framer-jf66kh, .framer-W5ymY .framer-sxi5p7 { flex: 1 0 0px; width: 1px; } .framer-W5ymY .framer-zivi2d { flex: 1 0 0px; padding: 40px; width: 1px; } .framer-W5ymY .framer-11lm3vj, .framer-W5ymY .framer-sz25sp { padding: 80px 40px 80px 40px; } .framer-W5ymY .framer-yvz3ic { order: 0; width: 730px; } .framer-W5ymY .framer-1knccqi { justify-content: flex-start; order: 1; } .framer-W5ymY .framer-phu7fs { max-width: unset; } .framer-W5ymY .framer-1hqnzoi { width: 420px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-W5ymY .framer-mdtyza, .framer-W5ymY .framer-1pc5szn, .framer-W5ymY .framer-4utjlm, .framer-W5ymY .framer-km5w33 { gap: 0px; } .framer-W5ymY .framer-mdtyza > * { margin: 0px; margin-bottom: calc(87px / 2); margin-top: calc(87px / 2); } .framer-W5ymY .framer-mdtyza > :first-child, .framer-W5ymY .framer-1pc5szn > :first-child, .framer-W5ymY .framer-4utjlm > :first-child, .framer-W5ymY .framer-km5w33 > :first-child { margin-top: 0px; } .framer-W5ymY .framer-mdtyza > :last-child, .framer-W5ymY .framer-1pc5szn > :last-child, .framer-W5ymY .framer-4utjlm > :last-child, .framer-W5ymY .framer-km5w33 > :last-child { margin-bottom: 0px; } .framer-W5ymY .framer-1pc5szn > * { margin: 0px; margin-bottom: calc(11px / 2); margin-top: calc(11px / 2); } .framer-W5ymY .framer-4utjlm > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-W5ymY .framer-km5w33 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\",\"@media (max-width: 759px) { .framer-W5ymY.framer-vdq75j { width: 390px; } .framer-W5ymY .framer-ec2is3 { order: 1; } .framer-W5ymY .framer-yhgxuu, .framer-W5ymY .framer-jf66kh { order: 0; } .framer-W5ymY .framer-km5w33, .framer-W5ymY .framer-sz25sp { padding: 60px 20px 60px 20px; } .framer-W5ymY .framer-1385010 { height: 39px; width: 88px; } .framer-W5ymY .framer-8vlwp9 { width: 30%; } .framer-W5ymY .framer-ti4ql2, .framer-W5ymY .framer-42kvur, .framer-W5ymY .framer-15uspr2, .framer-W5ymY .framer-a609cx { flex-direction: column; } .framer-W5ymY .framer-k2ojom, .framer-W5ymY .framer-xq7cte { flex: none; width: 100%; } .framer-W5ymY .framer-zivi2d { flex: 1 0 0px; padding: 20px; width: 1px; } .framer-W5ymY .framer-y7ljpy { order: 1; width: 100%; } .framer-W5ymY .framer-1u525vr, .framer-W5ymY .framer-1afjmnk { padding: 20px; } .framer-W5ymY .framer-14mqzme { order: 0; width: 100%; } .framer-W5ymY .framer-11lm3vj { padding: 100px 20px 100px 20px; } .framer-W5ymY .framer-l12kkk, .framer-W5ymY .framer-1samt1m, .framer-W5ymY .framer-10sdfz3 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-W5ymY .framer-sxi5p7 { width: 100%; } .framer-W5ymY .framer-1hqnzoi, .framer-W5ymY .framer-1byex4d { width: 300px; } .framer-W5ymY .framer-704w5b { white-space: pre-wrap; width: 350px; word-break: break-word; word-wrap: break-word; } .framer-W5ymY .framer-yb82xt { flex-direction: column; gap: 10px; justify-content: center; padding: 30px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-W5ymY .framer-ti4ql2, .framer-W5ymY .framer-42kvur, .framer-W5ymY .framer-15uspr2, .framer-W5ymY .framer-a609cx, .framer-W5ymY .framer-yb82xt { gap: 0px; } .framer-W5ymY .framer-ti4ql2 > *, .framer-W5ymY .framer-a609cx > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-W5ymY .framer-ti4ql2 > :first-child, .framer-W5ymY .framer-42kvur > :first-child, .framer-W5ymY .framer-15uspr2 > :first-child, .framer-W5ymY .framer-a609cx > :first-child, .framer-W5ymY .framer-yb82xt > :first-child { margin-top: 0px; } .framer-W5ymY .framer-ti4ql2 > :last-child, .framer-W5ymY .framer-42kvur > :last-child, .framer-W5ymY .framer-15uspr2 > :last-child, .framer-W5ymY .framer-a609cx > :last-child, .framer-W5ymY .framer-yb82xt > :last-child { margin-bottom: 0px; } .framer-W5ymY .framer-42kvur > *, .framer-W5ymY .framer-15uspr2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-W5ymY .framer-yb82xt > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5889\n * @framerIntrinsicWidth 900\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Teo6raLIX\":{\"layout\":[\"fixed\",\"auto\"]},\"EqScIrypm\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"bV8CpFjU8\":{\"pattern\":\":bV8CpFjU8\",\"name\":\"compare\"},\"kdYcr89rY\":{\"pattern\":\":kdYcr89rY\",\"name\":\"faq\"}}\n * @framerResponsiveScreen\n */const FramerAfeqt6Wxj=withCSS(Component,css,\"framer-W5ymY\");export default FramerAfeqt6Wxj;FramerAfeqt6Wxj.displayName=\"Home\";FramerAfeqt6Wxj.defaultProps={height:5889,width:900};addFonts(FramerAfeqt6Wxj,[{explicitInter:true,fonts:[{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQi_gfwmS0v3_7Y.woff2\",weight:\"700\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npST3-QfwmS0v3_7Y.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuBWYMZ1rib2Bg-4.woff2\",weight:\"900\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]},...NavigationCopyFonts,...LoopsFonts,...CardFonts,...Accordion2Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAfeqt6Wxj\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"bV8CpFjU8\\\":{\\\"pattern\\\":\\\":bV8CpFjU8\\\",\\\"name\\\":\\\"compare\\\"},\\\"kdYcr89rY\\\":{\\\"pattern\\\":\\\":kdYcr89rY\\\",\\\"name\\\":\\\"faq\\\"}}\",\"framerIntrinsicWidth\":\"900\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"5889\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Teo6raLIX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EqScIrypm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["emailRegex", "mailchimpRegex", "validateEmail", "email", "parseMailChimpUrl", "url", "_url_replace_match", "domain", "parameters", "safeURL", "isInternalURL", "href", "VERSION", "Input", "withCSS", "service", "redirectAs", "mailchimpURL", "loopsID", "loopsUserGroup", "formsparkID", "getwaitlistAPI", "convertkitAPI", "convertkitFormID", "input", "button", "font", "layout", "link", "gap", "style", "onSubmit", "setEmail", "ye", "isError", "setError", "isLoading", "setLoading", "isFocus", "setFocus", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "padding", "borderRadius", "borderObject", "focusObject", "shadowObject", "height", "fixedHeight", "buttonPaddingPerSide", "buttonPaddingTop", "buttonPaddingRight", "buttonPaddingBottom", "buttonPaddingLeft", "buttonPadding", "paddingValue", "buttonPaddingValue", "router", "useRouter", "onSuccess", "path", "hash", "routeId", "pathVariables", "inferInitialRouteFromPath", "window", "validateForm", "te", "formControls", "handleChange", "event", "handleFocus", "handleBlur", "handleSubmit", "response", "error", "emailBody", "userGroupBody", "formBody", "data", "entries", "formData", "useAnimationControls", "focusStylesFrom", "focusStylesTo", "shadowStyles", "borderStyles", "formVariants", "inputVariants", "dynamicBoxShadow", "p", "motion", "containerStyles", "u", "defaultStyle", "Spinner", "getButtonShadow", "props", "noButtonStyles", "addPropertyControls", "ControlType", "shadows", "output", "shadow", "InputSites_js_1_12_default", "Loops", "props", "p", "InputSites_js_1_12_default", "addPropertyControls", "ControlType", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "RichText2", "css", "FramerSxFXedzk3", "withCSS", "SxFXedzk3_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vcGvfti0k", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap2qddic", "args", "onTap1406pao", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "Link", "css", "FramerUDAPzJXOF", "withCSS", "UDAPzJXOF_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "W88zB8mIG", "T8rQFvSBR", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap2wrxd7", "args", "onTapzc6ei0", "isDisplayed", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "u", "RichText2", "x", "css", "FramerJDIZfHyyT", "withCSS", "JDIZfHyyT_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "RowFonts", "getFonts", "JDIZfHyyT_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "JDIZfHyyT_default", "css", "FrameryhgtyLAnh", "withCSS", "yhgtyLAnh_default", "addFonts", "RowFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavigationCopyFonts", "getFonts", "UDAPzJXOF_default", "LoopsFonts", "Loops", "MotionDivWithFX", "withFX", "motion", "CardFonts", "SxFXedzk3_default", "Accordion2Fonts", "yhgtyLAnh_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition2", "animation3", "HTMLStyle", "value", "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", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onSubmittxyyif", "overlay", "loadMore", "args", "scopingClassNames", "cx", "isDisplayed", "ref1", "ref2", "isDisplayed1", "ref3", "ref4", "elementId", "useRouteElementId", "ref5", "elementId1", "ref6", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "Image2", "x", "RichText2", "l", "AnimatePresence", "Floating", "overlay1", "Link", "SVG", "css", "FramerAfeqt6Wxj", "withCSS", "Afeqt6Wxj_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
