{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/InputSites.js@1.12.0", "ssg:https://framerusercontent.com/modules/tEJqoun4MtBed1OjNwKy/oIG6qvkLwFygGXycIYZs/Input_Mailchimp.js", "ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js", "ssg:https://framerusercontent.com/modules/EQPggIN0w5gDjYFX9O5R/GPfugY3bhviuwWKnhbhO/T1klObX5z.js", "ssg:https://framerusercontent.com/modules/UIn5kBraQaHTef3y09GS/N15yONwaRG4EQkdWaIOl/TtbrpX20t.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 - MAILCHIMP\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 Mailchimp(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:\"mailchimp\"});}addPropertyControls(Mailchimp,{mailchimpURL:{title:\"URL\",placeholder:\"https://***.us6.list-manage.com/subscribe/post?u=***\",type:ControlType.String},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\":\"Mailchimp\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"300\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input_Mailchimp.map", "function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useInView,useTransform,LayoutGroup,wrap,sync,mix}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});}},[hasChildren]);const scheduleMeasure=useCallback(()=>{sync.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (c56cc2c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;IBM Plex Sans-regular\",\"GF;IBM Plex Sans-700\",\"GF;IBM Plex Sans-700italic\",\"GF;IBM Plex Sans-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYXgKVElMYYaJe8bpLHnCwDKtdPUFI5NadY.woff2\",weight:\"400\"},{family:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjWr7MINmdd_qFmo.woff2\",weight:\"700\"},{family:\"IBM Plex Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmrINsdP3vBmpl8A.woff2\",weight:\"700\"},{family:\"IBM Plex Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX-KVElMYYaJe8bpLHnCwDKhdTeFaxIedbzDw.woff2\",weight:\"400\"}]}];export const css=['.framer-nMybn .framer-styles-preset-vyg620:not(.rich-text-wrapper), .framer-nMybn .framer-styles-preset-vyg620.rich-text-wrapper p { --framer-font-family: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-family-bold: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-family-italic: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --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: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 24px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #020c26; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1279px) and (min-width: 0px) { .framer-nMybn .framer-styles-preset-vyg620:not(.rich-text-wrapper), .framer-nMybn .framer-styles-preset-vyg620.rich-text-wrapper p { --framer-font-family: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-family-bold: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-family-italic: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --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: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #020c26; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-nMybn\";\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 (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Mailchimp from\"https://framerusercontent.com/modules/tEJqoun4MtBed1OjNwKy/oIG6qvkLwFygGXycIYZs/Input_Mailchimp.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import SecondaryButton from\"#framer/local/canvasComponent/bVaqz4ByX/bVaqz4ByX.js\";import Footer from\"#framer/local/canvasComponent/H9p8VEfdy/H9p8VEfdy.js\";import PrimaryButton,*as PrimaryButtonInfo from\"#framer/local/canvasComponent/nZmIrg2VV/nZmIrg2VV.js\";import HeaderFixed from\"#framer/local/canvasComponent/vKVvi3jNb/vKVvi3jNb.js\";import{add_CTA_Landingpage}from\"#framer/local/codeFile/Gpj17Sn/Events.js\";import*as sharedStyle7 from\"#framer/local/css/Ax9_pJZDb/Ax9_pJZDb.js\";import*as sharedStyle3 from\"#framer/local/css/DgU4446Yt/DgU4446Yt.js\";import*as sharedStyle1 from\"#framer/local/css/EFv4szSZu/EFv4szSZu.js\";import*as sharedStyle from\"#framer/local/css/oOB2gFDMf/oOB2gFDMf.js\";import*as sharedStyle2 from\"#framer/local/css/oPh_4TQIN/oPh_4TQIN.js\";import*as sharedStyle4 from\"#framer/local/css/T1klObX5z/T1klObX5z.js\";import*as sharedStyle6 from\"#framer/local/css/ucRCwUvxF/ucRCwUvxF.js\";import*as sharedStyle5 from\"#framer/local/css/WCj6RX85d/WCj6RX85d.js\";import metadataProvider from\"#framer/local/webPageMetadata/TtbrpX20t/TtbrpX20t.js\";const HeaderFixedFonts=getFonts(HeaderFixed);const MotionAAdd_CTA_Landingpagepepgkg=withCodeBoundaryForOverrides(motion.a,{nodeId:\"nbQj1L3uv\",override:add_CTA_Landingpage,scopeId:\"TtbrpX20t\"});const PrimaryButtonFonts=getFonts(PrimaryButton);const PrimaryButtonAdd_CTA_Landingpage11qid3vWithMappedReactProps7ghm8l=withMappedReactProps(withCodeBoundaryForOverrides(PrimaryButton,{nodeId:\"DIglVS0xu\",override:add_CTA_Landingpage,scopeId:\"TtbrpX20t\"}),PrimaryButtonInfo);const PrimaryButtonAdd_CTA_Landingpagexx8k9uWithMappedReactProps7ghm8l=withMappedReactProps(withCodeBoundaryForOverrides(PrimaryButton,{nodeId:\"lGcTd2Zcy\",override:add_CTA_Landingpage,scopeId:\"TtbrpX20t\"}),PrimaryButtonInfo);const SlideshowFonts=getFonts(Slideshow);const RichTextAdd_CTA_Landingpage80742i=withCodeBoundaryForOverrides(RichText,{nodeId:\"tuKAezw55\",override:add_CTA_Landingpage,scopeId:\"TtbrpX20t\"});const RichTextAdd_CTA_Landingpage1k9t8cz=withCodeBoundaryForOverrides(RichText,{nodeId:\"kj0z8nkJW\",override:add_CTA_Landingpage,scopeId:\"TtbrpX20t\"});const SecondaryButtonFonts=getFonts(SecondaryButton);const MailchimpFonts=getFonts(Mailchimp);const FooterFonts=getFonts(Footer);const breakpoints={cJQKPDZul:\"(min-width: 1105px)\",LR2td6NJu:\"(min-width: 769px) and (max-width: 1104px)\",P1Vo_Ps3Q:\"(max-width: 692px)\",wJY_z6xPr:\"(min-width: 693px) and (max-width: 768px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-WBhiA\";const variantClassNames={cJQKPDZul:\"framer-v-b35poj\",LR2td6NJu:\"framer-v-h9qi9v\",P1Vo_Ps3Q:\"framer-v-1r88f08\",wJY_z6xPr:\"framer-v-1f3zynu\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"LR2td6NJu\",Desktop:\"cJQKPDZul\",Phone:\"P1Vo_Ps3Q\",Tablet:\"wJY_z6xPr\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"cJQKPDZul\"};};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 sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"HnUP5S0fO\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"P1Vo_Ps3Q\",\"wJY_z6xPr\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"P1Vo_Ps3Q\",\"wJY_z6xPr\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"P1Vo_Ps3Q\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"wJY_z6xPr\")return false;return true;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"P1Vo_Ps3Q\")return true;return false;};const router=useRouter();const isDisplayed5=()=>{if(!isBrowser())return true;if([\"LR2td6NJu\",\"wJY_z6xPr\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if(!isBrowser())return true;if([\"LR2td6NJu\",\"wJY_z6xPr\"].includes(baseVariant))return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"cJQKPDZul\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-d22e8090-383e-439f-8a6b-b9d242649d1f, rgb(248, 246, 245)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-b35poj\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13ah6el-container\",layoutScroll:true,nodeId:\"qh2XwGIkR\",scopeId:\"TtbrpX20t\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P1Vo_Ps3Q:{variant:\"CV4xtqJdu\"}},children:/*#__PURE__*/_jsx(HeaderFixed,{height:\"100%\",id:\"qh2XwGIkR\",layoutId:\"qh2XwGIkR\",style:{width:\"100%\"},variant:\"aj_4V012J\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hxc5dj\",id:elementId,ref:ref1,children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u6cabl hidden-b35poj hidden-h9qi9v\",\"data-framer-name\":\"Display + Drop\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P1Vo_Ps3Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"RB Quaria Display Regular\", \"RB Quaria Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:[\"Deine Arztbriefe und Befunde \",/*#__PURE__*/_jsx(\"em\",{children:\"einfach\"}),\" erkl\\xe4rt\"]})})},wJY_z6xPr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-173e11l\",\"data-styles-preset\":\"oOB2gFDMf\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Deine Arztbriefe \",/*#__PURE__*/_jsx(\"br\",{}),\"und Befunde \",/*#__PURE__*/_jsx(\"em\",{children:\"einfach\"}),\" erkl\\xe4rt\"]})}),fonts:[\"Inter\",\"Inter-Italic\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"RB Quaria Display Regular\", \"RB Quaria Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:[\"Deine Arztbriefe \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a914c170-35d5-4fe4-b10e-dc39bdd5850c, rgb(22, 68, 79))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"und Befunde  \",/*#__PURE__*/_jsx(\"em\",{children:\"einfach\"}),\"  erkl\\xe4rt\"]})}),className:\"framer-18vjw36\",\"data-framer-name\":\"Deine Arztbriefe und Befunde einfach erkl\\xe4rt\",fonts:[\"CUSTOM;RB Quaria Display Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-173e11l\",\"data-styles-preset\":\"oOB2gFDMf\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Deine Arztbriefe \",/*#__PURE__*/_jsx(\"br\",{}),\"und Befunde \",/*#__PURE__*/_jsx(\"em\",{children:\"einfach\"}),\" erkl\\xe4rt\"]})}),className:\"framer-11t9mbo hidden-1r88f08 hidden-1f3zynu\",\"data-framer-name\":\"Deine Arztbriefe und Befunde einfach erkl\\xe4rt\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P1Vo_Ps3Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:\"Simply Onno ist ein Webservice, der dir deine medizinischen Dokumente in eine verst\\xe4ndliche Sprache \\xfcbersetzt.\"})})},wJY_z6xPr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10my468\",\"data-styles-preset\":\"EFv4szSZu\",style:{\"--framer-text-alignment\":\"center\"},children:\"Simply Onno ist ein Webservice, der dir deine medizinischen Dokumente in eine verst\\xe4ndliche Sprache \\xfcbersetzt.\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:\"Onno ist ein Webservice, der Dir Deine medizinischen Dokumente in einfacher Sprache \\xfcbersetzt und Dich mit m\\xf6glichen n\\xe4chsten Schritten unterst\\xfctzt.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-hjvrlf\",\"data-framer-name\":\"Title - Onno ist ein Webservice, der Dir Deine medizinischen Dokumente in einfacher Sprache \\xfcbersetzt und Dich mit m\\xf6glichen n\\xe4chsten Schritten und Hilfestellungen unterst\\xfctzt.\",fonts:[\"GF;IBM Plex Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18p9oqi\",\"data-framer-name\":\"Drop Area\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-g9wwsc hidden-1r88f08 hidden-1f3zynu\",\"data-border\":true,\"data-framer-name\":\"BG Retangle\"}),isDisplayed2()&&/*#__PURE__*/_jsx(Link,{href:\"https://app.simply-onno.com/\",motionChild:true,nodeId:\"nbQj1L3uv\",scopeId:\"TtbrpX20t\",children:/*#__PURE__*/_jsx(MotionAAdd_CTA_Landingpagepepgkg,{className:\"framer-pepgkg hidden-1r88f08 framer-1ls8ibu\",\"data-framer-name\":\"Primary\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy01MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-228ba3b3-ea43-47ec-a165-b2c989475991, rgb(231, 251, 211))\"},children:\"Jetzt \\xfcbersetzen\"})}),className:\"framer-1fcchb\",\"data-framer-name\":\"Dokument Hochladen\",fonts:[\"GF;IBM Plex Sans-500\"],verticalAlignment:\"center\",withExternalLayout:true})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:\"193px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-11qid3v-container hidden-1f3zynu\",nodeId:\"DIglVS0xu\",rendersWithMotion:true,scopeId:\"TtbrpX20t\",children:/*#__PURE__*/_jsx(PrimaryButtonAdd_CTA_Landingpage11qid3vWithMappedReactProps7ghm8l,{height:\"100%\",id:\"DIglVS0xu\",layoutId:\"DIglVS0xu\",skJM3G5PS:\"Jetzt \\xfcbersetzen\",style:{height:\"100%\",width:\"100%\"},UlSmTtSFl:\"https://app.simply-onno.com/\",variant:\"kodGHbCuR\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:185,intrinsicWidth:287.5,pixelHeight:370,pixelWidth:575,src:\"https://framerusercontent.com/images/oYrmIJU2qunwN9Ilwh7z1HFeQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/oYrmIJU2qunwN9Ilwh7z1HFeQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/oYrmIJU2qunwN9Ilwh7z1HFeQ.png 575w\"},className:\"framer-14cjgav hidden-1r88f08 hidden-1f3zynu\",\"data-framer-name\":\"Img_Drop\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P1Vo_Ps3Q:{background:{alt:\"\",fit:\"fill\",pixelHeight:762,pixelWidth:762,sizes:\"225px\",src:\"https://framerusercontent.com/images/BKp9fVHUOkqHqkNc08cZbNjE.png\",srcSet:\"https://framerusercontent.com/images/BKp9fVHUOkqHqkNc08cZbNjE.png?scale-down-to=512 512w,https://framerusercontent.com/images/BKp9fVHUOkqHqkNc08cZbNjE.png 762w\"}},wJY_z6xPr:{background:{alt:\"\",fit:\"fill\",pixelHeight:762,pixelWidth:762,sizes:\"266px\",src:\"https://framerusercontent.com/images/BKp9fVHUOkqHqkNc08cZbNjE.png\",srcSet:\"https://framerusercontent.com/images/BKp9fVHUOkqHqkNc08cZbNjE.png?scale-down-to=512 512w,https://framerusercontent.com/images/BKp9fVHUOkqHqkNc08cZbNjE.png 762w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:762,pixelWidth:762,sizes:\"243px\",src:\"https://framerusercontent.com/images/BKp9fVHUOkqHqkNc08cZbNjE.png\",srcSet:\"https://framerusercontent.com/images/BKp9fVHUOkqHqkNc08cZbNjE.png?scale-down-to=512 512w,https://framerusercontent.com/images/BKp9fVHUOkqHqkNc08cZbNjE.png 762w\"},className:\"framer-6zpdjz\",\"data-framer-name\":\"HeroImage\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:\"Oder direkt hochladen\"})}),className:\"framer-hzgr86 hidden-1r88f08 hidden-1f3zynu\",\"data-framer-name\":\"Oder Befund einfach reinziehen\",fonts:[\"GF;IBM Plex Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tuqax9 hidden-1r88f08 hidden-1f3zynu\",\"data-framer-name\":\"Display + Drop\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fd4czj\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LR2td6NJu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"RB Quaria Display Regular\", \"RB Quaria Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:[\"Deine Arztbriefe und Befunde \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(\"em\",{children:\"einfach\"})}),\" erkl\\xe4rt\"]})}),fonts:[\"CUSTOM;RB Quaria Display Regular\",\"CUSTOM;RB Quaria Display Regular Italic\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-173e11l\",\"data-styles-preset\":\"oOB2gFDMf\",children:[\"Deine Arztbriefe \",/*#__PURE__*/_jsx(\"br\",{}),\"und Befunde \",/*#__PURE__*/_jsx(\"em\",{children:\"einfach\"}),\" erkl\\xe4rt\"]})}),className:\"framer-1cdonfq\",\"data-framer-name\":\"Deine Arztbriefe und Befunde einfach erkl\\xe4rt\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10my468\",\"data-styles-preset\":\"EFv4szSZu\",children:\"Simply Onno ist ein Webservice, der dir deine medizinischen Dokumente in eine verst\\xe4ndliche Sprache \\xfcbersetzt.\"})}),className:\"framer-n1h9ka\",\"data-framer-name\":\"Title - Onno ist ein Webservice, der Dir Deine medizinischen Dokumente in einfacher Sprache \\xfcbersetzt und Dich mit m\\xf6glichen n\\xe4chsten Schritten und Hilfestellungen unterst\\xfctzt.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:\"193px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-xx8k9u-container\",nodeId:\"lGcTd2Zcy\",rendersWithMotion:true,scopeId:\"TtbrpX20t\",children:/*#__PURE__*/_jsx(PrimaryButtonAdd_CTA_Landingpagexx8k9uWithMappedReactProps7ghm8l,{height:\"100%\",id:\"lGcTd2Zcy\",layoutId:\"lGcTd2Zcy\",skJM3G5PS:\"Jetzt \\xfcbersetzen\",style:{height:\"100%\",width:\"100%\"},UlSmTtSFl:\"https://app.simply-onno.com/\",variant:\"kodGHbCuR\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LR2td6NJu:{background:{alt:\"\",fit:\"fill\",pixelHeight:762,pixelWidth:762,sizes:\"243px\",src:\"https://framerusercontent.com/images/BKp9fVHUOkqHqkNc08cZbNjE.png\",srcSet:\"https://framerusercontent.com/images/BKp9fVHUOkqHqkNc08cZbNjE.png?scale-down-to=512 512w,https://framerusercontent.com/images/BKp9fVHUOkqHqkNc08cZbNjE.png 762w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:762,pixelWidth:762,sizes:\"300px\",src:\"https://framerusercontent.com/images/BKp9fVHUOkqHqkNc08cZbNjE.png\",srcSet:\"https://framerusercontent.com/images/BKp9fVHUOkqHqkNc08cZbNjE.png?scale-down-to=512 512w,https://framerusercontent.com/images/BKp9fVHUOkqHqkNc08cZbNjE.png 762w\"},className:\"framer-eulub9\",\"data-framer-name\":\"HeroImage\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h82fuf\",\"data-framer-name\":\"VP - Dein Guide \",children:[isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-g79vxs\",\"data-styles-preset\":\"oPh_4TQIN\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Dein \",/*#__PURE__*/_jsx(\"em\",{children:\"Guide\"}),\", \",/*#__PURE__*/_jsx(\"br\",{}),\"um alle deine medizinischen Dokumente zu verstehen\"]})}),className:\"framer-79iaj7 hidden-1r88f08\",\"data-framer-name\":\"Title - Dein Guide, \\u2028um alle Deine medizinischen Dokumente zu verstehen\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5y14lu\",\"data-framer-name\":\"VP - Details\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ux9a21\",\"data-framer-name\":\"Simple\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LR2td6NJu:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:484,intrinsicWidth:488,pixelHeight:490,pixelWidth:580,positionX:\"center\",positionY:\"center\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.86, 950px) * 0.3, 309px) * 0.8046)`,src:\"https://framerusercontent.com/images/c3MhObe26cieS3o5eDwIJACleE4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/c3MhObe26cieS3o5eDwIJACleE4.png?scale-down-to=512 512w,https://framerusercontent.com/images/c3MhObe26cieS3o5eDwIJACleE4.png 580w\"}},P1Vo_Ps3Q:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:484,intrinsicWidth:488,pixelHeight:490,pixelWidth:580,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 950px) - 60px) * 0.6)`,src:\"https://framerusercontent.com/images/c3MhObe26cieS3o5eDwIJACleE4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/c3MhObe26cieS3o5eDwIJACleE4.png?scale-down-to=512 512w,https://framerusercontent.com/images/c3MhObe26cieS3o5eDwIJACleE4.png 580w\"}},wJY_z6xPr:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:484,intrinsicWidth:488,pixelHeight:490,pixelWidth:580,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} * 0.86, 950px) * 0.2552)`,src:\"https://framerusercontent.com/images/c3MhObe26cieS3o5eDwIJACleE4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/c3MhObe26cieS3o5eDwIJACleE4.png?scale-down-to=512 512w,https://framerusercontent.com/images/c3MhObe26cieS3o5eDwIJACleE4.png 580w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:484,intrinsicWidth:488,pixelHeight:490,pixelWidth:580,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 950px) * 0.2552)`,src:\"https://framerusercontent.com/images/c3MhObe26cieS3o5eDwIJACleE4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/c3MhObe26cieS3o5eDwIJACleE4.png?scale-down-to=512 512w,https://framerusercontent.com/images/c3MhObe26cieS3o5eDwIJACleE4.png 580w\"},className:\"framer-23jast\",\"data-framer-name\":\"IMG_Read\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LR2td6NJu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-11vrpq9\",\"data-styles-preset\":\"DgU4446Yt\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Simpel, klar \"}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"strong\",{children:\"und hilfreich\"})]})})},P1Vo_Ps3Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g79vxs\",\"data-styles-preset\":\"oPh_4TQIN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Simpel, klar und hilfreich\"})}),fonts:[\"Inter\"]},wJY_z6xPr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-11vrpq9\",\"data-styles-preset\":\"DgU4446Yt\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Simpel, \"}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"strong\",{children:\"klar und hilfreich\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-11vrpq9\",\"data-styles-preset\":\"DgU4446Yt\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Simpel, klar und hilfreich\"})})}),className:\"framer-ciwdv1\",\"data-framer-name\":\"Title - Deine Dokumente endlich simpel, klar und verst\\xe4ndlich \",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P1Vo_Ps3Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:\"Onno \\xfcbersetzt Deine Dokumente nicht nur, wir erkl\\xe4ren Dir auch alle medizinischen Begriffe. In Zukunft wollen wir Dich zus\\xe4tzlich mit pers\\xf6nlichen Hilfestellungen und m\\xf6glichen n\\xe4chsten Schritten begleiten.\"})}),fonts:[\"GF;IBM Plex Sans-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vyg620\",\"data-styles-preset\":\"T1klObX5z\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:\"Onno \\xfcbersetzt Deine Dokumente nicht nur, wir erkl\\xe4ren Dir auch alle medizinischen Begriffe. In Zukunft wollen wir Dich zus\\xe4tzlich mit pers\\xf6nlichen Hilfestellungen und m\\xf6glichen n\\xe4chsten Schritten begleiten.\"})}),className:\"framer-ojly2r\",\"data-framer-name\":\"Onno \\xfcbersetzt Deine Dokumente nicht nur, wir erkl\\xe4ren Dir auch alle medizinischen Begriffe und begleiten Dich zus\\xe4tzlich mit pers\\xf6nlichen Hilfestellungen und m\\xf6glichen n\\xe4chsten Schritten.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-58maxg\",\"data-framer-name\":\"Fachaerztinnen\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:490,intrinsicWidth:481,pixelHeight:490,pixelWidth:481,src:\"https://framerusercontent.com/images/L6hBBnv4KZ9uFGDJ1TwaPprURs.png\"},className:\"framer-1a8sm0u\",\"data-framer-name\":\"IMG_Scan\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LR2td6NJu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-11vrpq9\",\"data-styles-preset\":\"DgU4446Yt\",children:/*#__PURE__*/_jsxs(\"strong\",{children:[\"Gepr\\xfcfte \",/*#__PURE__*/_jsx(\"br\",{}),\"Qualit\\xe4t\"]})})})},P1Vo_Ps3Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g79vxs\",\"data-styles-preset\":\"oPh_4TQIN\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:\"Gepr\\xfcfte Qualit\\xe4t\"})}),fonts:[\"Inter\"]},wJY_z6xPr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-11vrpq9\",\"data-styles-preset\":\"DgU4446Yt\",children:/*#__PURE__*/_jsxs(\"strong\",{children:[\"Gepr\\xfcfte \",/*#__PURE__*/_jsx(\"br\",{}),\"Qualit\\xe4t\"]})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-11vrpq9\",\"data-styles-preset\":\"DgU4446Yt\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Gepr\\xfcfte Qualit\\xe4t\"})})}),className:\"framer-1bygqoa\",\"data-framer-name\":\"Title - Von unseren Fach\\xe4rzt:innen trainiert und ganz fix \\xfcbersetzt\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P1Vo_Ps3Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:\"Onno arbeitet mit k\\xfcnstlicher Intelligenz (KI), die von unserem Team aus \\xc4rzten und \\xc4rztinnen konstant \\xfcberpr\\xfcft wird. So stellen wir sicher, dass wir deine Befunde auch sachgem\\xe4\\xdf \\xfcbersetzten.\"})}),fonts:[\"GF;IBM Plex Sans-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vyg620\",\"data-styles-preset\":\"T1klObX5z\",children:\"Onno arbeitet mit k\\xfcnstlicher Intelligenz (KI), die von unserem Team aus \\xc4rzten und \\xc4rztinnen konstant \\xfcberpr\\xfcft wird. So stellen wir sicher, dass wir deine Befunde auch sachgem\\xe4\\xdf \\xfcbersetzten.\"})}),className:\"framer-rzhnvw\",\"data-framer-name\":\"Onno arbeitet mit KI (k\\xfcnstlicher Intelligenz), die von unserem Team aus \\xc4rzt:innen konstant validiert wird, um sicherzustellen, dass wir Deine Befunde auch sachgem\\xe4\\xdf \\xfcbersetzten.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rxsyi7\",\"data-framer-name\":\"Daten\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:490,intrinsicWidth:481,pixelHeight:490,pixelWidth:481,src:\"https://framerusercontent.com/images/ahcuabe5XbNN9o0PavGfJdaRQpI.png\"},className:\"framer-9ja1rf\",\"data-framer-name\":\"IMG_Scientist\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LR2td6NJu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-11vrpq9\",\"data-styles-preset\":\"DgU4446Yt\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Datensicherheit an \"}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"strong\",{children:\"erster Stelle\"})]})})},P1Vo_Ps3Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g79vxs\",\"data-styles-preset\":\"oPh_4TQIN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Datensicherheit an erster Stelle\"})}),fonts:[\"Inter\"]},wJY_z6xPr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-11vrpq9\",\"data-styles-preset\":\"DgU4446Yt\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Datensicherheit an erster Stelle\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-11vrpq9\",\"data-styles-preset\":\"DgU4446Yt\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Datensicherheit an erster Stelle\"})})}),className:\"framer-gewai9\",\"data-framer-name\":\"title - Deine Datensicherheit steht\\u2028an erster Stelle\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LR2td6NJu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vyg620\",\"data-styles-preset\":\"T1klObX5z\",style:{\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:\"Wir erstellen keine Accounts und speichern somit nichts, das dich mit deinen Informationen oder Dokumenten in Verbindung bringt \u2013 deine Daten sind in guten H\\xe4nden.\"})})},P1Vo_Ps3Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:\"Wir erstellen keine Accounts und speichern somit nichts, das dich mit deinen Informationen oder Dokumenten in Verbindung bringt \u2013 deine Daten sind in guten H\\xe4nden.\"})}),fonts:[\"GF;IBM Plex Sans-regular\"]},wJY_z6xPr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vyg620\",\"data-styles-preset\":\"T1klObX5z\",style:{\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:\"Wir erstellen keine Accounts und speichern somit nichts, das dich mit deinen Informationen oder Dokumenten in Verbindung bringt \u2013 deine Daten sind in guten H\\xe4nden.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vyg620\",\"data-styles-preset\":\"T1klObX5z\",children:\"Wir erstellen keine Accounts und speichern somit nichts, das dich mit deinen Informationen oder Dokumenten in Verbindung bringt \u2013 deine Daten sind in guten H\\xe4nden.\"})}),className:\"framer-1rhnpp0\",\"data-framer-name\":\"Wir erstellen keine Accounts und speichern somit nichts das Dich mit Deinen Informationen oder Dokumenten in Verbindung bringt \u2013 Deine Daten sind in guten H\\xe4nden.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-84t3lf\",\"data-framer-name\":\"Product intro\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-117b6ut\",\"data-framer-name\":\"Container for BG\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xednl7\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LR2td6NJu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-173e11l\",\"data-styles-preset\":\"oOB2gFDMf\",style:{\"--framer-text-alignment\":\"start\"},children:\"So funktioniert Onno\"})})},P1Vo_Ps3Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-173e11l\",\"data-styles-preset\":\"oOB2gFDMf\",style:{\"--framer-text-alignment\":\"center\"},children:\"So funktioniert Onno\"})})},wJY_z6xPr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-173e11l\",\"data-styles-preset\":\"oOB2gFDMf\",style:{\"--framer-text-alignment\":\"start\"},children:\"So funktioniert Onno\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-173e11l\",\"data-styles-preset\":\"oOB2gFDMf\",children:\"So funktioniert Onno\"})}),className:\"framer-1lbo9kf\",\"data-framer-name\":\"Headline - Unkompliziert und in wenigen Schritten vom kryptischen Arztbrief zur einfachen \\xdcbersetzung.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LR2td6NJu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1l9a8w6\",\"data-styles-preset\":\"WCj6RX85d\",style:{\"--framer-text-alignment\":\"start\"},children:\"Unkompliziert und in wenigen Schritten vom kryptischen Arztbrief zur einfachen \\xdcbersetzung.\"})})},P1Vo_Ps3Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:\"Unkompliziert und in wenigen Schritten vom kryptischen Arztbrief zur einfachen \\xdcbersetzung.\"})}),fonts:[\"GF;IBM Plex Sans-regular\"]},wJY_z6xPr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1l9a8w6\",\"data-styles-preset\":\"WCj6RX85d\",style:{\"--framer-text-alignment\":\"start\"},children:\"Unkompliziert und in wenigen Schritten vom kryptischen Arztbrief zur einfachen \\xdcbersetzung.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1l9a8w6\",\"data-styles-preset\":\"WCj6RX85d\",children:\"Unkompliziert und in wenigen Schritten vom kryptischen Arztbrief zur einfachen \\xdcbersetzung.\"})}),className:\"framer-1yr9rir\",\"data-framer-name\":\"Lade einfach Dein medizinisches Dokumente hoch und wir \\xfcbersetzten es Dir mit m\\xf6glichen n\\xe4chsten Schritten und Hilfestellungen.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P1Vo_Ps3Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16cwjk9\",\"data-styles-preset\":\"ucRCwUvxF\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://app.simply-onno.com\",motionChild:true,nodeId:\"tom9SRBG7\",openInNewTab:false,scopeId:\"TtbrpX20t\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vllgyt\",\"data-styles-preset\":\"Ax9_pJZDb\",children:\"Erstelle gleich deine Zusammenfassung \"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16cwjk9\",\"data-styles-preset\":\"ucRCwUvxF\",children:/*#__PURE__*/_jsx(Link,{href:\"https://app.simply-onno.com\",motionChild:true,nodeId:\"tom9SRBG7\",openInNewTab:false,scopeId:\"TtbrpX20t\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vllgyt\",\"data-styles-preset\":\"Ax9_pJZDb\",children:\"Erstelle gleich deine Zusammenfassung \"})})})}),className:\"framer-1njfocw\",\"data-framer-name\":\"Link - Lass Dir Deinen Bericht\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12snovw\",\"data-framer-name\":\"Product Details\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6j6iaj\",\"data-framer-name\":\"Foto\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-i9dmn5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LR2td6NJu:{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 80px, 950px) * 0.39 - 64px, 1px) * 0.9)`,src:\"https://framerusercontent.com/images/0wZYvpDuas8SF3RGYCyK5ga8A6g.png\",srcSet:\"https://framerusercontent.com/images/0wZYvpDuas8SF3RGYCyK5ga8A6g.png 892w\"}},P1Vo_Ps3Q:{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 60px, 950px) * 0.7517)`,src:\"https://framerusercontent.com/images/0wZYvpDuas8SF3RGYCyK5ga8A6g.png\",srcSet:\"https://framerusercontent.com/images/0wZYvpDuas8SF3RGYCyK5ga8A6g.png 892w\"}},wJY_z6xPr:{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 950px) / 4.286)`,src:\"https://framerusercontent.com/images/0wZYvpDuas8SF3RGYCyK5ga8A6g.png\",srcSet:\"https://framerusercontent.com/images/0wZYvpDuas8SF3RGYCyK5ga8A6g.png 892w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 950px) * 0.2295)`,src:\"https://framerusercontent.com/images/0wZYvpDuas8SF3RGYCyK5ga8A6g.png\",srcSet:\"https://framerusercontent.com/images/0wZYvpDuas8SF3RGYCyK5ga8A6g.png 892w\"},className:\"framer-19u3whd\",\"data-framer-name\":\"Group 1171273984\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P1Vo_Ps3Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy03MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Bericht fotografieren\"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"oder hochladen\"})})]})}),fonts:[\"GF;IBM Plex Sans-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-11vrpq9\",\"data-styles-preset\":\"DgU4446Yt\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Bericht fotografieren\"}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"strong\",{children:\"oder hochladen\"})]})}),className:\"framer-1bpg72b\",\"data-framer-name\":\"Title - Einfach Bericht fotografieren  oder hochladen\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P1Vo_Ps3Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:\"Fotografiere einfach dein medizinisches Dokument. Wichtig ist, dass du pers\\xf6nliche Informationen schw\\xe4rzt oder abschneidest. \"})}),fonts:[\"GF;IBM Plex Sans-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vyg620\",\"data-styles-preset\":\"T1klObX5z\",children:\"Fotografiere einfach dein medizinisches Dokument. Wichtig ist, dass du pers\\xf6nliche Informationen schw\\xe4rzt oder abschneidest. \"})}),className:\"framer-1eb19fa\",\"data-framer-name\":\"Fotografiere einfach Dein medizinisches Dokument. Wichtig ist, dass Du pers\\xf6nliche Informationen Schw\\xe4rzt oder abschneidest. \",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-163zu49\",\"data-framer-name\":\"Bericht\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xmslop\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LR2td6NJu:{background:{alt:\"\",fit:\"fit\",pixelHeight:901,pixelWidth:446,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 950px) * 0.27)`,src:\"https://framerusercontent.com/images/0dKXrChIAUD4fNcviSpITwBTZh4.png\",srcSet:\"https://framerusercontent.com/images/0dKXrChIAUD4fNcviSpITwBTZh4.png 446w\"}},P1Vo_Ps3Q:{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 60px, 950px) * 0.75)`,src:\"https://framerusercontent.com/images/x1RQ5iBKg2mKLLorkpWxutYLU.png\",srcSet:\"https://framerusercontent.com/images/x1RQ5iBKg2mKLLorkpWxutYLU.png 892w\"}},wJY_z6xPr:{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 950px) * 0.2334)`,src:\"https://framerusercontent.com/images/x1RQ5iBKg2mKLLorkpWxutYLU.png\",srcSet:\"https://framerusercontent.com/images/x1RQ5iBKg2mKLLorkpWxutYLU.png 892w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 950px) * 0.2289)`,src:\"https://framerusercontent.com/images/x1RQ5iBKg2mKLLorkpWxutYLU.png\",srcSet:\"https://framerusercontent.com/images/x1RQ5iBKg2mKLLorkpWxutYLU.png 892w\"},className:\"framer-196q1lv\",\"data-framer-name\":\"Group 1171273985\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P1Vo_Ps3Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy03MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Zusammenfassung erhalten\"})})}),fonts:[\"GF;IBM Plex Sans-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-11vrpq9\",\"data-styles-preset\":\"DgU4446Yt\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Zusammenfassung\"}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"strong\",{children:\"erhalten\"})]})}),className:\"framer-qin1xi\",\"data-framer-name\":\"Ttitle - Deine validierte \\xdcbersetzung \\u2028in wenigen Sekunden\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P1Vo_Ps3Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:\"Innerhalb weniger Sekunden fasst dir Simply Onno dein Dokument in einfache, leicht verst\\xe4ndliche Sprache zusammen. \"})}),fonts:[\"GF;IBM Plex Sans-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vyg620\",\"data-styles-preset\":\"T1klObX5z\",children:\"Innerhalb weniger Sekunden fasst dir Simply Onno dein Dokument in einfache, leicht verst\\xe4ndliche Sprache zusammen. \"})}),className:\"framer-1kdg7su\",\"data-framer-name\":\"Innerhalb weniger Sekunden \\xfcbersetzt Dir Simply Onno Dein Dokument in eine einfache, leicht verst\\xe4ndliche Sprache.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rvrhoe\",\"data-framer-name\":\"Next\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-x0m1gw\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-19j1dfe\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lnu38y\",\"data-framer-name\":\"Group 1171273983\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16pl21d\",\"data-framer-name\":\"Ellipse 38\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LR2td6NJu:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy01MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:\"\u20AC 0\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy01MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})},wJY_z6xPr:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy01MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:\"\u20AC 0\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy01MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy01MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:\"\u20AC 0\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy01MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1ayyfp\",\"data-framer-name\":\"\u20AC 0\",fonts:[\"GF;IBM Plex Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LR2td6NJu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy0zMDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:\"Pro Zusammenfassung\"})}),fonts:[\"GF;IBM Plex Sans-300\"]},wJY_z6xPr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:\"Pro Zusammenfassung\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:\"Pro Zusammenfassung\"})}),className:\"framer-aru1o9\",\"data-framer-name\":\"Pro Zusammenfassung\",fonts:[\"GF;IBM Plex Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wJY_z6xPr:{background:{alt:\"\",fit:\"fit\",pixelHeight:639,pixelWidth:330,positionX:\"center\",positionY:\"center\",sizes:\"111px\",src:\"https://framerusercontent.com/images/RvuOErdDhaxGWRaBa1hebyneV0.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/RvuOErdDhaxGWRaBa1hebyneV0.png?lossless=1 330w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:639,pixelWidth:330,positionX:\"center\",positionY:\"center\",sizes:\"148px\",src:\"https://framerusercontent.com/images/RvuOErdDhaxGWRaBa1hebyneV0.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/RvuOErdDhaxGWRaBa1hebyneV0.png?lossless=1 330w\"},className:\"framer-1dejp6a\",\"data-framer-name\":\"HeroImage\"})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P1Vo_Ps3Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy03MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Die Zusammenfassung ist immer kostenlos\"})})}),fonts:[\"GF;IBM Plex Sans-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-11vrpq9\",\"data-styles-preset\":\"DgU4446Yt\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Die Zusammenfassung ist immer kostenlos\"})})}),className:\"framer-3utbrl\",\"data-framer-name\":\"Title - Deine m\\xf6glichen n\\xe4chsten Schritte und erste Hilfestellung\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LR2td6NJu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vyg620\",\"data-styles-preset\":\"T1klObX5z\",children:\"Wir wollen so vielen Menschen wie m\\xf6glich helfen, ein besseres Bild \\xfcber die eigene Gesundheit zu bekommen. Deshalb ist Deine Zusammenfassung immer kostenlos.\"})})},P1Vo_Ps3Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:\"Wir wollen so vielen Menschen wie m\\xf6glich helfen ein besseres Bild \\xfcber die eigene Gesundheit zu bekommen, deshalb ist deine Zusammenfassung immer kostenlos.\"})}),fonts:[\"GF;IBM Plex Sans-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vyg620\",\"data-styles-preset\":\"T1klObX5z\",children:\"Wir wollen so vielen Menschen wie m\\xf6glich helfen ein besseres Bild \\xfcber die eigene Gesundheit zu bekommen, deshalb ist deine Zusammenfassung immer kostenlos.\"})}),className:\"framer-b70z59\",\"data-framer-name\":\"Sofern m\\xf6glich, erstellen wir Dir m\\xf6gliche n\\xe4chste Schritte und  geben Dir erste Tips zur Ern\\xe4hrung oder leichten \\xdcbungen. \",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-c9y4gp-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"cVEezn8Jr\",scopeId:\"TtbrpX20t\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"cVEezn8Jr\",intervalControl:5,itemAmount:1,layoutId:\"cVEezn8Jr\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"var(--token-eeceb38a-b0ab-4c9e-beab-fbe15d03d1d2, rgb(34, 136, 118))\",dotsGap:10,dotsInset:10,dotSize:16,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j8w0pk\",\"data-framer-name\":\"Testimonal1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g79vxs\",\"data-styles-preset\":\"oPh_4TQIN\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a914c170-35d5-4fe4-b10e-dc39bdd5850c, rgb(22, 68, 79))\"},children:\"\u201EIch habe jetzt Dinge verstanden, die mir vorher nicht klar waren.\u201C\"})}),className:\"framer-prdu6z\",\"data-framer-name\":\"health guide\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1l9a8w6\",\"data-styles-preset\":\"WCj6RX85d\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a914c170-35d5-4fe4-b10e-dc39bdd5850c, rgb(22, 68, 79))\"},children:\"Benjamin, 25 Jahre\"})}),className:\"framer-9q98o8\",\"data-framer-name\":\"health guide\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mixtqj\",\"data-framer-name\":\"Testimonal2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g79vxs\",\"data-styles-preset\":\"oPh_4TQIN\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a914c170-35d5-4fe4-b10e-dc39bdd5850c, rgb(22, 68, 79))\"},children:\"\u201ESehr gut erkl\\xe4rt, das konnte mein Hausarzt nicht in dieser einfachen Wortwahl vermitteln.\u201C\"})}),className:\"framer-bx67d5\",\"data-framer-name\":\"health guide\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1l9a8w6\",\"data-styles-preset\":\"WCj6RX85d\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a914c170-35d5-4fe4-b10e-dc39bdd5850c, rgb(22, 68, 79))\"},children:\"Unbekannte Nutzer:in\"})}),className:\"framer-1qhm58a\",\"data-framer-name\":\"health guide\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jmqn5d\",\"data-framer-name\":\"Testimonal3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g79vxs\",\"data-styles-preset\":\"oPh_4TQIN\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a914c170-35d5-4fe4-b10e-dc39bdd5850c, rgb(22, 68, 79))\"},children:\"\u201EDie Zusammenfassung klingt weniger besorgniserregend als der Brief.\u201C\"})}),className:\"framer-1cj7gs7\",\"data-framer-name\":\"health guide\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1l9a8w6\",\"data-styles-preset\":\"WCj6RX85d\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a914c170-35d5-4fe4-b10e-dc39bdd5850c, rgb(22, 68, 79))\"},children:\"Marte, 44 Jahre\"})}),className:\"framer-11enb9h\",\"data-framer-name\":\"health guide\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lz2pu9\",\"data-framer-name\":\"Testimonal4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g79vxs\",\"data-styles-preset\":\"oPh_4TQIN\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a914c170-35d5-4fe4-b10e-dc39bdd5850c, rgb(22, 68, 79))\"},children:\"\u201EMit diesem Befund konnte ich als Laie wirklich nichts anfangen. Sehr gut, vielen Dank! Das hilft f\\xfcr die Vorbereitung auf den Arzttermin.\u201C\"})}),className:\"framer-1ois37s\",\"data-framer-name\":\"health guide\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1l9a8w6\",\"data-styles-preset\":\"WCj6RX85d\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a914c170-35d5-4fe4-b10e-dc39bdd5850c, rgb(22, 68, 79))\"},children:\"Britta, 61 Jahre\"})}),className:\"framer-p13x2q\",\"data-framer-name\":\"health guide\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h6t113\",\"data-framer-name\":\"Aerzt:innen\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l0czvx hidden-b35poj hidden-h9qi9v hidden-1f3zynu\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-da2l28\",\"data-framer-name\":\"Intro Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t07tpb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g79vxs\",\"data-styles-preset\":\"oPh_4TQIN\",children:\"Unsere Fach\\xe4rzte und Fach\\xe4rztinnen an Deiner Seite\"})}),className:\"framer-1ld9bes\",\"data-framer-name\":\"Title - Unser Fach\\xe4rzt:innen-Team an Deiner Seite\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:\"Ein Team aus Fach\\xe4rzten und Fach\\xe4rztinnen ist fester Teil von Simply Onno. Dank ihnen stellen wir sicher, dass unsere Erkl\\xe4rungen nicht nur einfach zu verstehen, sondern auch inhaltlich korrekt sind.\"})}),className:\"framer-4b0fnv\",\"data-framer-name\":\"Unser eingespieltes Team aus Fach\\xe4rzt:innen unter der Leitung von Dr. Carmen Georg ist fester Teil von Simply Onno. Dank ihnen stellen wir sicher, dass wir uns stetig weiterentwickeln um Dir alle relevanten Dokumente in eine einfache Sprache zu \\xfcbersetzten. \",fonts:[\"GF;IBM Plex Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy01MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-eeceb38a-b0ab-4c9e-beab-fbe15d03d1d2, rgb(34, 136, 118))\",\"--framer-text-decoration\":\"underline\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://app.simply-onno.com\",motionChild:true,nodeId:\"JAp_zTjh_\",openInNewTab:false,scopeId:\"TtbrpX20t\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vllgyt\",\"data-styles-preset\":\"Ax9_pJZDb\",children:\"Lass deinen Bericht \\xfcbersetzen\"})})})}),className:\"framer-75nl8w\",\"data-framer-name\":\"Link\",fonts:[\"GF;IBM Plex Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-193xrra\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-uwyiqr\",\"data-framer-name\":\"IMG_Docs\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:289,intrinsicWidth:463,svg:'<svg width=\"463\" height=\"289\" viewBox=\"0 0 463 289\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M416.331 263.053L440.126 262.521C439.585 265.081 439.283 268.684 441.087 271.911C442.527 274.489 444.288 274.993 445.781 277.458C446.964 279.414 447.991 282.631 446.848 288.021H409.928C408.7 283.665 408.645 279.061 409.77 274.676C410.894 270.291 413.157 266.282 416.33 263.053H416.331Z\" fill=\"#020C26\"/>\\n<path d=\"M393.811 263.053L370.016 262.521C370.557 265.081 370.86 268.684 369.056 271.911C367.616 274.489 365.855 274.993 364.362 277.458C363.179 279.414 362.151 282.631 363.294 288.021H400.215C401.443 283.665 401.497 279.061 400.373 274.676C399.249 270.291 396.986 266.282 393.813 263.053H393.811Z\" fill=\"#020C26\"/>\\n<path d=\"M442.119 264.518L404.816 264.606L404.582 216.551C401.52 232.751 398.458 248.952 395.396 265.152L370.089 264.518L367.235 215.347L439.784 213.241C440.562 230.334 441.34 247.426 442.119 264.518Z\" fill=\"#D79AEA\"/>\\n<path d=\"M310.507 110.365C313.992 120.111 317.478 129.856 320.963 139.601C329.728 139.741 337.229 139.353 343.158 138.854C351 138.195 355.874 137.358 360.123 133.732C361.626 132.445 362.922 130.933 363.964 129.251C363.875 158.897 363.786 188.542 363.697 218.187H448.204L442.122 138.961C445.882 136.721 452.194 132.239 456.847 124.397C464.251 111.913 463.502 97.596 460.208 88.065C451.139 61.8278 416.459 53.6124 396.508 53.3339C386.821 53.1995 371.29 52.9818 357.935 64.2174C339.736 79.5279 340.342 103.686 340.49 107.271L310.507 110.365Z\" fill=\"white\"/>\\n<path d=\"M385.944 56.3752C388.278 68.3204 392.077 79.9319 397.255 90.9462C401.33 79.5236 403.177 67.4258 402.697 55.3076L385.944 56.3752Z\" fill=\"#D79AEA\"/>\\n<path d=\"M421.382 132.061C418.674 133.676 416.126 134.07 415.195 133.074C414.007 131.808 415.603 128.468 416.901 126.832C421.877 120.57 434.96 123.676 437.152 124.222L440.235 132.839C440.954 134.846 441.672 136.854 442.389 138.862C440.861 139.746 439.149 140.267 437.388 140.384C436.268 140.454 435.145 140.358 434.054 140.099C430.853 143.377 427.477 144.433 426.398 143.478C425.374 142.572 425.953 139.444 428.105 136.223C424.486 139.563 420.763 140.365 419.622 139.211C418.594 138.161 419.283 135.094 421.382 132.061Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M426.037 142.903C426.2 140.322 427.076 137.837 428.567 135.725C429.492 134.434 430.636 133.314 431.946 132.417\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M419.131 137.055C419.625 134.517 420.814 132.166 422.564 130.264C423.649 129.103 424.927 128.14 426.342 127.418\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M297.605 125.471C294.897 127.086 292.349 127.48 291.417 126.485C290.23 125.219 291.826 121.878 293.124 120.243C298.1 113.98 311.182 117.086 313.375 117.632L316.457 126.249C317.177 128.256 317.895 130.264 318.612 132.272C317.083 133.156 315.372 133.677 313.61 133.794C312.491 133.865 311.367 133.769 310.276 133.509C307.075 136.787 303.7 137.843 302.621 136.888C301.597 135.982 302.176 132.855 304.327 129.633C300.708 132.973 296.986 133.775 295.845 132.621C294.817 131.571 295.505 128.504 297.605 125.471Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M302.259 136.313C302.423 133.732 303.299 131.248 304.79 129.135C305.715 127.844 306.858 126.725 308.168 125.827\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M295.354 130.465C295.848 127.927 297.036 125.576 298.787 123.674C299.872 122.513 301.15 121.55 302.564 120.828\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M404.024 217.625C402.461 184.762 395.193 152.299 393.626 119.435\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M394.564 104.574L377.016 83.4701C376.539 82.8968 376.254 82.1884 376.2 81.4445C376.147 80.7006 376.328 79.9587 376.718 79.3231L383.703 67.9515L373.437 71.8231C373.24 71.8976 373.024 71.9085 372.819 71.8545C372.615 71.8004 372.433 71.684 372.298 71.5215C372.163 71.359 372.082 71.1584 372.066 70.9477C372.05 70.737 372.1 70.5267 372.21 70.3459L381.515 54.981\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M442.389 138.961C439.471 130.745 436.554 122.529 433.639 114.313L433.106 89.3452\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M356.655 96.9752L364.871 94.8945L363.358 217.625\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M410.881 41.2245C415.36 41.2245 418.991 37.5936 418.991 33.1147C418.991 28.6358 415.36 25.0049 410.881 25.0049C406.402 25.0049 402.771 28.6358 402.771 33.1147C402.771 37.5936 406.402 41.2245 410.881 41.2245Z\" fill=\"#020C26\"/>\\n<path d=\"M406.565 26.4814L408.568 26.6607C409.058 28.2824 409.173 29.9946 408.902 31.6671C408.538 33.8333 407.551 35.8463 406.06 37.4594L404.163 36.4526C404.963 33.1289 405.764 29.8052 406.565 26.4814Z\" fill=\"#020C26\"/>\\n<path d=\"M386.3 57.9752L386.074 50.0734C385.227 49.7471 384.415 49.3358 383.651 48.8458C375.541 43.6378 376.399 31.5603 376.534 29.6717C376.751 26.6051 377.899 25.2543 378.347 24.7886C378.658 24.4639 379.008 24.1785 379.389 23.9387L395.597 22.0181L405.695 31.6948C406.523 33.1423 406.884 34.8102 406.729 36.4707C406.654 37.2117 406.409 39.0123 404.875 40.44C403.176 42.0181 401.085 42.0085 400.615 41.9957C401.316 46.5721 402.016 51.149 402.715 55.7264C397.631 58.2344 391.87 59.0209 386.3 57.9672V57.9752Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M398.401 31.7799C398.59 31.551 399.866 30.0449 401.975 30.0401C404.523 30.0401 405.94 32.2232 406.031 32.3688C406.759 30.2277 406.943 27.9388 406.564 25.7091C405.592 20.189 401.356 17.1976 400.181 16.439C393.417 12.0728 385.008 15.1473 381.31 18.3596C379.89 19.6071 378.732 21.1245 377.904 22.8234C377.001 25.1742 376.525 27.6676 376.5 30.1857C376.98 28.9838 377.643 28.4252 378.049 28.1531C378.456 27.881 378.995 27.6441 381.655 27.4089C382.662 27.3192 383.501 27.2728 384.088 27.2488C384.45 27.8538 387.139 32.18 392.311 32.8298C394.4 33.0742 396.515 32.7096 398.401 31.7799Z\" fill=\"#020C26\"/>\\n<path d=\"M403.62 32.7578L400.633 36.4214L404.475 37.9515\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M377.834 33.1678C378.775 32.4329 379.924 32.0144 381.117 31.9722C382.585 31.9258 383.163 33.5327 383.311 34.7827C383.471 36.0839 382.991 37.766 382.532 38.7023C382.319 39.1393 382.455 39.8387 382.94 39.8515C383.704 39.8707 384.842 39.6786 385.317 39.6786\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M386.354 31.9706C387.25 31.51 388.23 31.2376 389.235 31.1703C390.358 31.1039 391.482 31.2904 392.524 31.7161\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M390.541 42.9741C386.842 46.3448 383.318 44.7779 382.167 44.3057\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M402.77 53.832C402.962 58.0526 402.886 65.9255 401.65 73.5583C400.442 81.0647 398.758 85.3493 397.247 90.9463C395.501 97.406 393.627 106.935 393.619 119.435C401.036 107.88 408.455 96.3235 415.875 84.7667C416.153 84.3346 416.324 83.8425 416.374 83.3313C416.424 82.82 416.351 82.3042 416.162 81.8266L410.691 68.0062L417.906 69.4658C418.055 69.4934 418.209 69.473 418.345 69.4075C418.481 69.342 418.593 69.2348 418.664 69.1014C418.736 68.9681 418.763 68.8155 418.742 68.6658C418.72 68.5161 418.652 68.377 418.547 68.2686C414.324 63.9841 410.643 58.3263 406.423 54.0417\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M385.944 56.3745C388.277 68.32 392.076 79.9316 397.255 90.9456\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M342.928 280.248H346.116C346.116 269.646 336.459 260.902 324 259.673V207.158H317.956V259.673L317.796 259.688L317.667 259.673V259.704C305.34 261.039 295.84 269.728 295.84 280.248H299.028C299.422 271.614 306.219 264.438 315.344 262.308C308.003 265.925 303.084 272.536 303.084 280.099H306.274C306.645 271.916 312.779 265.049 321.179 262.539C329.848 264.919 336.215 271.9 336.587 280.248H339.775C339.775 272.821 335.032 266.312 327.912 262.654C336.388 265.134 342.552 272.032 342.928 280.248Z\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M353.151 163.009H316.371C311.273 163.009 307.14 167.142 307.14 172.241V209.02C307.14 214.119 311.273 218.252 316.371 218.252H353.151C358.249 218.252 362.382 214.119 362.382 209.02V172.241C362.382 167.142 358.249 163.009 353.151 163.009Z\" fill=\"#020C26\"/>\\n<path d=\"M351.445 210.946H302.573C300.935 210.946 299.606 212.275 299.606 213.913V222.588C299.606 224.227 300.935 225.555 302.573 225.555H351.445C353.084 225.555 354.412 224.227 354.412 222.588V213.913C354.412 212.275 353.084 210.946 351.445 210.946Z\" fill=\"#020C26\"/>\\n<path d=\"M343.778 190.63H338.642V280.718H343.778V190.63Z\" fill=\"#020C26\"/>\\n<path d=\"M281.992 106.132C279.886 111.332 277.78 116.531 275.676 121.73L288.992 122.338C289.449 118.992 289.905 115.644 290.362 112.295L281.992 106.132Z\" fill=\"#020C26\"/>\\n<path d=\"M239.44 260.599C238.939 260.657 238.477 260.902 238.148 261.284C234.402 265.599 230.728 268.228 227.91 269.874C220.877 273.982 215.058 274.378 212.601 279.391C211.97 280.708 211.629 282.144 211.601 283.604C211.593 283.875 211.64 284.145 211.739 284.398C211.837 284.651 211.986 284.881 212.176 285.075C212.366 285.269 212.593 285.422 212.844 285.526C213.095 285.63 213.364 285.682 213.635 285.679L242.601 285.421C243.103 285.417 243.585 285.226 243.952 284.884C244.32 284.543 244.547 284.077 244.589 283.577C245.077 277.547 247.523 273.534 249.554 273.46C251.584 273.387 254.239 277.153 255.244 282.947C255.325 283.41 255.566 283.83 255.924 284.134C256.283 284.438 256.736 284.608 257.206 284.613L260.091 284.64C260.356 284.642 260.618 284.593 260.863 284.494C261.108 284.395 261.332 284.249 261.52 284.064C261.709 283.878 261.859 283.658 261.963 283.414C262.066 283.171 262.121 282.91 262.123 282.645C262.192 275.198 262.261 267.75 262.332 260.302C262.335 260.017 262.277 259.735 262.162 259.474C262.048 259.213 261.879 258.98 261.667 258.789C261.456 258.598 261.206 258.454 260.935 258.367C260.664 258.28 260.378 258.251 260.095 258.283L239.44 260.599Z\" fill=\"#020C26\"/>\\n<path d=\"M278.703 260.599C278.201 260.657 277.74 260.901 277.41 261.283C273.664 265.598 269.99 268.228 267.174 269.873C260.141 273.982 254.32 274.377 251.863 279.39C251.232 280.707 250.891 282.144 250.865 283.603C250.856 283.874 250.903 284.144 251.001 284.397C251.1 284.649 251.249 284.879 251.438 285.073C251.628 285.267 251.855 285.421 252.105 285.524C252.355 285.628 252.624 285.681 252.895 285.678L281.863 285.42C282.364 285.416 282.846 285.225 283.214 284.883C283.581 284.542 283.808 284.076 283.849 283.576C284.339 277.546 286.785 273.533 288.814 273.46C290.843 273.386 293.501 277.152 294.506 282.946C294.587 283.409 294.827 283.83 295.186 284.134C295.544 284.438 295.998 284.608 296.468 284.612L299.351 284.639C299.616 284.642 299.878 284.592 300.124 284.494C300.369 284.395 300.592 284.249 300.781 284.063C300.97 283.878 301.12 283.657 301.224 283.414C301.327 283.171 301.381 282.909 301.384 282.645L301.593 260.301C301.595 260.016 301.538 259.734 301.423 259.473C301.309 259.212 301.14 258.978 300.928 258.787C300.717 258.597 300.467 258.453 300.196 258.366C299.925 258.279 299.638 258.25 299.355 258.282L278.703 260.599Z\" fill=\"#020C26\"/>\\n<path d=\"M229.07 233.545V258.884C233.445 260.802 238.115 261.96 242.88 262.308C252.494 262.992 260 260.169 263.767 258.426C277.223 263.56 292.063 263.763 305.655 258.998V233.431L262.054 205.468L229.07 233.545Z\" fill=\"#D79AEA\"/>\\n<path d=\"M299.636 260.763C287.717 263.609 275.216 262.795 263.767 258.427V214.54\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M267.174 269.868C264.947 271.125 262.642 272.238 260.271 273.198C258.217 274.025 256.431 274.607 254.45 276.248C253.161 277.313 252.49 278.246 252.062 279.013C251.51 280.006 251.148 281.092 250.994 282.217\" stroke=\"white\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M298.724 116.881C289.722 116.748 279.063 116.736 270.117 123.656C269.45 124.169 266.804 126.263 263.964 130.1C252.451 145.652 250.595 172.488 250.192 181.081C249.641 183.464 249.089 185.848 248.537 188.232C245.969 188.813 241.978 190.061 238.093 193.026C230.081 199.147 227.977 208.434 226.109 216.652C224.606 223.332 224.087 230.196 224.568 237.026H255.596C256.783 229.465 258.878 222.076 261.834 215.017C262.502 219.01 263.35 223.235 264.421 227.649C265.219 230.932 266.077 234.06 266.97 237.026H309.659V219.049C312.85 217.981 318.65 215.529 323.697 209.975C332.749 200.015 332.401 187.753 332.257 185.038C335.058 181.362 339.049 175.056 340.646 166.489C343.964 148.699 335.812 127.455 320.102 119.922C314.23 117.109 309.059 117.042 298.724 116.881Z\" fill=\"white\"/>\\n<path d=\"M274.412 162.451L266.772 162.516C264.688 161.245 262.324 160.506 259.888 160.366C259.902 160.233 259.902 160.098 259.888 159.965C259.851 159.679 259.747 159.405 259.583 159.167C258.521 158.384 257.338 157.78 256.082 157.378C251.154 155.815 246.754 158.01 245.506 158.633C242.804 159.998 240.527 162.078 238.924 164.646C236.546 168.476 234.104 175.985 238.201 181.042C240.644 184.057 244.308 184.841 246.114 185.076L274.611 184.961C274.443 182.336 274.325 179.634 274.255 176.854C274.133 171.811 274.204 167.002 274.412 162.451Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M271.489 124.926C269.387 127.494 262.587 136.476 263.196 149.046C263.44 153.735 264.658 158.322 266.771 162.516\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M316.669 138.984C316.138 142.376 315.644 145.857 315.186 149.427C314.823 152.272 314.499 155.068 314.215 157.816L274.686 157.798C274.316 163.031 274.128 168.645 274.21 174.594C274.259 178.111 274.393 181.497 274.611 184.752\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M308.509 118.724L316.727 128.027L304.684 128.996L307.653 137.899C297.439 141.844 288.654 148.78 282.447 157.801\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M282.903 120.056L275.295 125.762L279.022 127.284L270.119 135.199C269.623 144.483 271.085 153.768 274.412 162.451\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M266.963 237.026C265.948 233.612 264.979 230.018 264.08 226.25C262.661 220.289 261.596 214.608 260.8 209.291\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M288.65 121.045L302.688 119.523V120.588C292.249 127.349 283.931 136.921 278.692 148.202C278.692 147.471 278.692 146.462 278.771 145.269C279.334 136.337 282.801 127.833 288.644 121.054L288.65 121.045Z\" fill=\"#D79AEA\"/>\\n<path d=\"M280.26 96.9244C279.657 95.5981 279.345 94.1578 279.346 92.7008C279.346 92.3584 279.384 89.7903 280.831 87.4516C282.769 84.3152 286.138 83.3427 288.706 82.5997C290.327 82.1323 300.231 79.4684 306.91 85.3972C307.627 86.0385 308.278 86.7496 308.853 87.5201C313.317 93.4181 312.62 100.703 312.106 103.887L280.26 96.9244Z\" fill=\"#020C26\"/>\\n<path d=\"M286.515 123.744L287.566 114.964C286.884 114.889 286.213 114.734 285.568 114.502C284.72 114.193 283.925 113.756 283.209 113.208C281.902 112.153 281.313 110.71 280.887 109.337C279.619 105.243 278.795 98.4911 280.317 92.2833C280.752 90.5079 281.411 88.6486 283.075 87.3919C283.469 87.0948 283.897 86.8465 284.351 86.6523L302.384 87.1095C305.554 91.0403 308.724 94.9717 311.894 98.9037C312.014 99.8899 312.408 104.057 309.612 108.034C306.667 112.223 302.31 113.18 301.394 113.36L301.324 121.578L298.001 124.146C296.987 124.263 295.91 124.346 294.774 124.379C292.006 124.466 289.237 124.253 286.515 123.744Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M276.931 157.797C277.04 155.107 277.462 152.438 278.187 149.845C280.396 141.97 284.864 136.941 289.22 132.154C293.219 127.762 297.742 123.878 302.688 120.588\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M311.808 120.367L312.967 113.752L315.72 119.878L315.762 119.972C316.386 119.727 316.961 119.477 317.474 119.237C318.47 113.599 318.199 107.811 316.682 102.29C315.165 96.77 312.44 91.6558 308.704 87.318C300.745 84.1539 291.921 83.9179 283.804 86.652C285.221 89.9812 287.588 92.8183 290.61 94.8079C293.632 96.7975 297.174 97.8511 300.792 97.8368C300.984 97.4396 302.213 94.9879 304.634 94.5274C307.695 93.9453 310.892 96.8797 311.311 100.121C311.653 102.771 310.022 105.306 307.887 106.568C305.074 108.232 302.148 107.234 301.724 107.082C301.145 111.907 299.796 116.609 297.729 121.008C298.341 121.179 299.01 121.335 299.736 121.461C300.81 121.649 301.898 121.752 302.989 121.768L304.822 116.339L305.678 121.975C306.832 121.955 307.983 121.867 309.127 121.71C310.012 121.586 310.854 121.429 311.65 121.246L311.808 120.367Z\" fill=\"#020C26\"/>\\n<path d=\"M306.809 98.9819L303.362 101.146L307.115 102.697\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M281.002 96.5066C282.01 95.9792 283.152 95.7628 284.283 95.8847C285.414 96.0066 286.483 96.4614 287.355 97.1915C287.509 97.9173 287.522 98.6659 287.393 99.3966C287.008 101.566 285.474 102.836 284.996 103.202C285.926 104.023 287.013 104.644 288.193 105.027\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M286.082 108.366C286.736 108.89 287.51 109.243 288.335 109.393C289.568 109.597 290.833 109.354 291.903 108.708\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M290.646 96.8676C291.783 96.1917 293.067 95.8 294.389 95.7255C295.71 95.651 297.03 95.8959 298.237 96.4396\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M271.643 162.475L266.772 162.516C266.097 162.132 265.399 161.792 264.681 161.497C259.316 159.287 252.567 159.487 249.33 162.581C248.881 163.011 247.683 164.156 247.931 165.349C248.102 166.205 248.958 166.699 249.158 166.813C250.228 167.431 250.97 167.01 253.04 167.003C254.683 167.003 256.635 167.019 257.833 168.26C258.037 168.472 258.561 169.034 258.604 169.857C258.655 170.884 257.919 171.605 257.748 171.759C257.34 172.139 256.808 172.391 255.18 172.567C253.456 172.754 252.194 172.677 249.806 172.824C248.845 172.884 248.405 172.937 247.953 173.259C247.138 173.839 246.738 174.971 246.876 175.945C247.089 177.442 248.588 178.429 249.691 178.798C250.769 179.155 252.197 179.049 255.055 178.835C255.787 178.782 256.539 178.709 256.958 179.178C257.429 179.707 257.236 180.65 257.148 181.081C257.012 181.667 256.766 182.222 256.424 182.716C255.543 183.932 251.026 185.137 244.822 185.493\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M283.437 285.975H289.758V190.931H283.437V285.975Z\" fill=\"#EFBBFF\"/>\\n<path d=\"M108.331 225.338C96.6056 225.338 87.1021 234.38 87.1021 245.54V281.026H91.0209V248.052C91.0209 237.689 98.7696 229.286 108.331 229.286C117.893 229.286 125.642 237.689 125.642 248.052V281.026H129.561V245.534C129.561 234.38 120.055 225.338 108.331 225.338Z\" fill=\"#020C26\"/>\\n<path d=\"M141.772 225.338C130.048 225.338 120.542 234.38 120.542 245.54V281.026H124.461V248.052C124.461 237.689 132.212 229.286 141.772 229.286C151.332 229.286 159.082 237.689 159.082 248.052V281.026H163.001V245.534C163.001 234.38 153.496 225.338 141.772 225.338Z\" fill=\"#020C26\"/>\\n<path d=\"M93.8219 218.551H130.602C135.7 218.551 139.833 214.418 139.833 209.32V172.54C139.833 167.442 135.7 163.309 130.602 163.309H93.8219C88.7236 163.309 84.5906 167.442 84.5906 172.54V209.32C84.5906 214.418 88.7236 218.551 93.8219 218.551Z\" fill=\"#020C26\"/>\\n<path d=\"M90.6793 225.857H143.099C145.454 225.857 147.363 223.948 147.363 221.592V219.106C147.363 216.751 145.454 214.842 143.099 214.842H90.6793C88.324 214.842 86.4146 216.751 86.4146 219.106V221.592C86.4146 223.948 88.324 225.857 90.6793 225.857Z\" fill=\"#020C26\"/>\\n<path d=\"M244.4 286.2H251V190.8H244.4V286.2Z\" fill=\"#EFBBFF\"/>\\n<path d=\"M103.4 286.2H108.2L108.2 190.8H103.4L103.4 286.2Z\" fill=\"#EFBBFF\"/>\\n<path d=\"M224.863 109.007L234.166 106.267L239.586 101.361L250.773 97.707L260.987 117.396C259.293 118.416 257.518 119.294 255.68 120.022C248.847 122.725 242.536 122.788 238.388 122.419L229.544 125.271C227.983 119.851 226.423 114.429 224.863 109.007Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M253.568 103.356C253.126 103.49 250.698 104.26 249.63 106.668C249.459 107.072 248.637 108.903 249.392 110.104C250.301 111.552 253.364 111.879 256.706 110.205\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M256.845 110.302C256.403 110.434 253.975 111.206 252.907 113.612C252.727 114.017 251.914 115.848 252.669 117.048C253.578 118.496 256.641 118.825 259.983 117.15\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M234.166 106.267C234.77 104.407 235.697 102.669 236.905 101.131C238.472 99.1521 239.549 98.7601 245.065 95.1391C250.086 91.8434 251.471 90.6741 252.37 91.2596C253.63 92.0797 252.668 95.5243 252.598 95.7674C250.999 101.318 244.603 103.756 242.783 104.384\" fill=\"#F8F6F5\"/>\\n<path d=\"M252.371 91.2593C253.631 92.0793 252.669 95.524 252.598 95.7671C250.999 101.318 244.603 103.755 242.783 104.384\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M195.107 279.687C194.668 278.752 194.083 277.892 193.375 277.139C190.598 274.27 186.355 274.003 179.798 270.169C176.98 268.524 173.306 265.889 169.56 261.58C169.231 261.197 168.77 260.952 168.268 260.895L147.624 258.582C147.341 258.551 147.054 258.579 146.783 258.667C146.512 258.754 146.263 258.897 146.051 259.088C145.84 259.279 145.671 259.512 145.556 259.773C145.442 260.034 145.384 260.316 145.386 260.601C145.438 266.093 145.467 270.755 145.595 282.945C145.607 284.037 145.595 284.919 145.576 285.427H156.21V281.933H169.622V285.42L196.272 285.403C196.37 283.43 195.969 281.464 195.107 279.687Z\" fill=\"#020C26\"/>\\n<path d=\"M234.979 279.687C234.54 278.752 233.955 277.892 233.247 277.139C230.468 274.27 226.228 274.003 219.669 270.17C216.852 268.524 213.178 265.89 209.432 261.58C209.103 261.198 208.641 260.953 208.14 260.896L187.496 258.583C187.213 258.551 186.927 258.579 186.656 258.666C186.385 258.753 186.135 258.896 185.924 259.087C185.712 259.277 185.544 259.51 185.429 259.771C185.314 260.031 185.256 260.313 185.258 260.598C185.31 266.09 185.339 270.752 185.467 282.942C185.479 284.034 185.467 284.916 185.448 285.424H196.082V281.93H209.492V285.417L236.144 285.4C236.241 283.428 235.841 281.463 234.979 279.687Z\" fill=\"#020C26\"/>\\n<path d=\"M217.902 233.847V259.185C213.526 261.103 208.856 262.261 204.091 262.609C194.476 263.294 186.97 260.471 183.204 258.728C169.747 263.862 154.907 264.064 141.315 259.299V233.732L184.916 205.769L217.902 233.847Z\" fill=\"#D79AEA\"/>\\n<path d=\"M147.336 261.065C159.255 263.911 171.755 263.096 183.204 258.728V214.842\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M179.798 270.169C182.025 271.426 184.33 272.539 186.7 273.499C188.754 274.326 190.54 274.908 192.521 276.548C193.475 277.321 194.284 278.258 194.909 279.315C196.359 281.779 196.35 284.242 196.266 285.393\" stroke=\"white\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M148.254 117.183C158.417 117.072 166.727 116.269 175.272 120.193C175.546 120.318 175.77 120.426 175.917 120.496L224.75 106.839L232.968 135.144L186.773 148.762C188.095 161.646 189.416 174.532 190.737 187.418C192.678 187.474 195.332 187.832 198.441 188.534C201.009 189.115 205.002 190.363 208.884 193.328C216.897 199.448 219.003 208.736 220.869 216.954C222.372 223.634 222.891 230.497 222.41 237.327H191.384C190.195 229.767 188.1 222.378 185.144 215.319C184.476 219.312 183.628 223.537 182.557 227.949C181.761 231.234 180.901 234.362 180.007 237.327H137.321V219.351C134.128 218.283 128.328 215.831 123.282 210.277C114.231 200.316 114.58 188.055 114.722 185.339C111.921 181.662 107.931 175.358 106.333 166.791C103.015 149.001 111.168 127.757 126.878 120.224C128.658 119.369 135.111 117.327 148.254 117.183Z\" fill=\"white\"/>\\n<path d=\"M183.431 128.296C184.388 133.655 185.263 139.209 186.057 144.959C187.234 153.567 188.086 161.838 188.682 169.727\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M172.709 166.875C175.372 166.408 184.036 165.228 193.286 170.07C202.475 174.879 206.447 182.595 207.59 185.054H172.362L172.709 166.875Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M130.302 139.286C130.835 142.677 131.33 146.158 131.786 149.729C132.147 152.572 132.47 155.369 132.755 158.118L172.284 158.098C172.654 163.333 172.843 168.947 172.76 174.896C172.712 178.413 172.572 181.801 172.361 185.054\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M138.462 119.025L130.245 128.329L142.285 129.298C141.296 132.265 140.307 135.233 139.318 138.2C149.532 142.146 158.316 149.083 164.523 158.103\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M164.066 120.357L171.676 126.07L167.947 127.592L176.85 135.505C177.346 144.79 175.884 154.076 172.558 162.759\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M180.007 237.327C181.022 233.914 181.993 230.32 182.89 226.552C184.309 220.59 185.374 214.91 186.17 209.592\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M158.322 121.347C152.715 117.945 147.473 117.048 145.253 119.222C144.792 119.686 144.458 120.26 144.284 120.89C154.622 129.077 162.703 139.764 167.763 151.943C168.52 145.445 167.668 138.86 165.284 132.768C163.63 128.592 161.276 124.73 158.322 121.347Z\" fill=\"#D79AEA\"/>\\n<path d=\"M160.457 124.045L159.406 115.266C160.088 115.19 160.76 115.035 161.406 114.803C162.253 114.494 163.047 114.057 163.763 113.509C165.068 112.455 165.658 111.004 166.083 109.635C167.352 105.541 168.175 98.789 166.653 92.5811C166.218 90.8057 165.559 88.9447 163.897 87.6898C163.502 87.3934 163.074 87.1451 162.621 86.9502L144.587 87.4073L135.076 99.1999C133.664 102.727 134.734 106.534 137.358 108.332C139.983 110.13 143.092 109.188 143.522 109.042C143.775 112.99 144.029 116.938 144.284 120.886L148.963 124.461C149.976 124.577 151.055 124.66 152.19 124.694C154.961 124.777 157.733 124.559 160.457 124.045Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M170.04 158.099C167.087 148.943 162.477 140.408 156.439 132.918C152.842 128.474 148.766 124.44 144.284 120.89\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M138.331 101.96L142.359 102.528L139.567 105.477\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M159.615 97.4912C159.46 98.2199 159.448 98.9714 159.577 99.7049C159.962 101.874 161.496 103.144 161.974 103.511C161.044 104.331 159.956 104.952 158.777 105.336\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M160.89 108.667C160.235 109.191 159.461 109.544 158.636 109.695C157.403 109.899 156.138 109.656 155.069 109.01\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M152.558 102.359C154.905 102.359 156.809 100.456 156.809 98.1079C156.809 95.7602 154.905 93.8569 152.558 93.8569C150.21 93.8569 148.307 95.7602 148.307 98.1079C148.307 100.456 150.21 102.359 152.558 102.359Z\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M164.523 102.359C166.871 102.359 168.774 100.456 168.774 98.1079C168.774 95.7602 166.871 93.8569 164.523 93.8569C162.176 93.8569 160.272 95.7602 160.272 98.1079C160.272 100.456 162.176 102.359 164.523 102.359Z\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M156.782 97.6166C157.419 97.2775 158.134 97.1122 158.855 97.1372C159.36 97.1588 159.857 97.2749 160.319 97.4796\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M143.066 98.1641C142.823 97.9501 141.183 96.553 138.88 96.8698C136.091 97.255 134.889 99.7905 134.814 99.9514C133.679 97.8076 133.114 95.4082 133.174 92.9834C133.362 86.9913 137.522 83.1734 138.686 82.1975C145.392 76.5375 155.079 78.5012 159.633 81.3295C161.374 82.4233 162.881 83.8519 164.066 85.5326C165.038 87.039 165.692 88.7287 165.987 90.4975C164.224 90.6779 162.43 90.8365 160.604 90.9735C154.148 91.4507 147.67 91.565 141.201 91.3159L144.473 98.0887L143.066 98.1641Z\" fill=\"#020C26\"/>\\n<path d=\"M185.143 173.342C187.257 174.134 189.254 175.209 191.079 176.538C194.146 178.788 196.668 181.698 198.459 185.054\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M134.694 285.975H139.831V190.931H134.694V285.975Z\" fill=\"#EFBBFF\"/>\\n<path d=\"M94.9285 192.758L295.617 192.758C296.222 192.758 296.711 192.268 296.711 191.664V186.148C296.711 185.543 296.222 185.054 295.617 185.054L94.9285 185.054C94.3243 185.054 93.8345 185.543 93.8345 186.148V191.664C93.8345 192.268 94.3243 192.758 94.9285 192.758Z\" fill=\"#D79AEA\"/>\\n<path d=\"M46.9751 259.684L21.5222 259.114C22.1008 261.853 22.4244 265.707 20.4949 269.158C18.9541 271.916 17.0709 272.456 15.4735 275.092C14.2083 277.184 13.1092 280.626 14.3316 286.392L46.8073 286.392C48.1207 281.731 48.1791 276.807 46.9765 272.116C45.7738 267.426 50.3707 263.137 46.9768 259.684H46.9751Z\" fill=\"#020C26\"/>\\n<path d=\"M112.322 280.717C111.882 279.782 111.297 278.922 110.589 278.169C107.811 275.3 103.57 275.033 97.011 271.199C94.1947 269.554 90.5206 266.919 86.7747 262.61C86.4453 262.227 85.9838 261.983 85.4821 261.925L64.8383 259.612C64.5555 259.58 64.2691 259.609 63.9981 259.696C63.7271 259.783 63.4776 259.926 63.2661 260.116C63.0546 260.307 62.8859 260.54 62.7712 260.8C62.6565 261.061 62.5984 261.343 62.6007 261.627C62.652 267.12 62.6811 271.782 62.8095 283.971C62.8215 285.064 62.8095 285.945 62.7907 286.454H73.4242V282.959H86.8346V286.447L113.486 286.43C113.583 284.458 113.183 282.493 112.322 280.717Z\" fill=\"#020C26\"/>\\n<path d=\"M91.5007 261.25L58.7482 261.344L58.4982 209.94C55.2225 227.269 51.9468 244.599 48.6711 261.928L21.6006 261.25L26.7006 205.2L81.3007 195C82.1327 213.283 90.6675 242.966 91.5007 261.25Z\" fill=\"#D79AEA\"/>\\n<path d=\"M88.996 195.214C88.714 162.8 88.4321 130.385 88.1502 97.9703L95.5497 97.3369C97.1025 93.1338 101.199 80.3876 96.1831 66.051C90.179 48.8724 73.7554 37.0387 56.2309 35.6126C32.6048 33.6882 17.3984 51.5175 14.3767 55.0597C0.851532 70.9235 -5.50529 96.9499 5.92259 115.092C9.78667 121.228 14.8526 125.14 18.816 127.565C15.506 155.748 12.1961 183.933 8.88614 212.119L29.179 218.671L88.996 195.214Z\" fill=\"white\"/>\\n<path d=\"M37.7619 37.8916L28.8935 45.8423L40.746 47.7495L37.1062 55.7739C40.89 57.5155 44.4656 59.6777 47.7653 62.2197C52.8295 66.1236 57.144 70.9131 60.4995 76.3561\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M63.0144 41.2695L70.1023 47.2137L66.2913 48.3146L74.4868 56.4074C74.3954 59.7707 74.011 63.1195 73.338 66.416C72.2726 71.609 70.5104 76.6342 68.0992 81.3553\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M57.249 41.7078C51.9639 38.08 46.8398 36.8097 44.472 38.6433C43.985 39.0275 43.6082 39.5337 43.3798 40.1105C47.6414 43.8633 51.4627 48.0883 54.77 52.7043C58.7715 58.2881 61.948 64.419 64.2016 70.9084C65.4636 64.9221 65.136 58.7096 63.2514 52.8892C61.9199 48.8397 59.8883 45.0553 57.249 41.7078Z\" fill=\"#D79AEA\"/>\\n<path d=\"M59.1511 44.3922C59.037 41.646 58.9194 38.8994 58.7984 36.1521C59.4779 36.1394 60.1537 36.051 60.8135 35.8884C61.671 35.6756 62.4925 35.3375 63.2515 34.8852C64.6211 34.0155 65.3248 32.7229 65.8521 31.4851C66.4102 30.1788 67.7507 26.5818 67.7559 15.6966C67.7559 14.2379 67.7336 12.1253 66.7783 9.64281C66.3906 8.63572 65.8928 7.67457 65.2939 6.77686L46.3074 9.04703L35.9633 19.2029C34.2872 22.3599 35.0422 25.9826 37.5041 27.8727C39.966 29.7627 43.1145 29.1396 43.5527 29.0471C43.4945 32.7349 43.4375 36.4226 43.3815 40.1103L47.7438 43.8169C48.7385 44.0104 49.7983 44.1782 50.9214 44.3048C53.6546 44.6119 56.412 44.6411 59.1511 44.3922Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M71.5044 199.176C71.0302 134.163 68.5032 86.5838 65.9711 76.8148C64.9545 73.0033 63.6707 69.2681 62.1293 65.6369C57.8132 55.8638 51.4139 47.1518 43.379 40.1104\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M38.9693 22.0332L42.9155 22.9029L39.9177 25.4059\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M60.7773 30.1495C60.0778 30.5841 59.2851 30.8464 58.4644 30.9148C57.2327 31.003 56.0071 30.6737 54.9855 29.98\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M43.9567 18.9051C43.4191 18.3914 42.7848 17.9897 42.0905 17.7234C41.3963 17.4572 40.6561 17.3316 39.9128 17.354C37.1205 17.4772 35.732 19.732 35.643 19.881C34.6924 17.8168 34.3202 15.5333 34.5661 13.2742C35.2133 7.81276 39.5602 4.66431 40.8733 3.71242C48.2351 -1.63258 60.2741 -1.11041 64.4293 4.6626C65.0427 5.52544 65.493 6.49329 65.7578 7.51829C64.1502 9.27314 59.6938 13.6491 52.5922 14.904C49.8541 15.3813 47.0514 15.3494 44.3248 14.8099L45.352 18.953L43.9567 18.9051Z\" fill=\"#020C26\"/>\\n<path d=\"M57.2293 26.1559L61.4307 26.1799C59.7936 23.8135 58.983 20.9731 59.1246 18.0991C59.832 17.7502 60.5863 17.5057 61.3639 17.3731C63.1065 17.1006 64.8907 17.3689 66.4761 18.1419\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M55.437 17.8783C54.5333 17.3314 53.5119 17.0086 52.4581 16.9366C50.9033 16.8549 49.3676 17.3094 48.1078 18.2241\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M43.3057 119.102C46.4627 120.985 49.4331 121.444 50.5202 120.283C51.9036 118.808 50.0443 114.913 48.5308 113.007C42.7304 105.705 27.4727 109.326 24.9201 109.963L21.3248 120.01L18.8132 127.029C20.5919 128.059 22.5835 128.666 24.6342 128.804C25.9395 128.887 27.2499 128.775 28.5222 128.472C32.251 132.293 36.1904 133.526 37.4471 132.41C38.6455 131.354 37.9607 127.707 35.4577 123.952C39.6779 127.847 44.0179 128.78 45.3464 127.435C46.5671 126.212 45.7539 122.638 43.3057 119.102Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M37.8799 131.741C37.6885 128.732 36.6655 125.835 34.9249 123.374C33.8468 121.869 32.5142 120.563 30.9872 119.517\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M45.9316 124.925C45.3561 121.966 43.9704 119.225 41.9289 117.007C40.6648 115.654 39.1747 114.531 37.5255 113.689\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M18.8161 127.572L26.7788 105.024C24.5864 102.992 22.8146 100.549 21.5639 97.8337C21.0046 96.6077 20.5566 95.334 20.2251 94.0278\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M80.6362 114.107L109.08 109.519C109.585 109.437 110.054 109.208 110.429 108.861C110.804 108.514 111.068 108.064 111.188 107.567L122.441 60.9207C122.542 60.5047 122.538 60.0702 122.43 59.656C122.321 59.2419 122.112 58.8609 121.821 58.5474C121.53 58.2338 121.165 57.9973 120.76 57.859C120.355 57.7208 119.922 57.6851 119.499 57.7551L91.0556 62.3417C90.5515 62.4235 90.0827 62.6524 89.7081 62.9996C89.3334 63.3468 89.0697 63.7969 88.9498 64.2934L77.6949 110.94C77.5946 111.356 77.5988 111.79 77.7072 112.204C77.8155 112.618 78.0246 112.999 78.3158 113.312C78.607 113.626 78.9713 113.863 79.3761 114.001C79.781 114.14 80.2139 114.176 80.6362 114.107Z\" fill=\"#020C26\"/>\\n<path d=\"M82.6641 116.394L111.111 111.806C111.616 111.725 112.085 111.496 112.46 111.149C112.835 110.802 113.099 110.352 113.219 109.856L124.465 63.2094C124.565 62.7943 124.562 62.3609 124.454 61.9476C124.346 61.5344 124.138 61.1542 123.848 60.8408C123.558 60.5274 123.195 60.2905 122.791 60.1511C122.388 60.0118 121.956 59.9744 121.534 60.0421L93.0904 64.6304C92.586 64.7114 92.1167 64.9397 91.7417 65.2867C91.3667 65.6336 91.1027 66.0838 90.9829 66.5804L79.7296 113.228C79.6291 113.644 79.633 114.078 79.7409 114.491C79.8487 114.905 80.0571 115.285 80.3477 115.598C80.6382 115.912 81.0017 116.148 81.4059 116.287C81.8101 116.426 82.2423 116.463 82.6641 116.394Z\" fill=\"#D79AEA\"/>\\n<path d=\"M115.616 77.5615C112.933 75.0499 111.668 72.3226 112.481 70.9564C113.488 69.2666 117.557 69.8436 120.024 70.852C126.953 73.682 133.229 84.812 128.992 93.8293C125.248 101.795 115.617 103.18 114.782 103.288C113.297 101.862 112.161 100.114 111.461 98.1779C111.019 96.9471 110.764 95.6575 110.702 94.3515C105.996 91.8279 103.721 88.385 104.443 86.8681C105.128 85.4283 108.817 85.0671 113.121 86.435C108.209 83.4595 106.102 79.5509 107.035 77.8987C107.879 76.399 111.541 76.1884 115.616 77.5615Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M104.975 86.2774C107.918 85.6249 110.985 85.8027 113.833 86.791C115.577 87.4098 117.199 88.3287 118.626 89.5063\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M109.295 76.6509C112.297 76.3851 115.314 76.957 118.011 78.303C119.659 79.1433 121.148 80.2643 122.411 81.6158\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M42.9722 160.551C45.8207 161.875 48.2611 163.94 50.038 166.53C51.815 169.12 52.8633 172.14 53.0732 175.274C52.9591 182.427 52.845 189.58 52.7308 196.731\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})]})}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rhbcce hidden-1r88f08\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o1lna2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nps8e0\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qdoo1c\",\"data-framer-name\":\"IMG_Docs\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:289,intrinsicWidth:463,svg:'<svg width=\"463\" height=\"289\" viewBox=\"0 0 463 289\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M416.331 263.053L440.126 262.521C439.585 265.081 439.283 268.684 441.087 271.911C442.527 274.489 444.288 274.993 445.781 277.458C446.964 279.414 447.991 282.631 446.848 288.021H409.928C408.7 283.665 408.645 279.061 409.77 274.676C410.894 270.291 413.157 266.282 416.33 263.053H416.331Z\" fill=\"#020C26\"/>\\n<path d=\"M393.811 263.053L370.016 262.521C370.557 265.081 370.86 268.684 369.056 271.911C367.616 274.489 365.855 274.993 364.362 277.458C363.179 279.414 362.151 282.631 363.294 288.021H400.215C401.443 283.665 401.497 279.061 400.373 274.676C399.249 270.291 396.986 266.282 393.813 263.053H393.811Z\" fill=\"#020C26\"/>\\n<path d=\"M442.119 264.518L404.816 264.606L404.582 216.551C401.52 232.751 398.458 248.952 395.396 265.152L370.089 264.518L367.235 215.347L439.784 213.241C440.562 230.334 441.34 247.426 442.119 264.518Z\" fill=\"#D79AEA\"/>\\n<path d=\"M310.507 110.365C313.992 120.111 317.478 129.856 320.963 139.601C329.728 139.741 337.229 139.353 343.158 138.854C351 138.195 355.874 137.358 360.123 133.732C361.626 132.445 362.922 130.933 363.964 129.251C363.875 158.897 363.786 188.542 363.697 218.187H448.204L442.122 138.961C445.882 136.721 452.194 132.239 456.847 124.397C464.251 111.913 463.502 97.596 460.208 88.065C451.139 61.8278 416.459 53.6124 396.508 53.3339C386.821 53.1995 371.29 52.9818 357.935 64.2174C339.736 79.5279 340.342 103.686 340.49 107.271L310.507 110.365Z\" fill=\"white\"/>\\n<path d=\"M385.944 56.3752C388.278 68.3204 392.077 79.9319 397.255 90.9462C401.33 79.5236 403.177 67.4258 402.697 55.3076L385.944 56.3752Z\" fill=\"#D79AEA\"/>\\n<path d=\"M421.382 132.061C418.674 133.676 416.126 134.07 415.195 133.074C414.007 131.808 415.603 128.468 416.901 126.832C421.877 120.57 434.96 123.676 437.152 124.222L440.235 132.839C440.954 134.846 441.672 136.854 442.389 138.862C440.861 139.746 439.149 140.267 437.388 140.384C436.268 140.454 435.145 140.358 434.054 140.099C430.853 143.377 427.477 144.433 426.398 143.478C425.374 142.572 425.953 139.444 428.105 136.223C424.486 139.563 420.763 140.365 419.622 139.211C418.594 138.161 419.283 135.094 421.382 132.061Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M426.037 142.903C426.2 140.322 427.076 137.837 428.567 135.725C429.492 134.434 430.636 133.314 431.946 132.417\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M419.131 137.055C419.625 134.517 420.814 132.166 422.564 130.264C423.649 129.103 424.927 128.14 426.342 127.418\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M297.605 125.471C294.897 127.086 292.349 127.48 291.417 126.485C290.23 125.219 291.826 121.878 293.124 120.243C298.1 113.98 311.182 117.086 313.375 117.632L316.457 126.249C317.177 128.256 317.895 130.264 318.612 132.272C317.083 133.156 315.372 133.677 313.61 133.794C312.491 133.865 311.367 133.769 310.276 133.509C307.075 136.787 303.7 137.843 302.621 136.888C301.597 135.982 302.176 132.855 304.327 129.633C300.708 132.973 296.986 133.775 295.845 132.621C294.817 131.571 295.505 128.504 297.605 125.471Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M302.259 136.313C302.423 133.732 303.299 131.248 304.79 129.135C305.715 127.844 306.858 126.725 308.168 125.827\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M295.354 130.465C295.848 127.927 297.036 125.576 298.787 123.674C299.872 122.513 301.15 121.55 302.564 120.828\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M404.024 217.625C402.461 184.762 395.193 152.299 393.626 119.435\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M394.564 104.574L377.016 83.4701C376.539 82.8968 376.254 82.1884 376.2 81.4445C376.147 80.7006 376.328 79.9587 376.718 79.3231L383.703 67.9515L373.437 71.8231C373.24 71.8976 373.024 71.9085 372.819 71.8545C372.615 71.8004 372.433 71.684 372.298 71.5215C372.163 71.359 372.082 71.1584 372.066 70.9477C372.05 70.737 372.1 70.5267 372.21 70.3459L381.515 54.981\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M442.389 138.961C439.471 130.745 436.554 122.529 433.639 114.313L433.106 89.3452\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M356.655 96.9752L364.871 94.8945L363.358 217.625\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M410.881 41.2245C415.36 41.2245 418.991 37.5936 418.991 33.1147C418.991 28.6358 415.36 25.0049 410.881 25.0049C406.402 25.0049 402.771 28.6358 402.771 33.1147C402.771 37.5936 406.402 41.2245 410.881 41.2245Z\" fill=\"#020C26\"/>\\n<path d=\"M406.565 26.4814L408.568 26.6607C409.058 28.2824 409.173 29.9946 408.902 31.6671C408.538 33.8333 407.551 35.8463 406.06 37.4594L404.163 36.4526C404.963 33.1289 405.764 29.8052 406.565 26.4814Z\" fill=\"#020C26\"/>\\n<path d=\"M386.3 57.9752L386.074 50.0734C385.227 49.7471 384.415 49.3358 383.651 48.8458C375.541 43.6378 376.399 31.5603 376.534 29.6717C376.751 26.6051 377.899 25.2543 378.347 24.7886C378.658 24.4639 379.008 24.1785 379.389 23.9387L395.597 22.0181L405.695 31.6948C406.523 33.1423 406.884 34.8102 406.729 36.4707C406.654 37.2117 406.409 39.0123 404.875 40.44C403.176 42.0181 401.085 42.0085 400.615 41.9957C401.316 46.5721 402.016 51.149 402.715 55.7264C397.631 58.2344 391.87 59.0209 386.3 57.9672V57.9752Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M398.401 31.7799C398.59 31.551 399.866 30.0449 401.975 30.0401C404.523 30.0401 405.94 32.2232 406.031 32.3688C406.759 30.2277 406.943 27.9388 406.564 25.7091C405.592 20.189 401.356 17.1976 400.181 16.439C393.417 12.0728 385.008 15.1473 381.31 18.3596C379.89 19.6071 378.732 21.1245 377.904 22.8234C377.001 25.1742 376.525 27.6676 376.5 30.1857C376.98 28.9838 377.643 28.4252 378.049 28.1531C378.456 27.881 378.995 27.6441 381.655 27.4089C382.662 27.3192 383.501 27.2728 384.088 27.2488C384.45 27.8538 387.139 32.18 392.311 32.8298C394.4 33.0742 396.515 32.7096 398.401 31.7799Z\" fill=\"#020C26\"/>\\n<path d=\"M403.62 32.7578L400.633 36.4214L404.475 37.9515\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M377.834 33.1678C378.775 32.4329 379.924 32.0144 381.117 31.9722C382.585 31.9258 383.163 33.5327 383.311 34.7827C383.471 36.0839 382.991 37.766 382.532 38.7023C382.319 39.1393 382.455 39.8387 382.94 39.8515C383.704 39.8707 384.842 39.6786 385.317 39.6786\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M386.354 31.9706C387.25 31.51 388.23 31.2376 389.235 31.1703C390.358 31.1039 391.482 31.2904 392.524 31.7161\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M390.541 42.9741C386.842 46.3448 383.318 44.7779 382.167 44.3057\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M402.77 53.832C402.962 58.0526 402.886 65.9255 401.65 73.5583C400.442 81.0647 398.758 85.3493 397.247 90.9463C395.501 97.406 393.627 106.935 393.619 119.435C401.036 107.88 408.455 96.3235 415.875 84.7667C416.153 84.3346 416.324 83.8425 416.374 83.3313C416.424 82.82 416.351 82.3042 416.162 81.8266L410.691 68.0062L417.906 69.4658C418.055 69.4934 418.209 69.473 418.345 69.4075C418.481 69.342 418.593 69.2348 418.664 69.1014C418.736 68.9681 418.763 68.8155 418.742 68.6658C418.72 68.5161 418.652 68.377 418.547 68.2686C414.324 63.9841 410.643 58.3263 406.423 54.0417\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M385.944 56.3745C388.277 68.32 392.076 79.9316 397.255 90.9456\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M342.928 280.248H346.116C346.116 269.646 336.459 260.902 324 259.673V207.158H317.956V259.673L317.796 259.688L317.667 259.673V259.704C305.34 261.039 295.84 269.728 295.84 280.248H299.028C299.422 271.614 306.219 264.438 315.344 262.308C308.003 265.925 303.084 272.536 303.084 280.099H306.274C306.645 271.916 312.779 265.049 321.179 262.539C329.848 264.919 336.215 271.9 336.587 280.248H339.775C339.775 272.821 335.032 266.312 327.912 262.654C336.388 265.134 342.552 272.032 342.928 280.248Z\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M353.151 163.009H316.371C311.273 163.009 307.14 167.142 307.14 172.241V209.02C307.14 214.119 311.273 218.252 316.371 218.252H353.151C358.249 218.252 362.382 214.119 362.382 209.02V172.241C362.382 167.142 358.249 163.009 353.151 163.009Z\" fill=\"#020C26\"/>\\n<path d=\"M351.445 210.946H302.573C300.935 210.946 299.606 212.275 299.606 213.913V222.588C299.606 224.227 300.935 225.555 302.573 225.555H351.445C353.084 225.555 354.412 224.227 354.412 222.588V213.913C354.412 212.275 353.084 210.946 351.445 210.946Z\" fill=\"#020C26\"/>\\n<path d=\"M343.778 190.63H338.642V280.718H343.778V190.63Z\" fill=\"#020C26\"/>\\n<path d=\"M281.992 106.132C279.886 111.332 277.78 116.531 275.676 121.73L288.992 122.338C289.449 118.992 289.905 115.644 290.362 112.295L281.992 106.132Z\" fill=\"#020C26\"/>\\n<path d=\"M239.44 260.599C238.939 260.657 238.477 260.902 238.148 261.284C234.402 265.599 230.728 268.228 227.91 269.874C220.877 273.982 215.058 274.378 212.601 279.391C211.97 280.708 211.629 282.144 211.601 283.604C211.593 283.875 211.64 284.145 211.739 284.398C211.837 284.651 211.986 284.881 212.176 285.075C212.366 285.269 212.593 285.422 212.844 285.526C213.095 285.63 213.364 285.682 213.635 285.679L242.601 285.421C243.103 285.417 243.585 285.226 243.952 284.884C244.32 284.543 244.547 284.077 244.589 283.577C245.077 277.547 247.523 273.534 249.554 273.46C251.584 273.387 254.239 277.153 255.244 282.947C255.325 283.41 255.566 283.83 255.924 284.134C256.283 284.438 256.736 284.608 257.206 284.613L260.091 284.64C260.356 284.642 260.618 284.593 260.863 284.494C261.108 284.395 261.332 284.249 261.52 284.064C261.709 283.878 261.859 283.658 261.963 283.414C262.066 283.171 262.121 282.91 262.123 282.645C262.192 275.198 262.261 267.75 262.332 260.302C262.335 260.017 262.277 259.735 262.162 259.474C262.048 259.213 261.879 258.98 261.667 258.789C261.456 258.598 261.206 258.454 260.935 258.367C260.664 258.28 260.378 258.251 260.095 258.283L239.44 260.599Z\" fill=\"#020C26\"/>\\n<path d=\"M278.703 260.599C278.201 260.657 277.74 260.901 277.41 261.283C273.664 265.598 269.99 268.228 267.174 269.873C260.141 273.982 254.32 274.377 251.863 279.39C251.232 280.707 250.891 282.144 250.865 283.603C250.856 283.874 250.903 284.144 251.001 284.397C251.1 284.649 251.249 284.879 251.438 285.073C251.628 285.267 251.855 285.421 252.105 285.524C252.355 285.628 252.624 285.681 252.895 285.678L281.863 285.42C282.364 285.416 282.846 285.225 283.214 284.883C283.581 284.542 283.808 284.076 283.849 283.576C284.339 277.546 286.785 273.533 288.814 273.46C290.843 273.386 293.501 277.152 294.506 282.946C294.587 283.409 294.827 283.83 295.186 284.134C295.544 284.438 295.998 284.608 296.468 284.612L299.351 284.639C299.616 284.642 299.878 284.592 300.124 284.494C300.369 284.395 300.592 284.249 300.781 284.063C300.97 283.878 301.12 283.657 301.224 283.414C301.327 283.171 301.381 282.909 301.384 282.645L301.593 260.301C301.595 260.016 301.538 259.734 301.423 259.473C301.309 259.212 301.14 258.978 300.928 258.787C300.717 258.597 300.467 258.453 300.196 258.366C299.925 258.279 299.638 258.25 299.355 258.282L278.703 260.599Z\" fill=\"#020C26\"/>\\n<path d=\"M229.07 233.545V258.884C233.445 260.802 238.115 261.96 242.88 262.308C252.494 262.992 260 260.169 263.767 258.426C277.223 263.56 292.063 263.763 305.655 258.998V233.431L262.054 205.468L229.07 233.545Z\" fill=\"#D79AEA\"/>\\n<path d=\"M299.636 260.763C287.717 263.609 275.216 262.795 263.767 258.427V214.54\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M267.174 269.868C264.947 271.125 262.642 272.238 260.271 273.198C258.217 274.025 256.431 274.607 254.45 276.248C253.161 277.313 252.49 278.246 252.062 279.013C251.51 280.006 251.148 281.092 250.994 282.217\" stroke=\"white\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M298.724 116.881C289.722 116.748 279.063 116.736 270.117 123.656C269.45 124.169 266.804 126.263 263.964 130.1C252.451 145.652 250.595 172.488 250.192 181.081C249.641 183.464 249.089 185.848 248.537 188.232C245.969 188.813 241.978 190.061 238.093 193.026C230.081 199.147 227.977 208.434 226.109 216.652C224.606 223.332 224.087 230.196 224.568 237.026H255.596C256.783 229.465 258.878 222.076 261.834 215.017C262.502 219.01 263.35 223.235 264.421 227.649C265.219 230.932 266.077 234.06 266.97 237.026H309.659V219.049C312.85 217.981 318.65 215.529 323.697 209.975C332.749 200.015 332.401 187.753 332.257 185.038C335.058 181.362 339.049 175.056 340.646 166.489C343.964 148.699 335.812 127.455 320.102 119.922C314.23 117.109 309.059 117.042 298.724 116.881Z\" fill=\"white\"/>\\n<path d=\"M274.412 162.451L266.772 162.516C264.688 161.245 262.324 160.506 259.888 160.366C259.902 160.233 259.902 160.098 259.888 159.965C259.851 159.679 259.747 159.405 259.583 159.167C258.521 158.384 257.338 157.78 256.082 157.378C251.154 155.815 246.754 158.01 245.506 158.633C242.804 159.998 240.527 162.078 238.924 164.646C236.546 168.476 234.104 175.985 238.201 181.042C240.644 184.057 244.308 184.841 246.114 185.076L274.611 184.961C274.443 182.336 274.325 179.634 274.255 176.854C274.133 171.811 274.204 167.002 274.412 162.451Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M271.489 124.926C269.387 127.494 262.587 136.476 263.196 149.046C263.44 153.735 264.658 158.322 266.771 162.516\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M316.669 138.984C316.138 142.376 315.644 145.857 315.186 149.427C314.823 152.272 314.499 155.068 314.215 157.816L274.686 157.798C274.316 163.031 274.128 168.645 274.21 174.594C274.259 178.111 274.393 181.497 274.611 184.752\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M308.509 118.724L316.727 128.027L304.684 128.996L307.653 137.899C297.439 141.844 288.654 148.78 282.447 157.801\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M282.903 120.056L275.295 125.762L279.022 127.284L270.119 135.199C269.623 144.483 271.085 153.768 274.412 162.451\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M266.963 237.026C265.948 233.612 264.979 230.018 264.08 226.25C262.661 220.289 261.596 214.608 260.8 209.291\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M288.65 121.045L302.688 119.523V120.588C292.249 127.349 283.931 136.921 278.692 148.202C278.692 147.471 278.692 146.462 278.771 145.269C279.334 136.337 282.801 127.833 288.644 121.054L288.65 121.045Z\" fill=\"#D79AEA\"/>\\n<path d=\"M280.26 96.9244C279.657 95.5981 279.345 94.1578 279.346 92.7008C279.346 92.3584 279.384 89.7903 280.831 87.4516C282.769 84.3152 286.138 83.3427 288.706 82.5997C290.327 82.1323 300.231 79.4684 306.91 85.3972C307.627 86.0385 308.278 86.7496 308.853 87.5201C313.317 93.4181 312.62 100.703 312.106 103.887L280.26 96.9244Z\" fill=\"#020C26\"/>\\n<path d=\"M286.515 123.744L287.566 114.964C286.884 114.889 286.213 114.734 285.568 114.502C284.72 114.193 283.925 113.756 283.209 113.208C281.902 112.153 281.313 110.71 280.887 109.337C279.619 105.243 278.795 98.4911 280.317 92.2833C280.752 90.5079 281.411 88.6486 283.075 87.3919C283.469 87.0948 283.897 86.8465 284.351 86.6523L302.384 87.1095C305.554 91.0403 308.724 94.9717 311.894 98.9037C312.014 99.8899 312.408 104.057 309.612 108.034C306.667 112.223 302.31 113.18 301.394 113.36L301.324 121.578L298.001 124.146C296.987 124.263 295.91 124.346 294.774 124.379C292.006 124.466 289.237 124.253 286.515 123.744Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M276.931 157.797C277.04 155.107 277.462 152.438 278.187 149.845C280.396 141.97 284.864 136.941 289.22 132.154C293.219 127.762 297.742 123.878 302.688 120.588\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M311.808 120.367L312.967 113.752L315.72 119.878L315.762 119.972C316.386 119.727 316.961 119.477 317.474 119.237C318.47 113.599 318.199 107.811 316.682 102.29C315.165 96.77 312.44 91.6558 308.704 87.318C300.745 84.1539 291.921 83.9179 283.804 86.652C285.221 89.9812 287.588 92.8183 290.61 94.8079C293.632 96.7975 297.174 97.8511 300.792 97.8368C300.984 97.4396 302.213 94.9879 304.634 94.5274C307.695 93.9453 310.892 96.8797 311.311 100.121C311.653 102.771 310.022 105.306 307.887 106.568C305.074 108.232 302.148 107.234 301.724 107.082C301.145 111.907 299.796 116.609 297.729 121.008C298.341 121.179 299.01 121.335 299.736 121.461C300.81 121.649 301.898 121.752 302.989 121.768L304.822 116.339L305.678 121.975C306.832 121.955 307.983 121.867 309.127 121.71C310.012 121.586 310.854 121.429 311.65 121.246L311.808 120.367Z\" fill=\"#020C26\"/>\\n<path d=\"M306.809 98.9819L303.362 101.146L307.115 102.697\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M281.002 96.5066C282.01 95.9792 283.152 95.7628 284.283 95.8847C285.414 96.0066 286.483 96.4614 287.355 97.1915C287.509 97.9173 287.522 98.6659 287.393 99.3966C287.008 101.566 285.474 102.836 284.996 103.202C285.926 104.023 287.013 104.644 288.193 105.027\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M286.082 108.366C286.736 108.89 287.51 109.243 288.335 109.393C289.568 109.597 290.833 109.354 291.903 108.708\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M290.646 96.8676C291.783 96.1917 293.067 95.8 294.389 95.7255C295.71 95.651 297.03 95.8959 298.237 96.4396\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M271.643 162.475L266.772 162.516C266.097 162.132 265.399 161.792 264.681 161.497C259.316 159.287 252.567 159.487 249.33 162.581C248.881 163.011 247.683 164.156 247.931 165.349C248.102 166.205 248.958 166.699 249.158 166.813C250.228 167.431 250.97 167.01 253.04 167.003C254.683 167.003 256.635 167.019 257.833 168.26C258.037 168.472 258.561 169.034 258.604 169.857C258.655 170.884 257.919 171.605 257.748 171.759C257.34 172.139 256.808 172.391 255.18 172.567C253.456 172.754 252.194 172.677 249.806 172.824C248.845 172.884 248.405 172.937 247.953 173.259C247.138 173.839 246.738 174.971 246.876 175.945C247.089 177.442 248.588 178.429 249.691 178.798C250.769 179.155 252.197 179.049 255.055 178.835C255.787 178.782 256.539 178.709 256.958 179.178C257.429 179.707 257.236 180.65 257.148 181.081C257.012 181.667 256.766 182.222 256.424 182.716C255.543 183.932 251.026 185.137 244.822 185.493\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M283.437 285.975H289.758V190.931H283.437V285.975Z\" fill=\"#EFBBFF\"/>\\n<path d=\"M108.331 225.338C96.6056 225.338 87.1021 234.38 87.1021 245.54V281.026H91.0209V248.052C91.0209 237.689 98.7696 229.286 108.331 229.286C117.893 229.286 125.642 237.689 125.642 248.052V281.026H129.561V245.534C129.561 234.38 120.055 225.338 108.331 225.338Z\" fill=\"#020C26\"/>\\n<path d=\"M141.772 225.338C130.048 225.338 120.542 234.38 120.542 245.54V281.026H124.461V248.052C124.461 237.689 132.212 229.286 141.772 229.286C151.332 229.286 159.082 237.689 159.082 248.052V281.026H163.001V245.534C163.001 234.38 153.496 225.338 141.772 225.338Z\" fill=\"#020C26\"/>\\n<path d=\"M93.8219 218.551H130.602C135.7 218.551 139.833 214.418 139.833 209.32V172.54C139.833 167.442 135.7 163.309 130.602 163.309H93.8219C88.7236 163.309 84.5906 167.442 84.5906 172.54V209.32C84.5906 214.418 88.7236 218.551 93.8219 218.551Z\" fill=\"#020C26\"/>\\n<path d=\"M90.6793 225.857H143.099C145.454 225.857 147.363 223.948 147.363 221.592V219.106C147.363 216.751 145.454 214.842 143.099 214.842H90.6793C88.324 214.842 86.4146 216.751 86.4146 219.106V221.592C86.4146 223.948 88.324 225.857 90.6793 225.857Z\" fill=\"#020C26\"/>\\n<path d=\"M244.4 286.2H251V190.8H244.4V286.2Z\" fill=\"#EFBBFF\"/>\\n<path d=\"M103.4 286.2H108.2L108.2 190.8H103.4L103.4 286.2Z\" fill=\"#EFBBFF\"/>\\n<path d=\"M224.863 109.007L234.166 106.267L239.586 101.361L250.773 97.707L260.987 117.396C259.293 118.416 257.518 119.294 255.68 120.022C248.847 122.725 242.536 122.788 238.388 122.419L229.544 125.271C227.983 119.851 226.423 114.429 224.863 109.007Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M253.568 103.356C253.126 103.49 250.698 104.26 249.63 106.668C249.459 107.072 248.637 108.903 249.392 110.104C250.301 111.552 253.364 111.879 256.706 110.205\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M256.845 110.302C256.403 110.434 253.975 111.206 252.907 113.612C252.727 114.017 251.914 115.848 252.669 117.048C253.578 118.496 256.641 118.825 259.983 117.15\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M234.166 106.267C234.77 104.407 235.697 102.669 236.905 101.131C238.472 99.1521 239.549 98.7601 245.065 95.1391C250.086 91.8434 251.471 90.6741 252.37 91.2596C253.63 92.0797 252.668 95.5243 252.598 95.7674C250.999 101.318 244.603 103.756 242.783 104.384\" fill=\"#F8F6F5\"/>\\n<path d=\"M252.371 91.2593C253.631 92.0793 252.669 95.524 252.598 95.7671C250.999 101.318 244.603 103.755 242.783 104.384\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M195.107 279.687C194.668 278.752 194.083 277.892 193.375 277.139C190.598 274.27 186.355 274.003 179.798 270.169C176.98 268.524 173.306 265.889 169.56 261.58C169.231 261.197 168.77 260.952 168.268 260.895L147.624 258.582C147.341 258.551 147.054 258.579 146.783 258.667C146.512 258.754 146.263 258.897 146.051 259.088C145.84 259.279 145.671 259.512 145.556 259.773C145.442 260.034 145.384 260.316 145.386 260.601C145.438 266.093 145.467 270.755 145.595 282.945C145.607 284.037 145.595 284.919 145.576 285.427H156.21V281.933H169.622V285.42L196.272 285.403C196.37 283.43 195.969 281.464 195.107 279.687Z\" fill=\"#020C26\"/>\\n<path d=\"M234.979 279.687C234.54 278.752 233.955 277.892 233.247 277.139C230.468 274.27 226.228 274.003 219.669 270.17C216.852 268.524 213.178 265.89 209.432 261.58C209.103 261.198 208.641 260.953 208.14 260.896L187.496 258.583C187.213 258.551 186.927 258.579 186.656 258.666C186.385 258.753 186.135 258.896 185.924 259.087C185.712 259.277 185.544 259.51 185.429 259.771C185.314 260.031 185.256 260.313 185.258 260.598C185.31 266.09 185.339 270.752 185.467 282.942C185.479 284.034 185.467 284.916 185.448 285.424H196.082V281.93H209.492V285.417L236.144 285.4C236.241 283.428 235.841 281.463 234.979 279.687Z\" fill=\"#020C26\"/>\\n<path d=\"M217.902 233.847V259.185C213.526 261.103 208.856 262.261 204.091 262.609C194.476 263.294 186.97 260.471 183.204 258.728C169.747 263.862 154.907 264.064 141.315 259.299V233.732L184.916 205.769L217.902 233.847Z\" fill=\"#D79AEA\"/>\\n<path d=\"M147.336 261.065C159.255 263.911 171.755 263.096 183.204 258.728V214.842\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M179.798 270.169C182.025 271.426 184.33 272.539 186.7 273.499C188.754 274.326 190.54 274.908 192.521 276.548C193.475 277.321 194.284 278.258 194.909 279.315C196.359 281.779 196.35 284.242 196.266 285.393\" stroke=\"white\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M148.254 117.183C158.417 117.072 166.727 116.269 175.272 120.193C175.546 120.318 175.77 120.426 175.917 120.496L224.75 106.839L232.968 135.144L186.773 148.762C188.095 161.646 189.416 174.532 190.737 187.418C192.678 187.474 195.332 187.832 198.441 188.534C201.009 189.115 205.002 190.363 208.884 193.328C216.897 199.448 219.003 208.736 220.869 216.954C222.372 223.634 222.891 230.497 222.41 237.327H191.384C190.195 229.767 188.1 222.378 185.144 215.319C184.476 219.312 183.628 223.537 182.557 227.949C181.761 231.234 180.901 234.362 180.007 237.327H137.321V219.351C134.128 218.283 128.328 215.831 123.282 210.277C114.231 200.316 114.58 188.055 114.722 185.339C111.921 181.662 107.931 175.358 106.333 166.791C103.015 149.001 111.168 127.757 126.878 120.224C128.658 119.369 135.111 117.327 148.254 117.183Z\" fill=\"white\"/>\\n<path d=\"M183.431 128.296C184.388 133.655 185.263 139.209 186.057 144.959C187.234 153.567 188.086 161.838 188.682 169.727\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M172.709 166.875C175.372 166.408 184.036 165.228 193.286 170.07C202.475 174.879 206.447 182.595 207.59 185.054H172.362L172.709 166.875Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M130.302 139.286C130.835 142.677 131.33 146.158 131.786 149.729C132.147 152.572 132.47 155.369 132.755 158.118L172.284 158.098C172.654 163.333 172.843 168.947 172.76 174.896C172.712 178.413 172.572 181.801 172.361 185.054\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M138.462 119.025L130.245 128.329L142.285 129.298C141.296 132.265 140.307 135.233 139.318 138.2C149.532 142.146 158.316 149.083 164.523 158.103\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M164.066 120.357L171.676 126.07L167.947 127.592L176.85 135.505C177.346 144.79 175.884 154.076 172.558 162.759\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M180.007 237.327C181.022 233.914 181.993 230.32 182.89 226.552C184.309 220.59 185.374 214.91 186.17 209.592\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M158.322 121.347C152.715 117.945 147.473 117.048 145.253 119.222C144.792 119.686 144.458 120.26 144.284 120.89C154.622 129.077 162.703 139.764 167.763 151.943C168.52 145.445 167.668 138.86 165.284 132.768C163.63 128.592 161.276 124.73 158.322 121.347Z\" fill=\"#D79AEA\"/>\\n<path d=\"M160.457 124.045L159.406 115.266C160.088 115.19 160.76 115.035 161.406 114.803C162.253 114.494 163.047 114.057 163.763 113.509C165.068 112.455 165.658 111.004 166.083 109.635C167.352 105.541 168.175 98.789 166.653 92.5811C166.218 90.8057 165.559 88.9447 163.897 87.6898C163.502 87.3934 163.074 87.1451 162.621 86.9502L144.587 87.4073L135.076 99.1999C133.664 102.727 134.734 106.534 137.358 108.332C139.983 110.13 143.092 109.188 143.522 109.042C143.775 112.99 144.029 116.938 144.284 120.886L148.963 124.461C149.976 124.577 151.055 124.66 152.19 124.694C154.961 124.777 157.733 124.559 160.457 124.045Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M170.04 158.099C167.087 148.943 162.477 140.408 156.439 132.918C152.842 128.474 148.766 124.44 144.284 120.89\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M138.331 101.96L142.359 102.528L139.567 105.477\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M159.615 97.4912C159.46 98.2199 159.448 98.9714 159.577 99.7049C159.962 101.874 161.496 103.144 161.974 103.511C161.044 104.331 159.956 104.952 158.777 105.336\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M160.89 108.667C160.235 109.191 159.461 109.544 158.636 109.695C157.403 109.899 156.138 109.656 155.069 109.01\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M152.558 102.359C154.905 102.359 156.809 100.456 156.809 98.1079C156.809 95.7602 154.905 93.8569 152.558 93.8569C150.21 93.8569 148.307 95.7602 148.307 98.1079C148.307 100.456 150.21 102.359 152.558 102.359Z\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M164.523 102.359C166.871 102.359 168.774 100.456 168.774 98.1079C168.774 95.7602 166.871 93.8569 164.523 93.8569C162.176 93.8569 160.272 95.7602 160.272 98.1079C160.272 100.456 162.176 102.359 164.523 102.359Z\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M156.782 97.6166C157.419 97.2775 158.134 97.1122 158.855 97.1372C159.36 97.1588 159.857 97.2749 160.319 97.4796\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M143.066 98.1641C142.823 97.9501 141.183 96.553 138.88 96.8698C136.091 97.255 134.889 99.7905 134.814 99.9514C133.679 97.8076 133.114 95.4082 133.174 92.9834C133.362 86.9913 137.522 83.1734 138.686 82.1975C145.392 76.5375 155.079 78.5012 159.633 81.3295C161.374 82.4233 162.881 83.8519 164.066 85.5326C165.038 87.039 165.692 88.7287 165.987 90.4975C164.224 90.6779 162.43 90.8365 160.604 90.9735C154.148 91.4507 147.67 91.565 141.201 91.3159L144.473 98.0887L143.066 98.1641Z\" fill=\"#020C26\"/>\\n<path d=\"M185.143 173.342C187.257 174.134 189.254 175.209 191.079 176.538C194.146 178.788 196.668 181.698 198.459 185.054\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M134.694 285.975H139.831V190.931H134.694V285.975Z\" fill=\"#EFBBFF\"/>\\n<path d=\"M94.9285 192.758L295.617 192.758C296.222 192.758 296.711 192.268 296.711 191.664V186.148C296.711 185.543 296.222 185.054 295.617 185.054L94.9285 185.054C94.3243 185.054 93.8345 185.543 93.8345 186.148V191.664C93.8345 192.268 94.3243 192.758 94.9285 192.758Z\" fill=\"#D79AEA\"/>\\n<path d=\"M46.9751 259.684L21.5222 259.114C22.1008 261.853 22.4244 265.707 20.4949 269.158C18.9541 271.916 17.0709 272.456 15.4735 275.092C14.2083 277.184 13.1092 280.626 14.3316 286.392L46.8073 286.392C48.1207 281.731 48.1791 276.807 46.9765 272.116C45.7738 267.426 50.3707 263.137 46.9768 259.684H46.9751Z\" fill=\"#020C26\"/>\\n<path d=\"M112.322 280.717C111.882 279.782 111.297 278.922 110.589 278.169C107.811 275.3 103.57 275.033 97.011 271.199C94.1947 269.554 90.5206 266.919 86.7747 262.61C86.4453 262.227 85.9838 261.983 85.4821 261.925L64.8383 259.612C64.5555 259.58 64.2691 259.609 63.9981 259.696C63.7271 259.783 63.4776 259.926 63.2661 260.116C63.0546 260.307 62.8859 260.54 62.7712 260.8C62.6565 261.061 62.5984 261.343 62.6007 261.627C62.652 267.12 62.6811 271.782 62.8095 283.971C62.8215 285.064 62.8095 285.945 62.7907 286.454H73.4242V282.959H86.8346V286.447L113.486 286.43C113.583 284.458 113.183 282.493 112.322 280.717Z\" fill=\"#020C26\"/>\\n<path d=\"M91.5007 261.25L58.7482 261.344L58.4982 209.94C55.2225 227.269 51.9468 244.599 48.6711 261.928L21.6006 261.25L26.7006 205.2L81.3007 195C82.1327 213.283 90.6675 242.966 91.5007 261.25Z\" fill=\"#D79AEA\"/>\\n<path d=\"M88.996 195.214C88.714 162.8 88.4321 130.385 88.1502 97.9703L95.5497 97.3369C97.1025 93.1338 101.199 80.3876 96.1831 66.051C90.179 48.8724 73.7554 37.0387 56.2309 35.6126C32.6048 33.6882 17.3984 51.5175 14.3767 55.0597C0.851532 70.9235 -5.50529 96.9499 5.92259 115.092C9.78667 121.228 14.8526 125.14 18.816 127.565C15.506 155.748 12.1961 183.933 8.88614 212.119L29.179 218.671L88.996 195.214Z\" fill=\"white\"/>\\n<path d=\"M37.7619 37.8916L28.8935 45.8423L40.746 47.7495L37.1062 55.7739C40.89 57.5155 44.4656 59.6777 47.7653 62.2197C52.8295 66.1236 57.144 70.9131 60.4995 76.3561\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M63.0144 41.2695L70.1023 47.2137L66.2913 48.3146L74.4868 56.4074C74.3954 59.7707 74.011 63.1195 73.338 66.416C72.2726 71.609 70.5104 76.6342 68.0992 81.3553\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M57.249 41.7078C51.9639 38.08 46.8398 36.8097 44.472 38.6433C43.985 39.0275 43.6082 39.5337 43.3798 40.1105C47.6414 43.8633 51.4627 48.0883 54.77 52.7043C58.7715 58.2881 61.948 64.419 64.2016 70.9084C65.4636 64.9221 65.136 58.7096 63.2514 52.8892C61.9199 48.8397 59.8883 45.0553 57.249 41.7078Z\" fill=\"#D79AEA\"/>\\n<path d=\"M59.1511 44.3922C59.037 41.646 58.9194 38.8994 58.7984 36.1521C59.4779 36.1394 60.1537 36.051 60.8135 35.8884C61.671 35.6756 62.4925 35.3375 63.2515 34.8852C64.6211 34.0155 65.3248 32.7229 65.8521 31.4851C66.4102 30.1788 67.7507 26.5818 67.7559 15.6966C67.7559 14.2379 67.7336 12.1253 66.7783 9.64281C66.3906 8.63572 65.8928 7.67457 65.2939 6.77686L46.3074 9.04703L35.9633 19.2029C34.2872 22.3599 35.0422 25.9826 37.5041 27.8727C39.966 29.7627 43.1145 29.1396 43.5527 29.0471C43.4945 32.7349 43.4375 36.4226 43.3815 40.1103L47.7438 43.8169C48.7385 44.0104 49.7983 44.1782 50.9214 44.3048C53.6546 44.6119 56.412 44.6411 59.1511 44.3922Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M71.5044 199.176C71.0302 134.163 68.5032 86.5838 65.9711 76.8148C64.9545 73.0033 63.6707 69.2681 62.1293 65.6369C57.8132 55.8638 51.4139 47.1518 43.379 40.1104\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M38.9693 22.0332L42.9155 22.9029L39.9177 25.4059\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M60.7773 30.1495C60.0778 30.5841 59.2851 30.8464 58.4644 30.9148C57.2327 31.003 56.0071 30.6737 54.9855 29.98\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M43.9567 18.9051C43.4191 18.3914 42.7848 17.9897 42.0905 17.7234C41.3963 17.4572 40.6561 17.3316 39.9128 17.354C37.1205 17.4772 35.732 19.732 35.643 19.881C34.6924 17.8168 34.3202 15.5333 34.5661 13.2742C35.2133 7.81276 39.5602 4.66431 40.8733 3.71242C48.2351 -1.63258 60.2741 -1.11041 64.4293 4.6626C65.0427 5.52544 65.493 6.49329 65.7578 7.51829C64.1502 9.27314 59.6938 13.6491 52.5922 14.904C49.8541 15.3813 47.0514 15.3494 44.3248 14.8099L45.352 18.953L43.9567 18.9051Z\" fill=\"#020C26\"/>\\n<path d=\"M57.2293 26.1559L61.4307 26.1799C59.7936 23.8135 58.983 20.9731 59.1246 18.0991C59.832 17.7502 60.5863 17.5057 61.3639 17.3731C63.1065 17.1006 64.8907 17.3689 66.4761 18.1419\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M55.437 17.8783C54.5333 17.3314 53.5119 17.0086 52.4581 16.9366C50.9033 16.8549 49.3676 17.3094 48.1078 18.2241\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M43.3057 119.102C46.4627 120.985 49.4331 121.444 50.5202 120.283C51.9036 118.808 50.0443 114.913 48.5308 113.007C42.7304 105.705 27.4727 109.326 24.9201 109.963L21.3248 120.01L18.8132 127.029C20.5919 128.059 22.5835 128.666 24.6342 128.804C25.9395 128.887 27.2499 128.775 28.5222 128.472C32.251 132.293 36.1904 133.526 37.4471 132.41C38.6455 131.354 37.9607 127.707 35.4577 123.952C39.6779 127.847 44.0179 128.78 45.3464 127.435C46.5671 126.212 45.7539 122.638 43.3057 119.102Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M37.8799 131.741C37.6885 128.732 36.6655 125.835 34.9249 123.374C33.8468 121.869 32.5142 120.563 30.9872 119.517\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M45.9316 124.925C45.3561 121.966 43.9704 119.225 41.9289 117.007C40.6648 115.654 39.1747 114.531 37.5255 113.689\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M18.8161 127.572L26.7788 105.024C24.5864 102.992 22.8146 100.549 21.5639 97.8337C21.0046 96.6077 20.5566 95.334 20.2251 94.0278\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M80.6362 114.107L109.08 109.519C109.585 109.437 110.054 109.208 110.429 108.861C110.804 108.514 111.068 108.064 111.188 107.567L122.441 60.9207C122.542 60.5047 122.538 60.0702 122.43 59.656C122.321 59.2419 122.112 58.8609 121.821 58.5474C121.53 58.2338 121.165 57.9973 120.76 57.859C120.355 57.7208 119.922 57.6851 119.499 57.7551L91.0556 62.3417C90.5515 62.4235 90.0827 62.6524 89.7081 62.9996C89.3334 63.3468 89.0697 63.7969 88.9498 64.2934L77.6949 110.94C77.5946 111.356 77.5988 111.79 77.7072 112.204C77.8155 112.618 78.0246 112.999 78.3158 113.312C78.607 113.626 78.9713 113.863 79.3761 114.001C79.781 114.14 80.2139 114.176 80.6362 114.107Z\" fill=\"#020C26\"/>\\n<path d=\"M82.6641 116.394L111.111 111.806C111.616 111.725 112.085 111.496 112.46 111.149C112.835 110.802 113.099 110.352 113.219 109.856L124.465 63.2094C124.565 62.7943 124.562 62.3609 124.454 61.9476C124.346 61.5344 124.138 61.1542 123.848 60.8408C123.558 60.5274 123.195 60.2905 122.791 60.1511C122.388 60.0118 121.956 59.9744 121.534 60.0421L93.0904 64.6304C92.586 64.7114 92.1167 64.9397 91.7417 65.2867C91.3667 65.6336 91.1027 66.0838 90.9829 66.5804L79.7296 113.228C79.6291 113.644 79.633 114.078 79.7409 114.491C79.8487 114.905 80.0571 115.285 80.3477 115.598C80.6382 115.912 81.0017 116.148 81.4059 116.287C81.8101 116.426 82.2423 116.463 82.6641 116.394Z\" fill=\"#D79AEA\"/>\\n<path d=\"M115.616 77.5615C112.933 75.0499 111.668 72.3226 112.481 70.9564C113.488 69.2666 117.557 69.8436 120.024 70.852C126.953 73.682 133.229 84.812 128.992 93.8293C125.248 101.795 115.617 103.18 114.782 103.288C113.297 101.862 112.161 100.114 111.461 98.1779C111.019 96.9471 110.764 95.6575 110.702 94.3515C105.996 91.8279 103.721 88.385 104.443 86.8681C105.128 85.4283 108.817 85.0671 113.121 86.435C108.209 83.4595 106.102 79.5509 107.035 77.8987C107.879 76.399 111.541 76.1884 115.616 77.5615Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M104.975 86.2774C107.918 85.6249 110.985 85.8027 113.833 86.791C115.577 87.4098 117.199 88.3287 118.626 89.5063\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M109.295 76.6509C112.297 76.3851 115.314 76.957 118.011 78.303C119.659 79.1433 121.148 80.2643 122.411 81.6158\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M42.9722 160.551C45.8207 161.875 48.2611 163.94 50.038 166.53C51.815 169.12 52.8633 172.14 53.0732 175.274C52.9591 182.427 52.845 189.58 52.7308 196.731\" stroke=\"#020C26\" stroke-width=\"0.856021\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-135wvmj\",\"data-framer-name\":\"Intro Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g79vxs\",\"data-styles-preset\":\"oPh_4TQIN\",children:\"Unsere Fach\\xe4rzte und Fach\\xe4rztinnen an deiner Seite\"})}),className:\"framer-bqjnip\",\"data-framer-name\":\"Title - Unser Fach\\xe4rzt:innen-Team an Deiner Seite\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LR2td6NJu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1l9a8w6\",\"data-styles-preset\":\"WCj6RX85d\",children:\"Ein Team aus Fach\\xe4rzten und Fach\\xe4rztinnen ist fester Teil von Simply Onno. Dank ihnen stellen wir sicher, dass unsere Erkl\\xe4rungen nicht nur einfach zu verstehen, sondern auch inhaltlich korrekt sind.\"})})},wJY_z6xPr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1l9a8w6\",\"data-styles-preset\":\"WCj6RX85d\",children:\"Ein Team aus Fach\\xe4rzten und Fach\\xe4rztinnen ist fester Teil von Simply Onno. Dank ihnen stellen wir sicher, dass unsere Erkl\\xe4rungen nicht nur einfach zu verstehen, sondern auch inhaltlich korrekt sind.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1l9a8w6\",\"data-styles-preset\":\"WCj6RX85d\",children:\"Ein Team aus Fach\\xe4rzten und Fach\\xe4rztinnen ist fester Teil von Simply Onno. Dank ihnen stellen wir sicher, dass unsere Erkl\\xe4rungen nicht nur einfach zu verstehen sind, sondern auch inhaltlich korrekt.\"})}),className:\"framer-uojk3\",\"data-framer-name\":\"Unser eingespieltes Team aus Fach\\xe4rzt:innen unter der Leitung von Dr. Carmen Georg ist fester Teil von Simply Onno. Dank ihnen stellen wir sicher, dass wir uns stetig weiterentwickeln um Dir alle relevanten Dokumente in eine einfache Sprache zu \\xfcbersetzten. \",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(RichTextAdd_CTA_Landingpage80742i,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16cwjk9\",\"data-styles-preset\":\"ucRCwUvxF\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://app.simply-onno.com\",motionChild:true,nodeId:\"tuKAezw55\",openInNewTab:false,scopeId:\"TtbrpX20t\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vllgyt\",\"data-styles-preset\":\"Ax9_pJZDb\",children:\"Lass deinen Bericht \\xfcbersetzen\"})})})}),className:\"framer-80742i\",\"data-framer-name\":\"Link\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rij8a6\",\"data-framer-name\":\"KI\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u4lgkz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zv7mg5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g79vxs\",\"data-styles-preset\":\"oPh_4TQIN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Das passiert im Hintergrund\"})}),className:\"framer-gplpg3\",\"data-framer-name\":\"Title - Wir erkl\\xe4ren Dir Deine medizinischen \\u2028Dokumente mit Hilfe von KI\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P1Vo_Ps3Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:\"Um h\\xf6chste Qualit\\xe4t zu gew\\xe4hrleisten, arbeitet Simply Onno mit k\\xfcnstlicher Intelligenz ausgew\\xe4hlter Services. \\u2028\\u2028\"})}),fonts:[\"GF;IBM Plex Sans-regular\"]},wJY_z6xPr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:\"Um h\\xf6chste Qualit\\xe4t zu gew\\xe4hrleisten, arbeitet Simply Onno mit k\\xfcnstlicher Intelligenz ausgew\\xe4hlter Services. \\u2028\\u2028\"})}),fonts:[\"GF;IBM Plex Sans-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1l9a8w6\",\"data-styles-preset\":\"WCj6RX85d\",style:{\"--framer-text-alignment\":\"center\"},children:\"Um h\\xf6chste Qualit\\xe4t zu gew\\xe4hrleisten, arbeitet Simply Onno mit k\\xfcnstlicher Intelligenz ausgew\\xe4hlter Services. \\u2028\\u2028\"})}),className:\"framer-1s3q9yy\",\"data-framer-name\":\"Simply Onno arbeitet mit KI (k\\xfcnstlicher Intelligenz) ausgew\\xe4hlter Services. \\u2028Um sicherzustellen, dass wir Deine Befunde auch sachgem\\xe4\\xdf \\xfcbersetzten, werden die erstellten Berichte regelm\\xe4\\xdfig von unserem Team aus Fach\\xe4rzt:innen gepr\\xfcft. \",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c23m3t hidden-1r88f08 hidden-1f3zynu\",\"data-framer-name\":\"Graphic v1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18yh1kp\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-133qxj8\",\"data-framer-name\":\"IMG_Laden\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:98,intrinsicWidth:98,svg:'<svg width=\"98\" height=\"98\" viewBox=\"0 0 98 98\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"98\" height=\"98\" rx=\"16\" fill=\"#EFBBFF\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M46.5998 25H32.1998C31.5633 25 30.9528 25.2529 30.5027 25.7029C30.0527 26.153 29.7998 26.7635 29.7998 27.4V70.6C29.7998 71.2365 30.0527 71.847 30.5027 72.2971C30.9528 72.7471 31.5633 73 32.1998 73H65.7998C66.4363 73 67.0468 72.7471 67.4969 72.2971C67.947 71.847 68.1998 71.2365 68.1998 70.6V46.6H48.9998C48.3633 46.6 47.7528 46.3471 47.3027 45.8971C46.8527 45.447 46.5998 44.8365 46.5998 44.2V25ZM66.7934 41.8L51.3998 26.4064V41.8H66.7934Z\" fill=\"#020C26\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xlfdrg\",\"data-framer-name\":\"Line 13\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:104,svg:'<svg width=\"104\" height=\"27\" viewBox=\"-2 -2 104 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M99.0607 12.5607C99.6464 11.9749 99.6464 11.0251 99.0607 10.4393L89.5147 0.893398C88.9289 0.307611 87.9792 0.307611 87.3934 0.893398C86.8076 1.47919 86.8076 2.42893 87.3934 3.01472L95.8787 11.5L87.3934 19.9853C86.8076 20.5711 86.8076 21.5208 87.3934 22.1066C87.9792 22.6924 88.9289 22.6924 89.5147 22.1066L99.0607 12.5607ZM0 13H98V10H0V13Z\" fill=\"#EFBBFF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jp8p02\",\"data-framer-name\":\"IMG_Umwandeln\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:98,intrinsicWidth:98,svg:'<svg width=\"98\" height=\"98\" viewBox=\"0 0 98 98\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"98\" height=\"98\" rx=\"16\" fill=\"#EFBBFF\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M45.4498 26.1001C44.6542 26.1001 43.8911 26.4162 43.3285 26.9788C42.7659 27.5414 42.4498 28.3044 42.4498 29.1001V69.9001C42.4498 70.6957 42.7659 71.4588 43.3285 72.0214C43.8911 72.584 44.6542 72.9001 45.4498 72.9001C46.2455 72.9001 47.0085 72.584 47.5711 72.0214C48.1337 71.4588 48.4498 70.6957 48.4498 69.9001V29.1001C48.4498 28.7061 48.3722 28.316 48.2214 27.952C48.0707 27.5881 47.8497 27.2574 47.5711 26.9788C47.2926 26.7002 46.9618 26.4792 46.5979 26.3285C46.2339 26.1777 45.8438 26.1001 45.4498 26.1001ZM69.4498 32.1001H57.4498C56.6542 32.1001 55.8911 31.784 55.3285 31.2214C54.7659 30.6588 54.4498 29.8957 54.4498 29.1001C54.4498 28.3044 54.7659 27.5414 55.3285 26.9788C55.8911 26.4162 56.6542 26.1001 57.4498 26.1001H69.4498C70.2455 26.1001 71.0085 26.4162 71.5711 26.9788C72.1337 27.5414 72.4498 28.3044 72.4498 29.1001C72.4498 29.8957 72.1337 30.6588 71.5711 31.2214C71.0085 31.784 70.2455 32.1001 69.4498 32.1001ZM65.8498 45.3001H57.4498C56.6542 45.3001 55.8911 44.984 55.3285 44.4214C54.7659 43.8588 54.4498 43.0957 54.4498 42.3001C54.4498 41.5044 54.7659 40.7414 55.3285 40.1788C55.8911 39.6162 56.6542 39.3001 57.4498 39.3001H65.8498C66.6455 39.3001 67.4085 39.6162 67.9711 40.1788C68.5337 40.7414 68.8498 41.5044 68.8498 42.3001C68.8498 43.0957 68.5337 43.8588 67.9711 44.4214C67.4085 44.984 66.6455 45.3001 65.8498 45.3001ZM69.4498 53.7001H57.4498C56.6542 53.7001 55.8911 54.0162 55.3285 54.5788C54.7659 55.1414 54.4498 55.9044 54.4498 56.7001C54.4498 57.4957 54.7659 58.2588 55.3285 58.8214C55.8911 59.384 56.6542 59.7001 57.4498 59.7001H69.4498C70.2455 59.7001 71.0085 59.384 71.5711 58.8214C72.1337 58.2588 72.4498 57.4957 72.4498 56.7001C72.4498 55.9044 72.1337 55.1414 71.5711 54.5788C71.0085 54.0162 70.2455 53.7001 69.4498 53.7001ZM57.4498 66.9001H65.8498C66.6455 66.9001 67.4085 67.2162 67.9711 67.7788C68.5337 68.3414 68.8498 69.1044 68.8498 69.9001C68.8498 70.6957 68.5337 71.4588 67.9711 72.0214C67.4085 72.584 66.6455 72.9001 65.8498 72.9001H57.4498C56.6542 72.9001 55.8911 72.584 55.3285 72.0214C54.7659 71.4588 54.4498 70.6957 54.4498 69.9001C54.4498 69.1044 54.7659 68.3414 55.3285 67.7788C55.8911 67.2162 56.6542 66.9001 57.4498 66.9001ZM27.9154 39.9481C28.3805 40.0396 28.8081 40.2667 29.1442 40.6009L36.3442 47.8009C36.5677 48.0238 36.745 48.2887 36.866 48.5803C36.987 48.8718 37.0493 49.1844 37.0493 49.5001C37.0493 49.8158 36.987 50.1284 36.866 50.4199C36.745 50.7115 36.5677 50.9764 36.3442 51.1993L29.1442 58.3993C28.8083 58.7342 28.3807 58.962 27.9154 59.054C27.4501 59.146 26.968 59.0981 26.5299 58.9163C26.0918 58.7345 25.7174 58.4269 25.454 58.0325C25.1905 57.6381 25.0499 57.1744 25.0498 56.7001V42.3001C25.0502 41.9457 25.129 41.5957 25.2807 41.2753C25.4324 40.955 25.6532 40.6722 25.9272 40.4474C26.2011 40.2225 26.5215 40.0611 26.8653 39.9748C27.2091 39.8884 27.5677 39.8793 27.9154 39.9481Z\" fill=\"#020C26\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-c7i9sa\",\"data-framer-name\":\"Line 13\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:104,svg:'<svg width=\"104\" height=\"27\" viewBox=\"-2 -2 104 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M99.0607 12.5607C99.6464 11.9749 99.6464 11.0251 99.0607 10.4393L89.5147 0.893398C88.9289 0.307611 87.9792 0.307611 87.3934 0.893398C86.8076 1.47919 86.8076 2.42893 87.3934 3.01472L95.8787 11.5L87.3934 19.9853C86.8076 20.5711 86.8076 21.5208 87.3934 22.1066C87.9792 22.6924 88.9289 22.6924 89.5147 22.1066L99.0607 12.5607ZM0 13H98V10H0V13Z\" fill=\"#EFBBFF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7ums6w\",\"data-framer-name\":\"Group 1171273936\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:98,intrinsicWidth:98,svg:'<svg width=\"98\" height=\"98\" viewBox=\"0 0 98 98\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"98\" height=\"98\" rx=\"16\" fill=\"#EFBBFF\"/>\\n<path d=\"M55.9336 32.6484L61.5 30.5L63.5508 25.0312C63.6484 24.543 64.1367 24.25 64.625 24.25C65.0156 24.25 65.5039 24.543 65.6016 25.0312L67.75 30.5L73.2188 32.6484C73.707 32.7461 74 33.2344 74 33.625C74 34.1133 73.707 34.6016 73.2188 34.6992L67.75 36.75L65.6016 42.3164C65.5039 42.707 65.0156 43 64.625 43C64.1367 43 63.6484 42.707 63.5508 42.3164L61.5 36.75L55.9336 34.6992C55.4453 34.6016 55.25 34.1133 55.25 33.625C55.25 33.2344 55.4453 32.7461 55.9336 32.6484ZM41.1875 31.4766C41.3828 30.8906 41.9688 30.5 42.5547 30.5C43.1406 30.5 43.7266 30.8906 44.0195 31.4766L49.0977 42.6094L60.2305 47.6875C60.8164 47.9805 61.207 48.5664 61.207 49.1523C61.207 49.7383 60.8164 50.3242 60.2305 50.6172L49.0977 55.6953L44.0195 66.8281C43.7266 67.4141 43.1406 67.8047 42.5547 67.8047C41.9688 67.8047 41.3828 67.4141 41.1875 66.8281L36.0117 55.6953L24.8789 50.6172C24.293 50.3242 24 49.7383 24 49.1523C24 48.5664 24.293 47.9805 24.8789 47.6875L36.0117 42.6094L41.1875 31.4766ZM40.2109 44.5625C39.8203 45.5391 38.9414 46.418 37.9648 46.8086L32.9844 49.1523L37.9648 51.4961C38.9414 51.8867 39.8203 52.7656 40.2109 53.7422L42.5547 58.7227L44.8984 53.7422C45.2891 52.7656 46.168 51.8867 47.1445 51.4961L52.125 49.1523L47.1445 46.8086C46.168 46.418 45.2891 45.5391 44.8984 44.5625L42.5547 39.582L40.2109 44.5625ZM63.5508 56.2812C63.6484 55.793 64.1367 55.5 64.625 55.5C65.0156 55.5 65.5039 55.793 65.6016 56.2812L67.75 61.75L73.2188 63.8984C73.707 63.9961 74 64.4844 74 64.875C74 65.3633 73.707 65.8516 73.2188 65.9492L67.75 68L65.6016 73.5664C65.5039 73.957 65.0156 74.25 64.625 74.25C64.1367 74.25 63.6484 73.957 63.5508 73.5664L61.5 68L55.9336 65.9492C55.4453 65.8516 55.25 65.3633 55.25 64.875C55.25 64.4844 55.4453 63.9961 55.9336 63.8984L61.5 61.75L63.5508 56.2812Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jdagpf\",\"data-framer-name\":\"Line 14\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:104,svg:'<svg width=\"104\" height=\"27\" viewBox=\"-2 -2 104 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M99.0607 12.5607C99.6464 11.9749 99.6464 11.0251 99.0607 10.4393L89.5147 0.893398C88.9289 0.307611 87.9792 0.307611 87.3934 0.893398C86.8076 1.47919 86.8076 2.42893 87.3934 3.01472L95.8787 11.5L87.3934 19.9853C86.8076 20.5711 86.8076 21.5208 87.3934 22.1066C87.9792 22.6924 88.9289 22.6924 89.5147 22.1066L99.0607 12.5607ZM0 13H98V10H0V13Z\" fill=\"#EFBBFF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2faggv\",\"data-framer-name\":\"IMG_validiert\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:98,intrinsicWidth:98,svg:'<svg width=\"98\" height=\"98\" viewBox=\"0 0 98 98\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"98\" height=\"98\" rx=\"16\" fill=\"#EFBBFF\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28.0244 23.0008L69.2888 23.0001C72.3713 23 74.9402 25.3341 75.0884 28.4131C75.3136 33.0938 75.4368 40.1882 74.7188 47.1621C73.4931 59.0676 59.6615 75.0001 48.9818 75.0001C38.3022 75.0001 23.7698 57.8415 22.5446 47.1621C21.8112 40.77 21.9557 33.374 22.19 28.4658C22.3379 25.366 24.9212 23.0008 28.0244 23.0008ZM61.7105 38.3593C62.6512 37.1311 62.4182 35.3728 61.19 34.432C59.9618 33.4912 58.2035 33.7243 57.2627 34.9525L46.3486 49.2015L39.9898 44.4C38.7551 43.4677 36.9985 43.7128 36.0662 44.9475C35.1339 46.1821 35.379 47.9388 36.6137 48.8711L45.1926 55.3491C46.4213 56.2769 48.1684 56.0392 49.1046 54.817L61.7105 38.3593Z\" fill=\"#020C26\"/>\\n<path d=\"M69.2888 23.0001L69.2888 23.2501L69.2888 23.0001ZM28.0244 23.0008L28.0244 22.7508L28.0244 23.0008ZM75.0884 28.4131L75.3381 28.4011V28.401L75.0884 28.4131ZM74.7188 47.1621L74.9675 47.1877L74.7188 47.1621ZM22.5446 47.1621L22.2962 47.1906L22.5446 47.1621ZM22.19 28.4658L21.9402 28.4538L22.19 28.4658ZM61.19 34.432L61.342 34.2335V34.2335L61.19 34.432ZM61.7105 38.3593L61.9089 38.5113L61.7105 38.3593ZM57.2627 34.9525L57.4612 35.1045L57.2627 34.9525ZM46.3486 49.2015L46.1979 49.401L46.396 49.5506L46.547 49.3535L46.3486 49.2015ZM39.9898 44.4L40.1404 44.2005L39.9898 44.4ZM36.0662 44.9475L36.2657 45.0981L36.0662 44.9475ZM36.6137 48.8711L36.7643 48.6716H36.7643L36.6137 48.8711ZM45.1926 55.3491L45.3433 55.1496H45.3433L45.1926 55.3491ZM49.1046 54.817L49.3031 54.969L49.1046 54.817ZM69.2887 22.7501L28.0244 22.7508L28.0244 23.2508L69.2888 23.2501L69.2887 22.7501ZM75.3381 28.401C75.1832 25.1822 72.498 22.75 69.2887 22.7501L69.2888 23.2501C72.2446 23.25 74.6973 25.486 74.8387 28.4251L75.3381 28.401ZM74.9675 47.1877C75.6873 40.1961 75.5636 33.0878 75.3381 28.4011L74.8387 28.4251C75.0636 33.0999 75.1863 40.1803 74.4701 47.1365L74.9675 47.1877ZM48.9818 75.2501C51.7118 75.2501 54.6232 74.233 57.4643 72.5393C60.3074 70.8445 63.0947 68.4636 65.581 65.7133C70.5479 60.219 74.3473 53.2118 74.9675 47.1877L74.4701 47.1365C73.8646 53.018 70.1353 59.9298 65.2101 65.378C62.7503 68.099 60.0006 70.4453 57.2083 72.1099C54.4141 73.7756 51.5917 74.7501 48.9818 74.7501V75.2501ZM22.2962 47.1906C22.9174 52.6053 26.8959 59.6122 32.0329 65.2542C34.6055 68.0797 37.4792 70.5747 40.3867 72.3651C43.2914 74.1536 46.2482 75.2501 48.9818 75.2501V74.7501C46.3757 74.7501 43.511 73.7017 40.6489 71.9393C37.7897 70.1787 34.9512 67.7167 32.4026 64.9176C27.2973 59.3104 23.397 52.3984 22.7929 47.1336L22.2962 47.1906ZM21.9402 28.4538C21.7058 33.3658 21.5605 40.778 22.2962 47.1906L22.7929 47.1336C22.0619 40.762 22.2056 33.3821 22.4397 28.4777L21.9402 28.4538ZM28.0244 22.7508C24.7935 22.7508 22.0948 25.2152 21.9402 28.4538L22.4397 28.4777C22.581 25.5169 25.0489 23.2508 28.0244 23.2508L28.0244 22.7508ZM61.038 34.6305C62.1566 35.4873 62.3688 37.0887 61.512 38.2073L61.9089 38.5113C62.9337 37.1735 62.6798 35.2583 61.342 34.2335L61.038 34.6305ZM57.4612 35.1045C58.318 33.9859 59.9194 33.7737 61.038 34.6305L61.342 34.2335C60.0042 33.2088 58.0889 33.4626 57.0642 34.8005L57.4612 35.1045ZM46.547 49.3535L57.4612 35.1045L57.0642 34.8005L46.1501 49.0495L46.547 49.3535ZM39.8391 44.5995L46.1979 49.401L46.4992 49.002L40.1404 44.2005L39.8391 44.5995ZM36.2657 45.0981C37.1148 43.9736 38.7147 43.7504 39.8391 44.5995L40.1404 44.2005C38.7956 43.185 36.8822 43.452 35.8667 44.7968L36.2657 45.0981ZM36.7643 48.6716C35.6398 47.8225 35.4166 46.2226 36.2657 45.0981L35.8667 44.7968C34.8512 46.1417 35.1182 48.0551 36.463 49.0706L36.7643 48.6716ZM45.3433 55.1496L36.7643 48.6716L36.463 49.0706L45.042 55.5486L45.3433 55.1496ZM48.9061 54.6649C48.0535 55.7781 46.4623 55.9946 45.3433 55.1496L45.042 55.5486C46.3803 56.5592 48.2833 56.3003 49.3031 54.969L48.9061 54.6649ZM61.512 38.2073L48.9061 54.6649L49.3031 54.969L61.9089 38.5113L61.512 38.2073Z\" fill=\"#16444F\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bkrjr8\",\"data-framer-name\":\"Line 15\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:104,svg:'<svg width=\"104\" height=\"27\" viewBox=\"-2 -2 104 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M99.0607 12.5607C99.6464 11.9749 99.6464 11.0251 99.0607 10.4393L89.5147 0.893398C88.9289 0.307611 87.9792 0.307611 87.3934 0.893398C86.8076 1.47919 86.8076 2.42893 87.3934 3.01472L95.8787 11.5L87.3934 19.9853C86.8076 20.5711 86.8076 21.5208 87.3934 22.1066C87.9792 22.6924 88.9289 22.6924 89.5147 22.1066L99.0607 12.5607ZM0 13H98V10H0V13Z\" fill=\"#EFBBFF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7ubahk\",\"data-framer-name\":\"IMG_uebersetzt\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:98,intrinsicWidth:98,svg:'<svg width=\"98\" height=\"98\" viewBox=\"0 0 98 98\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"98\" height=\"98\" rx=\"16\" fill=\"#EFBBFF\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M26.8382 22.96C28.087 21.7056 29.7838 21 31.559 21H70.3278C71.2044 21 72.0724 21.1727 72.8823 21.5081C73.6922 21.8436 74.428 22.3353 75.0479 22.9551C75.6677 23.575 76.1594 24.3108 76.4949 25.1207C76.8303 25.9306 77.003 26.7986 77.003 27.6752V66.444C77.0037 67.3211 76.8316 68.1897 76.4965 69.0002C76.1614 69.8107 75.6698 70.5473 75.0499 71.1677C74.4299 71.7881 73.6938 72.2803 72.8836 72.6161C72.0734 72.952 71.2049 73.1248 70.3278 73.1248H39.651L24.475 76.916C23.9886 77.0368 23.4786 77.0249 22.9984 76.8814C22.5182 76.7379 22.0853 76.4682 21.7449 76.1003C21.4045 75.7324 21.169 75.2799 21.0632 74.79C20.9573 74.3001 20.9849 73.7908 21.143 73.3152L24.8726 62.1152V27.6752C24.8726 25.9056 25.5782 24.2032 26.8326 22.9544L26.8382 22.96ZM43.9966 42.476H44.1254C45.2336 42.459 46.2902 42.0047 47.0648 41.212C47.8395 40.4193 48.2694 39.3526 48.2609 38.2443C48.2524 37.136 47.8062 36.076 47.0194 35.2953C46.2327 34.5146 45.1693 34.0765 44.061 34.0765C42.9527 34.0765 41.8893 34.5146 41.1026 35.2953C40.3159 36.076 39.8696 37.136 39.8611 38.2443C39.8526 39.3526 40.2826 40.4193 41.0572 41.212C41.8318 42.0047 42.8884 42.459 43.9966 42.476ZM39.455 48.0704C39.455 47.6991 39.6025 47.343 39.8651 47.0805C40.1276 46.8179 40.4837 46.6704 40.855 46.6704H61.7038C62.0751 46.6704 62.4312 46.8179 62.6938 47.0805C62.9563 47.343 63.1038 47.6991 63.1038 48.0704C63.1381 49.6449 62.8576 51.2103 62.2787 52.6749C61.6999 54.1395 60.8344 55.4737 59.733 56.5993C58.6316 57.725 57.3165 58.6193 55.8649 59.2299C54.4132 59.8404 52.8542 60.1549 51.2794 60.1549C49.7046 60.1549 48.1456 59.8404 46.694 59.2299C45.2423 58.6193 43.9272 57.725 42.8258 56.5993C41.7244 55.4737 40.8589 54.1395 40.2801 52.6749C39.7013 51.2103 39.4207 49.6449 39.455 48.0704ZM58.6854 42.476H58.5622C57.4537 42.4597 56.3967 42.0059 55.6215 41.2135C54.8463 40.421 54.4158 39.3542 54.4239 38.2457C54.432 37.1371 54.8781 36.0767 55.6649 35.2957C56.4516 34.5147 57.5152 34.0765 58.6238 34.0765C59.7324 34.0765 60.796 34.5147 61.5827 35.2957C62.3695 36.0767 62.8156 37.1371 62.8237 38.2457C62.8318 39.3542 62.4014 40.421 61.6261 41.2135C60.8509 42.0059 59.7939 42.4597 58.6854 42.476Z\" fill=\"#020C26\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a6pbzu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LR2td6NJu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"RB Quaria Display Regular\", \"RB Quaria Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:[\"Du\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\"l\\xe4dst\"}),\" dein Dokument auf Simply Onno \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\"hoch\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"RB Quaria Display Regular\", \"RB Quaria Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:[\"Du \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\"l\\xe4dst\"}),\" dein Dokument auf Simply Onno \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\"hoch\"})]})}),className:\"framer-15ow8h3\",\"data-framer-name\":\"Du l\\xe4dst Dein Dokument auf Simply Onno hoch\",fonts:[\"CUSTOM;RB Quaria Display Regular\",\"CUSTOM;RB Quaria Display Regular Italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LR2td6NJu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"RB Quaria Display Regular\", \"RB Quaria Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:[\"Wir \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\"wandeln\"}),\" das Bild oder PDF in \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\"Text um \"}),\"und\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\" anonymisieren \"}),\"es\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"RB Quaria Display Regular\", \"RB Quaria Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:[\"Wir \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\"wandeln\"}),\" das Bild oder PDF in \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\"Text um \"}),\"und\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\" anonymisieren \"}),\"es\"]})}),className:\"framer-b0zlb6\",\"data-framer-name\":\"Wir wandeln das Bild oder PDF in Text um\",fonts:[\"CUSTOM;RB Quaria Display Regular\",\"CUSTOM;RB Quaria Display Regular Italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LR2td6NJu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"RB Quaria Display Regular\", \"RB Quaria Display Regular Placeholder\", sans-serif'},children:\"Der Text wird \"}),\"mit Hilfe von KI \\xfcbersetzt\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"RB Quaria Display Regular\", \"RB Quaria Display Regular Placeholder\", sans-serif'},children:\"Der Text wird \"}),\"mit Hilfe von KI \\xfcbersetzt\"]})}),className:\"framer-ebf9ae\",\"data-framer-name\":\"Der Text wird mit Hilfe von KI \\xfcbersetzt\",fonts:[\"CUSTOM;RB Quaria Display Regular Italic\",\"CUSTOM;RB Quaria Display Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LR2td6NJu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"RB Quaria Display Regular\", \"RB Quaria Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:[\"Unser System \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\"validiert\"}),\" die \\xdcbersetzung \"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"RB Quaria Display Regular\", \"RB Quaria Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:[\"Unser System \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\"validiert\"}),\" die \\xdcbersetzung \"]})}),className:\"framer-xlrryu\",\"data-framer-name\":\"Unser System validiert die \\xdcbersetzung \",fonts:[\"CUSTOM;RB Quaria Display Regular\",\"CUSTOM;RB Quaria Display Regular Italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LR2td6NJu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"RB Quaria Display Regular\", \"RB Quaria Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:[\"Du erh\\xe4lst deine Simply Onno \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\"\\xdcbersetzung\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"RB Quaria Display Regular\", \"RB Quaria Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:[\"Du erh\\xe4lst deine Simply Onno \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\"\\xdcbersetzung\"})]})}),className:\"framer-5c3n2z\",\"data-framer-name\":\"Du erh\\xe4lst Deine Simply Onno \\xdcbersezung\",fonts:[\"CUSTOM;RB Quaria Display Regular\",\"CUSTOM;RB Quaria Display Regular Italic\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ptamk3 hidden-b35poj hidden-h9qi9v\",\"data-framer-name\":\"Graphic v2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-luka4h\",\"data-framer-name\":\"\\xdcbersetzung\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-298c24\",\"data-framer-name\":\"IMG_Laden\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:98,intrinsicWidth:98,svg:'<svg width=\"98\" height=\"98\" viewBox=\"0 0 98 98\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"98\" height=\"98\" rx=\"16\" fill=\"#EFBBFF\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M46.5998 25H32.1998C31.5633 25 30.9528 25.2529 30.5027 25.7029C30.0527 26.153 29.7998 26.7635 29.7998 27.4V70.6C29.7998 71.2365 30.0527 71.847 30.5027 72.2971C30.9528 72.7471 31.5633 73 32.1998 73H65.7998C66.4363 73 67.0468 72.7471 67.4969 72.2971C67.947 71.847 68.1998 71.2365 68.1998 70.6V46.6H48.9998C48.3633 46.6 47.7528 46.3471 47.3027 45.8971C46.8527 45.447 46.5998 44.8365 46.5998 44.2V25ZM66.7934 41.8L51.3998 26.4064V41.8H66.7934Z\" fill=\"#020C26\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P1Vo_Ps3Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"RB Quaria Display Regular\", \"RB Quaria Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:[\"Du \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\"l\\xe4dst\"}),\" dein Dokument auf Simply Onno \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\"hoch\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"RB Quaria Display Regular\", \"RB Quaria Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:[\"Du \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\"l\\xe4dst\"}),\" Dein Dokument auf Simply Onno \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\"hoch\"})]})}),className:\"framer-59ht2y\",\"data-framer-name\":\"Du l\\xe4dst Dein Dokument auf Simply Onno hoch\",fonts:[\"CUSTOM;RB Quaria Display Regular\",\"CUSTOM;RB Quaria Display Regular Italic\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-q8078w\",\"data-framer-name\":\"Line 16 (Stroke)\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:52,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"52\" viewBox=\"-2 -2 28 52\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.6066 38.0147L13.0606 47.5607C12.4748 48.1464 11.5251 48.1464 10.9393 47.5607L1.39335 38.0147C0.807566 37.4289 0.807566 36.4792 1.39335 35.8934C1.97914 35.3076 2.92889 35.3076 3.51467 35.8934L10.5 42.8787L10.5 2C10.5 1.17157 11.1715 0.5 12 0.5C12.8284 0.499999 13.5 1.17157 13.5 2L13.5 42.8787L20.4852 35.8934C21.071 35.3076 22.0208 35.3076 22.6066 35.8934C23.1923 36.4792 23.1923 37.4289 22.6066 38.0147Z\" fill=\"#EFBBFF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1snv0gc\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-12y35q2\",\"data-framer-name\":\"IMG_Umwandeln\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:98,intrinsicWidth:98,svg:'<svg width=\"98\" height=\"98\" viewBox=\"0 0 98 98\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"98\" height=\"98\" rx=\"16\" fill=\"#EFBBFF\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M45.4498 26.1001C44.6542 26.1001 43.8911 26.4162 43.3285 26.9788C42.7659 27.5414 42.4498 28.3044 42.4498 29.1001V69.9001C42.4498 70.6957 42.7659 71.4588 43.3285 72.0214C43.8911 72.584 44.6542 72.9001 45.4498 72.9001C46.2455 72.9001 47.0085 72.584 47.5711 72.0214C48.1337 71.4588 48.4498 70.6957 48.4498 69.9001V29.1001C48.4498 28.7061 48.3722 28.316 48.2214 27.952C48.0707 27.5881 47.8497 27.2574 47.5711 26.9788C47.2926 26.7002 46.9618 26.4792 46.5979 26.3285C46.2339 26.1777 45.8438 26.1001 45.4498 26.1001ZM69.4498 32.1001H57.4498C56.6542 32.1001 55.8911 31.784 55.3285 31.2214C54.7659 30.6588 54.4498 29.8957 54.4498 29.1001C54.4498 28.3044 54.7659 27.5414 55.3285 26.9788C55.8911 26.4162 56.6542 26.1001 57.4498 26.1001H69.4498C70.2455 26.1001 71.0085 26.4162 71.5711 26.9788C72.1337 27.5414 72.4498 28.3044 72.4498 29.1001C72.4498 29.8957 72.1337 30.6588 71.5711 31.2214C71.0085 31.784 70.2455 32.1001 69.4498 32.1001ZM65.8498 45.3001H57.4498C56.6542 45.3001 55.8911 44.984 55.3285 44.4214C54.7659 43.8588 54.4498 43.0957 54.4498 42.3001C54.4498 41.5044 54.7659 40.7414 55.3285 40.1788C55.8911 39.6162 56.6542 39.3001 57.4498 39.3001H65.8498C66.6455 39.3001 67.4085 39.6162 67.9711 40.1788C68.5337 40.7414 68.8498 41.5044 68.8498 42.3001C68.8498 43.0957 68.5337 43.8588 67.9711 44.4214C67.4085 44.984 66.6455 45.3001 65.8498 45.3001ZM69.4498 53.7001H57.4498C56.6542 53.7001 55.8911 54.0162 55.3285 54.5788C54.7659 55.1414 54.4498 55.9044 54.4498 56.7001C54.4498 57.4957 54.7659 58.2588 55.3285 58.8214C55.8911 59.384 56.6542 59.7001 57.4498 59.7001H69.4498C70.2455 59.7001 71.0085 59.384 71.5711 58.8214C72.1337 58.2588 72.4498 57.4957 72.4498 56.7001C72.4498 55.9044 72.1337 55.1414 71.5711 54.5788C71.0085 54.0162 70.2455 53.7001 69.4498 53.7001ZM57.4498 66.9001H65.8498C66.6455 66.9001 67.4085 67.2162 67.9711 67.7788C68.5337 68.3414 68.8498 69.1044 68.8498 69.9001C68.8498 70.6957 68.5337 71.4588 67.9711 72.0214C67.4085 72.584 66.6455 72.9001 65.8498 72.9001H57.4498C56.6542 72.9001 55.8911 72.584 55.3285 72.0214C54.7659 71.4588 54.4498 70.6957 54.4498 69.9001C54.4498 69.1044 54.7659 68.3414 55.3285 67.7788C55.8911 67.2162 56.6542 66.9001 57.4498 66.9001ZM27.9154 39.9481C28.3805 40.0396 28.8081 40.2667 29.1442 40.6009L36.3442 47.8009C36.5677 48.0238 36.745 48.2887 36.866 48.5803C36.987 48.8718 37.0493 49.1844 37.0493 49.5001C37.0493 49.8158 36.987 50.1284 36.866 50.4199C36.745 50.7115 36.5677 50.9764 36.3442 51.1993L29.1442 58.3993C28.8083 58.7342 28.3807 58.962 27.9154 59.054C27.4501 59.146 26.968 59.0981 26.5299 58.9163C26.0918 58.7345 25.7174 58.4269 25.454 58.0325C25.1905 57.6381 25.0499 57.1744 25.0498 56.7001V42.3001C25.0502 41.9457 25.129 41.5957 25.2807 41.2753C25.4324 40.955 25.6532 40.6722 25.9272 40.4474C26.2011 40.2225 26.5215 40.0611 26.8653 39.9748C27.2091 39.8884 27.5677 39.8793 27.9154 39.9481Z\" fill=\"#020C26\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"RB Quaria Display Regular\", \"RB Quaria Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:[\"Wir \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\"wandeln\"}),\" das Bild oder PDF in Text \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\"um\"}),\" und \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\"anonymisieren\"}),\" es\"]})}),className:\"framer-19xnwe2\",\"data-framer-name\":\"Wir wandeln das Bild oder PDF in Text um\",fonts:[\"CUSTOM;RB Quaria Display Regular\",\"CUSTOM;RB Quaria Display Regular Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-aazf4s\",\"data-framer-name\":\"Line 16 (Stroke)\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:52,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"52\" viewBox=\"-2 -2 28 52\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.6066 38.0147L13.0606 47.5607C12.4748 48.1464 11.5251 48.1464 10.9393 47.5607L1.39335 38.0147C0.807566 37.4289 0.807566 36.4792 1.39335 35.8934C1.97914 35.3076 2.92889 35.3076 3.51467 35.8934L10.5 42.8787L10.5 2C10.5 1.17157 11.1715 0.5 12 0.5C12.8284 0.499999 13.5 1.17157 13.5 2L13.5 42.8787L20.4852 35.8934C21.071 35.3076 22.0208 35.3076 22.6066 35.8934C23.1923 36.4792 23.1923 37.4289 22.6066 38.0147Z\" fill=\"#EFBBFF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ar6nk4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P1Vo_Ps3Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"RB Quaria Display Regular\", \"RB Quaria Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:[\"Der Text wird mit \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\"Hilfe\"}),\" von KI \\xfcbersetzt\"]})}),fonts:[\"CUSTOM;RB Quaria Display Regular\",\"CUSTOM;RB Quaria Display Regular Italic\"]},wJY_z6xPr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"RB Quaria Display Regular\", \"RB Quaria Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:[\"Der Text wird mit Hilfe von KI \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\"\\xfcbersetzt\"})]})}),fonts:[\"CUSTOM;RB Quaria Display Regular\",\"CUSTOM;RB Quaria Display Regular Italic\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UkIgUXVhcmlhIERpc3BsYXktaXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display\", \"RB Quaria Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"italic\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UkIgUXVhcmlhIERpc3BsYXktcmVndWxhcg==\",\"--framer-font-style\":\"normal\"},children:\"Der Text wird mit \"}),\"Hilfe von KI \\xfcbersetzt\"]})}),className:\"framer-t441ah\",\"data-framer-name\":\"Der Text wird mit Hilfe von KI \\xfcbersetzt\",fonts:[\"GF;RB Quaria Display-italic\",\"GF;RB Quaria Display-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13hjaku\",\"data-framer-name\":\"Group 1171273936\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:98,intrinsicWidth:98,svg:'<svg width=\"98\" height=\"98\" viewBox=\"0 0 98 98\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"98\" height=\"98\" rx=\"16\" fill=\"#EFBBFF\"/>\\n<path d=\"M55.9336 32.6484L61.5 30.5L63.5508 25.0312C63.6484 24.543 64.1367 24.25 64.625 24.25C65.0156 24.25 65.5039 24.543 65.6016 25.0312L67.75 30.5L73.2188 32.6484C73.707 32.7461 74 33.2344 74 33.625C74 34.1133 73.707 34.6016 73.2188 34.6992L67.75 36.75L65.6016 42.3164C65.5039 42.707 65.0156 43 64.625 43C64.1367 43 63.6484 42.707 63.5508 42.3164L61.5 36.75L55.9336 34.6992C55.4453 34.6016 55.25 34.1133 55.25 33.625C55.25 33.2344 55.4453 32.7461 55.9336 32.6484ZM41.1875 31.4766C41.3828 30.8906 41.9688 30.5 42.5547 30.5C43.1406 30.5 43.7266 30.8906 44.0195 31.4766L49.0977 42.6094L60.2305 47.6875C60.8164 47.9805 61.207 48.5664 61.207 49.1523C61.207 49.7383 60.8164 50.3242 60.2305 50.6172L49.0977 55.6953L44.0195 66.8281C43.7266 67.4141 43.1406 67.8047 42.5547 67.8047C41.9688 67.8047 41.3828 67.4141 41.1875 66.8281L36.0117 55.6953L24.8789 50.6172C24.293 50.3242 24 49.7383 24 49.1523C24 48.5664 24.293 47.9805 24.8789 47.6875L36.0117 42.6094L41.1875 31.4766ZM40.2109 44.5625C39.8203 45.5391 38.9414 46.418 37.9648 46.8086L32.9844 49.1523L37.9648 51.4961C38.9414 51.8867 39.8203 52.7656 40.2109 53.7422L42.5547 58.7227L44.8984 53.7422C45.2891 52.7656 46.168 51.8867 47.1445 51.4961L52.125 49.1523L47.1445 46.8086C46.168 46.418 45.2891 45.5391 44.8984 44.5625L42.5547 39.582L40.2109 44.5625ZM63.5508 56.2812C63.6484 55.793 64.1367 55.5 64.625 55.5C65.0156 55.5 65.5039 55.793 65.6016 56.2812L67.75 61.75L73.2188 63.8984C73.707 63.9961 74 64.4844 74 64.875C74 65.3633 73.707 65.8516 73.2188 65.9492L67.75 68L65.6016 73.5664C65.5039 73.957 65.0156 74.25 64.625 74.25C64.1367 74.25 63.6484 73.957 63.5508 73.5664L61.5 68L55.9336 65.9492C55.4453 65.8516 55.25 65.3633 55.25 64.875C55.25 64.4844 55.4453 63.9961 55.9336 63.8984L61.5 61.75L63.5508 56.2812Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-lpak26\",\"data-framer-name\":\"Line 16 (Stroke)\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:52,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"52\" viewBox=\"-2 -2 28 52\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.6066 38.0147L13.0606 47.5607C12.4748 48.1464 11.5251 48.1464 10.9393 47.5607L1.39335 38.0147C0.807566 37.4289 0.807566 36.4792 1.39335 35.8934C1.97914 35.3076 2.92889 35.3076 3.51467 35.8934L10.5 42.8787L10.5 2C10.5 1.17157 11.1715 0.5 12 0.5C12.8284 0.499999 13.5 1.17157 13.5 2L13.5 42.8787L20.4852 35.8934C21.071 35.3076 22.0208 35.3076 22.6066 35.8934C23.1923 36.4792 23.1923 37.4289 22.6066 38.0147Z\" fill=\"#EFBBFF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fzvldw\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-89wrq\",\"data-framer-name\":\"IMG_validiert\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:98,intrinsicWidth:98,svg:'<svg width=\"98\" height=\"98\" viewBox=\"0 0 98 98\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"98\" height=\"98\" rx=\"16\" fill=\"#EFBBFF\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28.0244 23.0008L69.2888 23.0001C72.3713 23 74.9402 25.3341 75.0884 28.4131C75.3136 33.0938 75.4368 40.1882 74.7188 47.1621C73.4931 59.0676 59.6615 75.0001 48.9818 75.0001C38.3022 75.0001 23.7698 57.8415 22.5446 47.1621C21.8112 40.77 21.9557 33.374 22.19 28.4658C22.3379 25.366 24.9212 23.0008 28.0244 23.0008ZM61.7105 38.3593C62.6512 37.1311 62.4182 35.3728 61.19 34.432C59.9618 33.4912 58.2035 33.7243 57.2627 34.9525L46.3486 49.2015L39.9898 44.4C38.7551 43.4677 36.9985 43.7128 36.0662 44.9475C35.1339 46.1821 35.379 47.9388 36.6137 48.8711L45.1926 55.3491C46.4213 56.2769 48.1684 56.0392 49.1046 54.817L61.7105 38.3593Z\" fill=\"#020C26\"/>\\n<path d=\"M69.2888 23.0001L69.2888 23.2501L69.2888 23.0001ZM28.0244 23.0008L28.0244 22.7508L28.0244 23.0008ZM75.0884 28.4131L75.3381 28.4011V28.401L75.0884 28.4131ZM74.7188 47.1621L74.9675 47.1877L74.7188 47.1621ZM22.5446 47.1621L22.2962 47.1906L22.5446 47.1621ZM22.19 28.4658L21.9402 28.4538L22.19 28.4658ZM61.19 34.432L61.342 34.2335V34.2335L61.19 34.432ZM61.7105 38.3593L61.9089 38.5113L61.7105 38.3593ZM57.2627 34.9525L57.4612 35.1045L57.2627 34.9525ZM46.3486 49.2015L46.1979 49.401L46.396 49.5506L46.547 49.3535L46.3486 49.2015ZM39.9898 44.4L40.1404 44.2005L39.9898 44.4ZM36.0662 44.9475L36.2657 45.0981L36.0662 44.9475ZM36.6137 48.8711L36.7643 48.6716H36.7643L36.6137 48.8711ZM45.1926 55.3491L45.3433 55.1496H45.3433L45.1926 55.3491ZM49.1046 54.817L49.3031 54.969L49.1046 54.817ZM69.2887 22.7501L28.0244 22.7508L28.0244 23.2508L69.2888 23.2501L69.2887 22.7501ZM75.3381 28.401C75.1832 25.1822 72.498 22.75 69.2887 22.7501L69.2888 23.2501C72.2446 23.25 74.6973 25.486 74.8387 28.4251L75.3381 28.401ZM74.9675 47.1877C75.6873 40.1961 75.5636 33.0878 75.3381 28.4011L74.8387 28.4251C75.0636 33.0999 75.1863 40.1803 74.4701 47.1365L74.9675 47.1877ZM48.9818 75.2501C51.7118 75.2501 54.6232 74.233 57.4643 72.5393C60.3074 70.8445 63.0947 68.4636 65.581 65.7133C70.5479 60.219 74.3473 53.2118 74.9675 47.1877L74.4701 47.1365C73.8646 53.018 70.1353 59.9298 65.2101 65.378C62.7503 68.099 60.0006 70.4453 57.2083 72.1099C54.4141 73.7756 51.5917 74.7501 48.9818 74.7501V75.2501ZM22.2962 47.1906C22.9174 52.6053 26.8959 59.6122 32.0329 65.2542C34.6055 68.0797 37.4792 70.5747 40.3867 72.3651C43.2914 74.1536 46.2482 75.2501 48.9818 75.2501V74.7501C46.3757 74.7501 43.511 73.7017 40.6489 71.9393C37.7897 70.1787 34.9512 67.7167 32.4026 64.9176C27.2973 59.3104 23.397 52.3984 22.7929 47.1336L22.2962 47.1906ZM21.9402 28.4538C21.7058 33.3658 21.5605 40.778 22.2962 47.1906L22.7929 47.1336C22.0619 40.762 22.2056 33.3821 22.4397 28.4777L21.9402 28.4538ZM28.0244 22.7508C24.7935 22.7508 22.0948 25.2152 21.9402 28.4538L22.4397 28.4777C22.581 25.5169 25.0489 23.2508 28.0244 23.2508L28.0244 22.7508ZM61.038 34.6305C62.1566 35.4873 62.3688 37.0887 61.512 38.2073L61.9089 38.5113C62.9337 37.1735 62.6798 35.2583 61.342 34.2335L61.038 34.6305ZM57.4612 35.1045C58.318 33.9859 59.9194 33.7737 61.038 34.6305L61.342 34.2335C60.0042 33.2088 58.0889 33.4626 57.0642 34.8005L57.4612 35.1045ZM46.547 49.3535L57.4612 35.1045L57.0642 34.8005L46.1501 49.0495L46.547 49.3535ZM39.8391 44.5995L46.1979 49.401L46.4992 49.002L40.1404 44.2005L39.8391 44.5995ZM36.2657 45.0981C37.1148 43.9736 38.7147 43.7504 39.8391 44.5995L40.1404 44.2005C38.7956 43.185 36.8822 43.452 35.8667 44.7968L36.2657 45.0981ZM36.7643 48.6716C35.6398 47.8225 35.4166 46.2226 36.2657 45.0981L35.8667 44.7968C34.8512 46.1417 35.1182 48.0551 36.463 49.0706L36.7643 48.6716ZM45.3433 55.1496L36.7643 48.6716L36.463 49.0706L45.042 55.5486L45.3433 55.1496ZM48.9061 54.6649C48.0535 55.7781 46.4623 55.9946 45.3433 55.1496L45.042 55.5486C46.3803 56.5592 48.2833 56.3003 49.3031 54.969L48.9061 54.6649ZM61.512 38.2073L48.9061 54.6649L49.3031 54.969L61.9089 38.5113L61.512 38.2073Z\" fill=\"#16444F\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P1Vo_Ps3Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"RB Quaria Display Regular\", \"RB Quaria Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:[\"Unser System \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\"validiert\"}),\" die \\xdcbersetzung \"]})}),fonts:[\"CUSTOM;RB Quaria Display Regular\",\"CUSTOM;RB Quaria Display Regular Italic\"]},wJY_z6xPr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"RB Quaria Display Regular\", \"RB Quaria Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:[\"Unser System \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\"validiert\"}),\" die \\xdcbersetzung \"]})}),fonts:[\"CUSTOM;RB Quaria Display Regular\",\"CUSTOM;RB Quaria Display Regular Italic\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UkIgUXVhcmlhIERpc3BsYXktcmVndWxhcg==\",\"--framer-font-family\":'\"RB Quaria Display\", \"RB Quaria Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:[\"Unser System \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UkIgUXVhcmlhIERpc3BsYXktaXRhbGlj\",\"--framer-font-style\":\"italic\"},children:\"validiert \"}),\"die\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UkIgUXVhcmlhIERpc3BsYXktaXRhbGlj\",\"--framer-font-style\":\"italic\"},children:\" \"}),\"\\xdcbersetzung \"]})}),className:\"framer-15uma11\",\"data-framer-name\":\"Unser System validiert die \\xdcbersetzung \",fonts:[\"GF;RB Quaria Display-regular\",\"GF;RB Quaria Display-italic\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1kvydml\",\"data-framer-name\":\"Line 16 (Stroke)\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:52,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"52\" viewBox=\"-2 -2 28 52\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.6066 38.0147L13.0606 47.5607C12.4748 48.1464 11.5251 48.1464 10.9393 47.5607L1.39335 38.0147C0.807566 37.4289 0.807566 36.4792 1.39335 35.8934C1.97914 35.3076 2.92889 35.3076 3.51467 35.8934L10.5 42.8787L10.5 2C10.5 1.17157 11.1715 0.5 12 0.5C12.8284 0.499999 13.5 1.17157 13.5 2L13.5 42.8787L20.4852 35.8934C21.071 35.3076 22.0208 35.3076 22.6066 35.8934C23.1923 36.4792 23.1923 37.4289 22.6066 38.0147Z\" fill=\"#EFBBFF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13dfy7v\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-jyxted\",\"data-framer-name\":\"IMG_uebersetzt\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:98,intrinsicWidth:98,svg:'<svg width=\"98\" height=\"98\" viewBox=\"0 0 98 98\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"98\" height=\"98\" rx=\"16\" fill=\"#EFBBFF\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M26.8382 22.96C28.087 21.7056 29.7838 21 31.559 21H70.3278C71.2044 21 72.0724 21.1727 72.8823 21.5081C73.6922 21.8436 74.428 22.3353 75.0479 22.9551C75.6677 23.575 76.1594 24.3108 76.4949 25.1207C76.8303 25.9306 77.003 26.7986 77.003 27.6752V66.444C77.0037 67.3211 76.8316 68.1897 76.4965 69.0002C76.1614 69.8107 75.6698 70.5473 75.0499 71.1677C74.4299 71.7881 73.6938 72.2803 72.8836 72.6161C72.0734 72.952 71.2049 73.1248 70.3278 73.1248H39.651L24.475 76.916C23.9886 77.0368 23.4786 77.0249 22.9984 76.8814C22.5182 76.7379 22.0853 76.4682 21.7449 76.1003C21.4045 75.7324 21.169 75.2799 21.0632 74.79C20.9573 74.3001 20.9849 73.7908 21.143 73.3152L24.8726 62.1152V27.6752C24.8726 25.9056 25.5782 24.2032 26.8326 22.9544L26.8382 22.96ZM43.9966 42.476H44.1254C45.2336 42.459 46.2902 42.0047 47.0648 41.212C47.8395 40.4193 48.2694 39.3526 48.2609 38.2443C48.2524 37.136 47.8062 36.076 47.0194 35.2953C46.2327 34.5146 45.1693 34.0765 44.061 34.0765C42.9527 34.0765 41.8893 34.5146 41.1026 35.2953C40.3159 36.076 39.8696 37.136 39.8611 38.2443C39.8526 39.3526 40.2826 40.4193 41.0572 41.212C41.8318 42.0047 42.8884 42.459 43.9966 42.476ZM39.455 48.0704C39.455 47.6991 39.6025 47.343 39.8651 47.0805C40.1276 46.8179 40.4837 46.6704 40.855 46.6704H61.7038C62.0751 46.6704 62.4312 46.8179 62.6938 47.0805C62.9563 47.343 63.1038 47.6991 63.1038 48.0704C63.1381 49.6449 62.8576 51.2103 62.2787 52.6749C61.6999 54.1395 60.8344 55.4737 59.733 56.5993C58.6316 57.725 57.3165 58.6193 55.8649 59.2299C54.4132 59.8404 52.8542 60.1549 51.2794 60.1549C49.7046 60.1549 48.1456 59.8404 46.694 59.2299C45.2423 58.6193 43.9272 57.725 42.8258 56.5993C41.7244 55.4737 40.8589 54.1395 40.2801 52.6749C39.7013 51.2103 39.4207 49.6449 39.455 48.0704ZM58.6854 42.476H58.5622C57.4537 42.4597 56.3967 42.0059 55.6215 41.2135C54.8463 40.421 54.4158 39.3542 54.4239 38.2457C54.432 37.1371 54.8781 36.0767 55.6649 35.2957C56.4516 34.5147 57.5152 34.0765 58.6238 34.0765C59.7324 34.0765 60.796 34.5147 61.5827 35.2957C62.3695 36.0767 62.8156 37.1371 62.8237 38.2457C62.8318 39.3542 62.4014 40.421 61.6261 41.2135C60.8509 42.0059 59.7939 42.4597 58.6854 42.476Z\" fill=\"#020C26\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P1Vo_Ps3Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"RB Quaria Display Regular\", \"RB Quaria Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:[\"Du erh\\xe4lst deine Simply Onno \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\"\\xdcbersetzung\"})]})}),fonts:[\"CUSTOM;RB Quaria Display Regular\",\"CUSTOM;RB Quaria Display Regular Italic\"]},wJY_z6xPr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"RB Quaria Display Regular\", \"RB Quaria Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:[\"Du erh\\xe4lst Deine Simply Onno \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"RB Quaria Display Regular Italic\", \"RB Quaria Display Regular Italic Placeholder\", sans-serif'},children:\"\\xdcbersetzung\"})]})}),fonts:[\"CUSTOM;RB Quaria Display Regular\",\"CUSTOM;RB Quaria Display Regular Italic\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UkIgUXVhcmlhIERpc3BsYXktcmVndWxhcg==\",\"--framer-font-family\":'\"RB Quaria Display\", \"RB Quaria Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:[\"Du erh\\xe4lst Deine Simply Onno \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UkIgUXVhcmlhIERpc3BsYXktaXRhbGlj\",\"--framer-font-style\":\"italic\"},children:\"\\xdcbersezung\"})]})}),className:\"framer-bds8wi\",\"data-framer-name\":\"Du erh\\xe4lst Deine Simply Onno \\xdcbersezung\",fonts:[\"GF;RB Quaria Display-regular\",\"GF;RB Quaria Display-italic\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LR2td6NJu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:[/*#__PURE__*/_jsx(\"em\",{children:\"Um eine permanente Qualit\\xe4tskontrolle sicherzustellen, m\\xf6gliche Fehler zu entdecken und das System laufend zu verbessern, werden die generierten Texte in anonymisierter Form gespeichert und ausgewertet. \"}),/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"em\",{children:\"  \"})]})})},P1Vo_Ps3Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1pdGFsaWM=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-style\":\"italic\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Um eine permanente Qualit\\xe4tskontrolle sicherzustellen, m\\xf6gliche Fehler zu entdecken und das System laufend zu verbessern, werden die generierten Texte in anonymisierter Form gespeichert und ausgewertet.   \"})})}),fonts:[\"GF;IBM Plex Sans-italic\"]},wJY_z6xPr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:[/*#__PURE__*/_jsx(\"em\",{children:\"Wir speichern die erstellten Texte Deines Dokumentes in anonymisierter Form, damit unsere \\xc4rzt:innen davon lernen und wir die Berichte konstant verbessern k\\xf6nnen. Deine hochgeladenen Dokumente selbst werden aber nicht gespeichert.\"}),/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"em\",{children:\" \"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:[/*#__PURE__*/_jsx(\"em\",{children:\"Um eine permanente Qualit\\xe4tskontrolle sicherzustellen, m\\xf6gliche Fehler zu entdecken und das System laufend zu verbessern, werden die generierten Texte in anonymisierter Form gespeichert und ausgewertet. \"}),/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"em\",{children:\"  \"})]})}),className:\"framer-16nybb3\",\"data-framer-name\":\"Wir speichern die erstellten Texte Deines Dokumentes in anonymisierter Form, \\u2028damit unsere \\xc4rzt:innen davon lernen und wir die Berichte konstant verbessern k\\xf6nnen.\\u2028Deine hochgeladenen Dokumente selbst werden aber nicht gespeichert.\",fonts:[\"GF;IBM Plex Sans-regular\",\"GF;IBM Plex Sans-italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(RichTextAdd_CTA_Landingpage1k9t8cz,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16cwjk9\",\"data-styles-preset\":\"ucRCwUvxF\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://app.simply-onno.com\",motionChild:true,nodeId:\"kj0z8nkJW\",openInNewTab:false,scopeId:\"TtbrpX20t\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-vllgyt\",\"data-styles-preset\":\"Ax9_pJZDb\",children:\"Probiere Onno einfach und kostenfrei aus!\"})})})}),className:\"framer-1k9t8cz hidden-1r88f08\",\"data-framer-name\":\"Link\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mikrk9\",\"data-framer-name\":\"Coffee\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gboqjd\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zj42u1\",\"data-framer-name\":\"Frame 1171273962\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-173e11l\",\"data-styles-preset\":\"oOB2gFDMf\",style:{\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:\"So finanzieren wir uns\"})}),className:\"framer-1y0kwg3\",\"data-framer-name\":\"Title - Probiere Onno aus\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-10my468\",\"data-styles-preset\":\"EFv4szSZu\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Wir sind komplett unabh\\xe4ngig und nicht investorenfinanziert, sondern zahlen alles aus eigener Tasche. In Zukunft wird es noch weitere Erkl\\xe4rungen, Funktionen und Dienstleistungen geben, die uns helfen, diesen Service nachhaltig zu finanzieren.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Bis dahin freuen wir uns, wenn du uns z.B. in H\\xf6he einer Tasse Kaffee unterst\\xfctzt\"]})}),className:\"framer-1cj40k\",\"data-framer-name\":\"Lade einfach Dein medizinisches Dokumente hoch und lass es Dir mit m\\xf6glichen n\\xe4chsten Schritten und Hilfestellungen \\xfcbersetzten. \",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rvcsiw\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:185,intrinsicWidth:287.5,pixelHeight:152,pixelWidth:226,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/hdFwvWHiBeUYrat2FqV1yLNPE.png\"},className:\"framer-16taygi\",\"data-framer-name\":\"Img_Drop\"}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"xpy1uGuXl\"},implicitPathVariables:undefined},{href:{webPageId:\"xpy1uGuXl\"},implicitPathVariables:undefined},{href:{webPageId:\"xpy1uGuXl\"},implicitPathVariables:undefined},{href:{webPageId:\"xpy1uGuXl\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:\"271px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fv24ct-container\",nodeId:\"C6uxD4N9t\",scopeId:\"TtbrpX20t\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LR2td6NJu:{RNFGFmJCM:resolvedLinks[1]},P1Vo_Ps3Q:{RNFGFmJCM:resolvedLinks[2]},wJY_z6xPr:{RNFGFmJCM:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(SecondaryButton,{height:\"100%\",id:\"C6uxD4N9t\",layoutId:\"C6uxD4N9t\",lFjOKZBEt:\"Kaffee spendieren\",RNFGFmJCM:resolvedLinks[0],style:{height:\"100%\",width:\"100%\"},variant:\"vMxzw1fgm\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-64nyj1\",\"data-framer-name\":\"Subscribe\",children:[isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rgqx31 hidden-1r88f08\",\"data-framer-name\":\"ipad\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17xcx1k\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4027cd\",\"data-framer-name\":\"Group 1171273916\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:365,intrinsicWidth:433,svg:'<svg width=\"433\" height=\"365\" viewBox=\"0 0 433 365\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M273.548 333.636C269.995 335.035 266.936 336.161 264.553 337.013C264.553 337.013 249.125 342.515 242.999 341.663C242.399 341.58 241.796 341.547 241.196 341.479C239.558 341.295 238.859 341.179 237.988 341.51C237.636 341.646 237.305 341.832 237.006 342.063C237.116 342.751 237.225 343.439 237.333 344.127C235.589 345.139 231.445 347.187 226.163 346.376C223.884 346.013 221.701 345.192 219.747 343.963C219.34 337.339 218.934 330.714 218.528 324.089C218.702 322.641 219.184 321.247 219.942 320.001C223.042 315.061 230.758 314.06 239.206 317.373C238.748 315.498 239.512 313.952 240.373 313.744C241.179 313.56 241.965 314.552 242.029 314.644C246.952 316.729 250.989 317.367 253.635 317.588C260.369 318.14 268.633 316.869 273.596 319.673C274.92 320.4 276.02 321.475 276.778 322.781C277.09 323.333 278.112 325.19 277.909 327.525C277.685 330.171 275.964 332.494 273.548 333.636Z\" fill=\"#020C26\"/>\\n<path d=\"M235.239 300.127L243.01 318.284C242.857 318.978 241.186 326.112 234.994 328.343C233.317 328.936 231.523 329.125 229.759 328.895L223.87 323.913L221.27 321.837L215.453 308.559L235.239 300.127Z\" fill=\"white\"/>\\n<path d=\"M239.697 306.547L216.143 315.993L212.332 307.038L236.506 298.082L239.697 306.547Z\" fill=\"#D3F9AE\"/>\\n<path d=\"M24.7706 327.242C23.7401 323.943 22.9304 321.107 22.3103 318.9C22.3103 318.9 18.3483 304.613 19.5169 299.139C19.631 298.603 19.7009 298.06 19.8021 297.523C20.0726 296.051 20.2253 295.433 19.9861 294.625C19.8862 294.299 19.74 293.989 19.5518 293.705L17.6675 293.865C16.867 292.223 15.2881 288.344 16.3646 283.635C16.8418 281.601 17.7257 279.684 18.963 278L36.9839 278.196C38.28 278.448 39.5072 278.974 40.5833 279.739C44.8396 282.868 45.239 289.892 41.6874 297.302C43.4117 297.01 44.7568 297.801 44.8875 298.59C45.0108 299.326 44.0539 299.974 43.9674 300.031C41.7592 304.341 40.9237 307.944 40.552 310.316C39.608 316.359 40.2226 323.904 37.3666 328.201C36.6235 329.348 35.5814 330.272 34.3524 330.871C33.8353 331.116 32.0908 331.918 29.9967 331.581C27.6302 331.206 25.6392 329.496 24.7706 327.242Z\" fill=\"#020C26\"/>\\n<path d=\"M57.5215 294.845L40.6231 300.673C40.0066 300.489 33.6745 298.517 32.0644 292.783C31.641 291.229 31.5899 289.597 31.9153 288.02L36.7973 283.024L38.8399 280.816L51.2078 276.431C53.313 282.567 55.4175 288.705 57.5215 294.845Z\" fill=\"white\"/>\\n<path d=\"M51.4348 298.449C49.1039 291.155 46.773 283.861 44.4421 276.568L52.7763 273.719C54.9441 281.187 57.113 288.654 59.2832 296.122L51.4348 298.449Z\" fill=\"#D3F9AE\"/>\\n<path d=\"M180.662 196.423L175.345 211.634L210.8 234.044C213.903 235.628 216.608 237.892 218.713 240.669C220.023 242.411 221.077 244.332 221.841 246.373C229.815 264.223 237.79 282.073 245.764 299.923L203.992 316.484C195.649 298.022 187.307 279.559 178.965 261.095L147.314 246.557C140.744 254.343 134.176 262.129 127.609 269.917C125.854 272.68 123.378 274.911 120.447 276.368L57.5129 305.995L48.3323 267.903L98.7331 244.165C103.823 232.879 108.914 221.592 114.007 210.306C113.955 207.934 114.007 205.413 114.191 202.761C114.654 196.198 115.889 189.713 117.871 183.439C128.902 187.08 140.149 190.03 151.546 192.272C161.172 194.165 170.89 195.551 180.662 196.423V196.423Z\" fill=\"#16444F\"/>\\n<path d=\"M172.072 257.518L127.663 236.58C123.751 233.485 120.52 229.614 118.175 225.211C114.741 218.715 114.248 212.862 113.991 209.386C113.675 205.088 113.967 200.768 114.859 196.552\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M184.043 217.132L157.456 200.992\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M178.383 202.945C172.098 202.824 165.827 202.288 159.613 201.34C150.166 199.896 140.887 197.509 131.916 194.215\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M212.334 180.372C213.315 184.155 214.297 187.938 215.278 191.72C223.921 196.546 231.849 202.554 238.833 209.57C242.793 210.322 246.636 211.594 250.262 213.353C252.145 214.273 252.965 214.851 253.657 215.479C256.898 218.423 257.522 222.631 257.663 224.762C257.972 224.922 260.608 226.349 260.812 228.851C260.87 229.452 260.772 230.057 260.527 230.609C259.607 232.613 257.03 232.879 256.806 232.9C256.819 233.124 256.89 234.972 255.415 236.252C254.606 236.936 253.568 237.286 252.511 237.233C252.479 237.469 252.187 239.423 250.345 240.505C248.54 241.565 246.733 240.919 246.501 240.833C245.698 241.677 244.597 242.176 243.433 242.222C242.576 242.25 241.732 242.007 241.021 241.528C240.209 240.962 239.814 240.08 239.057 238.337C238.625 237.344 238.321 236.497 238.117 235.884C237.552 235.566 236.978 235.213 236.4 234.821C233.628 232.927 231.253 230.511 229.407 227.707L197.673 209.182C195.267 207.075 193.223 204.588 191.621 201.821C188.069 195.664 187.677 189.725 187.696 186.731L212.334 180.372Z\" fill=\"white\"/>\\n<path d=\"M255.085 216.991C255.542 218.064 255.983 219.21 256.394 220.426C257.357 223.273 258.055 226.203 258.48 229.178C258.011 229.421 257.495 229.56 256.968 229.587C256.291 229.614 255.247 229.458 253.656 228.115C251.099 225.958 249.423 222.682 248.788 221.326C247.333 221.753 245.841 222.041 244.331 222.186C241.292 222.468 238.226 222.176 235.294 221.326\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M250.018 223.639C249.636 223.834 249.322 224.139 249.116 224.515C248.551 225.582 249.215 226.723 249.259 226.786C248.777 226.611 248.255 226.578 247.755 226.689C247.254 226.8 246.796 227.052 246.433 227.414C246.071 227.777 245.819 228.235 245.707 228.735C245.596 229.236 245.629 229.758 245.804 230.24C245.555 230.139 244.589 229.774 243.595 230.199C242.44 230.694 241.718 232.056 241.899 233.552C241.525 233.306 241.092 233.167 240.645 233.149C240.198 233.131 239.755 233.236 239.363 233.451C238.406 234.003 237.946 235.236 238.32 236.395L239.628 239.472\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M249.259 226.786L256.527 231.804\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M245.803 230.24L252.141 237.019\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M241.9 233.552C243.145 235.557 244.392 237.561 245.641 239.564\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M104.314 136.759C106.053 142.508 107.494 147.36 108.569 150.996C112.634 164.783 113.694 168.881 114.496 172.214C115.698 177.182 116.539 181.323 117.072 184.114C123.489 186.273 130.406 188.317 137.806 190.124C151.835 193.55 166.13 195.777 180.537 196.78C183.927 194.591 186.522 191.369 187.94 187.59C198.287 186.346 208.366 183.446 217.793 179.002C217.644 173.743 216.466 153.451 200.78 139.171C188.197 127.718 173.362 126.59 160.296 125.596C136.284 123.769 116.541 130.837 104.314 136.759Z\" fill=\"#D3F9AE\"/>\\n<path d=\"M114.112 208.916L98.7225 243.36L48.8887 266.811\" stroke=\"#020C26\" stroke-width=\"0.96768\"/>\\n<path d=\"M112.724 165.418L105.825 166.244L129.216 178.347C131.579 178.531 136.566 179.256 141.157 182.927C142.329 183.865 147.309 187.848 147.945 193.887C148.048 194.861 148.459 198.764 146.473 199.857C145.774 200.241 144.972 200.173 144.348 200.02C144.931 201.559 144.467 203.239 143.284 204.109C141.946 205.094 140.34 204.573 140.176 204.52C140.176 204.855 140.137 206.388 138.949 207.545C137.76 208.702 135.947 209.006 134.288 208.362C133.039 208.718 131.739 208.857 130.443 208.772C124.654 208.379 121.13 203.511 120.466 202.556L113.186 196.668L81.9435 182.518C79.047 179.272 75.3483 173.87 75.1845 167.061C74.8827 154.568 86.5936 141.676 104.589 137.559C106.273 143.15 107.942 148.793 109.594 154.489C110.655 158.15 111.699 161.792 112.724 165.418Z\" fill=\"white\"/>\\n<path d=\"M145.002 201.248C143.997 197.459 142.121 193.958 139.522 191.024\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M140.723 204.989C137.894 203.275 135.301 201.199 133.009 198.815\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M134.588 208.606C131.447 207.217 128.643 205.167 126.368 202.594\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M197.857 104.372C198.442 106.896 199.128 111.653 197.244 116.885C196.373 119.305 195.117 122.796 191.539 124.921C188.847 126.52 186.118 126.577 184.731 126.516L183.014 134.981C182.462 135.739 180.009 138.873 176.142 139.214C171.445 139.626 166.424 135.752 164.917 129.582C166.267 125.8 167.616 122.018 168.966 118.236C167.449 117.677 166.08 116.782 164.96 115.617C164.571 115.212 160.943 111.285 162.301 107.235C162.743 105.873 163.656 104.713 164.877 103.963C165.965 103.331 167.225 103.059 168.476 103.187L197.857 104.372Z\" fill=\"white\"/>\\n<path d=\"M114.111 169.342L137.563 162.747\" stroke=\"#020C26\" stroke-width=\"0.96768\"/>\\n<path d=\"M198.326 100.242C198.794 99.4073 199.021 98.4585 198.98 97.5022C198.746 93.7943 193.882 91.586 192.683 91.0413C186.693 88.3215 179.223 89.5692 175.712 91.9412C174.849 92.5227 173.504 93.6636 171.132 94.6389C169.461 95.329 168.959 95.2443 167.903 95.9896C165.891 97.4029 165.172 99.4859 164.999 100.038C164.645 101.175 164.546 102.376 164.712 103.555L198.326 100.242Z\" fill=\"#020C26\"/>\\n<path d=\"M198.164 106.376C189.294 105.06 180.274 105.115 171.42 106.54C171.071 105.756 170.521 105.079 169.825 104.576C167.519 102.95 164.632 104.173 164.417 104.269L164.253 102.86C165.824 102.343 168.023 101.669 170.693 101.019C174.444 100.099 179.696 98.8498 186.396 98.7707C190.543 98.7245 194.683 99.1217 198.745 99.9558C198.868 102.028 198.991 104.1 199.113 106.172L198.164 106.376Z\" fill=\"#E7FBD3\"/>\\n<path d=\"M196.629 109.771C195.664 109.154 194.553 108.805 193.409 108.759C191.867 108.718 190.359 109.216 189.145 110.168L191.721 116.241L188.838 117.5\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M185.709 109.724C184.58 109.09 183.302 108.765 182.007 108.784C180.711 108.803 179.444 109.164 178.334 109.831\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M190.699 120.996C189.53 121.509 188.249 121.713 186.978 121.589C185.163 121.38 183.482 120.532 182.234 119.197\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M166.063 107.152L169.824 110.383L165.408 111.283\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M396.727 23.5H303.259C297.835 23.5 293.438 27.8971 293.438 33.3211V165.342C293.438 170.766 297.835 175.163 303.259 175.163H396.727C402.151 175.163 406.548 170.766 406.548 165.342V33.3211C406.548 27.8971 402.151 23.5 396.727 23.5Z\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M375.351 127.259H324.634C322.496 127.259 320.762 128.993 320.762 131.131V136.603C320.762 138.742 322.496 140.476 324.634 140.476H375.351C377.49 140.476 379.224 138.742 379.224 136.603V131.131C379.224 128.993 377.49 127.259 375.351 127.259Z\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M350.93 144.521H323.674C322.066 144.521 320.762 145.825 320.762 147.433V154.825C320.762 156.433 322.066 157.737 323.674 157.737H350.93C352.538 157.737 353.842 156.433 353.842 154.825V147.433C353.842 145.825 352.538 144.521 350.93 144.521Z\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M349.994 113.796C372.65 113.796 391.017 95.4289 391.017 72.7723C391.017 50.1158 372.65 31.749 349.994 31.749C327.337 31.749 308.971 50.1158 308.971 72.7723C308.971 95.4289 327.337 113.796 349.994 113.796Z\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M275.498 85.8666C276.617 87.3399 278.031 88.5641 279.649 89.4612C283.679 91.68 287.665 91.0801 288.964 90.828C290.11 85.9683 291.257 81.1087 292.405 76.249L284.914 69.1113C281.775 74.6959 278.637 80.281 275.498 85.8666Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M292.539 73.7836L314.138 80.1969C315.817 77.5781 317.895 75.238 320.297 73.2612C338.113 58.6822 367.249 70.6932 370.413 72.0463C372.883 73.0932 375.107 74.6451 376.943 76.6023C377.446 77.1429 379.107 78.9896 380.858 82.9305C382.636 86.9747 383.704 91.2953 384.014 95.7023C382.727 97.4961 381.311 99.1939 379.778 100.782C377.297 103.373 374.509 105.651 371.476 107.566C367.75 109.843 363.682 111.506 359.428 112.493C346.596 115.481 336.114 111.313 333.51 110.198C330.066 108.721 326.838 106.784 323.913 104.442C321.281 104.037 318.574 103.549 315.791 102.977C305.959 100.912 296.36 97.8593 287.141 93.8648L292.539 73.7836Z\" fill=\"#D3F9AE\"/>\\n<path d=\"M385.28 93.707C381.568 99.9655 376.257 105.124 369.894 108.652C363.53 112.181 356.342 113.953 349.067 113.787C335.772 113.475 326.743 106.74 323.914 104.442\" stroke=\"#020C26\" stroke-width=\"0.759325\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M370.061 83.7734L364.402 111.176\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M327.234 79.5898C326.127 87.8736 325.021 96.1578 323.914 104.443\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M351.684 39.0156C349.203 41.1926 347.092 43.7569 345.431 46.6089C344.925 45.6366 344.722 44.5344 344.85 43.4455C344.933 42.7882 345.139 42.1524 345.457 41.5715L351.684 39.0156Z\" fill=\"#020C26\"/>\\n<path d=\"M345.811 87.6392C344.85 82.4241 343.889 77.2101 342.926 71.9971L354.821 75.0344L345.811 87.6392Z\" fill=\"#E7FBD3\"/>\\n<path d=\"M345.507 61.8219C344.646 65.2126 343.785 68.6042 342.926 71.9969C346.475 74.1327 350.545 75.2482 354.688 75.221L358.011 69.9209C358.366 67.0182 358.72 64.1161 359.074 61.2145C360.159 61.3888 361.27 61.3018 362.314 60.9608C362.565 60.8773 365.622 59.8021 366.667 56.6069C366.878 55.9614 367.782 53.2005 366.009 51.0395C364.374 49.044 361.757 49.1488 361.453 49.1655L350.823 39.2441C348.905 40.5909 347.299 42.3348 346.115 44.3574C344.823 46.5899 344.51 49.1184 343.887 54.177C343.591 56.5917 343.495 58.6054 344.596 60.5554C344.853 61.0093 345.159 61.4339 345.507 61.8219V61.8219Z\" fill=\"white\"/>\\n<path d=\"M345.861 48.3559C346.886 48.0103 348.001 48.0392 349.006 48.4377C350.012 48.8361 350.844 49.5782 351.354 50.5321C350.416 52.0769 349.207 53.4402 347.785 54.5565L349.38 56.1769\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M353.826 50.7688C354.028 50.6959 355.497 50.1871 356.93 51.0391C357.686 51.5002 358.25 52.2192 358.517 53.0635\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M346.977 58.0918C347.263 58.6249 347.667 59.0864 348.157 59.4419C349.59 60.4685 351.235 60.1541 351.566 60.0828\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M363.817 54.0078L361.184 55.3579L363.276 57.3154\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M350.227 39.687C350.789 41.3453 352.314 45.0691 356.088 48.0016C357.852 49.3679 359.863 50.3816 362.01 50.9872C363.384 50.629 364.835 50.714 366.158 51.2302C366.764 50.0405 367.094 48.7291 367.122 47.3941C367.192 42.4296 362.753 39.2587 361.909 38.6862C361.464 38.3824 356.326 35.0232 350.671 37.3194C347.785 38.4887 346.148 40.5678 345.457 41.5716L349.202 40.053L350.227 39.687Z\" fill=\"#020C26\"/>\\n<path d=\"M358.483 69.1611C356.466 72.328 354.356 75.5293 352.153 78.7651C347.226 85.9954 342.256 92.7367 337.323 99.0284L333.572 110.317\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M337.324 99.0287L357.759 85.3093L356.493 78.3751L361.404 81.1588L362.096 69.1113\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M339.943 66.1953L335.939 77.4121L341.76 77.1083L336.547 81.4122L342.401 92.4087\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M273.714 62.7094H282.976C284.988 62.7094 286.619 64.3402 286.619 66.3518V83.1572C286.619 85.1688 284.988 86.7995 282.976 86.7995H273.714C271.702 86.7995 270.072 85.1688 270.072 83.1572V66.3518C270.072 64.3402 271.702 62.7094 273.714 62.7094Z\" fill=\"#228876\" stroke=\"#020C26\" stroke-width=\"0.96768\"/>\\n<path d=\"M283.292 58.4854H273.399C272.839 58.4854 272.385 58.9395 272.385 59.4998V61.3632C272.385 61.9235 272.839 62.3776 273.399 62.3776H283.292C283.852 62.3776 284.306 61.9235 284.306 61.3632V59.4998C284.306 58.9395 283.852 58.4854 283.292 58.4854Z\" fill=\"#020C26\"/>\\n<path d=\"M269.271 68.6218L280.764 68.5869L280.831 81.9844L269.154 82.0528C269.193 77.5758 269.232 73.0988 269.271 68.6218Z\" fill=\"#020C26\"/>\\n<path d=\"M283.429 64.3682C282.634 64.3682 281.944 65.7942 281.709 66.7312C280.798 70.3456 284.789 74.0359 285.522 74.695C285.004 75.855 284.717 77.1049 284.678 78.3747C284.585 81.6914 286.259 84.0711 286.872 84.8624L291.563 75.5728C291.22 74.1832 290.625 72.8681 289.808 71.6926C288.309 69.5665 287.226 69.6409 285.589 67.3052C284.363 65.5588 284.155 64.3651 283.429 64.3682Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M271.695 69.9591C271.979 68.6621 270.826 67.3076 269.119 66.9336C267.413 66.5597 265.799 67.3079 265.515 68.6048C265.23 69.9018 266.383 71.2563 268.09 71.6303C269.797 72.0042 271.41 71.256 271.695 69.9591Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M268.31 77.2338C270.057 77.2338 271.473 76.1575 271.473 74.8298C271.473 73.5021 270.057 72.4258 268.31 72.4258C266.563 72.4258 265.146 73.5021 265.146 74.8298C265.146 76.1575 266.563 77.2338 268.31 77.2338Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M269.988 83.1222C271.665 82.6155 272.712 81.1715 272.327 79.8969C271.942 78.6223 270.271 77.9998 268.593 78.5065C266.916 79.0131 265.869 80.4571 266.254 81.7317C266.639 83.0063 268.311 83.6288 269.988 83.1222Z\" fill=\"#F8F6F5\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jt4t2o\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g79vxs\",\"data-styles-preset\":\"oPh_4TQIN\",children:\"Bleib' auf dem Laufenden\"})}),className:\"framer-d7isyk\",\"data-framer-name\":\"Title - Probiere Onno aus\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LR2td6NJu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1l9a8w6\",\"data-styles-preset\":\"WCj6RX85d\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Wir entwickeln unser Produkt st\\xe4ndig weiter, um auch komplexe Befunde und Briefe noch detaillierter zu erkl\\xe4ren.\",/*#__PURE__*/_jsx(\"strong\",{children:\" \"}),\"Trage einfach deine E-Mail-Adresse ein, und wir informieren dich, sobald es Updates gibt.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1l9a8w6\",\"data-styles-preset\":\"WCj6RX85d\",children:[\"Wir entwickeln unser Produkt st\\xe4ndig weiter, um auch komplexe Befunde und Briefe noch detaillierter zu erkl\\xe4ren.\",/*#__PURE__*/_jsx(\"strong\",{children:\" \"}),\"Trage einfach deine E-Mail-Adresse ein, und wir informieren dich, sobald es Updates gibt.\"]})}),className:\"framer-mbkpc0\",\"data-framer-name\":\"Lade einfach Dein medizinisches Dokumente hoch und lass es Dir mit m\\xf6glichen n\\xe4chsten Schritten und Hilfestellungen \\xfcbersetzten. \",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s3ck5l-container hidden-h9qi9v hidden-1f3zynu\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"oy7f6DgDD\",scopeId:\"TtbrpX20t\",children:/*#__PURE__*/_jsx(Mailchimp,{button:{buttonFont:{fontFamily:'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',fontSize:\"18px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:15,buttonPaddingBottom:15,buttonPaddingLeft:40,buttonPaddingPerSide:true,buttonPaddingRight:40,buttonPaddingTop:15,color:\"rgb(255, 255, 255)\",fill:\"var(--token-eeceb38a-b0ab-4c9e-beab-fbe15d03d1d2, rgb(34, 136, 118))\",insetWhenDocked:5,isDocked:false,label:\"Jetzt anmelden\",shouldAppear:true,widthWhenDocked:100},font:{fontFamily:'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',fontSize:\"18px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},gap:10,height:\"100%\",id:\"oy7f6DgDD\",input:{borderRadius:50,color:\"rgb(0, 0, 0)\",fill:\"rgb(255, 255, 255)\",fixedHeight:50,height:true,padding:15,paddingBottom:15,paddingLeft:25,paddingPerSide:true,paddingRight:25,paddingTop:15,placeholder:\"name@email.com\",placeholderColor:\"rgba(0, 0, 0, 0.3)\"},layout:\"horizontal\",layoutId:\"oy7f6DgDD\",mailchimpURL:\"https://simply-onno.us22.list-manage.com/subscribe/post?u=e063643fbcdd8d166edcc942d&amp;id=54d1c2d506&amp;f_id=005cc7e1f0\",redirectAs:\"link\",style:{width:\"100%\"},width:\"100%\"})})})]})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z31dos hidden-b35poj hidden-h9qi9v hidden-1f3zynu\",\"data-framer-name\":\"Mobile\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-dgnfnh hidden-1r88f08\",\"data-framer-name\":\"Group 1171273916\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:364,intrinsicWidth:433,svg:'<svg width=\"433\" height=\"364\" viewBox=\"0 0 433 364\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M273.548 333.136C269.995 334.534 266.936 335.661 264.553 336.513C264.553 336.513 249.125 342.015 242.999 341.163C242.399 341.08 241.796 341.047 241.196 340.979C239.558 340.795 238.859 340.679 237.988 341.01C237.636 341.145 237.305 341.331 237.006 341.562C237.116 342.25 237.225 342.938 237.333 343.627C235.589 344.639 231.445 346.687 226.163 345.875C223.884 345.512 221.701 344.692 219.747 343.463C219.34 336.838 218.934 330.214 218.528 323.589C218.702 322.141 219.184 320.746 219.942 319.5C223.042 314.561 230.758 313.56 239.206 316.872C238.748 314.997 239.512 313.451 240.373 313.243C241.179 313.059 241.965 314.051 242.029 314.143C246.952 316.228 250.989 316.867 253.635 317.088C260.369 317.64 268.633 316.368 273.596 319.172C274.92 319.9 276.02 320.974 276.778 322.281C277.09 322.833 278.112 324.689 277.909 327.025C277.685 329.671 275.964 331.993 273.548 333.136Z\" fill=\"#020C26\"/>\\n<path d=\"M235.24 299.627L243.011 317.784C242.858 318.478 241.187 325.612 234.995 327.843C233.318 328.436 231.524 328.625 229.76 328.395L223.871 323.413L221.271 321.337L215.454 308.059L235.24 299.627Z\" fill=\"white\"/>\\n<path d=\"M239.697 306.047L216.143 315.493L212.332 306.538L236.506 297.582L239.697 306.047Z\" fill=\"#D3F9AE\"/>\\n<path d=\"M24.7706 326.742C23.7401 323.443 22.9304 320.607 22.3103 318.401C22.3103 318.401 18.3483 304.114 19.5169 298.639C19.631 298.104 19.7009 297.561 19.8021 297.023C20.0726 295.551 20.2253 294.933 19.9861 294.125C19.8862 293.799 19.74 293.489 19.5518 293.205L17.6675 293.365C16.867 291.724 15.2881 287.845 16.3646 283.136C16.8418 281.101 17.7257 279.185 18.963 277.501L36.9839 277.696C38.28 277.948 39.5072 278.475 40.5833 279.24C44.8396 282.368 45.239 289.392 41.6874 296.803C43.4117 296.51 44.7568 297.301 44.8875 298.091C45.0108 298.827 44.0539 299.475 43.9674 299.532C41.7592 303.841 40.9237 307.444 40.552 309.816C39.608 315.86 40.2226 323.404 37.3666 327.701C36.6235 328.849 35.5814 329.772 34.3524 330.371C33.8353 330.616 32.0908 331.418 29.9967 331.082C27.6302 330.706 25.6392 328.997 24.7706 326.742Z\" fill=\"#020C26\"/>\\n<path d=\"M57.5205 294.345L40.6221 300.173C40.0056 299.989 33.6736 298.017 32.0634 292.283C31.64 290.729 31.5889 289.097 31.9143 287.52L36.7964 282.524L38.839 280.316L51.2068 275.931C53.312 282.067 55.4166 288.205 57.5205 294.345Z\" fill=\"white\"/>\\n<path d=\"M51.4348 297.95C49.1039 290.655 46.773 283.362 44.4421 276.068L52.7763 273.22C54.9441 280.687 57.113 288.155 59.2832 295.622L51.4348 297.95Z\" fill=\"#D3F9AE\"/>\\n<path d=\"M180.661 195.923L175.344 211.134L210.799 233.544C213.902 235.127 216.607 237.392 218.712 240.168C220.023 241.91 221.076 243.831 221.84 245.873C229.814 263.723 237.789 281.572 245.763 299.422L203.991 315.984C195.648 297.522 187.306 279.059 178.964 260.594L147.313 246.057C140.743 253.842 134.175 261.628 127.608 269.416C125.853 272.179 123.377 274.41 120.446 275.868L57.512 305.495L48.3313 267.403L98.7321 243.665C103.822 232.378 108.913 221.092 114.006 209.805C113.954 207.433 114.006 204.912 114.19 202.26C114.653 195.697 115.888 189.212 117.87 182.938C128.901 186.579 140.148 189.529 151.545 191.771C161.171 193.665 170.889 195.05 180.661 195.923V195.923Z\" fill=\"#16444F\"/>\\n<path d=\"M172.073 257.018L127.664 236.08C123.751 232.986 120.521 229.115 118.176 224.712C114.742 218.216 114.249 212.362 113.992 208.886C113.676 204.589 113.968 200.268 114.86 196.053\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M184.043 216.632L157.456 200.492\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M178.383 202.445C172.098 202.324 165.827 201.788 159.613 200.84C150.166 199.396 140.887 197.009 131.916 193.715\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M212.333 179.871C213.315 183.655 214.296 187.437 215.277 191.22C223.92 196.046 231.848 202.054 238.832 209.069C242.792 209.821 246.635 211.094 250.261 212.853C252.144 213.773 252.964 214.351 253.656 214.978C256.897 217.922 257.521 222.131 257.662 224.262C257.971 224.422 260.607 225.848 260.811 228.351C260.869 228.951 260.771 229.557 260.526 230.108C259.606 232.112 257.029 232.379 256.805 232.399C256.818 232.624 256.889 234.471 255.414 235.752C254.605 236.435 253.567 236.786 252.51 236.733C252.479 236.968 252.186 238.923 250.344 240.005C248.539 241.065 246.732 240.419 246.5 240.332C245.697 241.177 244.596 241.675 243.432 241.722C242.575 241.749 241.731 241.506 241.02 241.028C240.208 240.461 239.813 239.58 239.056 237.837C238.624 236.843 238.32 235.997 238.116 235.384C237.551 235.066 236.977 234.712 236.399 234.32C233.627 232.427 231.252 230.01 229.406 227.206L197.672 208.681C195.266 206.574 193.222 204.088 191.62 201.32C188.068 195.163 187.676 189.225 187.695 186.231L212.333 179.871Z\" fill=\"white\"/>\\n<path d=\"M255.085 216.49C255.542 217.563 255.983 218.71 256.394 219.926C257.357 222.773 258.055 225.703 258.48 228.678C258.011 228.92 257.495 229.06 256.968 229.086C256.291 229.114 255.247 228.958 253.656 227.614C251.099 225.457 249.423 222.182 248.788 220.826C247.333 221.253 245.841 221.54 244.331 221.685C241.292 221.967 238.226 221.676 235.294 220.826\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M250.018 223.139C249.636 223.333 249.322 223.639 249.116 224.015C248.551 225.082 249.215 226.223 249.259 226.285C248.777 226.111 248.255 226.077 247.755 226.188C247.254 226.3 246.796 226.551 246.433 226.914C246.071 227.276 245.819 227.734 245.707 228.235C245.596 228.735 245.629 229.257 245.804 229.739C245.555 229.638 244.589 229.274 243.595 229.699C242.44 230.194 241.718 231.556 241.899 233.052C241.525 232.806 241.092 232.667 240.645 232.649C240.198 232.631 239.755 232.735 239.363 232.951C238.406 233.503 237.946 234.736 238.32 235.895L239.628 238.972\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M249.259 226.285L256.527 231.303\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M245.803 229.74L252.141 236.519\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M241.9 233.053C243.145 235.057 244.392 237.061 245.641 239.065\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M104.313 136.259C106.052 142.008 107.493 146.86 108.568 150.496C112.633 164.283 113.693 168.381 114.495 171.714C115.697 176.682 116.538 180.823 117.071 183.614C123.488 185.773 130.405 187.817 137.805 189.624C151.834 193.05 166.129 195.277 180.536 196.28C183.926 194.091 186.521 190.869 187.939 187.09C198.286 185.846 208.365 182.946 217.792 178.502C217.643 173.243 216.465 152.951 200.779 138.671C188.196 127.218 173.361 126.09 160.295 125.096C136.283 123.269 116.54 130.337 104.313 136.259Z\" fill=\"#D3F9AE\"/>\\n<path d=\"M114.112 208.416L98.7225 242.86L48.8887 266.311\" stroke=\"#020C26\" stroke-width=\"0.96768\"/>\\n<path d=\"M112.725 164.917L105.826 165.743L129.217 177.846C131.58 178.03 136.567 178.755 141.158 182.427C142.33 183.365 147.31 187.347 147.946 193.387C148.049 194.36 148.46 198.263 146.474 199.356C145.775 199.741 144.973 199.673 144.349 199.52C144.932 201.058 144.468 202.738 143.285 203.609C141.947 204.593 140.341 204.073 140.177 204.019C140.177 204.354 140.138 205.887 138.95 207.045C137.761 208.202 135.948 208.506 134.288 207.862C133.04 208.218 131.74 208.356 130.444 208.272C124.655 207.878 121.131 203.011 120.467 202.056L113.187 196.167L81.9445 182.018C79.048 178.772 75.3492 173.369 75.1855 166.56C74.8837 154.067 86.5946 141.175 104.59 137.059C106.274 142.649 107.943 148.292 109.595 153.988C110.656 157.649 111.7 161.292 112.725 164.917Z\" fill=\"white\"/>\\n<path d=\"M145.003 200.748C143.998 196.96 142.122 193.459 139.523 190.524\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M140.722 204.488C137.893 202.774 135.3 200.699 133.008 198.314\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M134.588 208.106C131.447 206.717 128.643 204.667 126.368 202.094\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M197.857 103.872C198.442 106.397 199.128 111.154 197.244 116.385C196.373 118.805 195.117 122.296 191.539 124.421C188.847 126.021 186.118 126.078 184.731 126.017L183.014 134.482C182.462 135.24 180.009 138.374 176.142 138.714C171.445 139.126 166.424 135.253 164.917 129.083C166.267 125.3 167.616 121.518 168.966 117.736C167.449 117.178 166.08 116.282 164.96 115.117C164.571 114.713 160.943 110.786 162.301 106.735C162.743 105.373 163.656 104.213 164.877 103.464C165.965 102.831 167.225 102.559 168.476 102.687L197.857 103.872Z\" fill=\"white\"/>\\n<path d=\"M114.112 168.842L137.563 162.246\" stroke=\"#020C26\" stroke-width=\"0.96768\"/>\\n<path d=\"M198.326 99.7423C198.794 98.9073 199.021 97.9585 198.98 97.0022C198.746 93.2943 193.882 91.086 192.683 90.5413C186.693 87.8215 179.223 89.0692 175.712 91.4412C174.849 92.0227 173.504 93.1636 171.132 94.1389C169.461 94.829 168.959 94.7443 167.903 95.4896C165.891 96.9029 165.172 98.9859 164.999 99.538C164.645 100.675 164.546 101.876 164.712 103.055L198.326 99.7423Z\" fill=\"#020C26\"/>\\n<path d=\"M198.164 105.876C189.294 104.56 180.274 104.615 171.42 106.039C171.071 105.256 170.521 104.578 169.825 104.076C167.519 102.449 164.632 103.673 164.417 103.769L164.253 102.359C165.824 101.842 168.023 101.169 170.693 100.519C174.444 99.5988 179.696 98.3493 186.396 98.2702C190.543 98.224 194.683 98.6213 198.745 99.4553C198.868 101.527 198.991 103.599 199.113 105.671L198.164 105.876Z\" fill=\"#E7FBD3\"/>\\n<path d=\"M196.63 109.271C195.665 108.655 194.554 108.306 193.41 108.259C191.868 108.218 190.36 108.717 189.146 109.669L191.722 115.741L188.839 117\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M185.709 109.224C184.58 108.59 183.302 108.265 182.007 108.284C180.711 108.303 179.444 108.664 178.334 109.331\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M190.698 120.497C189.529 121.01 188.248 121.214 186.977 121.09C185.162 120.88 183.481 120.032 182.233 118.697\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M166.063 106.651L169.824 109.883L165.408 110.783\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M396.727 23H303.259C297.835 23 293.438 27.3971 293.438 32.8211V164.842C293.438 170.266 297.835 174.663 303.259 174.663H396.727C402.151 174.663 406.548 170.266 406.548 164.842V32.8211C406.548 27.3971 402.151 23 396.727 23Z\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M375.35 126.759H324.633C322.495 126.759 320.761 128.493 320.761 130.631V136.103C320.761 138.242 322.495 139.976 324.633 139.976H375.35C377.489 139.976 379.223 138.242 379.223 136.103V130.631C379.223 128.493 377.489 126.759 375.35 126.759Z\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M350.929 144.021H323.674C322.065 144.021 320.761 145.325 320.761 146.933V154.325C320.761 155.933 322.065 157.237 323.674 157.237H350.929C352.537 157.237 353.841 155.933 353.841 154.325V146.933C353.841 145.325 352.537 144.021 350.929 144.021Z\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M349.994 113.296C372.65 113.296 391.017 94.9289 391.017 72.2723C391.017 49.6158 372.65 31.249 349.994 31.249C327.337 31.249 308.971 49.6158 308.971 72.2723C308.971 94.9289 327.337 113.296 349.994 113.296Z\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M275.498 85.3666C276.617 86.8399 278.031 88.0641 279.649 88.9612C283.679 91.18 287.665 90.5801 288.964 90.328C290.11 85.4683 291.257 80.6087 292.405 75.749L284.914 68.6113C281.775 74.1959 278.637 79.781 275.498 85.3666Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M292.539 73.2836L314.138 79.6969C315.817 77.0781 317.895 74.738 320.297 72.7612C338.113 58.1822 367.249 70.1932 370.413 71.5463C372.883 72.5932 375.107 74.1451 376.943 76.1023C377.446 76.6429 379.107 78.4896 380.858 82.4305C382.636 86.4747 383.704 90.7953 384.014 95.2023C382.727 96.9961 381.311 98.6939 379.778 100.282C377.297 102.873 374.509 105.151 371.476 107.066C367.75 109.343 363.682 111.006 359.428 111.993C346.596 114.981 336.114 110.813 333.51 109.698C330.066 108.221 326.838 106.284 323.913 103.942C321.281 103.537 318.574 103.049 315.791 102.477C305.959 100.412 296.36 97.3593 287.141 93.3648L292.539 73.2836Z\" fill=\"#E7FBD3\"/>\\n<path d=\"M385.28 93.207C381.568 99.4655 376.257 104.624 369.894 108.152C363.53 111.681 356.342 113.453 349.067 113.287C335.772 112.975 326.743 106.24 323.914 103.942\" stroke=\"#020C26\" stroke-width=\"0.759325\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M370.06 83.2734L364.401 110.676\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M327.234 79.0898C326.127 87.3736 325.021 95.6578 323.914 103.943\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M351.685 38.5156C349.204 40.6926 347.093 43.2569 345.432 46.1089C344.926 45.1366 344.723 44.0344 344.851 42.9455C344.934 42.2882 345.14 41.6524 345.458 41.0715L351.685 38.5156Z\" fill=\"#020C26\"/>\\n<path d=\"M345.811 87.1392C344.85 81.9241 343.889 76.7101 342.926 71.4971L354.821 74.5344L345.811 87.1392Z\" fill=\"#E7FBD3\"/>\\n<path d=\"M345.507 61.3219C344.646 64.7126 343.785 68.1042 342.926 71.4969C346.475 73.6327 350.545 74.7482 354.688 74.721L358.011 69.4209C358.366 66.5182 358.72 63.6161 359.074 60.7145C360.159 60.8888 361.27 60.8018 362.314 60.4608C362.565 60.3773 365.622 59.3021 366.667 56.1069C366.878 55.4614 367.782 52.7005 366.009 50.5395C364.374 48.544 361.757 48.6488 361.453 48.6655L350.823 38.7441C348.905 40.0909 347.299 41.8348 346.115 43.8574C344.823 46.0899 344.51 48.6184 343.887 53.677C343.591 56.0917 343.495 58.1054 344.596 60.0554C344.853 60.5093 345.159 60.9339 345.507 61.3219V61.3219Z\" fill=\"white\"/>\\n<path d=\"M345.861 47.8559C346.886 47.5103 348.001 47.5392 349.006 47.9377C350.012 48.3361 350.844 49.0782 351.354 50.0321C350.416 51.5769 349.207 52.9402 347.785 54.0565L349.38 55.6769\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M353.826 50.2688C354.028 50.1959 355.497 49.6871 356.93 50.5391C357.686 51.0002 358.25 51.7192 358.517 52.5635\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M346.976 57.5918C347.262 58.1249 347.666 58.5864 348.156 58.9419C349.589 59.9685 351.234 59.6541 351.565 59.5828\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M363.817 53.5078L361.184 54.8579L363.276 56.8154\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M350.227 39.187C350.789 40.8453 352.314 44.5691 356.088 47.5016C357.852 48.8679 359.863 49.8816 362.01 50.4872C363.384 50.129 364.835 50.214 366.158 50.7302C366.764 49.5405 367.094 48.2291 367.122 46.8941C367.192 41.9296 362.753 38.7587 361.909 38.1862C361.464 37.8824 356.326 34.5232 350.671 36.8194C347.785 37.9887 346.148 40.0678 345.457 41.0716L349.202 39.553L350.227 39.187Z\" fill=\"#020C26\"/>\\n<path d=\"M358.483 68.6611C356.466 71.828 354.356 75.0293 352.153 78.2651C347.226 85.4954 342.256 92.2367 337.323 98.5284L333.572 109.817\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M337.323 98.5287L357.758 84.8093L356.492 77.8751L361.403 80.6588L362.095 68.6113\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M339.944 65.6953L335.94 76.9121L341.761 76.6083L336.548 80.9122L342.402 91.9087\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M273.714 62.2094H282.976C284.988 62.2094 286.619 63.8402 286.619 65.8518V82.6572C286.619 84.6688 284.988 86.2995 282.976 86.2995H273.714C271.702 86.2995 270.072 84.6688 270.072 82.6572V65.8518C270.072 63.8402 271.702 62.2094 273.714 62.2094Z\" fill=\"#228876\" stroke=\"#020C26\" stroke-width=\"0.96768\"/>\\n<path d=\"M283.292 57.9854H273.399C272.839 57.9854 272.385 58.4395 272.385 58.9998V60.8632C272.385 61.4235 272.839 61.8776 273.399 61.8776H283.292C283.852 61.8776 284.306 61.4235 284.306 60.8632V58.9998C284.306 58.4395 283.852 57.9854 283.292 57.9854Z\" fill=\"#020C26\"/>\\n<path d=\"M269.271 68.1218L280.764 68.0869L280.831 81.4844L269.154 81.5528C269.193 77.0758 269.232 72.5988 269.271 68.1218Z\" fill=\"#020C26\"/>\\n<path d=\"M283.428 63.8682C282.633 63.8682 281.943 65.2942 281.708 66.2312C280.797 69.8456 284.788 73.5359 285.521 74.195C285.003 75.355 284.716 76.6049 284.677 77.8747C284.584 81.1914 286.258 83.5711 286.871 84.3624L291.562 75.0728C291.219 73.6832 290.624 72.3681 289.807 71.1926C288.308 69.0665 287.225 69.1409 285.588 66.8052C284.362 65.0588 284.154 63.8651 283.428 63.8682Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M271.695 69.4591C271.979 68.1621 270.826 66.8076 269.119 66.4336C267.413 66.0597 265.799 66.8079 265.515 68.1048C265.23 69.4018 266.383 70.7563 268.09 71.1303C269.797 71.5042 271.41 70.756 271.695 69.4591Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M268.31 76.7338C270.057 76.7338 271.473 75.6575 271.473 74.3298C271.473 73.0021 270.057 71.9258 268.31 71.9258C266.563 71.9258 265.146 73.0021 265.146 74.3298C265.146 75.6575 266.563 76.7338 268.31 76.7338Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M269.988 82.6222C271.665 82.1155 272.712 80.6715 272.327 79.3969C271.942 78.1223 270.271 77.4998 268.593 78.0065C266.916 78.5131 265.869 79.9571 266.254 81.2317C266.639 82.5063 268.311 83.1288 269.988 82.6222Z\" fill=\"#F8F6F5\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-iia8mx\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wsqivh\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P1Vo_Ps3Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"RB Quaria Display Regular\", \"RB Quaria Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:\"Bleib' auf dem Laufenden\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1JCIFF1YXJpYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"RB Quaria Display Regular\", \"RB Quaria Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:\"Bleib' auf dem Laufenden\"})}),className:\"framer-ef65b7\",\"data-framer-name\":\"Title - Probiere Onno aus\",fonts:[\"CUSTOM;RB Quaria Display Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:\"Wir entwickeln unser Produkt st\\xe4ndig weiter, um auch komplexe Befunde und Briefe noch detaillierter zu erkl\\xe4ren. Trage einfach deine E-Mail-Adresse ein, und wir informieren dich, sobald es Updates gibt.\"})}),className:\"framer-1999nx4\",\"data-framer-name\":\"Lade einfach Dein medizinisches Dokumente hoch und lass es Dir mit m\\xf6glichen n\\xe4chsten Schritten und Hilfestellungen \\xfcbersetzten. \",fonts:[\"GF;IBM Plex Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-oeo5h9 hidden-b35poj\",\"data-framer-name\":\"Group 1171273916\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:327,intrinsicWidth:337,svg:'<svg width=\"337\" height=\"327\" viewBox=\"0 0 337 327\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M216.168 299.217C213.461 300.282 211.132 301.14 209.317 301.789C209.317 301.789 197.566 305.98 192.899 305.331C192.443 305.268 191.983 305.242 191.526 305.19C190.278 305.05 189.746 304.962 189.083 305.214C188.814 305.317 188.562 305.459 188.334 305.635C188.419 306.159 188.502 306.683 188.584 307.207C187.255 307.978 184.099 309.538 180.076 308.92C178.34 308.644 176.677 308.019 175.189 307.083C174.879 302.037 174.57 296.991 174.261 291.945C174.393 290.842 174.76 289.78 175.337 288.831C177.699 285.069 183.576 284.306 190.011 286.829C189.662 285.401 190.243 284.224 190.899 284.065C191.513 283.925 192.112 284.68 192.161 284.751C195.91 286.339 198.985 286.825 201.001 286.993C206.129 287.414 212.424 286.445 216.204 288.581C217.213 289.135 218.051 289.953 218.628 290.949C218.866 291.369 219.644 292.783 219.49 294.562C219.319 296.577 218.008 298.346 216.168 299.217Z\" fill=\"#020C26\"/>\\n<path d=\"M186.989 273.693L192.908 287.523C192.791 288.052 191.519 293.486 186.802 295.184C185.525 295.637 184.158 295.781 182.815 295.605L178.329 291.811L176.349 290.23L171.918 280.116L186.989 273.693Z\" fill=\"white\"/>\\n<path d=\"M190.385 278.583L172.444 285.778L169.542 278.957L187.955 272.136L190.385 278.583Z\" fill=\"#D3F9AE\"/>\\n<path d=\"M26.6793 294.346C25.8944 291.833 25.2777 289.673 24.8054 287.992C24.8054 287.992 21.7877 277.11 22.6777 272.94C22.7646 272.532 22.8179 272.119 22.895 271.71C23.101 270.588 23.2173 270.117 23.0351 269.502C22.959 269.254 22.8476 269.018 22.7043 268.801L21.2691 268.923C20.6594 267.673 19.4568 264.718 20.2767 261.132C20.6402 259.582 21.3134 258.122 22.2558 256.84L35.9819 256.988C36.9691 257.181 37.9039 257.582 38.7235 258.164C41.9655 260.547 42.2696 265.897 39.5645 271.541C40.8778 271.319 41.9024 271.921 42.0019 272.523C42.0958 273.083 41.367 273.577 41.3011 273.62C39.6192 276.903 38.9828 279.647 38.6997 281.454C37.9806 286.057 38.4488 291.803 36.2735 295.076C35.7074 295.95 34.9137 296.654 33.9776 297.11C33.5838 297.296 32.255 297.907 30.66 297.651C28.8575 297.365 27.3409 296.063 26.6793 294.346Z\" fill=\"#020C26\"/>\\n<path d=\"M51.625 269.671L38.7539 274.11C38.2843 273.969 33.4614 272.467 32.2349 268.099C31.9124 266.916 31.8735 265.673 32.1214 264.472L35.8399 260.667L37.3957 258.985L46.816 255.645C48.4195 260.318 50.0225 264.994 51.625 269.671Z\" fill=\"white\"/>\\n<path d=\"M46.9889 272.416C45.2135 266.86 43.4381 261.304 41.6627 255.749L48.0107 253.579C49.6618 259.267 51.3138 264.955 52.9668 270.642L46.9889 272.416Z\" fill=\"#D3F9AE\"/>\\n<path d=\"M145.418 194.704L141.369 206.29L168.374 223.359C170.738 224.565 172.798 226.29 174.401 228.405C175.399 229.732 176.202 231.195 176.784 232.75C182.857 246.346 188.931 259.942 195.005 273.537L163.188 286.152C156.834 272.09 150.48 258.027 144.126 243.963L120.018 232.89C115.014 238.82 110.011 244.751 105.009 250.682C103.673 252.787 101.786 254.486 99.5543 255.597L51.6187 278.163L44.626 249.149L83.0151 231.068C86.892 222.471 90.7698 213.875 94.6486 205.278C94.6093 203.471 94.6486 201.551 94.7887 199.532C95.1413 194.533 96.0823 189.593 97.592 184.814C105.994 187.587 114.56 189.834 123.242 191.542C130.573 192.984 137.976 194.04 145.418 194.704V194.704Z\" fill=\"#16444F\"/>\\n<path d=\"M138.876 241.239L105.051 225.291C102.071 222.934 99.6105 219.985 97.8243 216.632C95.2089 211.684 94.8332 207.225 94.637 204.578C94.3963 201.304 94.619 198.014 95.2986 194.803\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M147.994 210.478L127.743 198.185\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M143.683 199.672C138.896 199.58 134.12 199.172 129.387 198.45C122.191 197.35 115.124 195.532 108.291 193.022\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M169.541 182.479C170.289 185.36 171.036 188.242 171.784 191.122C178.367 194.798 184.405 199.374 189.725 204.718C192.741 205.291 195.668 206.26 198.43 207.6C199.864 208.301 200.489 208.741 201.016 209.219C203.484 211.461 203.96 214.667 204.067 216.29C204.303 216.412 206.31 217.498 206.466 219.404C206.51 219.862 206.435 220.323 206.248 220.743C205.548 222.269 203.585 222.473 203.414 222.488C203.424 222.659 203.479 224.066 202.355 225.042C201.739 225.562 200.948 225.829 200.143 225.789C200.119 225.968 199.896 227.457 198.493 228.281C197.118 229.088 195.742 228.596 195.565 228.53C194.954 229.174 194.116 229.553 193.229 229.589C192.576 229.61 191.933 229.425 191.391 229.06C190.773 228.628 190.472 227.957 189.896 226.63C189.566 225.873 189.335 225.228 189.179 224.761C188.749 224.519 188.312 224.25 187.872 223.951C185.76 222.509 183.951 220.668 182.546 218.533L158.374 204.422C156.542 202.818 154.985 200.924 153.765 198.816C151.059 194.126 150.761 189.603 150.775 187.323L169.541 182.479Z\" fill=\"white\"/>\\n<path d=\"M202.105 210.37C202.453 211.187 202.789 212.06 203.102 212.987C203.836 215.155 204.368 217.387 204.691 219.653C204.334 219.838 203.941 219.944 203.539 219.964C203.023 219.985 202.229 219.866 201.016 218.843C199.069 217.2 197.793 214.705 197.309 213.672C196.201 213.997 195.064 214.217 193.914 214.327C191.599 214.542 189.264 214.32 187.031 213.672\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M198.246 215.435C197.955 215.583 197.715 215.815 197.559 216.102C197.129 216.915 197.634 217.784 197.668 217.831C197.301 217.698 196.903 217.673 196.522 217.757C196.141 217.842 195.792 218.034 195.516 218.31C195.239 218.586 195.048 218.935 194.963 219.316C194.878 219.697 194.903 220.095 195.036 220.462C194.847 220.385 194.111 220.108 193.354 220.431C192.474 220.808 191.924 221.846 192.062 222.985C191.777 222.798 191.447 222.692 191.107 222.678C190.766 222.665 190.429 222.744 190.13 222.908C189.401 223.329 189.051 224.268 189.335 225.151L190.332 227.494\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M197.668 217.831L203.204 221.653\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M195.036 220.462L199.863 225.626\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M192.061 222.985C193.01 224.512 193.959 226.039 194.911 227.564\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M87.2662 149.26C88.5908 153.639 89.6882 157.335 90.5068 160.104C93.603 170.605 94.4103 173.727 95.0214 176.265C95.9367 180.049 96.5772 183.203 96.9837 185.329C101.871 186.974 107.14 188.531 112.776 189.907C123.462 192.516 134.35 194.212 145.323 194.977C147.905 193.309 149.882 190.855 150.962 187.977C158.843 187.029 166.52 184.821 173.7 181.436C173.587 177.43 172.69 161.974 160.742 151.098C151.158 142.374 139.858 141.515 129.906 140.758C111.617 139.366 96.5786 144.75 87.2662 149.26Z\" fill=\"#D3F9AE\"/>\\n<path d=\"M94.7296 204.22L83.0075 230.455L45.0503 248.317\" stroke=\"#020C26\" stroke-width=\"0.96768\"/>\\n<path d=\"M93.6727 171.088L88.418 171.718L106.234 180.936C108.034 181.076 111.832 181.629 115.329 184.425C116.222 185.14 120.015 188.173 120.5 192.773C120.578 193.514 120.891 196.487 119.378 197.32C118.846 197.613 118.235 197.561 117.76 197.445C118.204 198.616 117.851 199.896 116.949 200.559C115.93 201.309 114.707 200.912 114.582 200.872C114.582 201.127 114.553 202.294 113.647 203.176C112.742 204.057 111.361 204.289 110.097 203.798C109.146 204.069 108.156 204.175 107.169 204.111C102.759 203.811 100.075 200.103 99.5693 199.376L94.0245 194.891L70.2277 184.114C68.0215 181.641 65.2043 177.526 65.0795 172.34C64.8497 162.824 73.7696 153.005 87.4761 149.869C88.759 154.127 90.0298 158.426 91.2885 162.764C92.0968 165.552 92.8915 168.327 93.6727 171.088Z\" fill=\"white\"/>\\n<path d=\"M118.257 198.379C117.492 195.493 116.063 192.827 114.083 190.592\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M114.997 201.229C112.843 199.923 110.867 198.342 109.121 196.526\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M110.326 203.983C107.933 202.926 105.797 201.364 104.065 199.404\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M158.515 124.591C158.96 126.514 159.483 130.137 158.048 134.122C157.385 135.965 156.428 138.624 153.703 140.243C151.652 141.461 149.574 141.505 148.517 141.458L147.209 147.906C146.789 148.483 144.92 150.87 141.975 151.129C138.397 151.443 134.574 148.493 133.426 143.793C134.453 140.913 135.481 138.032 136.509 135.151C135.354 134.726 134.311 134.044 133.458 133.156C133.162 132.848 130.398 129.857 131.432 126.772C131.769 125.734 132.465 124.851 133.395 124.28C134.223 123.798 135.183 123.591 136.136 123.688L158.515 124.591Z\" fill=\"white\"/>\\n<path d=\"M94.7295 174.077L112.592 169.054\" stroke=\"#020C26\" stroke-width=\"0.96768\"/>\\n<path d=\"M158.874 121.446C159.23 120.81 159.403 120.087 159.371 119.359C159.193 116.535 155.489 114.853 154.575 114.438C150.013 112.366 144.324 113.316 141.649 115.123C140.992 115.566 139.967 116.435 138.161 117.178C136.888 117.703 136.505 117.639 135.701 118.207C134.169 119.283 133.621 120.87 133.489 121.29C133.219 122.156 133.144 123.071 133.27 123.969L158.874 121.446Z\" fill=\"#020C26\"/>\\n<path d=\"M158.749 126.118C151.993 125.115 145.123 125.158 138.379 126.243C138.113 125.646 137.694 125.13 137.164 124.747C135.408 123.508 133.209 124.44 133.045 124.513L132.92 123.439C134.117 123.046 135.792 122.533 137.825 122.038C140.682 121.337 144.682 120.385 149.786 120.325C152.944 120.29 156.098 120.592 159.192 121.228C159.285 122.806 159.379 124.384 159.472 125.962L158.749 126.118Z\" fill=\"#E7FBD3\"/>\\n<path d=\"M157.581 128.703C156.846 128.234 156 127.968 155.128 127.932C153.954 127.901 152.805 128.281 151.881 129.006L153.843 133.631L151.647 134.59\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M149.264 128.668C148.404 128.185 147.431 127.937 146.444 127.952C145.458 127.966 144.492 128.241 143.646 128.749\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M153.064 137.254C152.173 137.644 151.198 137.799 150.23 137.705C148.847 137.546 147.567 136.9 146.616 135.883\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M134.299 126.709L137.164 129.17L133.8 129.856\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M308.161 18H214.693C209.269 18 204.872 22.3971 204.872 27.8211V159.842C204.872 165.266 209.269 169.663 214.693 169.663H308.161C313.586 169.663 317.983 165.266 317.983 159.842V27.8211C317.983 22.3971 313.586 18 308.161 18Z\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M286.785 121.759H236.068C233.93 121.759 232.196 123.493 232.196 125.631V131.103C232.196 133.242 233.93 134.976 236.068 134.976H286.785C288.924 134.976 290.658 133.242 290.658 131.103V125.631C290.658 123.493 288.924 121.759 286.785 121.759Z\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M262.363 139.021H235.108C233.499 139.021 232.195 140.325 232.195 141.933V149.325C232.195 150.933 233.499 152.237 235.108 152.237H262.363C263.972 152.237 265.276 150.933 265.276 149.325V141.933C265.276 140.325 263.972 139.021 262.363 139.021Z\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M261.429 108.296C284.085 108.296 302.452 89.9289 302.452 67.2723C302.452 44.6158 284.085 26.249 261.429 26.249C238.772 26.249 220.405 44.6158 220.405 67.2723C220.405 89.9289 238.772 108.296 261.429 108.296Z\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M186.932 80.3666C188.051 81.8399 189.465 83.0641 191.083 83.9612C195.113 86.18 199.1 85.5801 200.398 85.328C201.544 80.4683 202.691 75.6087 203.839 70.749L196.348 63.6113C193.209 69.1959 190.071 74.781 186.932 80.3666Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M203.974 68.2836L225.573 74.6969C227.252 72.0781 229.33 69.738 231.732 67.7612C249.548 53.1822 278.684 65.1932 281.848 66.5463C284.318 67.5932 286.543 69.1451 288.378 71.1023C288.881 71.6429 290.542 73.4896 292.293 77.4305C294.071 81.4747 295.139 85.7953 295.449 90.2023C294.162 91.9961 292.746 93.6939 291.213 95.2822C288.732 97.873 285.944 100.151 282.911 102.066C279.185 104.343 275.117 106.006 270.863 106.993C258.031 109.981 247.549 105.813 244.945 104.698C241.501 103.221 238.273 101.284 235.348 98.9422C232.716 98.5372 230.009 98.0487 227.227 97.4767C217.394 95.4121 207.795 92.3593 198.576 88.3648L203.974 68.2836Z\" fill=\"#E7FBD3\"/>\\n<path d=\"M296.714 88.207C293.002 94.4655 287.692 99.6237 281.328 103.152C274.965 106.681 267.777 108.453 260.502 108.287C247.206 107.975 238.178 101.24 235.349 98.9424\" stroke=\"#020C26\" stroke-width=\"0.759325\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M281.494 78.2734L275.836 105.676\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M238.668 74.0898C237.562 82.3736 236.455 90.6578 235.349 98.9426\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M263.119 33.5156C260.638 35.6926 258.527 38.2569 256.866 41.1089C256.36 40.1366 256.157 39.0344 256.285 37.9455C256.368 37.2882 256.574 36.6524 256.892 36.0715L263.119 33.5156Z\" fill=\"#020C26\"/>\\n<path d=\"M257.246 82.1392C256.285 76.9241 255.323 71.7101 254.36 66.4971L266.256 69.5344L257.246 82.1392Z\" fill=\"#E7FBD3\"/>\\n<path d=\"M256.942 56.3219C256.08 59.7126 255.22 63.1042 254.36 66.4969C257.91 68.6327 261.98 69.7482 266.122 69.721L269.445 64.4209C269.8 61.5182 270.155 58.6161 270.508 55.7145C271.593 55.8888 272.704 55.8018 273.749 55.4608C274 55.3773 277.057 54.3021 278.101 51.1069C278.312 50.4614 279.216 47.7005 277.444 45.5395C275.808 43.544 273.192 43.6488 272.888 43.6655L262.257 33.7441C260.339 35.0909 258.734 36.8348 257.55 38.8574C256.257 41.0899 255.944 43.6184 255.322 48.677C255.026 51.0917 254.93 53.1054 256.031 55.0554C256.288 55.5093 256.593 55.9339 256.942 56.3219V56.3219Z\" fill=\"white\"/>\\n<path d=\"M257.296 42.8559C258.321 42.5103 259.435 42.5392 260.441 42.9377C261.447 43.3361 262.279 44.0782 262.789 45.0321C261.851 46.5769 260.642 47.9402 259.22 49.0565L260.815 50.6769\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M265.261 45.2688C265.463 45.1959 266.932 44.6871 268.365 45.5391C269.121 46.0002 269.685 46.7192 269.952 47.5635\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M258.41 52.5918C258.697 53.1249 259.1 53.5864 259.59 53.9419C261.024 54.9685 262.668 54.6541 263 54.5828\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M275.251 48.5078L272.618 49.8579L274.71 51.8154\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M261.662 34.187C262.224 35.8453 263.748 39.5691 267.522 42.5016C269.286 43.8679 271.297 44.8816 273.445 45.4872C274.818 45.129 276.27 45.214 277.592 45.7302C278.199 44.5405 278.528 43.2291 278.557 41.8941C278.626 36.9296 274.187 33.7587 273.343 33.1862C272.898 32.8824 267.761 29.5232 262.105 31.8194C259.22 32.9887 257.583 35.0678 256.892 36.0716L260.637 34.553L261.662 34.187Z\" fill=\"#020C26\"/>\\n<path d=\"M269.918 63.6611C267.901 66.828 265.791 70.0293 263.588 73.2651C258.661 80.4954 253.691 87.2367 248.758 93.5284L245.007 104.817\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M248.758 93.5287L269.193 79.8093L267.927 72.8751L272.838 75.6588L273.531 63.6113\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M251.378 60.6953L247.375 71.9121L253.196 71.6083L247.982 75.9122L253.837 86.9087\" stroke=\"#020C26\" stroke-width=\"0.96768\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M185.148 57.2094H194.41C196.422 57.2094 198.053 58.8402 198.053 60.8518V77.6572C198.053 79.6688 196.422 81.2995 194.41 81.2995H185.148C183.137 81.2995 181.506 79.6688 181.506 77.6572V60.8518C181.506 58.8402 183.137 57.2094 185.148 57.2094Z\" fill=\"#228876\" stroke=\"#020C26\" stroke-width=\"0.96768\"/>\\n<path d=\"M194.726 52.9854H184.834C184.274 52.9854 183.819 53.4395 183.819 53.9998V55.8632C183.819 56.4235 184.274 56.8776 184.834 56.8776H194.726C195.287 56.8776 195.741 56.4235 195.741 55.8632V53.9998C195.741 53.4395 195.287 52.9854 194.726 52.9854Z\" fill=\"#020C26\"/>\\n<path d=\"M180.706 63.1218L192.199 63.0869L192.266 76.4844L180.589 76.5528C180.628 72.0758 180.667 67.5988 180.706 63.1218Z\" fill=\"#020C26\"/>\\n<path d=\"M194.863 58.8682C194.067 58.8682 193.378 60.2942 193.142 61.2312C192.231 64.8456 196.222 68.5359 196.956 69.195C196.438 70.355 196.151 71.6049 196.111 72.8747C196.019 76.1914 197.692 78.5711 198.306 79.3624L202.997 70.0728C202.653 68.6832 202.058 67.3681 201.241 66.1926C199.742 64.0665 198.66 64.1409 197.022 61.8052C195.797 60.0588 195.589 58.8651 194.863 58.8682Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M183.129 64.4591C183.413 63.1621 182.26 61.8076 180.554 61.4336C178.847 61.0597 177.233 61.8079 176.949 63.1048C176.665 64.4018 177.818 65.7563 179.525 66.1303C181.231 66.5042 182.845 65.756 183.129 64.4591Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M179.745 71.7338C181.492 71.7338 182.908 70.6575 182.908 69.3298C182.908 68.0021 181.492 66.9258 179.745 66.9258C177.998 66.9258 176.582 68.0021 176.582 69.3298C176.582 70.6575 177.998 71.7338 179.745 71.7338Z\" fill=\"#F8F6F5\"/>\\n<path d=\"M181.423 77.6222C183.1 77.1155 184.148 75.6715 183.762 74.3969C183.377 73.1223 181.706 72.4998 180.029 73.0065C178.351 73.5131 177.304 74.9571 177.689 76.2317C178.074 77.5063 179.746 78.1288 181.423 77.6222Z\" fill=\"#F8F6F5\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jichnw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"XIOO1BdL0\",scopeId:\"TtbrpX20t\",children:/*#__PURE__*/_jsx(Mailchimp,{button:{buttonFont:{fontFamily:'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',fontSize:\"18px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:15,buttonPaddingBottom:15,buttonPaddingLeft:15,buttonPaddingPerSide:false,buttonPaddingRight:15,buttonPaddingTop:15,color:\"rgb(255, 255, 255)\",fill:\"var(--token-eeceb38a-b0ab-4c9e-beab-fbe15d03d1d2, rgb(34, 136, 118))\",insetWhenDocked:5,isDocked:false,label:\"Jetzt anmelden\",shouldAppear:true,widthWhenDocked:100},font:{fontFamily:'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',fontSize:\"18px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},gap:10,height:\"100%\",id:\"XIOO1BdL0\",input:{borderRadius:50,color:\"rgb(0, 0, 0)\",fill:\"rgb(255, 255, 255)\",fixedHeight:50,height:true,padding:15,paddingBottom:15,paddingLeft:25,paddingPerSide:true,paddingRight:25,paddingTop:15,placeholder:\"name@email.com\",placeholderColor:\"rgba(0, 0, 0, 0.3)\"},layout:\"vertical\",layoutId:\"XIOO1BdL0\",mailchimpURL:\"https://simply-onno.us22.list-manage.com/subscribe/post?u=e063643fbcdd8d166edcc942d&amp;id=54d1c2d506&amp;f_id=005cc7e1f0\",redirectAs:\"overlay\",style:{width:\"100%\"},width:\"100%\"})})})]}),isDisplayed6()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ApyIpDWVo\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qn49wr-container hidden-b35poj hidden-1r88f08\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ZORQViqtd\",scopeId:\"TtbrpX20t\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LR2td6NJu:{button:{buttonFont:{fontFamily:'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',fontSize:\"18px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:15,buttonPaddingBottom:15,buttonPaddingLeft:40,buttonPaddingPerSide:true,buttonPaddingRight:40,buttonPaddingTop:15,color:\"rgb(255, 255, 255)\",fill:\"var(--token-eeceb38a-b0ab-4c9e-beab-fbe15d03d1d2, rgb(34, 136, 118))\",insetWhenDocked:5,isDocked:false,label:\"Jetzt anmelden\",shouldAppear:true,widthWhenDocked:100},style:{maxWidth:\"100%\",width:\"100%\"}},wJY_z6xPr:{button:{buttonFont:{fontFamily:'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',fontSize:\"18px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:15,buttonPaddingBottom:15,buttonPaddingLeft:40,buttonPaddingPerSide:true,buttonPaddingRight:40,buttonPaddingTop:15,color:\"rgb(255, 255, 255)\",fill:\"var(--token-eeceb38a-b0ab-4c9e-beab-fbe15d03d1d2, rgb(34, 136, 118))\",insetWhenDocked:5,isDocked:false,label:\"Jetzt anmelden\",shouldAppear:true,widthWhenDocked:100},link:resolvedLinks1[0],redirectAs:\"link\"}},children:/*#__PURE__*/_jsx(Mailchimp,{button:{buttonFont:{fontFamily:'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',fontSize:\"18px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:15,buttonPaddingBottom:15,buttonPaddingLeft:15,buttonPaddingPerSide:false,buttonPaddingRight:15,buttonPaddingTop:15,color:\"rgb(255, 255, 255)\",fill:\"var(--token-eeceb38a-b0ab-4c9e-beab-fbe15d03d1d2, rgb(34, 136, 118))\",insetWhenDocked:5,isDocked:false,label:\"Jetzt anmelden\",shouldAppear:true,widthWhenDocked:100},font:{fontFamily:'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',fontSize:\"18px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},gap:10,height:\"100%\",id:\"ZORQViqtd\",input:{borderRadius:50,color:\"rgb(0, 0, 0)\",fill:\"rgb(255, 255, 255)\",fixedHeight:50,height:true,padding:15,paddingBottom:15,paddingLeft:25,paddingPerSide:true,paddingRight:25,paddingTop:15,placeholder:\"name@email.com\",placeholderColor:\"rgba(0, 0, 0, 0.3)\"},layout:\"horizontal\",layoutId:\"ZORQViqtd\",mailchimpURL:\"https://simply-onno.us22.list-manage.com/subscribe/post?u=e063643fbcdd8d166edcc942d&amp;id=54d1c2d506&amp;f_id=005cc7e1f0\",redirectAs:\"overlay\",style:{width:\"100%\"},width:\"100%\"})})})})})]}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-po1eeb hidden-b35poj hidden-h9qi9v hidden-1f3zynu\",\"data-framer-name\":\"CTA Rose - Mobile Only\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1agilqj\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1386nl6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g79vxs\",\"data-styles-preset\":\"oPh_4TQIN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Probiere Onno aus\"})}),className:\"framer-11v6vi5\",\"data-framer-name\":\"Title - Probiere Onno aus\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-50d97fcc-0a47-40fe-a04f-ffad36d96e98, rgb(2, 12, 38))\"},children:\"Lade einfach dein medizinisches Dokument hoch und lass es dir einfach und verst\\xe4ndlich zusammenfassen. \"})}),className:\"framer-1v4jyys\",\"data-framer-name\":\"Lade einfach Dein medizinisches Dokumente hoch und lass es Dir mit m\\xf6glichen n\\xe4chsten Schritten und Hilfestellungen \\xfcbersetzten. \",fonts:[\"GF;IBM Plex Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P1Vo_Ps3Q:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:185,intrinsicWidth:287.5,pixelHeight:416,pixelWidth:674,sizes:`calc((${componentViewport?.width||\"100vw\"} - 56px) * 0.7859)`,src:\"https://framerusercontent.com/images/KRB4myXuXU5Zf8d9xOJW4L5yM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/KRB4myXuXU5Zf8d9xOJW4L5yM.png?scale-down-to=512 512w,https://framerusercontent.com/images/KRB4myXuXU5Zf8d9xOJW4L5yM.png 674w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:185,intrinsicWidth:287.5,pixelHeight:416,pixelWidth:674,src:\"https://framerusercontent.com/images/KRB4myXuXU5Zf8d9xOJW4L5yM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/KRB4myXuXU5Zf8d9xOJW4L5yM.png?scale-down-to=512 512w,https://framerusercontent.com/images/KRB4myXuXU5Zf8d9xOJW4L5yM.png 674w\"},className:\"framer-1ufsfzr\",\"data-framer-name\":\"Img_Drop\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p51uzh\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 12, 38)\"},children:\"Oder direkt hochladen\"})}),className:\"framer-19td4ek hidden-1r88f08\",\"data-framer-name\":\"health guide\",fonts:[\"GF;IBM Plex Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://app.simply-onno.com\",motionChild:true,nodeId:\"EiU9T9fQq\",openInNewTab:false,scopeId:\"TtbrpX20t\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-y8dwq6 framer-1ls8ibu\",\"data-framer-name\":\"Dark=Default\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy01MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Jetzt starten\"})}),className:\"framer-1mr6ffi\",\"data-framer-name\":\"health guide\",fonts:[\"GF;IBM Plex Sans-500\"],verticalAlignment:\"center\",withExternalLayout:true})})})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-101ykgl-container\",nodeId:\"Q0m4Kmqjs\",scopeId:\"TtbrpX20t\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P1Vo_Ps3Q:{variant:\"SDUrmxFrG\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"Q0m4Kmqjs\",layoutId:\"Q0m4Kmqjs\",style:{height:\"100%\",width:\"100%\"},variant:\"wLyMXbHV0\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WBhiA.framer-1ls8ibu, .framer-WBhiA .framer-1ls8ibu { display: block; }\",\".framer-WBhiA.framer-b35poj { align-content: center; align-items: center; background-color: var(--token-d22e8090-383e-439f-8a6b-b9d242649d1f, #f8f6f5); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 60px 0px 0px 0px; position: relative; width: 1105px; }\",\".framer-WBhiA .framer-13ah6el-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 2; }\",\".framer-WBhiA .framer-1hxc5dj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 72px 0px 0px 0px; position: relative; scroll-margin-top: 10px; width: 100%; z-index: 1; }\",\".framer-WBhiA .framer-u6cabl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 950%; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-18vjw36, .framer-WBhiA .framer-11t9mbo { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 950px; position: relative; white-space: pre-wrap; width: 74%; word-break: break-word; word-wrap: break-word; }\",\".framer-WBhiA .framer-hjvrlf { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 950px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-WBhiA .framer-18p9oqi { flex: none; height: 347px; max-width: 950px; overflow: visible; position: relative; width: 100%; }\",\".framer-WBhiA .framer-g9wwsc { --border-bottom-width: 2px; --border-color: var(--token-a914c170-35d5-4fe4-b10e-dc39bdd5850c, #16444f); --border-left-width: 2px; --border-right-width: 2px; --border-style: dashed; --border-top-width: 2px; background-color: var(--token-228ba3b3-ea43-47ec-a165-b2c989475991, #e7fbd3); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 320px; left: calc(50% - 100.21052631578948% / 2); position: absolute; top: 27px; width: 100%; }\",\".framer-WBhiA .framer-pepgkg { align-content: center; align-items: center; background-color: var(--token-eeceb38a-b0ab-4c9e-beab-fbe15d03d1d2, #228876); border-bottom-left-radius: 831px; border-bottom-right-radius: 831px; border-top-left-radius: 831px; border-top-right-radius: 831px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 54px; justify-content: center; left: calc(50.00000000000002% - 220px / 2); overflow: hidden; padding: 14px 20px 14px 20px; position: absolute; text-decoration: none; top: 0px; width: 220px; will-change: var(--framer-will-change-override, transform); }\",\".framer-WBhiA .framer-1fcchb { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-WBhiA .framer-11qid3v-container { flex: none; height: 54px; left: 329px; position: absolute; top: 17px; width: 193px; }\",\".framer-WBhiA .framer-14cjgav { aspect-ratio: 1.554054054054054 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 129px); left: 50%; overflow: visible; position: absolute; top: 52%; transform: translate(-50%, -50%); width: 30%; }\",\".framer-WBhiA .framer-6zpdjz { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 243px); left: 0px; position: absolute; top: 0px; width: 243px; }\",\".framer-WBhiA .framer-hzgr86 { --framer-paragraph-spacing: 0px; bottom: 12px; flex: none; height: 32px; left: calc(49.850746268656735% - min(950px, 100%) / 2); max-width: 950px; position: absolute; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-WBhiA .framer-tuqax9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 950px; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-1fd4czj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 60%; overflow: hidden; padding: 0px; position: relative; width: 60%; }\",\".framer-WBhiA .framer-1cdonfq { --framer-paragraph-spacing: 0px; flex: none; height: auto; min-width: 60%; position: relative; white-space: pre; width: auto; }\",\".framer-WBhiA .framer-n1h9ka { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 595px; word-break: break-word; word-wrap: break-word; }\",\".framer-WBhiA .framer-xx8k9u-container { flex: none; height: 54px; position: relative; width: 193px; }\",\".framer-WBhiA .framer-eulub9 { flex: none; height: 300px; position: relative; width: 300px; }\",\".framer-WBhiA .framer-h82fuf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 950px; overflow: visible; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-79iaj7 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 950px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-WBhiA .framer-5y14lu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 950px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-1ux9a21, .framer-WBhiA .framer-58maxg, .framer-WBhiA .framer-rxsyi7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 31%; }\",\".framer-WBhiA .framer-23jast { aspect-ratio: 1.0082644628099173 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 241px); overflow: visible; position: relative; width: 82%; }\",\".framer-WBhiA .framer-ciwdv1, .framer-WBhiA .framer-ojly2r, .framer-WBhiA .framer-1bygqoa, .framer-WBhiA .framer-rzhnvw, .framer-WBhiA .framer-gewai9, .framer-WBhiA .framer-1rhnpp0, .framer-WBhiA .framer-1bpg72b, .framer-WBhiA .framer-1eb19fa, .framer-WBhiA .framer-qin1xi, .framer-WBhiA .framer-1kdg7su, .framer-WBhiA .framer-3utbrl, .framer-WBhiA .framer-b70z59, .framer-WBhiA .framer-prdu6z, .framer-WBhiA .framer-9q98o8, .framer-WBhiA .framer-bx67d5, .framer-WBhiA .framer-1qhm58a, .framer-WBhiA .framer-1cj7gs7, .framer-WBhiA .framer-11enb9h, .framer-WBhiA .framer-1ois37s, .framer-WBhiA .framer-p13x2q, .framer-WBhiA .framer-1ld9bes, .framer-WBhiA .framer-4b0fnv, .framer-WBhiA .framer-75nl8w, .framer-WBhiA .framer-uojk3, .framer-WBhiA .framer-gplpg3, .framer-WBhiA .framer-1s3q9yy, .framer-WBhiA .framer-59ht2y, .framer-WBhiA .framer-19xnwe2, .framer-WBhiA .framer-t441ah, .framer-WBhiA .framer-15uma11, .framer-WBhiA .framer-bds8wi, .framer-WBhiA .framer-1k9t8cz, .framer-WBhiA .framer-1y0kwg3, .framer-WBhiA .framer-1cj40k, .framer-WBhiA .framer-d7isyk, .framer-WBhiA .framer-mbkpc0, .framer-WBhiA .framer-ef65b7, .framer-WBhiA .framer-1999nx4, .framer-WBhiA .framer-11v6vi5, .framer-WBhiA .framer-1v4jyys { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-WBhiA .framer-1a8sm0u, .framer-WBhiA .framer-9ja1rf { aspect-ratio: 0.9816326530612245 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 240px); overflow: visible; position: relative; width: 80%; }\",\".framer-WBhiA .framer-84t3lf { align-content: center; align-items: center; background-color: var(--token-228ba3b3-ea43-47ec-a165-b2c989475991, #e7fbd3); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-117b6ut { 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: center; max-width: 950px; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-xednl7 { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-1lbo9kf, .framer-WBhiA .framer-1yr9rir { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 705px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-WBhiA .framer-1njfocw { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 705px; min-width: 66%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-WBhiA .framer-12snovw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 950px; overflow: visible; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-6j6iaj, .framer-WBhiA .framer-163zu49 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 31%; }\",\".framer-WBhiA .framer-i9dmn5, .framer-WBhiA .framer-1xmslop { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 450px; justify-content: center; overflow: hidden; padding: 0px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-19u3whd, .framer-WBhiA .framer-196q1lv { flex: none; height: 440px; position: relative; width: 75%; }\",\".framer-WBhiA .framer-rvrhoe { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 646px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 31%; }\",\".framer-WBhiA .framer-x0m1gw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 456px; justify-content: center; overflow: hidden; padding: 0px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-19j1dfe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 445px; justify-content: center; overflow: hidden; padding: 0px 0px 25px 0px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-lnu38y { flex: none; height: 450px; overflow: visible; position: relative; width: 100%; }\",\".framer-WBhiA .framer-16pl21d { aspect-ratio: 1 / 1; background-color: #d3f8ae; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 224px); left: 45%; position: absolute; top: 21px; transform: translateX(-50%); width: 224px; }\",\".framer-WBhiA .framer-1ayyfp { --framer-paragraph-spacing: 0px; flex: none; height: 46px; left: 5px; position: absolute; top: 32px; white-space: pre-wrap; width: 231px; word-break: break-word; word-wrap: break-word; }\",\".framer-WBhiA .framer-aru1o9 { --framer-paragraph-spacing: 0px; flex: none; height: 46px; left: 5px; position: absolute; top: 71px; white-space: pre-wrap; width: 231px; word-break: break-word; word-wrap: break-word; }\",\".framer-WBhiA .framer-1dejp6a { bottom: 1px; flex: none; height: 282px; left: 135px; position: absolute; width: 148px; }\",\".framer-WBhiA .framer-c9y4gp-container { flex: none; height: 285px; max-width: 700px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-j8w0pk, .framer-WBhiA .framer-mixtqj, .framer-WBhiA .framer-1jmqn5d, .framer-WBhiA .framer-lz2pu9 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 40px 0px; position: relative; width: 952px; }\",\".framer-WBhiA .framer-1h6t113 { align-content: center; align-items: center; background-color: var(--token-0405042c-5208-4412-8860-6dbe1cc5ea03, #f4daff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-1l0czvx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; max-width: 950px; overflow: hidden; padding: 16px 32px 16px 36px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-da2l28 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 16px 40px 0px; position: relative; width: 45%; }\",\".framer-WBhiA .framer-1t07tpb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-193xrra { aspect-ratio: 1.61 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 124px); overflow: hidden; position: relative; width: 108%; }\",\".framer-WBhiA .framer-uwyiqr { bottom: 0px; flex: none; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; }\",\".framer-WBhiA .framer-1rhbcce { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; max-width: 950px; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-o1lna2 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-nps8e0 { aspect-ratio: 1.4760147601476015 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 290px); overflow: hidden; position: relative; width: 45%; }\",\".framer-WBhiA .framer-qdoo1c { bottom: 8px; flex: none; left: calc(49.63680387409203% - 96% / 2); position: absolute; top: 0px; width: 96%; }\",\".framer-WBhiA .framer-135wvmj { 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; overflow: hidden; padding: 0px 16px 0px 0px; position: relative; width: 48%; }\",\".framer-WBhiA .framer-bqjnip { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 105%; word-break: break-word; word-wrap: break-word; }\",\".framer-WBhiA .framer-80742i { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 43%; word-break: break-word; word-wrap: break-word; }\",\".framer-WBhiA .framer-rij8a6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 52px 0px 52px 0px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-u4lgkz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1195px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-zv7mg5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-c23m3t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1195px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-18yh1kp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; min-width: 1193px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-133qxj8, .framer-WBhiA .framer-1jp8p02, .framer-WBhiA .framer-7ubahk { aspect-ratio: 0.9642857142857143 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 98px); position: relative; width: 8%; }\",\".framer-WBhiA .framer-1xlfdrg, .framer-WBhiA .framer-c7i9sa, .framer-WBhiA .framer-1jdagpf, .framer-WBhiA .framer-1bkrjr8 { flex: none; height: 27px; position: relative; width: 8%; }\",\".framer-WBhiA .framer-7ums6w { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 98px); position: relative; width: 8%; }\",\".framer-WBhiA .framer-2faggv { aspect-ratio: 0.9693877551020408 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 98px); position: relative; width: 8%; }\",\".framer-WBhiA .framer-a6pbzu { 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; overflow: hidden; padding: 0px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-15ow8h3, .framer-WBhiA .framer-xlrryu, .framer-WBhiA .framer-5c3n2z { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-WBhiA .framer-b0zlb6, .framer-WBhiA .framer-ebf9ae { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 220px; word-break: break-word; word-wrap: break-word; }\",\".framer-WBhiA .framer-ptamk3 { 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: hidden; padding: 32px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-luka4h, .framer-WBhiA .framer-1snv0gc, .framer-WBhiA .framer-1ar6nk4, .framer-WBhiA .framer-1fzvldw, .framer-WBhiA .framer-13dfy7v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50%; }\",\".framer-WBhiA .framer-298c24, .framer-WBhiA .framer-12y35q2, .framer-WBhiA .framer-13hjaku, .framer-WBhiA .framer-89wrq, .framer-WBhiA .framer-jyxted { flex: none; height: 98px; position: relative; width: 98px; }\",\".framer-WBhiA .framer-q8078w, .framer-WBhiA .framer-aazf4s, .framer-WBhiA .framer-lpak26, .framer-WBhiA .framer-1kvydml { flex: none; height: 52px; position: relative; width: 28px; }\",\".framer-WBhiA .framer-16nybb3 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 60%; word-break: break-word; word-wrap: break-word; }\",\".framer-WBhiA .framer-1mikrk9 { align-content: center; align-items: center; background-color: var(--token-228ba3b3-ea43-47ec-a165-b2c989475991, #e7fbd3); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 60px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-1gboqjd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; max-width: 950px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-zj42u1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 50%; }\",\".framer-WBhiA .framer-1rvcsiw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 140px 0px 32px 0px; position: relative; width: 50%; }\",\".framer-WBhiA .framer-16taygi { aspect-ratio: 1.554054054054054 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 122px); overflow: visible; position: relative; width: 40%; }\",\".framer-WBhiA .framer-1fv24ct-container { flex: none; height: 54px; position: relative; width: 271px; }\",\".framer-WBhiA .framer-64nyj1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-rgqx31 { align-content: center; align-items: center; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 950px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-WBhiA .framer-17xcx1k { aspect-ratio: 1.0442708333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 319px); overflow: hidden; position: relative; width: 35%; }\",\".framer-WBhiA .framer-4027cd { flex: none; height: 296px; left: 0px; position: absolute; right: 0px; top: calc(50.00000000000002% - 296px / 2); }\",\".framer-WBhiA .framer-1jt4t2o { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-WBhiA .framer-1s3ck5l-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-WBhiA .framer-z31dos { align-content: center; align-items: center; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1196px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-WBhiA .framer-dgnfnh { flex: none; height: 364px; position: relative; width: 433px; }\",\".framer-WBhiA .framer-iia8mx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 45%; }\",\".framer-WBhiA .framer-wsqivh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-oeo5h9 { flex: none; height: 298px; position: relative; width: 307px; }\",\".framer-WBhiA .framer-jichnw-container, .framer-WBhiA .framer-qn49wr-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-WBhiA .framer-po1eeb { align-content: center; align-items: center; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 20px 28px 20px 28px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-1agilqj { align-content: center; align-items: center; background-color: var(--token-0405042c-5208-4412-8860-6dbe1cc5ea03, #f4daff); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-WBhiA .framer-1386nl6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-1ufsfzr { aspect-ratio: 1.554054054054054 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 129px); overflow: visible; position: relative; width: 79%; }\",\".framer-WBhiA .framer-p51uzh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WBhiA .framer-19td4ek { --framer-paragraph-spacing: 4px; flex: none; height: 20px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-WBhiA .framer-y8dwq6 { align-content: center; align-items: center; background-color: #228876; border-bottom-left-radius: 831px; border-bottom-right-radius: 831px; border-top-left-radius: 831px; border-top-right-radius: 831px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 54px; justify-content: center; overflow: hidden; padding: 14px 0px 14px 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-WBhiA .framer-1mr6ffi { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 215px; word-break: break-word; word-wrap: break-word; }\",\".framer-WBhiA .framer-101ykgl-container { flex: none; height: 64px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WBhiA.framer-b35poj, .framer-WBhiA .framer-1hxc5dj, .framer-WBhiA .framer-u6cabl, .framer-WBhiA .framer-pepgkg, .framer-WBhiA .framer-1fd4czj, .framer-WBhiA .framer-h82fuf, .framer-WBhiA .framer-5y14lu, .framer-WBhiA .framer-1ux9a21, .framer-WBhiA .framer-58maxg, .framer-WBhiA .framer-rxsyi7, .framer-WBhiA .framer-84t3lf, .framer-WBhiA .framer-117b6ut, .framer-WBhiA .framer-xednl7, .framer-WBhiA .framer-12snovw, .framer-WBhiA .framer-6j6iaj, .framer-WBhiA .framer-i9dmn5, .framer-WBhiA .framer-163zu49, .framer-WBhiA .framer-1xmslop, .framer-WBhiA .framer-rvrhoe, .framer-WBhiA .framer-x0m1gw, .framer-WBhiA .framer-19j1dfe, .framer-WBhiA .framer-j8w0pk, .framer-WBhiA .framer-mixtqj, .framer-WBhiA .framer-1jmqn5d, .framer-WBhiA .framer-lz2pu9, .framer-WBhiA .framer-1h6t113, .framer-WBhiA .framer-1l0czvx, .framer-WBhiA .framer-da2l28, .framer-WBhiA .framer-1t07tpb, .framer-WBhiA .framer-1rhbcce, .framer-WBhiA .framer-135wvmj, .framer-WBhiA .framer-rij8a6, .framer-WBhiA .framer-u4lgkz, .framer-WBhiA .framer-zv7mg5, .framer-WBhiA .framer-c23m3t, .framer-WBhiA .framer-18yh1kp, .framer-WBhiA .framer-a6pbzu, .framer-WBhiA .framer-ptamk3, .framer-WBhiA .framer-luka4h, .framer-WBhiA .framer-1snv0gc, .framer-WBhiA .framer-1ar6nk4, .framer-WBhiA .framer-1fzvldw, .framer-WBhiA .framer-13dfy7v, .framer-WBhiA .framer-1mikrk9, .framer-WBhiA .framer-1gboqjd, .framer-WBhiA .framer-zj42u1, .framer-WBhiA .framer-1rvcsiw, .framer-WBhiA .framer-64nyj1, .framer-WBhiA .framer-rgqx31, .framer-WBhiA .framer-1jt4t2o, .framer-WBhiA .framer-z31dos, .framer-WBhiA .framer-iia8mx, .framer-WBhiA .framer-wsqivh, .framer-WBhiA .framer-po1eeb, .framer-WBhiA .framer-1agilqj, .framer-WBhiA .framer-1386nl6, .framer-WBhiA .framer-p51uzh, .framer-WBhiA .framer-y8dwq6 { gap: 0px; } .framer-WBhiA.framer-b35poj > *, .framer-WBhiA .framer-1fd4czj > *, .framer-WBhiA .framer-h82fuf > *, .framer-WBhiA .framer-j8w0pk > *, .framer-WBhiA .framer-mixtqj > *, .framer-WBhiA .framer-1jmqn5d > *, .framer-WBhiA .framer-lz2pu9 > *, .framer-WBhiA .framer-u4lgkz > *, .framer-WBhiA .framer-1jt4t2o > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-WBhiA.framer-b35poj > :first-child, .framer-WBhiA .framer-1hxc5dj > :first-child, .framer-WBhiA .framer-u6cabl > :first-child, .framer-WBhiA .framer-1fd4czj > :first-child, .framer-WBhiA .framer-h82fuf > :first-child, .framer-WBhiA .framer-1ux9a21 > :first-child, .framer-WBhiA .framer-58maxg > :first-child, .framer-WBhiA .framer-rxsyi7 > :first-child, .framer-WBhiA .framer-84t3lf > :first-child, .framer-WBhiA .framer-117b6ut > :first-child, .framer-WBhiA .framer-xednl7 > :first-child, .framer-WBhiA .framer-6j6iaj > :first-child, .framer-WBhiA .framer-i9dmn5 > :first-child, .framer-WBhiA .framer-163zu49 > :first-child, .framer-WBhiA .framer-1xmslop > :first-child, .framer-WBhiA .framer-rvrhoe > :first-child, .framer-WBhiA .framer-19j1dfe > :first-child, .framer-WBhiA .framer-j8w0pk > :first-child, .framer-WBhiA .framer-mixtqj > :first-child, .framer-WBhiA .framer-1jmqn5d > :first-child, .framer-WBhiA .framer-lz2pu9 > :first-child, .framer-WBhiA .framer-da2l28 > :first-child, .framer-WBhiA .framer-1t07tpb > :first-child, .framer-WBhiA .framer-1rhbcce > :first-child, .framer-WBhiA .framer-135wvmj > :first-child, .framer-WBhiA .framer-rij8a6 > :first-child, .framer-WBhiA .framer-u4lgkz > :first-child, .framer-WBhiA .framer-zv7mg5 > :first-child, .framer-WBhiA .framer-c23m3t > :first-child, .framer-WBhiA .framer-ptamk3 > :first-child, .framer-WBhiA .framer-luka4h > :first-child, .framer-WBhiA .framer-1snv0gc > :first-child, .framer-WBhiA .framer-1ar6nk4 > :first-child, .framer-WBhiA .framer-1fzvldw > :first-child, .framer-WBhiA .framer-13dfy7v > :first-child, .framer-WBhiA .framer-zj42u1 > :first-child, .framer-WBhiA .framer-1rvcsiw > :first-child, .framer-WBhiA .framer-1jt4t2o > :first-child, .framer-WBhiA .framer-iia8mx > :first-child, .framer-WBhiA .framer-wsqivh > :first-child, .framer-WBhiA .framer-1agilqj > :first-child, .framer-WBhiA .framer-1386nl6 > :first-child, .framer-WBhiA .framer-p51uzh > :first-child { margin-top: 0px; } .framer-WBhiA.framer-b35poj > :last-child, .framer-WBhiA .framer-1hxc5dj > :last-child, .framer-WBhiA .framer-u6cabl > :last-child, .framer-WBhiA .framer-1fd4czj > :last-child, .framer-WBhiA .framer-h82fuf > :last-child, .framer-WBhiA .framer-1ux9a21 > :last-child, .framer-WBhiA .framer-58maxg > :last-child, .framer-WBhiA .framer-rxsyi7 > :last-child, .framer-WBhiA .framer-84t3lf > :last-child, .framer-WBhiA .framer-117b6ut > :last-child, .framer-WBhiA .framer-xednl7 > :last-child, .framer-WBhiA .framer-6j6iaj > :last-child, .framer-WBhiA .framer-i9dmn5 > :last-child, .framer-WBhiA .framer-163zu49 > :last-child, .framer-WBhiA .framer-1xmslop > :last-child, .framer-WBhiA .framer-rvrhoe > :last-child, .framer-WBhiA .framer-19j1dfe > :last-child, .framer-WBhiA .framer-j8w0pk > :last-child, .framer-WBhiA .framer-mixtqj > :last-child, .framer-WBhiA .framer-1jmqn5d > :last-child, .framer-WBhiA .framer-lz2pu9 > :last-child, .framer-WBhiA .framer-da2l28 > :last-child, .framer-WBhiA .framer-1t07tpb > :last-child, .framer-WBhiA .framer-1rhbcce > :last-child, .framer-WBhiA .framer-135wvmj > :last-child, .framer-WBhiA .framer-rij8a6 > :last-child, .framer-WBhiA .framer-u4lgkz > :last-child, .framer-WBhiA .framer-zv7mg5 > :last-child, .framer-WBhiA .framer-c23m3t > :last-child, .framer-WBhiA .framer-ptamk3 > :last-child, .framer-WBhiA .framer-luka4h > :last-child, .framer-WBhiA .framer-1snv0gc > :last-child, .framer-WBhiA .framer-1ar6nk4 > :last-child, .framer-WBhiA .framer-1fzvldw > :last-child, .framer-WBhiA .framer-13dfy7v > :last-child, .framer-WBhiA .framer-zj42u1 > :last-child, .framer-WBhiA .framer-1rvcsiw > :last-child, .framer-WBhiA .framer-1jt4t2o > :last-child, .framer-WBhiA .framer-iia8mx > :last-child, .framer-WBhiA .framer-wsqivh > :last-child, .framer-WBhiA .framer-1agilqj > :last-child, .framer-WBhiA .framer-1386nl6 > :last-child, .framer-WBhiA .framer-p51uzh > :last-child { margin-bottom: 0px; } .framer-WBhiA .framer-1hxc5dj > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-WBhiA .framer-u6cabl > *, .framer-WBhiA .framer-6j6iaj > *, .framer-WBhiA .framer-163zu49 > *, .framer-WBhiA .framer-rvrhoe > *, .framer-WBhiA .framer-da2l28 > *, .framer-WBhiA .framer-1t07tpb > *, .framer-WBhiA .framer-luka4h > *, .framer-WBhiA .framer-1snv0gc > *, .framer-WBhiA .framer-1ar6nk4 > *, .framer-WBhiA .framer-1fzvldw > *, .framer-WBhiA .framer-13dfy7v > *, .framer-WBhiA .framer-zj42u1 > *, .framer-WBhiA .framer-iia8mx > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-WBhiA .framer-pepgkg > *, .framer-WBhiA .framer-y8dwq6 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-WBhiA .framer-pepgkg > :first-child, .framer-WBhiA .framer-5y14lu > :first-child, .framer-WBhiA .framer-12snovw > :first-child, .framer-WBhiA .framer-x0m1gw > :first-child, .framer-WBhiA .framer-1h6t113 > :first-child, .framer-WBhiA .framer-1l0czvx > :first-child, .framer-WBhiA .framer-18yh1kp > :first-child, .framer-WBhiA .framer-a6pbzu > :first-child, .framer-WBhiA .framer-1mikrk9 > :first-child, .framer-WBhiA .framer-1gboqjd > :first-child, .framer-WBhiA .framer-64nyj1 > :first-child, .framer-WBhiA .framer-rgqx31 > :first-child, .framer-WBhiA .framer-z31dos > :first-child, .framer-WBhiA .framer-po1eeb > :first-child, .framer-WBhiA .framer-y8dwq6 > :first-child { margin-left: 0px; } .framer-WBhiA .framer-pepgkg > :last-child, .framer-WBhiA .framer-5y14lu > :last-child, .framer-WBhiA .framer-12snovw > :last-child, .framer-WBhiA .framer-x0m1gw > :last-child, .framer-WBhiA .framer-1h6t113 > :last-child, .framer-WBhiA .framer-1l0czvx > :last-child, .framer-WBhiA .framer-18yh1kp > :last-child, .framer-WBhiA .framer-a6pbzu > :last-child, .framer-WBhiA .framer-1mikrk9 > :last-child, .framer-WBhiA .framer-1gboqjd > :last-child, .framer-WBhiA .framer-64nyj1 > :last-child, .framer-WBhiA .framer-rgqx31 > :last-child, .framer-WBhiA .framer-z31dos > :last-child, .framer-WBhiA .framer-po1eeb > :last-child, .framer-WBhiA .framer-y8dwq6 > :last-child { margin-right: 0px; } .framer-WBhiA .framer-5y14lu > *, .framer-WBhiA .framer-12snovw > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-WBhiA .framer-1ux9a21 > *, .framer-WBhiA .framer-58maxg > *, .framer-WBhiA .framer-rxsyi7 > *, .framer-WBhiA .framer-84t3lf > *, .framer-WBhiA .framer-rij8a6 > *, .framer-WBhiA .framer-zv7mg5 > *, .framer-WBhiA .framer-wsqivh > *, .framer-WBhiA .framer-1386nl6 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-WBhiA .framer-117b6ut > *, .framer-WBhiA .framer-xednl7 > *, .framer-WBhiA .framer-i9dmn5 > *, .framer-WBhiA .framer-1xmslop > *, .framer-WBhiA .framer-19j1dfe > *, .framer-WBhiA .framer-p51uzh > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-WBhiA .framer-x0m1gw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-WBhiA .framer-1h6t113 > *, .framer-WBhiA .framer-1mikrk9 > *, .framer-WBhiA .framer-1gboqjd > *, .framer-WBhiA .framer-64nyj1 > *, .framer-WBhiA .framer-po1eeb > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-WBhiA .framer-1l0czvx > * { margin: 0px; margin-left: calc(56px / 2); margin-right: calc(56px / 2); } .framer-WBhiA .framer-1rhbcce > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-WBhiA .framer-135wvmj > *, .framer-WBhiA .framer-c23m3t > *, .framer-WBhiA .framer-ptamk3 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-WBhiA .framer-18yh1kp > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-WBhiA .framer-a6pbzu > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-WBhiA .framer-1rvcsiw > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-WBhiA .framer-rgqx31 > *, .framer-WBhiA .framer-z31dos > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-WBhiA .framer-1agilqj > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-WBhiA[data-border=\"true\"]::after, .framer-WBhiA [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 769px) and (max-width: 1104px) { .framer-WBhiA.framer-b35poj { padding: 80px 0px 0px 0px; width: 769px; } .framer-WBhiA .framer-13ah6el-container { order: 1; } .framer-WBhiA .framer-1hxc5dj { order: 0; padding: 0px; } .framer-WBhiA .framer-tuqax9 { max-width: 880px; width: 86%; } .framer-WBhiA .framer-1fd4czj { order: 0; } .framer-WBhiA .framer-1cdonfq { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-WBhiA .framer-n1h9ka { width: 100%; } .framer-WBhiA .framer-eulub9 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 243px); order: 1; width: 243px; } .framer-WBhiA .framer-h82fuf { padding: 24px 0px 24px 0px; width: 86%; } .framer-WBhiA .framer-1ux9a21 { height: 481px; max-width: 309px; order: 0; width: 30%; } .framer-WBhiA .framer-23jast { height: var(--framer-aspect-ratio-supported, 158px); order: 1; width: 80%; z-index: 1; } .framer-WBhiA .framer-ciwdv1, .framer-WBhiA .framer-1rhnpp0 { order: 2; } .framer-WBhiA .framer-ojly2r { order: 3; } .framer-WBhiA .framer-58maxg { order: 1; width: 30%; } .framer-WBhiA .framer-1a8sm0u { height: var(--framer-aspect-ratio-supported, 158px); width: 78%; } .framer-WBhiA .framer-rxsyi7 { order: 2; width: 30%; } .framer-WBhiA .framer-9ja1rf { height: var(--framer-aspect-ratio-supported, 158px); order: 0; width: 78%; } .framer-WBhiA .framer-gewai9 { order: 1; width: 199px; } .framer-WBhiA .framer-84t3lf { padding: 24px 40px 24px 40px; } .framer-WBhiA .framer-117b6ut, .framer-WBhiA .framer-u4lgkz { gap: 16px; } .framer-WBhiA .framer-6j6iaj { flex: 1 0 0px; width: 1px; } .framer-WBhiA .framer-i9dmn5, .framer-WBhiA .framer-1xmslop { height: 400px; padding: 0px 0px 12px 0px; } .framer-WBhiA .framer-19u3whd { height: 380px; order: 0; width: 90%; } .framer-WBhiA .framer-163zu49 { width: 30%; } .framer-WBhiA .framer-196q1lv { height: 380px; width: 90%; } .framer-WBhiA .framer-rvrhoe { height: min-content; width: 31%; } .framer-WBhiA .framer-x0m1gw { height: 399px; padding: 0px 0px 12px 0px; } .framer-WBhiA .framer-19j1dfe { height: min-content; padding: 0px; } .framer-WBhiA .framer-lnu38y { height: 380px; width: 100%; } .framer-WBhiA .framer-16pl21d { height: var(--framer-aspect-ratio-supported, 166px); left: 33px; top: 50px; transform: unset; width: 166px; } .framer-WBhiA .framer-1ayyfp { height: 34px; left: calc(49.76303317535547% - 172px / 2); top: 29px; width: 172px; } .framer-WBhiA .framer-aru1o9 { height: 35px; left: calc(49.76303317535547% - 172px / 2); top: 57px; width: 172px; } .framer-WBhiA .framer-1dejp6a { left: 65px; } .framer-WBhiA .framer-c9y4gp-container { height: 295px; } .framer-WBhiA .framer-1rhbcce { gap: 40px; max-width: unset; padding: 80px 40px 80px 40px; } .framer-WBhiA .framer-nps8e0 { height: var(--framer-aspect-ratio-supported, 211px); max-width: 350px; } .framer-WBhiA .framer-rij8a6 { padding: 32px 0px 32px 0px; width: 86%; } .framer-WBhiA .framer-gplpg3, .framer-WBhiA .framer-1s3q9yy, .framer-WBhiA .framer-16nybb3 { width: 80%; } .framer-WBhiA .framer-c23m3t { gap: 12px; height: 185px; } .framer-WBhiA .framer-18yh1kp { gap: 16px; min-width: unset; padding: 0px 8px 0px 8px; } .framer-WBhiA .framer-133qxj8, .framer-WBhiA .framer-7ubahk { aspect-ratio: 1.0158730158730158 / 1; height: var(--framer-aspect-ratio-supported, 63px); width: 10%; } .framer-WBhiA .framer-1xlfdrg, .framer-WBhiA .framer-c7i9sa, .framer-WBhiA .framer-1jdagpf, .framer-WBhiA .framer-1bkrjr8 { height: 14px; width: 6%; } .framer-WBhiA .framer-1jp8p02, .framer-WBhiA .framer-7ums6w, .framer-WBhiA .framer-2faggv { aspect-ratio: 1.0317460317460319 / 1; height: var(--framer-aspect-ratio-supported, 63px); width: 10%; } .framer-WBhiA .framer-a6pbzu { gap: 16px; padding: 0px; } .framer-WBhiA .framer-15ow8h3, .framer-WBhiA .framer-xlrryu, .framer-WBhiA .framer-5c3n2z { flex: none; width: 18%; } .framer-WBhiA .framer-b0zlb6, .framer-WBhiA .framer-ebf9ae { width: 18%; } .framer-WBhiA .framer-1mikrk9 { padding: 60px 80px 60px 80px; } .framer-WBhiA .framer-1gboqjd { align-content: flex-end; align-items: flex-end; } .framer-WBhiA .framer-1rvcsiw { padding: 40px 0px 0px 0px; } .framer-WBhiA .framer-16taygi { height: var(--framer-aspect-ratio-supported, 78px); } .framer-WBhiA .framer-64nyj1 { flex-direction: column; padding: 0px 40px 40px 40px; } .framer-WBhiA .framer-rgqx31 { gap: 32px; justify-content: flex-start; max-width: 1195px; order: 1; padding: 40px 0px 24px 0px; } .framer-WBhiA .framer-17xcx1k { height: var(--framer-aspect-ratio-supported, 297px); max-width: 350px; width: 45%; } .framer-WBhiA .framer-qn49wr-container { flex: none; max-width: 742px; order: 2; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WBhiA .framer-117b6ut, .framer-WBhiA .framer-1rhbcce, .framer-WBhiA .framer-u4lgkz, .framer-WBhiA .framer-c23m3t, .framer-WBhiA .framer-18yh1kp, .framer-WBhiA .framer-a6pbzu, .framer-WBhiA .framer-64nyj1, .framer-WBhiA .framer-rgqx31 { gap: 0px; } .framer-WBhiA .framer-117b6ut > *, .framer-WBhiA .framer-u4lgkz > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-WBhiA .framer-117b6ut > :first-child, .framer-WBhiA .framer-1rhbcce > :first-child, .framer-WBhiA .framer-u4lgkz > :first-child, .framer-WBhiA .framer-c23m3t > :first-child, .framer-WBhiA .framer-64nyj1 > :first-child { margin-top: 0px; } .framer-WBhiA .framer-117b6ut > :last-child, .framer-WBhiA .framer-1rhbcce > :last-child, .framer-WBhiA .framer-u4lgkz > :last-child, .framer-WBhiA .framer-c23m3t > :last-child, .framer-WBhiA .framer-64nyj1 > :last-child { margin-bottom: 0px; } .framer-WBhiA .framer-1rhbcce > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-WBhiA .framer-c23m3t > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-WBhiA .framer-18yh1kp > *, .framer-WBhiA .framer-a6pbzu > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-WBhiA .framer-18yh1kp > :first-child, .framer-WBhiA .framer-a6pbzu > :first-child, .framer-WBhiA .framer-rgqx31 > :first-child { margin-left: 0px; } .framer-WBhiA .framer-18yh1kp > :last-child, .framer-WBhiA .framer-a6pbzu > :last-child, .framer-WBhiA .framer-rgqx31 > :last-child { margin-right: 0px; } .framer-WBhiA .framer-64nyj1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-WBhiA .framer-rgqx31 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } }}\",\"@media (max-width: 692px) { .framer-WBhiA.framer-b35poj { padding: 80px 0px 0px 0px; width: 389px; } .framer-WBhiA .framer-13ah6el-container, .framer-WBhiA .framer-1t07tpb, .framer-WBhiA .framer-13hjaku, .framer-WBhiA .framer-y8dwq6 { order: 0; } .framer-WBhiA .framer-1hxc5dj { order: 1; padding: 0px; } .framer-WBhiA .framer-u6cabl { max-width: unset; order: 0; padding: 40px 0px 40px 0px; width: 86%; } .framer-WBhiA .framer-18vjw36, .framer-WBhiA .framer-ef65b7 { order: 0; width: 100%; } .framer-WBhiA .framer-hjvrlf { max-width: unset; order: 2; } .framer-WBhiA .framer-18p9oqi { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 299px; justify-content: center; max-width: 880px; order: 3; padding: 0px; } .framer-WBhiA .framer-11qid3v-container { left: unset; order: 5; position: relative; top: unset; } .framer-WBhiA .framer-6zpdjz { height: var(--framer-aspect-ratio-supported, 225px); left: unset; order: 4; position: relative; top: unset; width: 225px; } .framer-WBhiA .framer-h82fuf { gap: 16px; order: 2; padding: 0px 28px 0px 32px; } .framer-WBhiA .framer-5y14lu { align-content: center; align-items: center; flex-direction: column; gap: 56px; max-width: unset; padding: 0px 0px 40px 0px; } .framer-WBhiA .framer-1ux9a21 { align-content: center; align-items: center; order: 0; width: 100%; } .framer-WBhiA .framer-23jast { height: var(--framer-aspect-ratio-supported, 196px); width: 60%; } .framer-WBhiA .framer-ojly2r { width: 99%; } .framer-WBhiA .framer-58maxg { align-content: center; align-items: center; order: 1; width: 100%; } .framer-WBhiA .framer-1a8sm0u, .framer-WBhiA .framer-9ja1rf { height: var(--framer-aspect-ratio-supported, 201px); width: 60%; } .framer-WBhiA .framer-rzhnvw, .framer-WBhiA .framer-1yr9rir, .framer-WBhiA .framer-1njfocw, .framer-WBhiA .framer-16nybb3, .framer-WBhiA .framer-zj42u1 { width: 100%; } .framer-WBhiA .framer-rxsyi7 { align-content: center; align-items: center; order: 2; width: 100%; } .framer-WBhiA .framer-84t3lf { order: 3; padding: 24px 28px 24px 32px; } .framer-WBhiA .framer-117b6ut { align-content: center; align-items: center; gap: 16px; padding: 40px 0px 24px 0px; } .framer-WBhiA .framer-xednl7, .framer-WBhiA .framer-1xmslop { align-content: center; align-items: center; } .framer-WBhiA .framer-1lbo9kf { width: 85%; } .framer-WBhiA .framer-12snovw { align-content: center; align-items: center; flex-direction: column; gap: 56px; } .framer-WBhiA .framer-6j6iaj, .framer-WBhiA .framer-163zu49 { align-content: center; align-items: center; width: 100%; } .framer-WBhiA .framer-i9dmn5 { align-content: center; align-items: center; height: min-content; } .framer-WBhiA .framer-rvrhoe { align-content: center; align-items: center; height: min-content; width: 100%; } .framer-WBhiA .framer-19j1dfe { height: min-content; padding: 0px; } .framer-WBhiA .framer-lnu38y { height: 396px; } .framer-WBhiA .framer-16pl21d { left: 48%; top: 11px; } .framer-WBhiA .framer-1ayyfp, .framer-WBhiA .framer-aru1o9 { left: calc(45.16129032258067% - 231px / 2); } .framer-WBhiA .framer-1dejp6a { left: 165px; } .framer-WBhiA .framer-c9y4gp-container { height: 600px; order: 4; width: 80%; } .framer-WBhiA .framer-1h6t113, .framer-WBhiA .framer-1kvydml { order: 5; } .framer-WBhiA .framer-1l0czvx { flex-direction: column; max-width: unset; padding: 40px 32px 40px 36px; } .framer-WBhiA .framer-da2l28 { padding: 40px 0px 40px 0px; width: 100%; } .framer-WBhiA .framer-193xrra { height: var(--framer-aspect-ratio-supported, 200px); order: 1; width: 100%; } .framer-WBhiA .framer-rij8a6 { order: 6; padding: 32px 26px 0px 32px; } .framer-WBhiA .framer-u4lgkz { gap: 20px; } .framer-WBhiA .framer-ptamk3 { padding: 40px 0px 20px 0px; } .framer-WBhiA .framer-luka4h { order: 0; width: 80%; } .framer-WBhiA .framer-q8078w, .framer-WBhiA .framer-t441ah { order: 1; } .framer-WBhiA .framer-1snv0gc { order: 2; width: 80%; } .framer-WBhiA .framer-aazf4s { order: 7; } .framer-WBhiA .framer-1ar6nk4 { order: 4; width: 80%; } .framer-WBhiA .framer-lpak26 { order: 3; } .framer-WBhiA .framer-1fzvldw { order: 6; width: 80%; } .framer-WBhiA .framer-13dfy7v { order: 8; width: 80%; } .framer-WBhiA .framer-1mikrk9 { order: 7; padding: 40px 28px 40px 32px; } .framer-WBhiA .framer-1rvcsiw { padding: 40px 0px 32px 0px; width: 100%; } .framer-WBhiA .framer-16taygi { height: var(--framer-aspect-ratio-supported, 100px); width: 47%; } .framer-WBhiA .framer-64nyj1 { order: 12; padding: 20px 32px 20px 28px; } .framer-WBhiA .framer-z31dos { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; flex-direction: column; gap: 24px; max-width: unset; will-change: unset; } .framer-WBhiA .framer-iia8mx { align-content: center; align-items: center; gap: 24px; order: 1; width: 100%; } .framer-WBhiA .framer-1999nx4 { order: 1; width: 100%; } .framer-WBhiA .framer-oeo5h9 { order: 2; } .framer-WBhiA .framer-jichnw-container { flex: none; order: 2; width: 100%; } .framer-WBhiA .framer-po1eeb { order: 8; } .framer-WBhiA .framer-1ufsfzr { height: var(--framer-aspect-ratio-supported, 168px); } .framer-WBhiA .framer-101ykgl-container { order: 13; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WBhiA .framer-18p9oqi, .framer-WBhiA .framer-h82fuf, .framer-WBhiA .framer-5y14lu, .framer-WBhiA .framer-117b6ut, .framer-WBhiA .framer-12snovw, .framer-WBhiA .framer-1l0czvx, .framer-WBhiA .framer-u4lgkz, .framer-WBhiA .framer-z31dos, .framer-WBhiA .framer-iia8mx { gap: 0px; } .framer-WBhiA .framer-18p9oqi > *, .framer-WBhiA .framer-z31dos > *, .framer-WBhiA .framer-iia8mx > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-WBhiA .framer-18p9oqi > :first-child, .framer-WBhiA .framer-h82fuf > :first-child, .framer-WBhiA .framer-5y14lu > :first-child, .framer-WBhiA .framer-117b6ut > :first-child, .framer-WBhiA .framer-12snovw > :first-child, .framer-WBhiA .framer-1l0czvx > :first-child, .framer-WBhiA .framer-u4lgkz > :first-child, .framer-WBhiA .framer-z31dos > :first-child, .framer-WBhiA .framer-iia8mx > :first-child { margin-top: 0px; } .framer-WBhiA .framer-18p9oqi > :last-child, .framer-WBhiA .framer-h82fuf > :last-child, .framer-WBhiA .framer-5y14lu > :last-child, .framer-WBhiA .framer-117b6ut > :last-child, .framer-WBhiA .framer-12snovw > :last-child, .framer-WBhiA .framer-1l0czvx > :last-child, .framer-WBhiA .framer-u4lgkz > :last-child, .framer-WBhiA .framer-z31dos > :last-child, .framer-WBhiA .framer-iia8mx > :last-child { margin-bottom: 0px; } .framer-WBhiA .framer-h82fuf > *, .framer-WBhiA .framer-117b6ut > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-WBhiA .framer-5y14lu > *, .framer-WBhiA .framer-12snovw > *, .framer-WBhiA .framer-1l0czvx > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-WBhiA .framer-u4lgkz > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}\",\"@media (min-width: 693px) and (max-width: 768px) { .framer-WBhiA.framer-b35poj { padding: 80px 0px 0px 0px; width: 693px; } .framer-WBhiA .framer-13ah6el-container, .framer-WBhiA .framer-58maxg, .framer-WBhiA .framer-q8078w, .framer-WBhiA .framer-t441ah { order: 1; } .framer-WBhiA .framer-1hxc5dj { order: 0; padding: 0px; } .framer-WBhiA .framer-u6cabl { gap: 20px; max-width: 880px; width: 86%; } .framer-WBhiA .framer-18vjw36, .framer-WBhiA .framer-1ux9a21, .framer-WBhiA .framer-luka4h, .framer-WBhiA .framer-13hjaku { order: 0; } .framer-WBhiA .framer-hjvrlf, .framer-WBhiA .framer-1snv0gc { order: 2; } .framer-WBhiA .framer-18p9oqi { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 350px; justify-content: center; max-width: 880px; order: 3; padding: 0px; } .framer-WBhiA .framer-pepgkg { left: unset; order: 2; position: relative; top: unset; width: 185px; } .framer-WBhiA .framer-6zpdjz { height: var(--framer-aspect-ratio-supported, 266px); left: unset; order: 1; position: relative; top: unset; width: 266px; } .framer-WBhiA .framer-h82fuf { padding: 0px; width: 86%; } .framer-WBhiA .framer-5y14lu, .framer-WBhiA .framer-12snovw { gap: 24px; } .framer-WBhiA .framer-23jast { height: var(--framer-aspect-ratio-supported, 151px); } .framer-WBhiA .framer-1a8sm0u { height: var(--framer-aspect-ratio-supported, 150px); width: 80%; } .framer-WBhiA .framer-rxsyi7 { order: 2; width: 30%; } .framer-WBhiA .framer-9ja1rf { height: var(--framer-aspect-ratio-supported, 150px); width: 82%; } .framer-WBhiA .framer-gewai9 { width: 179px; } .framer-WBhiA .framer-84t3lf { padding: 24px 40px 24px 40px; } .framer-WBhiA .framer-117b6ut { gap: 16px; padding: 24px 0px 24px 0px; } .framer-WBhiA .framer-6j6iaj { width: 31%; } .framer-WBhiA .framer-i9dmn5, .framer-WBhiA .framer-1xmslop { height: 300px; padding: 0px 0px 5px 0px; } .framer-WBhiA .framer-19u3whd { height: 290px; width: 75%; } .framer-WBhiA .framer-196q1lv { height: 290px; width: 76%; } .framer-WBhiA .framer-rvrhoe { height: min-content; } .framer-WBhiA .framer-x0m1gw { height: min-content; padding: 0px 0px 5px 0px; width: 100%; } .framer-WBhiA .framer-19j1dfe { align-content: flex-end; align-items: flex-end; gap: 0px; height: 296px; padding: 0px; } .framer-WBhiA .framer-lnu38y { height: 295px; width: 86%; } .framer-WBhiA .framer-16pl21d { height: var(--framer-aspect-ratio-supported, 163px); left: 0px; right: -1px; top: 30px; transform: unset; width: unset; } .framer-WBhiA .framer-1ayyfp { left: -1px; right: 0px; top: 10px; width: unset; } .framer-WBhiA .framer-aru1o9 { left: -1px; top: 39px; width: 157px; } .framer-WBhiA .framer-1dejp6a { bottom: 1px; height: 211px; left: 49px; width: 111px; } .framer-WBhiA .framer-c9y4gp-container { height: 365px; width: 80%; } .framer-WBhiA .framer-1rhbcce { gap: 40px; padding: 80px 40px 80px 40px; } .framer-WBhiA .framer-nps8e0 { height: var(--framer-aspect-ratio-supported, 187px); } .framer-WBhiA .framer-80742i { width: 52%; } .framer-WBhiA .framer-rij8a6 { padding: 32px 0px 32px 0px; width: 86%; } .framer-WBhiA .framer-u4lgkz { gap: 20px; } .framer-WBhiA .framer-gplpg3, .framer-WBhiA .framer-1s3q9yy, .framer-WBhiA .framer-16nybb3 { width: 80%; } .framer-WBhiA .framer-aazf4s { order: 7; } .framer-WBhiA .framer-1ar6nk4 { order: 4; } .framer-WBhiA .framer-lpak26 { order: 3; } .framer-WBhiA .framer-1fzvldw { order: 6; } .framer-WBhiA .framer-1kvydml { order: 5; } .framer-WBhiA .framer-13dfy7v { order: 8; } .framer-WBhiA .framer-1mikrk9 { padding: 60px 80px 60px 80px; } .framer-WBhiA .framer-zj42u1 { width: 100%; } .framer-WBhiA .framer-1rvcsiw { padding: 40px 0px 32px 0px; width: 100%; } .framer-WBhiA .framer-16taygi { height: var(--framer-aspect-ratio-supported, 103px); width: 30%; } .framer-WBhiA .framer-64nyj1 { flex-direction: column; max-width: 950px; padding: 40px; } .framer-WBhiA .framer-rgqx31 { gap: 32px; padding: 0px 0px 32px 0px; } .framer-WBhiA .framer-17xcx1k { height: var(--framer-aspect-ratio-supported, 264px); width: 45%; } .framer-WBhiA .framer-4027cd { bottom: 0px; height: unset; left: 0px; right: -1px; top: 0px; } .framer-WBhiA .framer-qn49wr-container { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WBhiA .framer-u6cabl, .framer-WBhiA .framer-18p9oqi, .framer-WBhiA .framer-5y14lu, .framer-WBhiA .framer-117b6ut, .framer-WBhiA .framer-12snovw, .framer-WBhiA .framer-19j1dfe, .framer-WBhiA .framer-1rhbcce, .framer-WBhiA .framer-u4lgkz, .framer-WBhiA .framer-64nyj1, .framer-WBhiA .framer-rgqx31 { gap: 0px; } .framer-WBhiA .framer-u6cabl > *, .framer-WBhiA .framer-u4lgkz > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-WBhiA .framer-u6cabl > :first-child, .framer-WBhiA .framer-18p9oqi > :first-child, .framer-WBhiA .framer-117b6ut > :first-child, .framer-WBhiA .framer-19j1dfe > :first-child, .framer-WBhiA .framer-1rhbcce > :first-child, .framer-WBhiA .framer-u4lgkz > :first-child, .framer-WBhiA .framer-64nyj1 > :first-child { margin-top: 0px; } .framer-WBhiA .framer-u6cabl > :last-child, .framer-WBhiA .framer-18p9oqi > :last-child, .framer-WBhiA .framer-117b6ut > :last-child, .framer-WBhiA .framer-19j1dfe > :last-child, .framer-WBhiA .framer-1rhbcce > :last-child, .framer-WBhiA .framer-u4lgkz > :last-child, .framer-WBhiA .framer-64nyj1 > :last-child { margin-bottom: 0px; } .framer-WBhiA .framer-18p9oqi > *, .framer-WBhiA .framer-117b6ut > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-WBhiA .framer-5y14lu > *, .framer-WBhiA .framer-12snovw > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-WBhiA .framer-5y14lu > :first-child, .framer-WBhiA .framer-12snovw > :first-child, .framer-WBhiA .framer-rgqx31 > :first-child { margin-left: 0px; } .framer-WBhiA .framer-5y14lu > :last-child, .framer-WBhiA .framer-12snovw > :last-child, .framer-WBhiA .framer-rgqx31 > :last-child { margin-right: 0px; } .framer-WBhiA .framer-19j1dfe > *, .framer-WBhiA .framer-64nyj1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-WBhiA .framer-1rhbcce > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-WBhiA .framer-rgqx31 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4839\n * @framerIntrinsicWidth 1105\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"LR2td6NJu\":{\"layout\":[\"fixed\",\"auto\"]},\"P1Vo_Ps3Q\":{\"layout\":[\"fixed\",\"auto\"]},\"wJY_z6xPr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"HnUP5S0fO\":{\"pattern\":\":HnUP5S0fO\",\"name\":\"content\"}}\n * @framerResponsiveScreen\n */const FramerTtbrpX20t=withCSS(Component,css,\"framer-WBhiA\");export default FramerTtbrpX20t;FramerTtbrpX20t.displayName=\"Home\";FramerTtbrpX20t.defaultProps={height:4839,width:1105};addFonts(FramerTtbrpX20t,[{explicitInter:true,fonts:[{family:\"RB Quaria Display Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/04WR54Ayk0cPz4Derk8o4NpUw.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{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/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"},{family:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v21/zYXGKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1swZSAXcomDVmadSD6llzBaI5loa26g.woff2\",weight:\"400\"},{family:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v21/zYXGKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1swZSAXcomDVmadSD2FlzBaI5loa26g.woff2\",weight:\"500\"},{family:\"RB Quaria Display Regular Italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/4NqdyO3pRFYIj48stjgsxlIWtc.woff2\"},{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:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v21/zYXGKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1swZSAXcomDVmadSDDV5zBaI5loa26g.woff2\",weight:\"700\"},{family:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v21/zYXGKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1swZSAXcomDVmadSDtFlzBaI5loa26g.woff2\",weight:\"300\"},{family:\"IBM Plex Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v21/zYXEKVElMYYaJe8bpLHnCwDKhdTEG46kmUZQCX598fQbM4jw8V78x9OWIhqbQ6g4tIOm6vje.woff2\",weight:\"400\"}]},...HeaderFixedFonts,...PrimaryButtonFonts,...SlideshowFonts,...SecondaryButtonFonts,...MailchimpFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTtbrpX20t\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1105\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"4839\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LR2td6NJu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"P1Vo_Ps3Q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wJY_z6xPr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"{\\\"HnUP5S0fO\\\":{\\\"pattern\\\":\\\":HnUP5S0fO\\\",\\\"name\\\":\\\"content\\\"}}\"}},\"__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", "Mailchimp", "props", "p", "InputSites_js_1_12_default", "addPropertyControls", "ControlType", "noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "o", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "se", "i", "s", "__rest", "inView$1", "o", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "sync", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "fontStore", "fonts", "css", "className", "HeaderFixedFonts", "getFonts", "vKVvi3jNb_default", "MotionAAdd_CTA_Landingpagepepgkg", "withCodeBoundaryForOverrides", "motion", "add_CTA_Landingpage", "PrimaryButtonFonts", "nZmIrg2VV_default", "PrimaryButtonAdd_CTA_Landingpage11qid3vWithMappedReactProps7ghm8l", "withMappedReactProps", "nZmIrg2VV_exports", "PrimaryButtonAdd_CTA_Landingpagexx8k9uWithMappedReactProps7ghm8l", "SlideshowFonts", "Slideshow", "RichTextAdd_CTA_Landingpage80742i", "RichText2", "RichTextAdd_CTA_Landingpage1k9t8cz", "SecondaryButtonFonts", "bVaqz4ByX_default", "MailchimpFonts", "Mailchimp", "FooterFonts", "H9p8VEfdy_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "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", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "router", "useRouter", "isDisplayed5", "isDisplayed6", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "Link", "Image2", "SVG", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "css", "FramerTtbrpX20t", "withCSS", "TtbrpX20t_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
